diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/README.md b/archive/data_product_examples/2023-05-example_prison_data_product/README.md new file mode 100644 index 0000000..203c6bf --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/README.md @@ -0,0 +1,30 @@ +This is an early exploration of what a "Data Product" may look like, +as of May 2023. +Migrated from https://github.com/ministryofjustice/data-platform-products + +# Data products + +## Purpose + +A data product exists to help with interoperability, to make that process simpler. The intention of data products and the resulting data mesh is to eliminate the struggle to get timely access to data, and a consequent loss of trust. The purpose of the data product is to serve the consumer's needs. + +A Data Product is created and owned by a Data Product Owner, a person with comprehensive domain knowledge. The Data Product Owner is not part of the Data Platform team, they are people that operate on different teams and they have a system that contains data that they would like to share. This is because it is essential to know a domain before creating a Data Product, and it would be impossible for the Data Platform teams to have deep knowledge of every domain that uses the platform. + +## Goals + +Our goals are: + +- Make data easily discoverable by users who wish to use that data. We do this by encouraging the owners of data products to supply high quality [metadata](https://en.wikipedia.org/wiki/Metadata) +- Make data more usable, whatever the purpose, by applying product thinking to our data, and clearly describing the lineage and transformations of our data products +- Make it easier for us to provide governance for data, for example by identfying owners, protective markings and retention periods. + +## Defining a data product + +A data product will have a unique name, and is defined using a collection of YAML files. + +| File name | Purpose | Documentation | +| ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------- | +| `00-specification.yml` | Aids data discoverability by providing a name, description and tags for a data product. It also contains contact details of the data product owner. | [Data product specification](./_docs/product-specification.md) | +| `01-governance.yml` | Contains protective marking, retention period, expected update frequency and data lineage. | [Defining product governance](./_docs/product-governance.md) | +| `02-data-dictionary.yml` | Contains the field and column (or domain, attribute and value) defintions comprising the data product, along with type information and user-friendly names. | [Data dictionary guidance](./_docs/data-dictionary.md) | +| `03-transformations.yml` | Describes the [cleaning](./_docs/cleansing-definitions.md) and [transformation](./_docs/transform-definitions.md) data will undergo before it is made available to consumers. | [Cleaning](./_docs/cleansing-definitions.md) and [transformation](./_docs/transform-definitions.md) | diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/_docs/cleansing-definitions.md b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/cleansing-definitions.md new file mode 100644 index 0000000..bbb5e98 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/cleansing-definitions.md @@ -0,0 +1,99 @@ +# Describing data cleansing + +When describing what has happened to your data before users get to interact with it, you should describe any data cleaning processes which you have used, either at a table or column level. Cleansing should be documented in the `03-transformations.yml` file in your data product definition folder. + +See also our guidance on describing [transformations](./transform-definitions.md) your data may have applied to it. + +## Types of data cleansing + +These have been derived from the contributions made to the [Data Management Wiki](https://datamanagement.wiki/data_quality_management_system/data_cleansing). + +Please use the identifier (ID) for the cleaning types when populating your `03-transformations.yml` file. + +| ID | Method | Description | +| ----------------------------- | ---------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| abbreviation-expansion | Abbreviation expansion | Abbreviation expansion transforms abbreviations into their full form. There are different kinds of abbreviation. These can be shortened words such as "mgmt", or acronyms, where the abbreviation consists of a prefix of the original data value. E.g. "MDT" stands for "mandatory drug testing". | +| cross-checking | Cross-checking with a validated data set | Some data cleansing solutions will clean data by cross-checking with a validated data set. In these cases you should reference the dataset used for cross-checking. | +| correct-typos | Correct typographical errors | A typographical error (often shortened to typo), is a mistake (such as a spelling mistake) made in the data | +| drop-or-impute-missing-values | Drop or impute missing values | Missing values are data or data points of a variable that are missing. Missing data are a common occurrence and can have a significant effect on the conclusions that can be drawn from the data. | +| group-duplicates | Group duplicates | Duplicates are data points that are repeated in your dataset. Every duplicate detection method proposed requires an algorithm for determine whether two or more records are duplicate representations of the same entity. | +| parsing | Parsing | Parsing is a method where one string of data gets converted into a different type of data. Parsing in data cleansing is performed for the detection of syntax errors. | +| remove-duplicates | Remove duplicates | Duplicates are data points that are repeated in your dataset. Every duplicate detection method proposed requires an algorithm for determine whether two or more records are duplicate representations of the same entity. | +| remove-inconsistency | Remove inconsistency | Data inconsistency is a condition that occurs between tables when we keep similar data in different formats in two different tables. Data inconsistency creates unreliable information, because it will be difficult to determine which version of the information is correct. | +| remove-irrelevant-data | Remove irrelevant data | Irrelevant data are the data that are not actually needed, and don’t fit under the context of the problem we’re trying to solve. | +| remove-outliers | Remove outliers | Outliers are values that are significantly different from all other observations. They should not be removed unless there is a good reason for that, since users may need to see them. | +| standardisation | Standardisation | Standardisation transforms data into a standard form - for example if the same information is represented slightly differently across different systems, you may wish to standardise those values so they match with other data products. | +| statistical-methods | Statistical methods | Statistical methods are used to identify data issues and provide cleaning or flagging of data issues. | +| suppress-small-values | Suppress small values | Suppression is when small values are removed are replaced to avoid identifying individuals. | +| redaction | Redaction | Redaction is the removal of sensitive or other restricted information. | +| type-conversion | Type conversion | Type conversion (also called casting) is an operation that converts a piece of data of one data type to another data type. Type conversion can be used to make sure that numbers are stored as numerical data types and that a date should be stored as a date object. | + +## Examples + +You have a table called `prison_releases` defined in `02-data-dictionary.yml` which contains anonymised, row-level data from a case management system about individuals released from prison. Since an individual can be "released" from more than one prison sentence at the same time, or because of data entry errors, the raw data may appear to, or actually, contain duplicates. You know your users only want a single record per release, so you choose to de-duplicate the data by deleting all but one instance of each duplicate. This is a table level cleaning process which would be documented in `03-transformations.yml` like this: + +```yaml +cleansing: + prison_releases: + - type: "remove-duplicates" + description: "Duplicate releases removed by choosing the duplicate with the highest numbered record ID and discarding the others" +``` + +Your users aren't happy with that, so instead you apply a `GROUP BY` to your dataset, so that there is only one row per release but you retain information which may otherwise be lost: + +```yaml +cleansing: + prison_releases: + - type: "group-duplicates" + description: "Duplicate releases removed by concatenating multiple sentences into one string" +``` + +Multiple cleaning steps can be added, so for example you might want to clearly show any enhancements you added as part of the above `group-duplicates`: + +```yaml +cleansing: + prison_releases: + - type: "group-duplicates" + description: "Duplicate releases removed by concatenating multiple sentences into one string" + - type: "data-enhancement" + description: "Add a flag column to indicate which records were affected by the de-duplication process" +``` + +Furthermore, there may be a column of data which contains jargon or abbrevations which you wish to make more user-friendly. Assuming you cannot take the preferred approach of providing a reference table for this, you may decide to expand or replace these as part of your cleansing. For example there's a column which contains some information about whether the release was early, on time, or late, but users of the case management system have taken to entering "E", "OT", "L", "VL", and there's no reference data or data entry validation for this. You use your knowledge of the system to provide an enhancement to expand those abbreviations. + +```yaml +cleansing: + prison_releases: + - type: "group-duplicates" + description: "Duplicate releases removed by concatenating multiple sentences into one string" + - type: "data-enhancement" + description: "Add a flag column to indicate which records were affected by the de-duplication process" + columns: + timely_release: + - type: "abbreviation-expansion" + description: "Replace data entry shorthand with expanded text (e.g. 'VL' => 'very late'); or 'unknown'" +``` + +Our [example data product](./_example/) contains a few more examples. + +### Data with no cleansing applied + +If your data has not undergone any cleansing, we suggest you explicitly inform users of this by adding `type: none` to make this clear to users. Otherwise we will assume there has been undocumented cleansing. An exception is made for tables [defined as reference data](./_example/02-data-dictionary.yml#L67) - here we assume no cleansing has been applied if there is no cleansing specified. + +## Considerations + +Wherever possible, it is better to have clean data captured at source. If you are regularly applying certain types of cleaning, consider whether it is possible and practical for additional data validation to be added to the originating system(s). + + + +## Suggesting changes + +If you wish to suggest additions or improvements to the cleansing types, please [follow our guidance](https://github.com/ministryofjustice/data-platform-products) on submitting a pull request. + +## Further reading + +[Index of documention for data product defintion](../README.md#defining-a-data-product) + +[Example data product](../_example/) diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/_docs/data-dictionary.md b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/data-dictionary.md new file mode 100644 index 0000000..70506d1 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/data-dictionary.md @@ -0,0 +1,118 @@ +# The data dictionary + +The `02-data-dictionary.yml` file should contain a detailed specification of the structure of the data in YAML format. Like most schemas, we require that you supply + +- table names, column names and column types (for tabular data); +- or domains, classes and attributes (for domain modelled data) + +**Unlike** some other schemas, we also ask that you **describe** the components of the data so that users understand what they are. + +## Top-level attributes + +The overall data dictionary requires these top-level attributes: + +```yaml +default: + model: "tabular" + description: "Extracted from the Offender Management Statistics Quarterly publication. Please refer to notes in that publication." + limitations: { free text } + enable-versioning: false +``` + +The top-level attribute ("`default`" in the above example) defines a group or collection of datasets. In most cases you will have only one collection, so we recommend you use the data product name. + +- `model` - allowable values are `tabular` or `domain` (default is "tabular") +- `description` - optional free text to help users find the data. Useful if you have more than one group and you want to enhance the description provided by the overall data product specification +- `limitations` - optional free text to enhance any particular limitations of a group of data, in addition to any limitations provided by the overall data product specification +- `enable-versioning` - allowable values are true or false (default false). If versioning is enabled, the Data Platform will store a historical snaphot of the database each time an update is sent. This can add SIGNIFICANTLY to storage costs, so you may be asked to justify this. + +## Table and column attributes + +The `tables` attribute is contained within the top-level group, and contains a list of table names (without spaces). Additional attributes are defined for the table including a user-friendly description and an update strategy (more on this below). Each table then contains a collection of columns with attributes to define each column. + +### Example + +```yaml +tables: + population_by_offence: + description: "Prison population by offence group" + update-strategy: "all-dimensions" + columns: + # A column must contain at least a name and a data type. + - name: "Offence" + description: "Offence group" + data-type: "string" + column-type: "dimension" + # e.g. reference data - a table in this database or the URI of a table in another product + reference-table: "offence_groups" + - name: "Date" + data-type: "date" + column-type: "dimension" + primary-period: true + - name: "Population" + data-type: "int" + column-type: "fact" +``` + +This defines one table called "population_by_offence", with three columns - "Offence", "Date", and "Population". In general, a column will have the following attributes: + +- `name` - the name of the column as seen by users. This should be kept relatively short, and we suggest avoiding spaces or hyphens +- `description` - additonal free text information about the column +- `data-type` - one of `string`, `int` (integer), `float`, `decimal`, `bit` (boolean), `date`, `time`, or `datetime` +- `column-type` - either `fact` or `dimension`. In this case the "fact" is the numeric value for prison population, and the two dimensions are "Offence" and "Date". So a user could use the dimension values "Theft offences" and "31st Dec 2022" to find a particular prison population value (fact) - 758 ([source](https://www.gov.uk/government/statistics/offender-management-statistics-quarterly-july-to-september-2022)). +- `reference-table` is optional for dimension columns. If the dimension contains a code or ID which refers to a lookup table, the name of that table should be supplied here. The reference table must contain a matching column - by name and type - on which to perform joins and lookups. + +### Dates and "primary period" columns + +For data with a time dimension (for example a date column), we can enforce retention periods and inform users of the range of available data. This is specified using the `primary-period` attribute, with a value of `true`. + +For a more complete example, see [02-data-dictionary](../_example/02-data-dictionary.yml) in the example data product. + +## Update strategies + +When sending updates to data to the platform, we need to know how to replace or insert data. This is done using the `update-strategy` attribute, which supports two options: + +- `all-dimensions` or; +- `selected-dimensions` + +When `all-dimensions` is specified, data will be updated or inserted based on all the columns which are defined as `column-type: "dimension"`. For example if new data is sent to the table defined above, any existing values (facts) will be ovewritten if the offence and date matches existing data, or new records will be added if a matching combination of offence and date is not found. + +When `selected-dimensions` is specified, you must also supply an array of update key dimensions. For example: + +```yaml +tables: + population_by_age: + description: "Prison population by age band" + update-strategy: "selected-dimensions" + update-dimensions: ["date"] +``` + +In this case, an update will overwrite all values based on just the date column, regardless of the "age" dimension. Column(s) specified in the `update-dimensions` array must exist in the table. + +If `update-strategy` is omitted, the platform assumes the `all-dimensions` strategy should be used. + +## Schema generation articles and utilities + +You can generate your initial data dictionary by hand, or use a tool. Here we link to a few tools. Most of these will generate a JSON schema - the Data Platform format is YAML since it strikes a nice balance between machine and human readability, and is (arguably) easier to hand edit. + +You can find utilities to generate YAML from JSON, since one is a subset of the other - for example here is one [browser based tool](https://www.json2yaml.com/). + +Our favourite tool for editing YAML is [Visual Studio Code](https://code.visualstudio.com/) with the [YAML plugin](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml). + +### PostgreSQL + +[A Stack Overflow article](https://stackoverflow.com/questions/22272855/convert-a-postgres-db-schema-to-a-json-format) + +### Microsoft SQL Server + +[An MSSQL Tips article on using SQL to generate a JSON schema](https://www.mssqltips.com/sqlservertip/6270/save-sql-server-database-structure-as-json/) + +### Oracle + +We havent yet found a JSON schema generator for Oracle - please let us know if you know of one (or want to create one!). The SQL Server approach above may be adaptable to Oracle. + +## Further reading + +[Index of documention for data product defintion](../README.md#defining-a-data-product) + +[Example data product](../_example/) diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/_docs/product-governance.md b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/product-governance.md new file mode 100644 index 0000000..915a60b --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/product-governance.md @@ -0,0 +1,117 @@ +# Defining data product governance + +The purpose of the `01-governance.yml` file in your data product definition folder is to indicate to users, and to the data platform itself, how the data should be handled, and where it has come from. A correctly specficied set of governance attributes gives you and platform users confidence in handling and using the data. + +## Example + +```yaml +governance: + data-platform.justice.gov.uk/data-controller: "moj" + data-platform.justice.gov.uk/review-after: "2023-12-31" + data-platform.justice.gov.uk/senior-information-risk-owner: "information.asset.owner.name@justice.gov.uk" + data-platform.justice.gov.uk/protective-marking: "None" + update-frequency: + data-platform.justice.gov.uk/update-unit: "months" + data-platform.justice.gov.uk/update-value: 3 + retention: + data-platform.justice.gov.uk/retention-strategy: "forever" + data-platform.justice.gov.uk/retention-unit: "years" + data-platform.justice.gov.uk/retention-value: 25 + lineage: + data-platform.justice.gov.uk/organisational-unit: "HMPPS" + data-platform.justice.gov.uk/source: "https://www.gov.uk/government/collections/offender-management-statistics-quarterly" + data-platform.justice.gov.uk/parent-products: ["parent_product", "other_parent_product"] +``` + +## Notes + +### Ownership and handling attributes + +- `data-platform.justice.gov.uk/data-controller` is the Data Controller as pertains to the Data Protection Act. This will commonly be "moj" but could be another entity. +- `data-platform.justice.gov.uk/review-after` - on which date should the governance information be reviewed. Data products owners will be notified of this review window using the contact information supplied in the [data product specification](product-specification.md). +- `data-platform.justice.gov.uk/senior-information-risk-owner` should be the email address of the Senior Information Risk Owner for this data. +- `data-platform.justice.gov.uk/protective-marking` - one of "Official", "Official Sensitive", or "None" (for published data). DO NOT SEND SECRET OR TOP SECRET DATA TO THE PLATFORM. + +### Data retention + +You should indicate to the platform how long the data should be kept before removal using the `data-platform.justice.gov.uk/retention-strategy` attribute. Data retention supports two strategies: + +- `date-uploaded` - the retention period is based on the date & time the data was added to the platform; or +- `data-date-key` - the retention period is based on dates within the data itself. For this strategy the [data dictionary](data-dictionary.md) must contain key date fields for all datasets. + +For these strategies, you must also supply a time unit and values. Supported values for `retention-unit` are: + +- `months` +- `years` + +The `retention-value` should be a whole number indicating how many of the `retention-unit` elapses before the retention policy is applied. For example: + +```yaml +retention: + data-platform.justice.gov.uk/retention-strategy: "data-date-key" + data-platform.justice.gov.uk/retention-unit: "years" + data-platform.justice.gov.uk/retention-value: 3 +``` + +Would be implemented as _"delete any data older than 3 years, based on the date field for each table"_. + +You can also specify `forever` for data which is allowed to be kept indefinitely - for example anonymised management information or published statistics. If `forever` is specified, the `retention-unit` and `retention-value` values are ignored - they are included above to provide a more complete example. + +Data products owners will be notified of retention policies being applied using the contact information supplied in the [data product specification](product-specification.md). + +### Data updates + +You should indicate to the platform, and to users, how frequently the data will be updated using the `update-frequency` attribute. This requires two values: + +- `data-platform.justice.gov.uk/update-unit` +- `data-platform.justice.gov.uk/update-value` + +Supported values for `update-unit` are: + +- `days` +- `weeks` +- `months` + +The `update-value` should be a whole number indicating how many of the `update-unit` will elapse before the next upate is sent. For example: + +```yaml +update-frequency: + data-platform.justice.gov.uk/update-unit: "months" + data-platform.justice.gov.uk/update-value: 3 +``` + +Would be implemented as _"new data will be supplied every three months"_. We don't support multiples of years, but a dataset with annual updates can be specified as having a 12 month update cycle. + +If a data update cycle is missed, data product owners will be notified via the contact information supplied in the [data product specification](product-specification.md). + +### Data lineage + +It is important to users of the data that they know where it has come from. This is the purpose of the `lineage` collection of attributes. These attributes are generally free text, so you are free to interpret their usage in the way you think is most helpful to users. + +- `data-platform.justice.gov.uk/organisational-unit` defines at a high level which part of the organisation the data has come from. For example "HMCTS", "HMPPS", "LAA", "OPG", "HQ" +- `data-platform.justice.gov.uk/source` - the detailed source of the data. Can be a system such as "NOMIS" or "XHIBIT" or the URL of a statistical publication +- \- **OR** \- +- `data-platform.justice.gov.uk/parent-products` - if your data product is based on another data product(s), please specify their name here. (The "name" as it appears in the list of data platform product folders, not the user-friendly title of the product). + +Note if `parent-product` is supplied then `source` is ignored. + +### Other attributes + +- `data-platform.justice.gov.uk/status`: use one of the following to indicate to users the status of the data: + - `draft` + - `development` + - `testing` + - `production` + - `sunset` + - `retired` + +Most data products will be tagged as `production` - the other statuses will flag to users than special handling is required. + + + +## Further reading + +[Index of documention for data product defintion](../README.md#defining-a-data-product) + +[Example data product](../_example/) diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/_docs/product-specification.md b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/product-specification.md new file mode 100644 index 0000000..8242fa3 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/product-specification.md @@ -0,0 +1,114 @@ +# Data product specification + +Use the `00-specification.yml` file in your data product definition folder to provide a name, title and description for your data product, and tags to help users find it. If you wish, you can also write a short value proposition outling _why_ the product exists and what data analysis or visualisation might arise from it. In general, the `00-specification.yml` file contains information that users of the data will see. + +You should also provide contact information for the product. + +## Example + +```yaml +specification: + data-platform.justice.gov.uk/name: "_example" + data-platform.justice.gov.uk/title: "Example Data Product" + data-platform.justice.gov.uk/description: "Example Data Product contains published prison population from 2001 to present" + data-platform.justice.gov.uk/product-tags: ["HMPPS", "prisons", "published data", "national statistics"] + data-platform.justice.gov.uk/value-proposition: "Adding published prison population allows for a reusable, consistent, safely sharable resource for this commonly used data" + data-platform.justice.gov.uk/status: "production" + data-platform.justice.gov.uk//limitations: + data-platform.justice.gov.uk/product-version: 0.0.1 + management: + data-platform.justice.gov.uk/owner-aad-group: "data-platform-admins" + data-platform.justice.gov.uk/owner-github-team: "data-platform-admins" + support: + data-platform.justice.gov.uk/owner-email: "data-platform@digital.justice.gov.uk" + data-platform.justice.gov.uk/owner-ms-teams: + data-platform.justice.gov.uk/owner-slack-channel: "data-platform" + data-platform.justice.gov.uk/product-guidance-url: +``` + +## Notes + +### Naming and tagging + +The product's `name` must be reasonably short and unique - we check for uniqueness when data product requests are created. This is because: + +- The product name is a directory in the data products repository. E.g. 'your_data_product' becomes `./data_products/your_data_product/` +- It will be the root of the API endpoint `https://data-platform.service.justice.gov.uk/api/your-data-product/` + +You must only use alphanumeric characters or underscores. Don't use spaces - we will replace spaces with underscores. + +The product `title` should be the human-readable version of the name. Keep it short but meaningful. We suggest product titles are unique, since: + +- Users may see it listed in a directory of products, and multiples of the same title are confusing +- Users may know a product title well enough to search for it directly + +The product `description` can be longer, give more information and will help users find your data. + +> NOTE: the `product-version` attribute is not yet documented here. We are still determining if this should be provided by the data product owner, or automatically incremented when the data dictionary or other metadata is updated. + +Product `tags` are an array array of quoted strings to further aid discoverability (think of them as search keywords). + +### Management access + +Using the `management` attribute, you must supply the name of a group of users who will have permisson to manage this data product. Use either (or both) of the following: + +- `data-platform.justice.gov.uk/owner-aad-group` - the name of a Azure Active Directory (AAD) security group +- `data-platform.justice.gov.uk/owner-github-team` - the name of a GitHub team + +Note these are **groups** of users, not the name of an individual. + +### Contact information + +You must supply at least one of the following to indicate ownership of the data product (either email, MS Teams channel or Slack channel): + +- `data-platform.justice.gov.uk/owner-email` +- `data-platform.justice.gov.uk/owner-ms-teams` +- `data-platform.justice.gov.uk/owner-slack-channel` + +If the preferred contact method is email, please provide a group address or shared mailbox rather than an individual's address. + +Important notifications about your data product are sent to the supplied address, so please ensure it is monitored. + + + +### Optional attributes + +Most of the attributes outlined above are required, however: + +- `data-platform.justice.gov.uk/limitations` is optional free text which tells users about what they _can't_ or _shouldn't_ do with this data. If your data product has undergone a Data Protection Impact Assesment (DPIA) which highlights inappropriate use cases, you should list those here. + - > NOTE: if your data product is still in development, or has draft status, please flag this using the `status` attribute described below +- `data-platform.justice.gov.uk/owner-github-team` is optional - if provided we can provide more advanced analytics for GitHub users +- `data-platform.justice.gov.uk/product-guidance-url` is optional - if this is provided the data catalogue can link to your guidance (for example a SharePoint page or Google doc) + +### Product status + +- `data-platform.justice.gov.uk/status`: use one of the following to indicate to users the status of the data: + - `draft` + - `development` + - `testing` + - `production` + - `sunset` + - `retired` + +Most data products will be tagged as `production` - the other statuses will flag to users that special handling is required. If `status` is omitted, we assume it is `production`. + +## Further reading + +[Index of documention for data product defintion](../README.md#defining-a-data-product) + +[Example data product](../_example/) diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/_docs/transform-definitions.md b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/transform-definitions.md new file mode 100644 index 0000000..6ab4ff6 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/_docs/transform-definitions.md @@ -0,0 +1,45 @@ +# Describing data transformations + +When describing what has happened to your data before users get to interact with it, you should describe any data transformations you have used. Transforms should be documented in the `03-transformations.yml` file in your data product definition folder. + +See also our guidance on describing [data cleaning](./cleansing-definitions.md) your data may have applied to it. + +## Types of data transformation + +These have been derived from the contributions made to the [Data Management Wiki](https://datamanagement.wiki/data_quality_management_system/data_cleansing). + +Please use the identifier (ID) for the transformation types when populating your `03-transformations.yml` file. + +| ID | Method | Description | +| ------------------- | ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| clustering | Clustering | Clustering is a classic data mining technique based on machine learning that divides ​groups of abstract objects into classes of similar objects. Clustering helps to split data into several subsets. | +| denormalisation | Denormalisation | Denormalisation is a formal technique that increases data redundancy but can improve usability in some circumstances. Typically this refers to replacing reference codes or IDs with their actual value. The opposite of normalisation. | +| enhancement | Data enhancement | Enhancement is the process that expands existing data with data from other sources (enrichment). Here, additional data is added to close existing information gaps. | +| harmonisation | Data harmonisation | Data harmonisation is the process of bringing together your data of varying file formats, naming conventions, and columns, and transforming it into one cohesive data set. | +| normalisation | Normalisation | Normalisation is a formal technique that eliminates the data redundancy in a number of steps (= normal forms) by splitting the data according to fixed rules. The opposite of denormalisation. | +| merging | Merging | The merging of two or more datasets because they are fundamentally similar, or make more logical sense to a user when combined. | +| standardisation | Standardisation | Standardisation transforms data into a standard form - for example if the same information is represented slightly differently across different systems, you may wish to standardise those values so they match with other data products. Standardisation is also permissible as a cleaning method. | +| statistical-methods | Statstical methods | Statistics is the science and technique of collecting, processing, interpreting and presenting data based on rules of mathematics and the laws of logic. Statistical methods include regression, correlation, min, max, standard deviation, mean and clustering. | +| selection | Selection | Selection is when you choose to only provide a subset of your data - please clearly describe what is and isn't included, and your reasoning for this. | + +### Data with no transformations applied + +If your data has not undergone any transformation, we suggest you explicitly inform users of this by adding `type: none` for each of your tables to make this clear to users. + +## Considerations + +Carefully consider if transformations are enhancing the data product for general use, rather than for a single use case. + + + +## Suggesting changes + +If you wish to suggest additions or improvements to the cleansing types, please [follow our guidance](https://github.com/ministryofjustice/data-platform-products) on submitting a pull request. + +## Further reading + +[Index of documention for data product defintion](../README.md#defining-a-data-product) + +[Example data product](../_example/) diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/application/AdjudicationsQ32022.csv b/archive/data_product_examples/2023-05-example_prison_data_product/application/AdjudicationsQ32022.csv new file mode 100644 index 0000000..9274ffd --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/application/AdjudicationsQ32022.csv @@ -0,0 +1,22176 @@ +Date,Outcomes,Predominant function of establishment,Establishment,Adjudicator,Sex,Age group,Ethnicity,Religion,Offence,Detailed offence,Count +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,a Asian or Asian British,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Violence,Assault on any other person,1 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Frankland,Governor,M,50 - 59,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Full Sutton,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,d Other ethnic group,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,40 - 49,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,40 - 49,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Manchester,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Violence,Attempts: Commits any assault,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category A (High Security),Wakefield,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Wakefield,Independent adjudicator,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Whitemoor,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,e Buddhist,Violence,Assault on staff,2 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category A (High Security),Woodhill,Missing,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,30 - 39,f Not known,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Dovegate,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Dovegate,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Garth,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,2 +Q3,Dismissed,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category B,Garth,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Garth,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Garth,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Garth,Independent adjudicator,M,21 - 24,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Garth,Independent adjudicator,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Dismissed,Category B,Gartree,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category B,Gartree,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Gartree,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Gartree,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Gartree,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,a Asian or Asian British,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Gartree,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Category B,Gartree,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Gartree,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Gartree,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category B,Isle of Wight,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Violence,Assault on any other person,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,8 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,12 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,9 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,a Asian or Asian British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,15 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,50 - 59,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,7 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category B,Lowdham Grange,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category B,Lowdham Grange,Independent adjudicator,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category B,Lowdham Grange,Independent adjudicator,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category B,Lowdham Grange,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Dismissed,Category B,Rye Hill,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,60 - 69,e White,g Other religious groups,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category B,Rye Hill,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,3 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,d Other ethnic group,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Escape/Abscond,Attempts: Absconds/escapes,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Escape/Abscond,Attempts: Absconds/escapes,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Violence,Assault on any other person,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Governor,M,60 - 69,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,18 - 20,f Not known,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,5 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,4 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Dismissed,Category C,Berwyn,Governor,M,30 - 39,f Not known,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,f Jewish,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,50 - 59,e White,f Jewish,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Berwyn,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Berwyn,Independent adjudicator,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,3 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Attempts: Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Brixton,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Brixton,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Brixton,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Brixton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Dismissed,Category C,Brixton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Detains any person,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Buckley Hall,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Bure,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Dismissed,Category C,Bure,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Bure,Governor,M,50 - 59,e White,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Bure,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Channings Wood,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Channings Wood,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Channings Wood,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Channings Wood,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Category C,Coldingley,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Coldingley,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Coldingley,Independent adjudicator,M,21 - 24,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Coldingley,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Coldingley,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Coldingley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Dartmoor,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Dartmoor,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Dartmoor,Governor,M,60 - 69,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Dartmoor,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Dartmoor,Independent adjudicator,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Erlestoke,Independent adjudicator,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Erlestoke,Missing,M,30 - 39,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Featherstone,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Featherstone,Independent adjudicator,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Featherstone,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Featherstone,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Featherstone,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Featherstone,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Featherstone,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,21 - 24,f Not known,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Five Wells,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Five Wells,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Five Wells,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Five Wells,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Guys Marsh,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Highpoint,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Highpoint,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Hindley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Dismissed,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Violence,Assault on any other person,1 +Q3,Dismissed,Category C,Hindley,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Humber,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Humber,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Humber,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Humber,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Huntercombe,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Huntercombe,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,2 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Isis,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,50 - 59,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Lancaster Farms,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Detains any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lindholme,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Lindholme,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Lindholme,Missing,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Littlehey,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Littlehey,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Littlehey,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Littlehey,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Littlehey,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Littlehey,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Littlehey,Governor,M,70 and over,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Maidstone,Governor,M,60 - 69,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Attempts: Sell unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,25 - 29,e White,f Jewish,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,17 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Mount (The),Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Mount (The),Independent adjudicator,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Northumberland,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Governor,M,70 and over,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Oakwood,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Missing,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Oakwood,Missing,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Oakwood,Missing,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Oakwood,Missing,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Oakwood,Missing,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Onley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Onley,Governor,M,50 - 59,e White,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Onley,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Onley,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Onley,Independent adjudicator,M,30 - 39,e White,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Portland,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Portland,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Portland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Portland,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Portland,Independent adjudicator,M,18 - 20,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Portland,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Portland,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Portland,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Portland,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Portland,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Ranby,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Attempts: Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Attempts: Sell unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Attempts: Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Ranby,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Risley,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,10 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Violence,Detains any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Risley,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Risley,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Risley,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category C,Risley,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Risley,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Risley,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Risley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Risley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Risley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Rochester,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Rochester,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Rochester,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Rochester,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Rochester,Governor,M,50 - 59,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Rochester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Rochester,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Rochester,Governor,M,60 - 69,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Rochester,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stafford,Governor,M,21 - 24,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Stafford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Stafford,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stafford,Governor,M,30 - 39,f Not known,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Stafford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stafford,Governor,M,70 and over,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Stafford,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Stafford,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Stafford,Independent adjudicator,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Stafford,Independent adjudicator,M,50 - 59,e White,d Sikh,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Stafford,Independent adjudicator,M,70 and over,e White,a Christian,Violence,Assault on any other person,1 +Q3,Dismissed,Category C,Stocken,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Stocken,Governor,M,21 - 24,e White,j Not recorded,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Stocken,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stocken,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stocken,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Stoke Heath,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,d Sikh,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,2 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,The Verne,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,The Verne,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,The Verne,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,The Verne,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,The Verne,Governor,M,70 and over,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,The Verne,Independent adjudicator,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,The Verne,Independent adjudicator,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,The Verne,Independent adjudicator,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Usk,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Usk,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Usk,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Usk,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Usk,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Warren Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Warren Hill,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Warren Hill,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Warren Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Category C,Warren Hill,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Category C,Warren Hill,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Warren Hill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Warren Hill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Dismissed,Category C,Warren Hill,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Warren Hill,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Warren Hill,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,25 - 29,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wayland,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wayland,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Wayland,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Independent adjudicator,M,40 - 49,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wayland,Independent adjudicator,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Wayland,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,f Jewish,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,25 - 29,f Not known,a Christian,Other offences,Denies access,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Governor,M,40 - 49,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category C,Wealstun,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wealstun,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Wealstun,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wealstun,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category C,Whatton,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Whatton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Whatton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Category C,Whatton,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Governor,M,60 - 69,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Whatton,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Whatton,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category C,Whatton,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Category C,Wymott,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Category C,Wymott,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wymott,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category C,Wymott,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,h Other non-recognised,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Category C,Wymott,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Wymott,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Category C,Wymott,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category C,Wymott,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wymott,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category C,Wymott,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category C,Wymott,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Ford,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Grendon/Spring Hill,Independent adjudicator,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category D (Open),Hatfield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Hatfield,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Hatfield,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Haverigg,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Hollesley Bay,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,25 - 29,f Not known,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,25 - 29,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,40 - 49,f Not known,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Violence,Detains any person,1 +Q3,Dismissed,Category D (Open),Kirkham,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirkham,Independent adjudicator,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,30 - 39,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Leyhill,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Dismissed,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Dismissed,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),North Sea Camp,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Category D (Open),North Sea Camp,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),North Sea Camp,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Prescoed,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Prescoed,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Prescoed,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category D (Open),Sudbury,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,25 - 29,e White,a Christian,Escape/Abscond,Absconds/escapes,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,4 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Category D (Open),Thorn Cross,Missing,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Female,Askham Grange,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Askham Grange,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Askham Grange,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Askham Grange,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Askham Grange,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Askham Grange,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Askham Grange,Governor,F,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Fights with any person,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Governor,F,60 - 69,d Other ethnic group,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Bronzefield,Independent adjudicator,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Downview,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Female,Downview,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Downview,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Downview,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Female,Downview,Governor,F,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Female,Downview,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Downview,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Female,Downview,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Female,Downview,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Female,Downview,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,Downview,Governor,F,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Downview,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Downview,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Downview,Governor,F,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Female,Drake Hall,Governor,F,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,30 - 39,e White,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Drake Hall,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Drake Hall,Governor,F,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,East Sutton ParK,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Dismissed,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,50 - 59,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Female,Eastwood Park,Governor,F,60 - 69,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Female,Eastwood Park,Independent adjudicator,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Eastwood Park,Independent adjudicator,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Eastwood Park,Missing,F,30 - 39,e White,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Eastwood Park,Missing,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,18 - 20,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Dismissed,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Female,Foston Hall,Governor,F,60 - 69,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Female,Foston Hall,Independent adjudicator,F,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Foston Hall,Independent adjudicator,F,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Female,Foston Hall,Independent adjudicator,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Dismissed,Female,Foston Hall,Independent adjudicator,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Dismissed,Female,Foston Hall,Independent adjudicator,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Female,Foston Hall,Independent adjudicator,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Dismissed,Female,Foston Hall,Missing,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Female,Foston Hall,Missing,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,Foston Hall,Missing,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Low Newton,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Low Newton,Independent adjudicator,F,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,New Hall,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Female,New Hall,Governor,F,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Female,New Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,New Hall,Governor,F,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Peterborough Female,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Female,Send,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Send,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Female,Send,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Female,Send,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Send,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Female,Send,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Send,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Female,Send,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Send,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Send,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Send,Governor,F,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Send,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Send,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Female,Send,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Send,Governor,F,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,50 - 59,f Not known,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Female,Send,Governor,F,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Female,Styal,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Female,Styal,Governor,F,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Styal,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Female,Styal,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Female,Styal,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Female,Styal,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Altcourse,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Dismissed,Local,Altcourse,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Altcourse,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,a Asian or Asian British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Detains any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Altcourse,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Altcourse,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bedford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Bedford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bedford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Bedford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bedford,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Bedford,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bedford,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bedford,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bedford,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bedford,Independent adjudicator,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bedford,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bedford,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bedford,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bedford,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Birmingham,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Birmingham,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Birmingham,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Birmingham,Independent adjudicator,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Bristol,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Denies access,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,5 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,3 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bristol,Governor,M,50 - 59,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Attempts: Fails to comply with temporary release conditions,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Assault on any other person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Bullingdon,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,50 - 59,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,50 - 59,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Bullingdon,Independent adjudicator,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Bullingdon,Missing,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Bullingdon,Missing,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Cardiff,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Cardiff,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Cardiff,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Independent adjudicator,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Independent adjudicator,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Cardiff,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Violence,Assault on any other person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,4 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,25 - 29,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,c Hindu,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,9 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Dismissed,Local,Chelmsford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Local,Chelmsford,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Chelmsford,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,30 - 39,e White,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Chelmsford,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Chelmsford,Missing,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Doncaster,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,Doncaster,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,30 - 39,f Not known,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Doncaster,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Doncaster,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Durham,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Durham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Durham,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Durham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Durham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Durham,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Durham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Durham,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Durham,Independent adjudicator,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Elmley (Sheppey cluster),Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Exeter,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Exeter,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,a Asian or Asian British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Exeter,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Forest Bank,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Hewell,Governor,M,30 - 39,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Hewell,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,High Down,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Violence,Assault on staff,1 +Q3,Dismissed,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,d Other ethnic group,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,High Down,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,High Down,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,e White,f Jewish,Violence,Fights with any person,1 +Q3,Dismissed,Local,High Down,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,High Down,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,High Down,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Holme House,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Holme House,Missing,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Holme House,Missing,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Holme House,Missing,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Hull,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Hull,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Local,Hull,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Hull,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hull,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Local,Hull,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hull,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,d Other ethnic group,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Hull,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Hull,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Hull,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Hull,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Hull,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Leeds,Governor,M,30 - 39,f Not known,j Not recorded,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Violence,Detains any person,1 +Q3,Dismissed,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Leeds,Independent adjudicator,M,40 - 49,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Leicester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Leicester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Leicester,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Leicester,Governor,M,30 - 39,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Leicester,Governor,M,40 - 49,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Leicester,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leicester,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Leicester,Independent adjudicator,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Lewes,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lewes,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Lincoln,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Lincoln,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Lincoln,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Lincoln,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Dismissed,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,4 +Q3,Dismissed,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,4 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Liverpool,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Liverpool,Independent adjudicator,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Detains any person,1 +Q3,Dismissed,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Dismissed,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Norwich,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Norwich,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Norwich,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Norwich,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Nottingham,Governor,M,21 - 24,e White,g Other religious groups,Violence,Commits any assault,1 +Q3,Dismissed,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Nottingham,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Nottingham,Governor,M,50 - 59,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Nottingham,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,4 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,e White,b Muslim,Escape/Abscond,Absconds/escapes,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,f Not known,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,18 - 20,f Not known,a Christian,Violence,Assault on any other person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Pentonville,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,30 - 39,f Not known,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Pentonville,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Pentonville,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Pentonville,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Governor,M,50 - 59,f Not known,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Pentonville,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Dismissed,Local,Peterborough Male,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Dismissed,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Peterborough Male,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Peterborough Male,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Preston,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Preston,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Preston,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Preston,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Preston,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Preston,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Preston,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Preston,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Preston,Governor,M,40 - 49,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Preston,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Preston,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Preston,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Preston,Missing,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Swansea,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Dismissed,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Dismissed,Local,Thameside,Governor,M,25 - 29,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Thameside,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Thameside,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on any other person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on any other person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,d Other ethnic group,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on any other person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Wandsworth,Governor,M,50 - 59,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Winchester,Governor,M,18 - 20,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Winchester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Winchester,Governor,M,25 - 29,e White,j Not recorded,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Winchester,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Winchester,Governor,M,50 - 59,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Local,Winchester,Governor,M,50 - 59,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,j Not recorded,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on staff,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Violence,Fights with any person,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,f Jewish,Violence,Assault on staff,1 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,25 - 29,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Local,Wormwood Scrubs,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,a Asian or Asian British,c Hindu,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Alcohol related offence,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,4 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Dismissed,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Violence,Commits any assault,1 +Q3,Dismissed,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,4 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Takes improperly any article,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Violence,Commits any assault,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Violence,Commits any assault,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Cookham Wood,Independent adjudicator,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Werrington,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Escape/Abscond,Absconds/escapes,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Violence,Fights with any person,2 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,5 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Dismissed,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,40 - 49,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Belmarsh,Governor,M,50 - 59,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,40 - 49,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Frankland,Governor,M,60 - 69,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,7 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on staff,3 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,11 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Full Sutton,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,3 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,6 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Manchester,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Other offences,Denies access,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Not proceeded with,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,a Asian or Asian British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,30 - 39,f Not known,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Whitemoor,Missing,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on any other person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,f Jewish,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,19 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Assault on any other person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on any other person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,6 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,30 - 39,f Not known,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,30 - 39,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Dovegate,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Dovegate,Missing,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category B,Garth,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category B,Gartree,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,21 - 24,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,3 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,a Asian or Asian British,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Detains any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category B,Gartree,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Gartree,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,21 - 24,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,4 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,8 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,60 - 69,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Isle of Wight,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Isle of Wight,Independent adjudicator,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Isle of Wight,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Isle of Wight,Independent adjudicator,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Violence,Fights with any person,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,e White,g Other religious groups,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,f Jewish,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category B,Lowdham Grange,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category B,Parc,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Parc,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,25 - 29,d Other ethnic group,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,50 - 59,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,70 and over,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Rye Hill,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,4 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,4 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,4 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,f Not known,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Ashfield,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Ashfield,Governor,M,30 - 39,e White,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Ashfield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Ashfield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Ashfield,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,4 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Berwyn,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,40 - 49,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,50 - 59,e White,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Brixton,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Buckley Hall,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Bure,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,60 - 69,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,60 - 69,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Channings Wood,Governor,M,70 and over,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Channings Wood,Independent adjudicator,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Channings Wood,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Channings Wood,Independent adjudicator,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Channings Wood,Independent adjudicator,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,25 - 29,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Coldingley,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Coldingley,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Coldingley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Coldingley,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Dartmoor,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on any other person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,3 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,3 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Violence,Assault on any other person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Erlestoke,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Erlestoke,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Erlestoke,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category C,Erlestoke,Missing,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Featherstone,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Featherstone,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Featherstone,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Five Wells,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,5 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,5 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,h Other non-recognised,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Guys Marsh,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Guys Marsh,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Guys Marsh,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Guys Marsh,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,16 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,f Jewish,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,50 - 59,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Highpoint,Governor,M,50 - 59,e White,i No religion,Violence,Detains any person,1 +Q3,Not proceeded with,Category C,Highpoint,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,18 - 20,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Hindley,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Hindley,Independent adjudicator,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,25 - 29,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Huntercombe,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Attempts: Provokes,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,c Hindu,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,5 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,e White,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Lancaster Farms,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Lindholme,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Lindholme,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,a Asian or Asian British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,d Other ethnic group,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Maidstone,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Maidstone,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Maidstone,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Moorland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Morton Hall,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Morton Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,c Hindu,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Mount (The),Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Mount (The),Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Northumberland,Missing,M,30 - 39,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,5 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Oakwood,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Oakwood,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Missing,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Missing,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Oakwood,Missing,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Oakwood,Missing,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Oakwood,Missing,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Onley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Portland,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Portland,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Not proceeded with,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Ranby,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Ranby,Independent adjudicator,M,30 - 39,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Risley,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,f Jewish,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Rochester,Governor,M,50 - 59,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Stafford,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stafford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Stafford,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Stafford,Governor,M,60 - 69,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Stafford,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,2 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Violence,Detains any person,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,4 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,2 +Q3,Not proceeded with,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category C,Stocken,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Stocken,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stocken,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stocken,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Stoke Heath,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stoke Heath,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Stoke Heath,Independent adjudicator,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stoke Heath,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Stoke Heath,Independent adjudicator,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Stoke Heath,Independent adjudicator,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,3 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Swinfen Hall,Independent adjudicator,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,The Verne,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,The Verne,Independent adjudicator,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,40 - 49,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Usk,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Warren Hill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Warren Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Attempts: Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,f Jewish,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Category C,Wayland,Governor,M,40 - 49,f Not known,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,50 - 59,a Asian or Asian British,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category C,Wealstun,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category C,Whatton,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Category C,Whatton,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Category C,Whatton,Governor,M,60 - 69,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category C,Wymott,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category C,Wymott,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category C,Wymott,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Category D (Open),Ford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,e White,a Christian,Escape/Abscond,Absconds/escapes,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Grendon/Spring Hill,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Hatfield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Hatfield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Hatfield,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category D (Open),Hatfield,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Hatfield,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Haverigg,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,30 - 39,d Other ethnic group,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Kirkham,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Kirkham,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Kirklevington Grange,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,40 - 49,e White,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Leyhill,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),North Sea Camp,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Prescoed,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Prescoed,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category D (Open),Prescoed,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Prescoed,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Category D (Open),Prescoed,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Prescoed,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Sudbury,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Category D (Open),Thorn Cross,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Askham Grange,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Askham Grange,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Female,Askham Grange,Governor,F,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,3 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Bronzefield,Governor,F,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Downview,Governor,F,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Downview,Governor,F,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Downview,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Downview,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Downview,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Downview,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Female,Downview,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,40 - 49,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Drake Hall,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Eastwood Park,Governor,F,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Eastwood Park,Independent adjudicator,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Eastwood Park,Missing,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Foston Hall,Governor,F,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,8 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Not proceeded with,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Low Newton,Governor,F,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,3 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Peterborough Female,Governor,F,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Female,Send,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Send,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Female,Send,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Send,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Send,Independent adjudicator,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,18 - 20,e White,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Female,Styal,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Female,Styal,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Styal,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Styal,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Female,Styal,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Female,Styal,Governor,F,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Styal,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Alcohol related offence,2 +Q3,Not proceeded with,Female,Styal,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Female,Styal,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Female,Styal,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Female,Styal,Missing,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,40 - 49,a Asian or Asian British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Altcourse,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Altcourse,Missing,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,f Not known,b Muslim,Other offences,Attempts: Absent from where he should be/Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,21 - 24,f Not known,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Attempts: Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,3 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,3 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Bedford,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bedford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Birmingham,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Birmingham,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,e White,g Other religious groups,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Attempts: Absent from where he should be/Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,a Asian or Asian British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,2 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,50 - 59,e White,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Bullingdon,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Bullingdon,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Bullingdon,Missing,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,g Other religious groups,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Cardiff,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Cardiff,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Cardiff,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Not proceeded with,Local,Cardiff,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,25 - 29,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Chelmsford,Governor,M,60 - 69,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Chelmsford,Missing,M,60 - 69,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,7 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Doncaster,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,60 - 69,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Doncaster,Governor,M,60 - 69,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Durham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Durham,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Durham,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,2 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Not proceeded with,Local,Durham,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Durham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Durham,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Durham,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Durham,Governor,M,60 - 69,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Durham,Missing,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,e Buddhist,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Elmley (Sheppey cluster),Governor,M,60 - 69,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,a Asian or Asian British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,a Asian or Asian British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Exeter,Independent adjudicator,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,4 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,21 - 24,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,4 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,50 - 59,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,14 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Hewell,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,High Down,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,High Down,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,High Down,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,High Down,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,High Down,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,3 +Q3,Not proceeded with,Local,High Down,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,High Down,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,High Down,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Not proceeded with,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Holme House,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Holme House,Missing,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,f Not known,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,f Not known,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Hull,Governor,M,18 - 20,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Hull,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Hull,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Hull,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hull,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Hull,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hull,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Hull,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Hull,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Hull,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Hull,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Hull,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Hull,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Local,Hull,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Hull,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Hull,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Hull,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,25 - 29,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,d Other ethnic group,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,d Other ethnic group,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,d Other ethnic group,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,30 - 39,f Not known,j Not recorded,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leeds,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leeds,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Leeds,Missing,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,25 - 29,f Not known,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Leicester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Leicester,Governor,M,40 - 49,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Leicester,Independent adjudicator,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Leicester,Independent adjudicator,M,40 - 49,e White,f Jewish,Violence,Detains any person,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lewes,Governor,M,50 - 59,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,18 - 20,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Norwich,Governor,M,50 - 59,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Norwich,Independent adjudicator,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Norwich,Missing,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,j Not recorded,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,d Sikh,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,30 - 39,e White,f Jewish,Violence,Commits any assault,2 +Q3,Not proceeded with,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Nottingham,Governor,M,50 - 59,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,3 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Peterborough Male,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Not proceeded with,Local,Preston,Governor,M,18 - 20,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Preston,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Preston,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Preston,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Preston,Governor,M,18 - 20,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Preston,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Preston,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Preston,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Preston,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Preston,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Preston,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Preston,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Preston,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Preston,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Preston,Independent adjudicator,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Swansea,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,4 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Thameside,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,18 - 20,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,d Other ethnic group,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,4 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Attempts: Absent from where he should be/Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,30 - 39,f Not known,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wandsworth,Governor,M,60 - 69,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Not proceeded with,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Winchester,Governor,M,25 - 29,e White,j Not recorded,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Not proceeded with,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Winchester,Governor,M,50 - 59,e White,i No religion,Violence,Assault on any other person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,j Not recorded,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,j Not recorded,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,f Not known,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,30 - 39,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Not proceeded with,Local,Wormwood Scrubs,Independent adjudicator,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,5 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,4 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Brinsford,Missing,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Attempts: Drug related offence,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Detains any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,4 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,12 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,5 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Detains any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Cookham Wood,Missing,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Not proceeded with,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Youth Justice Board,Werrington,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences,Denies access,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Violence,Fights with any person,3 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Assault on staff,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Independent adjudicator,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Not proceeded with,Youth Justice Board,Wetherby,Missing,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,21 - 24,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Frankland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category A (High Security),Long Lartin,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Violence,Assault on staff,2 +Q3,Other,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Category A (High Security),Wakefield,Governor,M,60 - 69,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,g Other religious groups,Violence,Assault on staff,4 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,3 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category A (High Security),Woodhill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on any other person,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category B,Dovegate,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category B,Dovegate,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Category B,Garth,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Other,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,4 +Q3,Other,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Garth,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Garth,Independent adjudicator,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Category B,Gartree,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category B,Gartree,Missing,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category B,Isle of Wight,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category B,Isle of Wight,Governor,M,50 - 59,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category B,Lowdham Grange,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Other,Category C,Ashfield,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Ashfield,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Other,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Other,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Brixton,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Other,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Other,Category C,Brixton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Other,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Bure,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Category C,Coldingley,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Other,Category C,Erlestoke,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,2 +Q3,Other,Category C,Erlestoke,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Featherstone,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,3 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Other,Category C,Five Wells,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,3 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Other,Category C,Five Wells,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Guys Marsh,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Highpoint,Governor,M,30 - 39,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Hindley,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Other,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,2 +Q3,Other,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Humber,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Huntercombe,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Other,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Morton Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Morton Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Morton Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Morton Hall,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Other,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Oakwood,Missing,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Other,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Other,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Portland,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Other,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Ranby,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Risley,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Category C,Stafford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Stafford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Stocken,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Other,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,6 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,d Other ethnic group,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,4 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,18 - 20,f Not known,a Christian,Violence,Commits any assault,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,4 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Violence,Detains any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Swinfen Hall,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Category C,The Verne,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,The Verne,Governor,M,40 - 49,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category C,The Verne,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category C,The Verne,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category C,The Verne,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,The Verne,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,The Verne,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,The Verne,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,The Verne,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category C,The Verne,Governor,M,60 - 69,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Category C,The Verne,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,The Verne,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,The Verne,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category C,The Verne,Independent adjudicator,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Category C,Usk,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category C,Usk,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Usk,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Category C,Usk,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Category C,Usk,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Category D (Open),Ford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),Ford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category D (Open),Ford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),Ford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category D (Open),Ford,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Other,Category D (Open),Ford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),Ford,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Other,Category D (Open),Grendon/Spring Hill,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category D (Open),Grendon/Spring Hill,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category D (Open),Haverigg,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Category D (Open),Leyhill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Category D (Open),North Sea Camp,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),North Sea Camp,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category D (Open),North Sea Camp,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Category D (Open),Thorn Cross,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,3 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Other,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Other,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,3 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,13 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,8 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,2 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,7 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Other,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Female,Bronzefield,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Bronzefield,Governor,F,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Other,Female,Bronzefield,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Other,Female,Bronzefield,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,Bronzefield,Governor,F,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Bronzefield,Governor,F,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,East Sutton ParK,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Other,Female,East Sutton ParK,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Female,East Sutton ParK,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Other,Female,East Sutton ParK,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Violence,Assault on staff,2 +Q3,Other,Female,Foston Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Other,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Attempts: Fails to comply with temporary release conditions,1 +Q3,Other,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,14 +Q3,Other,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Other,Female,Foston Hall,Independent adjudicator,F,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Female,Foston Hall,Missing,F,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,2 +Q3,Other,Female,Styal,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Other,Female,Styal,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Female,Styal,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Female,Styal,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Altcourse,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Bedford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Other,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Violence,Detains any person,1 +Q3,Other,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Local,Bedford,Governor,M,30 - 39,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Local,Bedford,Independent adjudicator,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,1 +Q3,Other,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Other,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,2 +Q3,Other,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on any other person,1 +Q3,Other,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Sell unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Bristol,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Other,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Other,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Assault on any other person,1 +Q3,Other,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Bullingdon,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Other,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Chelmsford,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Chelmsford,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,2 +Q3,Other,Local,Chelmsford,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Other,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Doncaster,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Durham,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Local,Durham,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Durham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Durham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,3 +Q3,Other,Local,Durham,Governor,M,50 - 59,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Durham,Governor,M,70 and over,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Local,Hewell,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Hewell,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Other,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,3 +Q3,Other,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Other,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,High Down,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Local,High Down,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Hull,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Other,Local,Leeds,Governor,M,40 - 49,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,2 +Q3,Other,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Lewes,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Lewes,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Lewes,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Lewes,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Lincoln,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Nottingham,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Violence,Commits any assault,2 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Detains any person,1 +Q3,Other,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Other,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Nottingham,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,18 - 20,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Local,Pentonville,Governor,M,21 - 24,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,6 +Q3,Other,Local,Pentonville,Governor,M,25 - 29,f Not known,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,30 - 39,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Pentonville,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Pentonville,Governor,M,50 - 59,f Not known,g Other religious groups,Violence,Commits any assault,1 +Q3,Other,Local,Pentonville,Independent adjudicator,M,25 - 29,f Not known,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Thameside,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Other,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Other,Local,Thameside,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Other,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,2 +Q3,Other,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Local,Thameside,Governor,M,21 - 24,f Not known,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Local,Thameside,Governor,M,21 - 24,f Not known,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Thameside,Governor,M,25 - 29,a Asian or Asian British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,5 +Q3,Other,Local,Thameside,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Thameside,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Other,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Fights with any person,1 +Q3,Other,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,2 +Q3,Other,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Other,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Other,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Other,Local,Winchester,Governor,M,30 - 39,f Not known,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Winchester,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,a Christian,Violence,Assault on staff,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,2 +Q3,Other,Local,Wormwood Scrubs,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Other,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Other,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Other,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,5 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,9 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,12 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,5 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,7 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,18 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,24 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,6 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,10 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,11 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Fights with any person,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,8 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Fails/refuses to work,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,3 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,5 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,4 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,f Not known,a Christian,Violence,Assault on a prisoner,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,f Not known,a Christian,Violence,Commits any assault,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Other,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,3 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,3 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Violence,Assault on staff,1 +Q3,Other,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Other,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,f Jewish,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,d Other ethnic group,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,d Other ethnic group,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,d Other ethnic group,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,d Other ethnic group,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,d Other ethnic group,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,d Other ethnic group,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Belmarsh,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Assault on staff,5 +Q3,Proved,Category A (High Security),Frankland,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,h Other non-recognised,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Frankland,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,60 - 69,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Frankland,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category A (High Security),Frankland,Missing,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,11 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,a Asian or Asian British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,11 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,f Jewish,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,60 - 69,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Full Sutton,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Full Sutton,Independent adjudicator,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Full Sutton,Independent adjudicator,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,a Asian or Asian British,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Attempts: Takes improperly any article,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Long Lartin,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,14 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,23 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,10 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,g Other religious groups,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Manchester,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Manchester,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Manchester,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Manchester,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Manchester,Missing,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,a Asian or Asian British,c Hindu,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,f Jewish,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,60 - 69,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Wakefield,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Wakefield,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Wakefield,Independent adjudicator,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,a Asian or Asian British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,f Not known,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,30 - 39,f Not known,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Detains any person,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,50 - 59,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,60 - 69,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Whitemoor,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Whitemoor,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Whitemoor,Missing,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Whitemoor,Missing,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,g Other religious groups,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,30 - 39,f Not known,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,7 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category A (High Security),Woodhill,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category A (High Security),Woodhill,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category A (High Security),Woodhill,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,4 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,3 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category B,Dovegate,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,5 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,8 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,19 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,30 - 39,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Dovegate,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Dovegate,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Dovegate,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Dovegate,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Dovegate,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Dovegate,Governor,M,60 - 69,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Garth,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category B,Garth,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Garth,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Garth,Governor,M,60 - 69,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Garth,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Garth,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Garth,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Gartree,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category B,Gartree,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,18 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Gartree,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,a Christian,Violence,Detains any person,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Gartree,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Gartree,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Gartree,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Gartree,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Gartree,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Gartree,Governor,M,60 - 69,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Gartree,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Gartree,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,e White,f Jewish,Violence,Fights with any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,16 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,3 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,7 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on any other person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,4 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,50 - 59,f Not known,a Christian,Other offences,Denies access,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Isle of Wight,Independent adjudicator,M,30 - 39,e White,b Muslim,Violence,Assault on staff,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,a Asian or Asian British,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Detains any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category B,Lowdham Grange,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Lowdham Grange,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Lowdham Grange,Independent adjudicator,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Lowdham Grange,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Parc,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Parc,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Parc,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,a Asian or Asian British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,7 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Category B,Parc,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Parc,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category B,Parc,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Parc,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Parc,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Parc,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Rye Hill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Rye Hill,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category B,Rye Hill,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Rye Hill,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category B,Rye Hill,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category B,Rye Hill,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Rye Hill,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Rye Hill,Governor,M,60 - 69,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Rye Hill,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category B,Rye Hill,Governor,M,70 and over,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,10 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,d Other ethnic group,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,a Asian or Asian British,d Sikh,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,7 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,10 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,30 - 39,f Not known,c Hindu,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,40 - 49,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Attempts: Is disrespectful,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Violence,Assault on staff,3 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,50 - 59,e White,f Jewish,Other offences, Endangers health/safety of any person,9 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,60 - 69,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Governor,M,60 - 69,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category B,Swaleside (Sheppey Cluster),Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ashfield,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Ashfield,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ashfield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ashfield,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ashfield,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ashfield,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ashfield,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Category C,Berwyn,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Detains any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,9 +Q3,Proved,Category C,Berwyn,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,9 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,4 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,26 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Berwyn,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,16 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,9 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,14 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,3 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Berwyn,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Berwyn,Governor,M,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Berwyn,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Brixton,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Attempts: Disobeys any rule or regulation,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,d Other ethnic group,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Brixton,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,a Asian or Asian British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,a Asian or Asian British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Brixton,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Brixton,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,70 and over,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Brixton,Governor,M,70 and over,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Buckley Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Buckley Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,15 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Buckley Hall,Governor,M,40 - 49,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Buckley Hall,Governor,M,60 - 69,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Buckley Hall,Missing,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Bure,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Bure,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Bure,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Bure,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Bure,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Bure,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Bure,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Bure,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,a Asian or Asian British,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Bure,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Bure,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Bure,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Bure,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Bure,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Bure,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Bure,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Bure,Missing,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Bure,Missing,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Channings Wood,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Channings Wood,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Channings Wood,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Channings Wood,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Channings Wood,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Channings Wood,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Channings Wood,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Governor,M,50 - 59,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Channings Wood,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Channings Wood,Governor,M,60 - 69,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Channings Wood,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Channings Wood,Missing,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Channings Wood,Missing,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Coldingley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Coldingley,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Coldingley,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Coldingley,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Governor,M,60 - 69,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Coldingley,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Dartmoor,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Dartmoor,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Dartmoor,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Dartmoor,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Dartmoor,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Dartmoor,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Dartmoor,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Dartmoor,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Dartmoor,Governor,M,50 - 59,a Asian or Asian British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Dartmoor,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,3 +Q3,Proved,Category C,Dartmoor,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Dartmoor,Governor,M,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Dartmoor,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Dartmoor,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Dartmoor,Independent adjudicator,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Erlestoke,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Sell unauthorised articles,3 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Erlestoke,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Erlestoke,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Erlestoke,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Independent adjudicator,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Erlestoke,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Erlestoke,Independent adjudicator,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Erlestoke,Independent adjudicator,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Erlestoke,Missing,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Featherstone,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Featherstone,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Fails/refuses to work,3 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Featherstone,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Featherstone,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,f Not known,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,f Not known,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,21 - 24,f Not known,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Five Wells,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,4 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Five Wells,Governor,M,30 - 39,f Not known,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,c Hindu,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Five Wells,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Five Wells,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Five Wells,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Five Wells,Independent adjudicator,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Five Wells,Missing,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,d Other ethnic group,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,d Other ethnic group,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,21 - 24,f Not known,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Guys Marsh,Governor,M,25 - 29,f Not known,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,f Jewish,Violence,Assault on staff,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Guys Marsh,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Guys Marsh,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,25 - 29,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Guys Marsh,Independent adjudicator,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,17 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,4 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Category C,Highpoint,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,17 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,f Not known,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Highpoint,Governor,M,30 - 39,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Highpoint,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Highpoint,Governor,M,50 - 59,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Highpoint,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Highpoint,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Highpoint,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,11 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Hindley,Governor,M,18 - 20,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,10 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Hindley,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Hindley,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Hindley,Governor,M,40 - 49,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Hindley,Governor,M,60 - 69,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Hindley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Humber,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Humber,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,a Asian or Asian British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,a Asian or Asian British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Humber,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Humber,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Humber,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Humber,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Humber,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Humber,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Humber,Governor,M,50 - 59,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Humber,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,a Asian or Asian British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Violence,Assault on staff,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,a Asian or Asian British,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Huntercombe,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Huntercombe,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Huntercombe,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Huntercombe,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,a Asian or Asian British,c Hindu,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,5 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,18 - 20,f Not known,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,c Hindu,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,c Hindu,Violence,Assault on any other person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,a Asian or Asian British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,4 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,7 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,7 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on any other person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,d Other ethnic group,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,13 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,5 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Isis,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,c Hindu,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,f Not known,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Isis,Governor,M,25 - 29,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Category C,Isis,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Isis,Independent adjudicator,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Isis,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,14 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,15 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lancaster Farms,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lancaster Farms,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,10 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Lindholme,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,4 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,8 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,12 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Lindholme,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,11 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,25 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Lindholme,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Lindholme,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Lindholme,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Lindholme,Governor,M,60 - 69,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Lindholme,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Lindholme,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Littlehey,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Littlehey,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Other offences,Denies access,2 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Littlehey,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Takes improperly any article,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,e Buddhist,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Littlehey,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Littlehey,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Governor,M,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Littlehey,Governor,M,60 - 69,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Littlehey,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Littlehey,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Littlehey,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Littlehey,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Littlehey,Independent adjudicator,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,25 - 29,f Not known,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Maidstone,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Maidstone,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Maidstone,Governor,M,40 - 49,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Maidstone,Governor,M,40 - 49,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Maidstone,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Maidstone,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Maidstone,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Maidstone,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Maidstone,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Maidstone,Independent adjudicator,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,6 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Moorland,Governor,M,18 - 20,f Not known,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Attempts: Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,6 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,3 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,6 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Moorland,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Attempts: Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Moorland,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Moorland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Moorland,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Moorland,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Moorland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Moorland,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Moorland,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Moorland,Governor,M,60 - 69,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Moorland,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Moorland,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Moorland,Independent adjudicator,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Morton Hall,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Morton Hall,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Morton Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Morton Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Morton Hall,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Morton Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Morton Hall,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Morton Hall,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Morton Hall,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Morton Hall,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,a Asian or Asian British,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Mount (The),Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Mount (The),Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,a Asian or Asian British,j Not recorded,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,19 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Proved,Category C,Mount (The),Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Mount (The),Governor,M,40 - 49,e White,j Not recorded,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Mount (The),Governor,M,60 - 69,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Mount (The),Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Mount (The),Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Mount (The),Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Mount (The),Independent adjudicator,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Mount (The),Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Mount (The),Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,5 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,f Not known,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Northumberland,Governor,M,25 - 29,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,18 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,11 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,24 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Northumberland,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Northumberland,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Northumberland,Governor,M,50 - 59,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Northumberland,Governor,M,50 - 59,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Northumberland,Governor,M,50 - 59,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Northumberland,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Northumberland,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Northumberland,Missing,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,4 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Oakwood,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,3 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Violence,Detains any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,10 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Oakwood,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,26 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,7 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,9 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,16 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Category C,Oakwood,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,10 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,40 - 49,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Governor,M,60 - 69,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Oakwood,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Missing,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Oakwood,Missing,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Oakwood,Missing,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Missing,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Oakwood,Missing,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Oakwood,Missing,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Oakwood,Missing,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Oakwood,Missing,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Other offences,Denies access,3 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Onley,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,d Other ethnic group,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,d Other ethnic group,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Onley,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Onley,Governor,M,50 - 59,e White,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Governor,M,50 - 59,e White,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Onley,Governor,M,60 - 69,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Onley,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Onley,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Onley,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Portland,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Portland,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Portland,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Portland,Governor,M,60 - 69,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,18 - 20,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Portland,Independent adjudicator,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,4 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Ranby,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,e Buddhist,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,e Buddhist,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,e Buddhist,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Attempts: Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Ranby,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Ranby,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Ranby,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Ranby,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Risley,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Risley,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,d Other ethnic group,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Risley,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Risley,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Risley,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Risley,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Risley,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Risley,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Risley,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Risley,Independent adjudicator,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Violence,Detains any person,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,18 - 20,f Not known,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,4 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Rochester,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Rochester,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,15 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,10 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,13 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,9 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Rochester,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Rochester,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Rochester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Rochester,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Rochester,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Rochester,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Rochester,Governor,M,60 - 69,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Rochester,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Rochester,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stafford,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Stafford,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stafford,Governor,M,21 - 24,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Category C,Stafford,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stafford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stafford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stafford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Stafford,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stafford,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,5 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stafford,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Stafford,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stafford,Governor,M,50 - 59,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Stafford,Governor,M,60 - 69,e White,b Muslim,Disobedience/disrespect,Attempts: Disobeys any lawful order,1 +Q3,Proved,Category C,Stafford,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stafford,Governor,M,70 and over,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Stafford,Independent adjudicator,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stocken,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Violence,Detains any person,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,25 - 29,f Not known,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Stocken,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Stocken,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stocken,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stocken,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stocken,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stocken,Governor,M,60 - 69,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Stocken,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Independent adjudicator,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stocken,Independent adjudicator,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Stocken,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stocken,Independent adjudicator,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stocken,Independent adjudicator,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Detains any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Other offences,Denies access,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Violence,Detains any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Stoke Heath,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Stoke Heath,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Stoke Heath,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,a Asian or Asian British,d Sikh,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Sell unauthorised articles,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,9 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,18 - 20,f Not known,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,7 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Swinfen Hall,Independent adjudicator,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Independent adjudicator,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Swinfen Hall,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Swinfen Hall,Independent adjudicator,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,The Verne,Governor,M,25 - 29,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,The Verne,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,The Verne,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,The Verne,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,The Verne,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,The Verne,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,The Verne,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,The Verne,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,The Verne,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Usk,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Usk,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Usk,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Usk,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Usk,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Usk,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Usk,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Usk,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Usk,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Usk,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Usk,Governor,M,70 and over,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Warren Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Warren Hill,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Warren Hill,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Warren Hill,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Warren Hill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Warren Hill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Warren Hill,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Warren Hill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Warren Hill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Warren Hill,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Warren Hill,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Warren Hill,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wayland,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Attempts: Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wayland,Governor,M,25 - 29,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,3 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,12 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,7 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,20 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Wayland,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,12 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,f Not known,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,40 - 49,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Wayland,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wayland,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wayland,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Independent adjudicator,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wayland,Independent adjudicator,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wayland,Missing,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,e Buddhist,Other offences,Denies access,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Wealstun,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Category C,Wealstun,Governor,M,40 - 49,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Independent adjudicator,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wealstun,Independent adjudicator,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wealstun,Independent adjudicator,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wealstun,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wealstun,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category C,Wealstun,Missing,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wealstun,Missing,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wealstun,Missing,M,40 - 49,f Not known,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Whatton,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Whatton,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Whatton,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,2 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Whatton,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Whatton,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category C,Whatton,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Whatton,Governor,M,60 - 69,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Whatton,Governor,M,60 - 69,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wymott,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,f Not known,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wymott,Governor,M,21 - 24,f Not known,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category C,Wymott,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Attempts: Disobeys any lawful order,1 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category C,Wymott,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category C,Wymott,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category C,Wymott,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category C,Wymott,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category C,Wymott,Independent adjudicator,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category C,Wymott,Independent adjudicator,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Category C,Wymott,Independent adjudicator,M,30 - 39,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category D (Open),Ford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,a Asian or Asian British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category D (Open),Ford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,4 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,2 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Ford,Governor,M,30 - 39,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Ford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Ford,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Ford,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Ford,Independent adjudicator,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Ford,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Grendon/Spring Hill,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Proved,Category D (Open),Hatfield,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Proved,Category D (Open),Hatfield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Hatfield,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Hatfield,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,50 - 59,a Asian or Asian British,d Sikh,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hatfield,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Haverigg,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Haverigg,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,60 - 69,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Haverigg,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,d Other ethnic group,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,a Asian or Asian British,c Hindu,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,d Other ethnic group,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Hollesley Bay,Governor,M,70 and over,e White,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category D (Open),Kirkham,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Category D (Open),Kirkham,Governor,M,25 - 29,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Category D (Open),Kirkham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category D (Open),Kirkham,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Kirkham,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirkham,Independent adjudicator,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirkham,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Kirklevington Grange,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,a Asian or Asian British,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,60 - 69,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Leyhill,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Leyhill,Governor,M,70 and over,f Not known,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),North Sea Camp,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Alcohol related offence,2 +Q3,Proved,Category D (Open),Prescoed,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Prescoed,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Category D (Open),Prescoed,Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,a Asian or Asian British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,f Not known,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,30 - 39,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Escape/Abscond,Absconds/escapes,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,3 +Q3,Proved,Category D (Open),Standford Hill (Sheppey cluster),Governor,M,60 - 69,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Sudbury,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,40 - 49,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Sudbury,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Sudbury,Independent adjudicator,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Independent adjudicator,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Sudbury,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,25 - 29,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,2 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Category D (Open),Thorn Cross,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Askham Grange,Governor,F,25 - 29,a Asian or Asian British,c Hindu,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Askham Grange,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Askham Grange,Governor,F,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Askham Grange,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Askham Grange,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Askham Grange,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Askham Grange,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Askham Grange,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Askham Grange,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Askham Grange,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Askham Grange,Governor,F,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Female,Askham Grange,Governor,F,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Bronzefield,Governor,F,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Bronzefield,Governor,F,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,Bronzefield,Governor,F,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,Bronzefield,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Bronzefield,Independent adjudicator,F,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Female,Bronzefield,Missing,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Downview,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Downview,Governor,F,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Downview,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Downview,Governor,F,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Downview,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Downview,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Downview,Governor,F,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Downview,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Downview,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Female,Downview,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,a Christian,Violence,Assault on any other person,2 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Downview,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Downview,Governor,F,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Downview,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Female,Downview,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Drake Hall,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Female,Drake Hall,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Drake Hall,Governor,F,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,21 - 24,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,8 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,7 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Drake Hall,Governor,F,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,13 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,13 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,7 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,c Hindu,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,f Not known,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,30 - 39,f Not known,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Drake Hall,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Drake Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Female,Drake Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Drake Hall,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Drake Hall,Governor,F,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Female,East Sutton ParK,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,East Sutton ParK,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,East Sutton ParK,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,East Sutton ParK,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,East Sutton ParK,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,East Sutton ParK,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,East Sutton ParK,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,East Sutton ParK,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Eastwood Park,Governor,F,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Female,Eastwood Park,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Eastwood Park,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Violence,Assault on staff,4 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Female,Eastwood Park,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Eastwood Park,Governor,F,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Eastwood Park,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Eastwood Park,Governor,F,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Eastwood Park,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Governor,F,50 - 59,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Eastwood Park,Governor,F,50 - 59,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Female,Eastwood Park,Governor,F,50 - 59,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Female,Eastwood Park,Governor,F,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Eastwood Park,Governor,F,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Eastwood Park,Independent adjudicator,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Eastwood Park,Missing,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Eastwood Park,Missing,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Eastwood Park,Missing,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Foston Hall,Governor,F,18 - 20,a Asian or Asian British,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Foston Hall,Governor,F,18 - 20,a Asian or Asian British,c Hindu,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Foston Hall,Governor,F,18 - 20,a Asian or Asian British,c Hindu,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Foston Hall,Governor,F,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Female,Foston Hall,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Foston Hall,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,f Jewish,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,f Jewish,Violence,Fights with any person,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Foston Hall,Governor,F,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Foston Hall,Governor,F,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Foston Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Foston Hall,Governor,F,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Foston Hall,Governor,F,70 and over,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Foston Hall,Independent adjudicator,F,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Foston Hall,Independent adjudicator,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Foston Hall,Missing,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Low Newton,Governor,F,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Low Newton,Governor,F,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Low Newton,Governor,F,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Low Newton,Governor,F,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Low Newton,Governor,F,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Low Newton,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,d Other ethnic group,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Low Newton,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Low Newton,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Violence,Detains any person,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Low Newton,Governor,F,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Low Newton,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Low Newton,Governor,F,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,New Hall,Governor,F,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,New Hall,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Female,New Hall,Governor,F,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,6 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,7 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,2 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,New Hall,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Female,New Hall,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,e Buddhist,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,New Hall,Governor,F,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,New Hall,Independent adjudicator,F,30 - 39,e White,b Muslim,Escape/Abscond,Absconds/escapes,1 +Q3,Proved,Female,Peterborough Female,Governor,F,18 - 20,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,14 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,10 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,Peterborough Female,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Peterborough Female,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Female,Peterborough Female,Governor,F,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,c Hindu,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,c Hindu,Violence,Assault on staff,2 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Peterborough Female,Governor,F,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Peterborough Female,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Peterborough Female,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Peterborough Female,Governor,F,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Peterborough Female,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Peterborough Female,Governor,F,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Female,Send,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Female,Send,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Female,Send,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Female,Send,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Send,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Send,Governor,F,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Female,Send,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Send,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Female,Send,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Send,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Send,Governor,F,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Send,Governor,F,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Violence,Assault on staff,5 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,3 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,e Buddhist,Violence,Assault on staff,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,e Buddhist,Violence,Commits any assault,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Female,Styal,Governor,F,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,3 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Female,Styal,Governor,F,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Female,Styal,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Female,Styal,Governor,F,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Female,Styal,Governor,F,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Female,Styal,Governor,F,70 and over,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Female,Styal,Independent adjudicator,F,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Altcourse,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,21 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,8 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Local,Altcourse,Governor,M,30 - 39,f Not known,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,8 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Altcourse,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Altcourse,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Altcourse,Independent adjudicator,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Altcourse,Missing,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Detains any person,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,7 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,f Not known,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,f Not known,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,f Not known,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Bedford,Governor,M,18 - 20,f Not known,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,21 - 24,f Not known,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,f Not known,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,f Not known,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,25 - 29,f Not known,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,6 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,f Not known,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bedford,Governor,M,30 - 39,f Not known,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bedford,Governor,M,40 - 49,f Not known,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Bedford,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bedford,Governor,M,50 - 59,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bedford,Independent adjudicator,M,21 - 24,a Asian or Asian British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bedford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bedford,Independent adjudicator,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,a Asian or Asian British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Local,Birmingham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,3 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,a Asian or Asian British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,f Jewish,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Birmingham,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,4 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Birmingham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Governor,M,50 - 59,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Birmingham,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Birmingham,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Birmingham,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Birmingham,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Birmingham,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Birmingham,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Birmingham,Missing,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Bristol,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Attempts: Endangers health/safety of any person,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,4 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,a Asian or Asian British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Bristol,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bristol,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bristol,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bristol,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bristol,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bristol,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bristol,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bristol,Independent adjudicator,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bullingdon,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,a Asian or Asian British,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,d Other ethnic group,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,4 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on any other person,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,10 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Local,Bullingdon,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,d Other ethnic group,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,20 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,14 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,12 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Bullingdon,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,21 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,f Jewish,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,f Jewish,Violence,Assault on any other person,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,f Jewish,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Bullingdon,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,c Hindu,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Governor,M,50 - 59,f Not known,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Bullingdon,Governor,M,60 - 69,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Bullingdon,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Independent adjudicator,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Bullingdon,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Bullingdon,Independent adjudicator,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Bullingdon,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Independent adjudicator,M,40 - 49,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Bullingdon,Missing,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Bullingdon,Missing,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Bullingdon,Missing,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Bullingdon,Missing,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,g Other religious groups,Violence,Fights with any person,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Cardiff,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Cardiff,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Cardiff,Governor,M,40 - 49,f Not known,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Cardiff,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Cardiff,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Cardiff,Independent adjudicator,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Cardiff,Independent adjudicator,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Cardiff,Independent adjudicator,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Cardiff,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,18 - 20,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,21 - 24,f Not known,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Chelmsford,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on any other person,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Chelmsford,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Chelmsford,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Chelmsford,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Chelmsford,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Chelmsford,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Governor,M,50 - 59,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Chelmsford,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Chelmsford,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,2 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Chelmsford,Missing,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,a Asian or Asian British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Attempts: Assault on any other person,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Doncaster,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Doncaster,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Doncaster,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Detains any person,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Doncaster,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Doncaster,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Doncaster,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Doncaster,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Local,Doncaster,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Doncaster,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Doncaster,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Durham,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Durham,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Durham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,13 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Durham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Durham,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Durham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,2 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Governor,M,50 - 59,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Durham,Governor,M,50 - 59,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Durham,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Durham,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Detains any person,1 +Q3,Proved,Local,Durham,Independent adjudicator,M,30 - 39,e White,a Christian,Escape/Abscond,Absconds/escapes,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,d Other ethnic group,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,5 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Assault on staff,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,17 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,8 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Violence,Detains any person,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Elmley (Sheppey cluster),Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Exeter,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Exeter,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,10 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,6 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Exeter,Governor,M,25 - 29,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,10 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,9 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,f Not known,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Governor,M,30 - 39,f Not known,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,4 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Exeter,Governor,M,40 - 49,f Not known,j Not recorded,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,30 - 39,f Not known,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Exeter,Independent adjudicator,M,50 - 59,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,a Asian or Asian British,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,5 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,12 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,9 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,9 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,3 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,6 +Q3,Proved,Local,Forest Bank,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,13 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Forest Bank,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,13 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,10 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,8 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Forest Bank,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,14 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,14 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,9 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,12 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Forest Bank,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Forest Bank,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Forest Bank,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Forest Bank,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Forest Bank,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Hewell,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Hewell,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,12 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Assault on any other person,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Hewell,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hewell,Governor,M,60 - 69,a Asian or Asian British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hewell,Governor,M,60 - 69,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,High Down,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,High Down,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,High Down,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,High Down,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,High Down,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,d Other ethnic group,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,11 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,High Down,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,High Down,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,High Down,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,High Down,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,High Down,Governor,M,50 - 59,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,High Down,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,High Down,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,High Down,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Holme House,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Holme House,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Holme House,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,17 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,8 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Holme House,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Holme House,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Independent adjudicator,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Holme House,Independent adjudicator,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Holme House,Independent adjudicator,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Holme House,Missing,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Missing,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Holme House,Missing,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Holme House,Missing,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Holme House,Missing,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Holme House,Missing,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,d Sikh,Violence,Fights with any person,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Hull,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,a Asian or Asian British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hull,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,d Other ethnic group,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,d Other ethnic group,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Hull,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Hull,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,3 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hull,Governor,M,25 - 29,e White,j Not recorded,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,19 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,2 +Q3,Proved,Local,Hull,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Hull,Governor,M,30 - 39,f Not known,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,e Buddhist,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Hull,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Hull,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Hull,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Hull,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Escape/Abscond,Absconds/escapes,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Leeds,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Leeds,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,4 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Leeds,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,a Asian or Asian British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Leeds,Governor,M,40 - 49,f Not known,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leeds,Governor,M,50 - 59,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Leeds,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leeds,Independent adjudicator,M,21 - 24,a Asian or Asian British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Leeds,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leeds,Independent adjudicator,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Leeds,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leicester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leicester,Governor,M,25 - 29,f Not known,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,13 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Leicester,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Leicester,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Leicester,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Leicester,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,21 - 24,f Not known,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on staff,3 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,3 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,4 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,e Buddhist,Other offences,Denies access,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,10 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,6 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,f Jewish,Violence,Commits any assault,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,3 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,f Not known,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,40 - 49,f Not known,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lewes,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lewes,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lewes,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lewes,Governor,M,60 - 69,a Asian or Asian British,c Hindu,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Lewes,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lincoln,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Violence,Attempts: Assault on staff,2 +Q3,Proved,Local,Lincoln,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,5 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Lincoln,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,12 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,10 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Lincoln,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Lincoln,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Lincoln,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Lincoln,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lincoln,Governor,M,70 and over,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Lincoln,Governor,M,70 and over,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Lincoln,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Liverpool,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Liverpool,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Liverpool,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Liverpool,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Liverpool,Governor,M,50 - 59,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Liverpool,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Liverpool,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,6 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Attempts: Cause damage to any part of a prison,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Attempts: Abusive/Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,6 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,5 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Norwich,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,f Jewish,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,6 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,a Asian or Asian British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Norwich,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Norwich,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Norwich,Independent adjudicator,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Norwich,Missing,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,a Asian or Asian British,d Sikh,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Violence,Fights with any person,2 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Nottingham,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,25 - 29,f Not known,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,3 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,10 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,f Jewish,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Nottingham,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Nottingham,Governor,M,60 - 69,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Nottingham,Governor,M,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Nottingham,Governor,M,60 - 69,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Nottingham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Nottingham,Independent adjudicator,M,60 - 69,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,5 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,18 - 20,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,4 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,d Other ethnic group,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,f Not known,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,f Not known,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Pentonville,Governor,M,21 - 24,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,d Other ethnic group,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,25 - 29,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,f Not known,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,f Not known,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,f Not known,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,30 - 39,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,e Buddhist,Other offences,Denies access,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,f Not known,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Pentonville,Governor,M,40 - 49,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Pentonville,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Pentonville,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Pentonville,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Pentonville,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Governor,M,60 - 69,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Pentonville,Independent adjudicator,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Pentonville,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Independent adjudicator,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Pentonville,Independent adjudicator,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Pentonville,Missing,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Peterborough Male,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,14 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,13 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,6 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,21 - 24,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Peterborough Male,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,f Jewish,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,4 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Attempts: Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Peterborough Male,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,a Asian or Asian British,c Hindu,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Violence,Detains any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Peterborough Male,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Peterborough Male,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Peterborough Male,Governor,M,70 and over,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Peterborough Male,Governor,M,70 and over,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,a Asian or Asian British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,5 +Q3,Proved,Local,Preston,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Preston,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,16 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,8 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,4 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,15 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Preston,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Preston,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Preston,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Preston,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Preston,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Preston,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Preston,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Preston,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Preston,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Preston,Independent adjudicator,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Preston,Independent adjudicator,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Preston,Independent adjudicator,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Independent adjudicator,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Preston,Missing,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Preston,Missing,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Preston,Missing,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Swansea,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Swansea,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Swansea,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Swansea,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Swansea,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Swansea,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,6 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Swansea,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Swansea,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,16 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Swansea,Governor,M,50 - 59,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,3 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,4 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,a Asian or Asian British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,d Other ethnic group,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,18 - 20,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,14 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,4 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,5 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,4 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,d Other ethnic group,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Thameside,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,a Asian or Asian British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,d Other ethnic group,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,f Not known,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,25 - 29,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,d Other ethnic group,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,9 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,e Buddhist,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,30 - 39,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,d Other ethnic group,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,d Other ethnic group,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,d Other ethnic group,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Thameside,Governor,M,40 - 49,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,e Buddhist,Violence,Assault on staff,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,50 - 59,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Thameside,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Thameside,Governor,M,60 - 69,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,4 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wandsworth,Governor,M,18 - 20,f Not known,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Attempts: Absent from where he should be/Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Attempts: Fails to comply with temporary release conditions,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,4 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,9 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,f Jewish,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,f Jewish,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,a Asian or Asian British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Assault on staff,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,d Other ethnic group,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Denies access,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Alcohol related offence,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,5 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,11 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Commits any assault,2 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,f Not known,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,30 - 39,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,e Buddhist,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,d Other ethnic group,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Alcohol related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wandsworth,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,a Asian or Asian British,f Jewish,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,a Asian or Asian British,f Jewish,Violence,Commits any assault,1 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wandsworth,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wandsworth,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wandsworth,Governor,M,60 - 69,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wandsworth,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wandsworth,Missing,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,f Not known,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,18 - 20,f Not known,j Not recorded,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,3 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,i No religion,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Winchester,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,7 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,10 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Governor,M,25 - 29,f Not known,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Winchester,Governor,M,30 - 39,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Winchester,Governor,M,40 - 49,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,c Hindu,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,c Hindu,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Winchester,Governor,M,50 - 59,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Winchester,Governor,M,60 - 69,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Winchester,Independent adjudicator,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,5 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Assault on a prisoner,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,e White,j Not recorded,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,18 - 20,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Denies access,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Attempts: Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,21 - 24,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,a Asian or Asian British,g Other religious groups,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Attempts: Fails to comply with temporary release conditions,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Denies access,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,j Not recorded,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,j Not recorded,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Denies access,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,25 - 29,e White,j Not recorded,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,c Hindu,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,d Sikh,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,a Asian or Asian British,j Not recorded,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,c Mixed/ Multiple ethnic groups,j Not recorded,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,d Other ethnic group,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Violence,Attempts: Detains any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Violence,Attempts: Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,f Not known,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,30 - 39,f Not known,c Hindu,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Attempts: Absent from where he should be/Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Other offences,Obstructs an officer executing his duty,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,f Jewish,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Violence,Attempts: Detains any person,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,40 - 49,f Not known,d Sikh,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,a Asian or Asian British,i No religion,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,b Black/ African/ Caribbean/ Black British,d Sikh,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,50 - 59,e White,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,60 - 69,f Not known,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Local,Wormwood Scrubs,Governor,M,60 - 69,f Not known,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,30 - 39,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,5 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,40 - 49,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Local,Wormwood Scrubs,Independent adjudicator,M,40 - 49,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,7 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,6 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,6 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,f Jewish,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,e Buddhist,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,e Buddhist,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,e Buddhist,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,e Buddhist,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,e Buddhist,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,e Buddhist,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,4 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,18 - 20,f Not known,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,7 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,4 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,f Jewish,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,d Other ethnic group,a Christian,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,7 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Aylesbury,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Attempts: Other Unauthorised Transactions,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,6 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,8 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,a Asian or Asian British,i No religion,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Detains any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,5 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,6 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,6 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,5 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Attempts: Other Unauthorised Transactions,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,7 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,8 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,14 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,6 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,5 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,13 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Attempts: Other Unauthorised Transactions,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,11 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,15 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,f Not known,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,f Not known,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,18 - 20,f Not known,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,g Other religious groups,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,g Other religious groups,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,5 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,g Other religious groups,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,3 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,a Christian,Violence,Commits any assault,4 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,18 - 20,f Not known,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,e White,g Other religious groups,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Brinsford,Independent adjudicator,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,a Asian or Asian British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,a Asian or Asian British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,6 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Attempts: Detains any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,4 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,5 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,14 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,12 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Other offences,Denies access,4 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,10 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,11 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,18 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails to comply with temporary release conditions,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,8 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Drug related offence,6 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,21 - 24,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Governor,M,25 - 29,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,7 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,8 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,21 - 24,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Deerbolt,Independent adjudicator,M,25 - 29,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,11 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,9 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Violence,Commits any assault,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Violence,Assault on any other person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,10 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Fights with any person,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,a Asian or Asian British,d Sikh,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,31 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,16 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,14 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,12 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,21 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,9 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,18 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,11 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,8 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,15 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,10 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Fails/refuses to work,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Fails/refuses to work,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Fails/refuses to work,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Violence,Fights with any person,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,d Other ethnic group,i No religion,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,12 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Fails/refuses to work,7 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Violence,Commits any assault,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,18 - 20,f Not known,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,6 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Fails/refuses to work,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,d Other ethnic group,a Christian,Disobedience/disrespect,Fails/refuses to work,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,d Other ethnic group,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Fails/refuses to work,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,i No religion,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,f Not known,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Governor,M,21 - 24,f Not known,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,a Asian or Asian British,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,8 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,d Other ethnic group,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Independent adjudicator,M,21 - 24,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Feltham,Missing,M,18 - 20,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Attempts: Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,6 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Violence,Commits any assault,6 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,a Christian,Violence,Fights with any person,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Other offences,Denies access,1 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Violence,Commits any assault,7 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Young Offender Institution (YOI),Parc,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,11 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,12 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,45 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,5 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Attempts: Commits any assault,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,5 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,11 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,10 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on any other person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,f Jewish,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,6 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,12 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Sell unauthorised articles,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,a Christian,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,a Christian,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Violence,Assault on a prisoner,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Violence,Commits any assault,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,5 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,11 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,8 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Violence,Assault on staff,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Violence,Commits any assault,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,4 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,a Christian,Violence,Commits any assault,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,a Christian,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Violence,Assault on a prisoner,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Violence,Commits any assault,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,15 - 17,f Not known,i No religion,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,a Christian,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Cookham Wood,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Youth Justice Board,Cookham Wood,Independent adjudicator,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Missing,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Missing,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Cookham Wood,Missing,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,a Asian or Asian British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,20 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,6 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,5 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,7 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Wilful Damage,Cause damage to any part of a prison,6 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,5 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,b Muslim,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,10 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,8 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,17 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Violence,Commits any assault,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,28 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,f Not known,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,15 - 17,f Not known,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Werrington,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Detains any person,1 +Q3,Proved,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Werrington,Independent adjudicator,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Werrington,Independent adjudicator,M,18 - 20,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,a Asian or Asian British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Other offences,Denies access,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,6 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,8 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,a Christian,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,6 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Other offences,Absent from where he should be/Present where he should not,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Unauthorised transactions,Possession of unauthorised articles,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on a prisoner,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Assault on staff,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Commits any assault,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Disobedience/disrespect,Fails/refuses to work,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Unauthorised transactions,Possession of unauthorised articles,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,b Black/ African/ Caribbean/ Black British,i No religion,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Unauthorised transactions,Possession of unauthorised articles,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Disobeys any rule or regulation,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Is disrespectful,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,9 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences, Endangers health/safety of any person,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Obstructs an officer executing his duty,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Possession of unauthorised articles,9 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Commits any assault,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,d Other ethnic group,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,d Other ethnic group,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,d Other ethnic group,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,d Other ethnic group,a Christian,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,d Other ethnic group,b Muslim,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,d Other ethnic group,b Muslim,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Disobeys any rule or regulation,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,31 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences, Endangers health/safety of any person,10 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,13 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Other offences,Obstructs an officer executing his duty,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Drug related offence,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,21 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Unauthorised transactions,Takes improperly any article,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Violence,Assault on a prisoner,12 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Violence,Assault on staff,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Violence,Fights with any person,12 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,8 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,b Muslim,Other offences,Absent from where he should be/Present where he should not,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,b Muslim,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,14 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,24 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Other offences, Endangers health/safety of any person,12 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,19 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Other offences,Obstructs an officer executing his duty,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Drug related offence,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,47 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Unauthorised transactions,Sell unauthorised articles,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Assault on a prisoner,17 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Assault on staff,11 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Attempts: Commits any assault,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Commits any assault,6 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Violence,Fights with any person,43 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,15 - 17,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,13 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,a Asian or Asian British,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,a Asian or Asian British,i No religion,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Possession of unauthorised articles,7 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Unauthorised transactions,Takes improperly any article,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,b Black/ African/ Caribbean/ Black British,a Christian,Violence,Fights with any person,6 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Unauthorised transactions,Possession of unauthorised articles,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Assault on a prisoner,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,a Christian,Violence,Fights with any person,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,c Mixed/ Multiple ethnic groups,i No religion,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,d Other ethnic group,b Muslim,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,d Other ethnic group,b Muslim,Wilful Damage,Cause damage to any part of a prison,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Other offences, Endangers health/safety of any person,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Unauthorised transactions,Possession of unauthorised articles,6 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Assault on a prisoner,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Violence,Fights with any person,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,a Christian,Wilful Damage,Cause damage to any part of a prison,3 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Disobedience/disrespect,Threats/Abusive and Insulting racist words/behaviour,5 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Other offences, Endangers health/safety of any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Other offences,Absent from where he should be/Present where he should not,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Unauthorised transactions,Possession of unauthorised articles,4 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Violence,Assault on a prisoner,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Violence,Assault on staff,1 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Violence,Fights with any person,2 +Q3,Proved,Youth Justice Board,Wetherby,Governor,M,18 - 20,e White,i No religion,Wilful Damage,Cause damage to any part of a prison,3 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/application/__init__.py b/archive/data_product_examples/2023-05-example_prison_data_product/application/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/application/transform.py b/archive/data_product_examples/2023-05-example_prison_data_product/application/transform.py new file mode 100644 index 0000000..84bdf15 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/application/transform.py @@ -0,0 +1,112 @@ +import pandas as pd +import logging +import boto3 +import yaml +import os +from pathlib import Path +from typing import Dict + +logging.basicConfig() + + +def get_data(bucket: str, key: str) -> pd.DataFrame: + s3_client = boto3.client("s3") + response = s3_client.get_object(Bucket=bucket, Key=key) + + status = response.get("ResponseMetadata", {}).get("HTTPStatusCode") + + if status == 200: + logging.info("Data has been collected from {}/{}".format(bucket, key)) + return pd.read_csv(response.get("Body")) + else: + logging.error( + "Bucket {} or file {} does not exist".format(bucket, key)) + raise + + +def get_tables( + bucket: str, key: str, source_data: str +) -> Dict[str, list[str]]: + s3_client = boto3.client("s3") + product_name = Path(key).parts[1] + yaml_key = os.path.join( + "code", product_name, "extracted", "metadata", "02-data-dictionary.yml" + ) + response = s3_client.get_object(Bucket=bucket, Key=yaml_key) + data_dict = yaml.safe_load(response["Body"]) + tables_dict = {} + for key in data_dict: + tables_dict[key] = [ + table for table in data_dict[key]['tables'] + if data_dict[key]['tables'][table]['source_data'] == source_data + ] + + return tables_dict + + +def generate_report(bucket: str, key: str) -> Dict[str, pd.DataFrame]: + results_dict = {} + source_data = Path(key).parts[2] + data_products_dict = get_tables(bucket, key, source_data) + raw_data = get_data(bucket, key) + for database, tables in data_products_dict.items(): + results_dict[database] = {} + for table in tables: + # e.g. One loop of this might evaluate to `table_1(bucket, key, data)` + # and execute one of the functions below with the correct arguments + results_dict[database][table] = eval( + table + "(bucket, key, raw_data)" + ) + + return results_dict + + +# Add functions for each table transformation below +# The names of each function need to match up with the tables +# as defined in the metadata data-dictionary.yml file + +# function to create table 1 +def adj_example_1( + bucket: str, + key: str, + raw_data: pd.DataFrame +) -> pd.DataFrame: + # group by establishment, religion, offence and get count offence + transformed_data = raw_data.value_counts( + subset=["Establishment", "Religion", "Offence"], sort=False).reset_index() + transformed_data.columns = [ + "Establishment", "Religion", "Offence", "Count"] + + logging.info("Data is transformed") + return transformed_data + + +# function to create table 2 +def adj_example_2( + bucket: str, + key: str, + raw_data: pd.DataFrame +) -> pd.DataFrame: + + transformed_data = raw_data.value_counts( + subset=["Establishment"], sort=False).reset_index() + transformed_data.columns = [ + "Establishment", "Count"] + + logging.info("Data is transformed") + return transformed_data + + +def punishments_example_1( + bucket: str, + key: str, + raw_data: pd.DataFrame +) -> pd.DataFrame: + + transformed_data = raw_data.value_counts( + subset=["Establishment"], sort=False).reset_index() + transformed_data.columns = [ + "Establishment", "Count"] + + logging.info("Data is transformed") + return transformed_data diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/metadata/00-specification.yml b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/00-specification.yml new file mode 100644 index 0000000..7ae42e5 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/00-specification.yml @@ -0,0 +1,23 @@ +specification: + data-platform.justice.gov.uk/name: "Fake data product" + # A good title and description will help users find your data + data-platform.justice.gov.uk/title: "Fake Data Product" + data-platform.justice.gov.uk/description: "This is a data product that contains information about the number of offenders in a prison by religion and offence type" + # tags are an array of quoted strings to further aid discoverability - e.g. ["keyword1", "keyword2", "keyword3"] + data-platform.justice.gov.uk/product-tags: ["Test", "Fake Data Product", "Prison", "Offences"] + # status: please specify draft, development, testing, production, sunset, retired + data-platform.justice.gov.uk/status: "testing" + # limitations are optional, but you might want to tell users what they CAN'T do with this data + data-platform.justice.gov.uk//limitations: "This is a fake data product - do no use for production" + # we recommend you version the data product. adding new data does not change the version, but changing the data definition should. + data-platform.justice.gov.uk/product-version: 0.0.1 + management: + # please provide an AAD (Azure Active Directory) group or GitHub team which has permission to make changes to this product + data-platform.justice.gov.uk/owner-github-team: "prison-probation-data-engineering" + support: + # Please provide at least one contact - group email, Slack channel or MS Teams (NOT an individual's email address please) + data-platform.justice.gov.uk/owner-email: "dataplatformlabs@digital.justice.gov.uk" + data-platform.justice.gov.uk/owner-ms-teams: + data-platform.justice.gov.uk/owner-slack-channel: "data-platform-labs" + # If you have written some guidance (SharePoint, GitHub, Confluence, Google doc...) add the URL here + data-platform.justice.gov.uk/product-guidance-url: diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/metadata/01-governance.yml b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/01-governance.yml new file mode 100644 index 0000000..ed0ebfe --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/01-governance.yml @@ -0,0 +1,26 @@ +governance: + # data-controller - who ultimately owns / controls this data (this could be another govenment department) + data-platform.justice.gov.uk/data-controller: "moj" + data-platform.justice.gov.uk/review-after: "2023-12-31" + data-platform.justice.gov.uk/senior-information-risk-owner: "information.asset.owner@justice.gov.uk" + retention: + # retention-strategy: "date-uploaded", "data-date-key", or "forever" + data-platform.justice.gov.uk/retention-strategy: "forever" + # retention-unit: months or years + data-platform.justice.gov.uk/retention-unit: "years" + data-platform.justice.gov.uk/retention-value: 25 + update-frequency: + # update-unit: days, weeks, months + data-platform.justice.gov.uk/update-unit: "months" + data-platform.justice.gov.uk/update-value: 3 + # Protective marking should be one of "Offical", "Official Sensitive", or "None" for published / publicly availble data. + # DO NOT SEND SECRET OR TOP SECRET DATA TO THE PLATFORM. + data-platform.justice.gov.uk/protective-marking: "None" + lineage: + # E.g. HMCTS, HMPPS, LAA, OPG, HQ, ALB, OGD + data-platform.justice.gov.uk/organisational-unit: "HMPPS" + # Specify source OR parent-products + # for example Prison NOMIS, Delius, XHibit or a URL + data-platform.justice.gov.uk/source: "https://www.gov.uk/government/collections/offender-management-statistics-quarterly" + # If your data product is based on other data products, please specify their names here. + data-platform.justice.gov.uk/parent-products: [] diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/metadata/02-data-dictionary.yml b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/02-data-dictionary.yml new file mode 100644 index 0000000..1b6ac7b --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/02-data-dictionary.yml @@ -0,0 +1,71 @@ +--- +#------------------------------------------------------------- +# Implementation notes +# - YAML validation required +# - Warn on missing recommended attributes +# - Warn on table & field names containing spaces or dashes +#------------------------------------------------------------- + +# You must specify at least one collection of datasets. Some users may find it helpful to think of this as a "database" +example_prison_data_product: + # model can be "domain" or "tabular" + model: "tabular" + # Add a description for your collection to help users find it. + # This is optional, as the data product description will also aid discoverability. + description: "Extracted from the Offender Management Statistics Quarterly publication - Adjudications data. Please refer to notes in that publication." + # limitations are optional, but you might want to tell users what they CAN'T do with this data + limitations: + # If versioning is enabled, the Data Platform will store a historical snaphot of the database each time an update is sent. + # This can add SIGNIFICANTLY to storage costs, so you may be asked to justify this. + enable-versioning: false + tables: + # Your database must contain at least one table. Each table must contain at least one column. If the data is time-based, + # please indicate which column is the primary date value using the "primary-period: true" attribute. + adj_example_1: + source_data: adjudications + description: "Prison adjudications by offence group" + update-strategy: "selected-dimensions" + update-dimensions: [] + columns: + # A column must contain at least a name and a data type. + - name: "Establishment" + description: "Establishment / Prison" + data-type: "string" + column-type: "fact" + reference-table: "n/a" + - name: "Religion" + data-type: "string" + column-type: "dimension" + - name: "Offence" + data-type: "string" + column-type: "dimension" + - name: "Count" + data-type: "int" + column-type: "dimension" + adj_example_2: + source_data: adjudications + description: "Prison adjudication totals by prison" + update-strategy: "selected-dimensions" + update-dimensions: [] + columns: + # A column must contain at least a name and a data type. + - name: "Establishment" + description: "Establishment / Prison" + data-type: "string" + column-type: "fact" + - name: "Count" + data-type: "int" + column-type: "dimension" + punishments_example_1: + source_data: punishments + description: aggregated punishments by prison + update-strategy: "selected-dimensions" + update-dimensions: [] + columns: + - name: "Establishment" + description: "Establishment / Prison" + data-type: "string" + column-type: "fact" + - name: "Count" + data-type: "int" + column-type: "dimension" diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/metadata/03-transformations.yml b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/03-transformations.yml new file mode 100644 index 0000000..5d084d5 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/metadata/03-transformations.yml @@ -0,0 +1,18 @@ +# Specify and describe any transformations or cleansing the data has undergone. +# The types of cleansing we recognise are described in our documentation. + +Establishment: + cleansing: + type: "none" + transformations: + type: "Aggregated and grouped by to get count of Offence" +Religion: + cleansing: + type: "none" + transformations: + type: "Aggregated and grouped by to get count of Offence" +Offence: + cleansing: + type: "none" + transformations: + type: "Aggregated and grouped by to get count of Offence" diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/package_data_product.py b/archive/data_product_examples/2023-05-example_prison_data_product/package_data_product.py new file mode 100644 index 0000000..e9720e4 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/package_data_product.py @@ -0,0 +1,28 @@ +import zipfile +import logging +import glob +import os + +logging.getLogger().setLevel(logging.INFO) +file_directory = os.path.dirname(os.path.abspath(__file__)) + + +def zip_data_product(folder: str): + with zipfile.ZipFile( + os.path.join(file_directory, f"data_product_{folder}.zip"), "w" + ) as f: + for file in ( + glob.glob(os.path.join(file_directory, "application", "*.py")) + + glob.glob(os.path.join(file_directory, "requirements.txt")) + + glob.glob(os.path.join(file_directory, "metadata", "*")) + ): + logging.info(file) + f.write(file, arcname=file.split(file_directory)[1]) + + +def main(): + zip_data_product("example_prison_data_product") + + +if __name__ == "__main__": + main() diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/requirements.txt b/archive/data_product_examples/2023-05-example_prison_data_product/requirements.txt new file mode 100644 index 0000000..073fe36 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/requirements.txt @@ -0,0 +1,9 @@ +pandas==2.0.1 +SQLAlchemy==2.0.12 +psycopg2-binary==2.9.6 +pytest==7.3.1 +boto3==1.26.125 +PyYAML==6.0 +moto==3.1.6 +pytest-github-actions-annotate-failures==0.2.0 + diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/__init__.py b/archive/data_product_examples/2023-05-example_prison_data_product/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/data/sample_input.csv b/archive/data_product_examples/2023-05-example_prison_data_product/tests/data/sample_input.csv new file mode 100644 index 0000000..6a2e156 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/tests/data/sample_input.csv @@ -0,0 +1,5 @@ +Date,Outcomes,Predominant function of establishment,Establishment,Adjudicator,Sex,Age group,Ethnicity,Religion,Offence,Detailed offence,Count +Q3,Dismissed,Category A (High Security),Belmarsh,Governor,M,25 - 29,b Black/ African/ Caribbean/ Black British,b Muslim,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category B,Belmarsh,Governor,M,30 - 39,e White,a Christian,Disobedience/disrespect,Disobeys any lawful order,1 +Q3,Dismissed,Category C,Frankland,Governor,M,21 - 24,c Mixed/ Multiple ethnic groups,i No religion,Unauthorised transactions,Drug related offence,1 +Q3,Dismissed,Local,Frankland,Governor,M,30 - 39,d Other ethnic group,b Muslim,Unauthorised transactions,Drug related offence,2 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/data/sample_output.csv b/archive/data_product_examples/2023-05-example_prison_data_product/tests/data/sample_output.csv new file mode 100644 index 0000000..9b1d60d --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/tests/data/sample_output.csv @@ -0,0 +1,5 @@ +Establishment,Religion,Offence,Count +Belmarsh,a Christian,Disobedience/disrespect,1 +Belmarsh,b Muslim,Disobedience/disrespect,1 +Frankland,b Muslim,Unauthorised transactions,1 +Frankland,i No religion,Unauthorised transactions,1 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/__init__.py b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/conftest.py b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/conftest.py new file mode 100644 index 0000000..db3d0c3 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/conftest.py @@ -0,0 +1,37 @@ +import boto3 +import os +import pytest + +from moto import mock_s3 + +aws_region = "eu-west-1" + + +@pytest.fixture(scope="module", autouse=True) +def tests_env_setup_and_teardown(): + + TEMP_ENV_VARS = { + "AWS_ACCESS_KEY_ID": 'testing', + "AWS_SECRET_ACCESS_KEY": 'testing', + "AWS_SECURITY_TOKEN": 'testing', + "AWS_SESSION_TOKEN": 'testing', + "AWS_DEFAULT_REGION": aws_region, + "IAM_ROLE": "test_iam", + "BOTO_CONFIG": "/dev/null" + } + + # Will be executed before the first test + old_environ = dict(os.environ) + os.environ.update(TEMP_ENV_VARS) + + yield + # Will be executed after the last test + os.environ.clear() + os.environ.update(old_environ) + + +@pytest.fixture(scope="function") +def s3_mock_client(): + with mock_s3(): + conn = boto3.client("s3", region_name=aws_region) + yield conn diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/t.py b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/t.py new file mode 100644 index 0000000..87acd2b --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/t.py @@ -0,0 +1,5 @@ +from pathlib import Path +import os + +print(os.path.join(Path(__file__).parent.absolute(), + "test_metadata", "02-data-dictionary.yaml")) diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/test_metadata/02-data-dictionary.yaml b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/test_metadata/02-data-dictionary.yaml new file mode 100644 index 0000000..9f72c3c --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/test_metadata/02-data-dictionary.yaml @@ -0,0 +1,6 @@ +product_for_test: + tables: + test_table1: + source_data: test1 + test_table_2: + source_data: test2 diff --git a/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/test_transform.py b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/test_transform.py new file mode 100644 index 0000000..614aa44 --- /dev/null +++ b/archive/data_product_examples/2023-05-example_prison_data_product/tests/unit_tests/test_transform.py @@ -0,0 +1,70 @@ +from application.transform import generate_report, get_tables +from unittest.mock import patch +import pandas as pd +import pytest +from pathlib import Path +import os + + +@pytest.fixture +def bucket_name(): + return "product-test-bucket" + + +@pytest.fixture(scope="function") +def s3_test_bucket(s3_mock_client, bucket_name): + s3_mock_client.create_bucket( + Bucket=bucket_name, + CreateBucketConfiguration={"LocationConstraint": "eu-west-1"}, + ) + yield + + +data_product_directory = os.path.join( + os.path.dirname(os.path.abspath(__file__)), "..", "data" +) + +sample_input = pd.read_csv(os.path.join( + data_product_directory, "sample_input.csv")) + + +table_dict = {"product_for_test": ["adj_example_1"]} + + +@patch( + "application.transform.get_data", return_value=pd.DataFrame.from_dict(sample_input) +) +@patch("application.transform.get_tables", return_value=table_dict) +def test_generate_report(mocked_data, mocked_tables): + data_product_directory = os.path.join( + os.path.dirname(os.path.abspath(__file__)), "..", "data" + ) + sample_output = pd.read_csv( + os.path.join(data_product_directory, "sample_output.csv") + ) + pd.testing.assert_frame_equal( + generate_report("fake_bucket", "product_for_test/test_table1/data.csv")[ + "product_for_test" + ]["adj_example_1"], + sample_output, + ) + + +def test_get_tables(s3_mock_client, s3_test_bucket): + s3_mock_client.upload_file( + os.path.join( + Path(__file__).parent.absolute( + ), "test_metadata", "02-data-dictionary.yaml" + ), + "product-test-bucket", + "code/product_for_test/extracted/metadata/02-data-dictionary.yml", + ) + + expected_tables = {"product_for_test": ["test_table1"]} + + tables = get_tables( + bucket="product-test-bucket", + key="raw_data/product_for_test/test_table1/data.csv", + source_data="test1", + ) + assert tables == expected_tables diff --git a/archive/data_product_examples/2023-10-example_data_product/README.md b/archive/data_product_examples/2023-10-example_data_product/README.md new file mode 100644 index 0000000..cdbe533 --- /dev/null +++ b/archive/data_product_examples/2023-10-example_data_product/README.md @@ -0,0 +1,3 @@ +This is an early exploration of what a "Data Product" may look like, +as of October 2023. This example contains only metadata, +migrated from https://github.com/ministryofjustice/data-platform diff --git a/archive/data_product_examples/2023-10-example_data_product/data-dictionary.yml b/archive/data_product_examples/2023-10-example_data_product/data-dictionary.yml new file mode 100644 index 0000000..28401d6 --- /dev/null +++ b/archive/data_product_examples/2023-10-example_data_product/data-dictionary.yml @@ -0,0 +1,29 @@ +--- +#------------------------------------------------------------- +# Implementation notes +# - YAML validation required +# - Warn on missing recommended attributes +# - Warn on table & field names containing spaces or dashes +#------------------------------------------------------------- + +# Add a description for your collection to help users find it. +# This is optional, as the data product description will also aid discoverability. +tableDescription: Prison population by offence. +# A column must contain at least a name and a data type. +columns: + - name: row_id + type: int + description: primary key for this table. auto-incrementing integer + - name: offence_code + type: string + description: code for the offence type + - name: offence + type: string + description: offence type name + - name: date + type: date + description: month for aggregation of prison population by offence + - name: population + type: int + description: > + number of prisoners with that offence_code at the start of that month diff --git a/archive/data_product_examples/2023-10-example_data_product/governance.yml b/archive/data_product_examples/2023-10-example_data_product/governance.yml new file mode 100644 index 0000000..d983024 --- /dev/null +++ b/archive/data_product_examples/2023-10-example_data_product/governance.yml @@ -0,0 +1,11 @@ +# organisational unit the data belongs within +# e.g. HMCTS, HMPPS, LAA, OPG, HQ, ALB, OGD +domain: "HMPPS" +dataProductOwner: data.product.owner.name@justice.gov.uk +dataProductOwnerDisplayName: Data Product Owner +dataProductMaintainer: data.product.maintainer.name@justice.gov.uk +dataProductMaintainerDisplayName: Data Product Maintainer +retentionPeriod: 400 +dpiaRequired: false +dpiaLocation: s3://data-platform-data/civil-courts-data/v1/ +tags: {"Sandbox": "True"} diff --git a/archive/data_product_examples/2023-10-example_data_product/specification.yml b/archive/data_product_examples/2023-10-example_data_product/specification.yml new file mode 100644 index 0000000..3674612 --- /dev/null +++ b/archive/data_product_examples/2023-10-example_data_product/specification.yml @@ -0,0 +1,10 @@ +name: example_data_product +# A good title and description will help users find your data +description: > + Example Data Product contains published prison population from 2001 + to present +# status: please specify one of: +# draft, development, testing, production, sunset, retired +status: production +email: data.product.contact@justice.gov.uk +tags: {"Sandbox": "True"} diff --git a/archive/data_product_examples/2023-10-example_data_product/transformations.yml b/archive/data_product_examples/2023-10-example_data_product/transformations.yml new file mode 100644 index 0000000..8db5f27 --- /dev/null +++ b/archive/data_product_examples/2023-10-example_data_product/transformations.yml @@ -0,0 +1,22 @@ +--- +# Specify and describe any transformations or cleansing the data has undergone. +# The types of cleansing we recognise are described in our documentation. +population_by_offence: + cleansing: + type: "none" + transformations: + type: "none" +population_by_age: + cleansing: + type: "none" + transformations: + type: "none" +population_by_prison: + cleansing: + type: "none" + columns: + Prison: + - type: "standardisation" + description: "Prison names can be inconsistent between systems and publications, so we have replaced prison names with the standard set" + transformations: + type: "none" diff --git a/archive/data_product_examples/2023-11-court_timeliness/README.md b/archive/data_product_examples/2023-11-court_timeliness/README.md new file mode 100644 index 0000000..c1987b7 --- /dev/null +++ b/archive/data_product_examples/2023-11-court_timeliness/README.md @@ -0,0 +1,2 @@ +This is an early exploration of what a "Data Product" may look like, +as of November 2023. This example contains only metadata, migrated from s3. diff --git a/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/civil_court_timeliness/schema.json b/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/civil_court_timeliness/schema.json new file mode 100644 index 0000000..6b2a55c --- /dev/null +++ b/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/civil_court_timeliness/schema.json @@ -0,0 +1 @@ +{"DatabaseName": "court_timeliness_v3", "TableInput": {"Name": "civil_court_timeliness", "Description": "For cases in the civil courts that went to hearing or trial, timeliness data provides information on the amount of time between the original claim being issued and the hearing or trial commencing. Data is from 2003 because data was collated from manual counts before then", "Owner": "matthew.laverty@justice.gov.uk", "StorageDescriptor": {"Columns": [{"Name": "year", "Type": "int", "Comment": "This is the calendar year in which the hearing or trial commenced, e.g. 2000 would refer to January to December 2000. The earliest year from which any of the data is available is 2000 for claims and orders but in some cases data is only available from a l"}], "Location": "", "InputFormat": "", "OutputFormat": "", "Compressed": false, "NumberOfBuckets": -1, "SerdeInfo": {}, "BucketColumns": [], "SortColumns": [], "Parameters": {}, "StoredAsSubDirectories": false}, "PartitionKeys": [], "TableType": "EXTERNAL_TABLE", "Parameters": {}, "Retention": 3000}} \ No newline at end of file diff --git a/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/criminal_court_timeliness/schema.json b/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/criminal_court_timeliness/schema.json new file mode 100644 index 0000000..31f73e9 --- /dev/null +++ b/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/criminal_court_timeliness/schema.json @@ -0,0 +1 @@ +{"DatabaseName": "court_timeliness_v3", "TableInput": {"Name": "criminal_court_timeliness", "Description": "This table includes the proportion of cases completed at first listing, average number of hearings, proportion of cases by initial plea, and the mean time taken for all criminal cases sent to the magistrates' courts. This data is then broken down by timeframe, case type, and plea type.", "Owner": "matthew.laverty@justice.gov.uk", "StorageDescriptor": {"Columns": [{"Name": "year", "Type": "int", "Comment": "The calendar year"}, {"Name": "timeframe", "Type": "string", "Comment": "The data displayed is broken down both quarterly, and annually"}, {"Name": "quarter", "Type": "string", "Comment": "The quarter of the year, Jan - Mar is Q1, etc."}, {"Name": "geographical_area", "Type": "string", "Comment": "The data is broken down by geographical area: England and Wales, region and LCJB (for year 2020 onwards only). The breakdowns available are guilty plea, not guilty, no plea entered. To select all regions and LCJBs, use England and Wales"}, {"Name": "case_type", "Type": "string", "Comment": "The data contained in these pivots only includes cases that are sent for trial, this is broken down by all, indictable, triable either way, summary non-motoring, summary motoring"}, {"Name": "plea", "Type": "string", "Comment": "The data is also broken down by initial plea type. The breakdowns available are guilty plea, not guilty, no plea entered. There is no useable option to select all plea types"}, {"Name": "value", "Type": "double", "Comment": "The value relating the the selected measure and other selected filters"}, {"Name": "defendants", "Type": "int", "Comment": "Number of defendants used in the measure"}, {"Name": "measure", "Type": "string", "Comment": "Measures are: First list % (% of cases completed at first listing); Average hearings (avg no. of hearings for all cases); Plea % (proportion of cases by initial plea); Offence to completion (mean) (mean no. of days taken for all criminal cases)"}], "Location": "", "InputFormat": "", "OutputFormat": "", "Compressed": false, "NumberOfBuckets": -1, "SerdeInfo": {}, "BucketColumns": [], "SortColumns": [], "Parameters": {}, "StoredAsSubDirectories": false}, "PartitionKeys": [], "TableType": "EXTERNAL_TABLE", "Parameters": {}, "Retention": 3000}} \ No newline at end of file diff --git a/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/metadata.json b/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/metadata.json new file mode 100644 index 0000000..0dee25c --- /dev/null +++ b/archive/data_product_examples/2023-11-court_timeliness/metadata/v3.0/metadata.json @@ -0,0 +1 @@ +{"name": "court_timeliness", "description": "Data product containing data relating to court timeliness publications and lookups", "domain": "MoJ", "dataProductOwner": "matthew.laverty@justice.gov.uk", "dataProductOwnerDisplayName": "matt laverty", "email": "matthew.laverty@justice.gov.uk", "status": "draft", "retentionPeriod": 3000, "dpiaRequired": false, "schemas": ["civil_court_timeliness", "criminal_court_timeliness"]} \ No newline at end of file diff --git a/archive/data_product_examples/README.md b/archive/data_product_examples/README.md new file mode 100644 index 0000000..d894b98 --- /dev/null +++ b/archive/data_product_examples/README.md @@ -0,0 +1,3 @@ +# Data product examples + +From the Data Platform discovery 2023.