Merge pull request #2604 from iptv-org/patch-2025.01.3

Patch 2025.01.3
This commit is contained in:
PopeyeTheSai10r 2025-01-17 20:38:05 -08:00 committed by GitHub
commit e19b4c6318
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
144 changed files with 7603 additions and 9545 deletions

View file

@ -0,0 +1,30 @@
name: ✍️ Channel Request
description: Request to add a channel to the guide
labels: ['channel request']
body:
- type: markdown
attributes:
value: |
Please fill out the request as much as possible so we can efficiently process your request.
- type: input
attributes:
label: Site
description: The name of the site
placeholder: 'guidatv.sky.it'
validations:
required: true
- type: textarea
attributes:
label: Channels
description: List of channels to be added
placeholder: 'BBC One'
validations:
required: true
- type: textarea
attributes:
label: Notes
description: Anything else we should know?

View file

@ -20,7 +20,7 @@ jobs:
files_yaml: | files_yaml: |
js: js:
- tests/**/*.{js,ts} - tests/**/*.{js,ts}
- scripts/**/*.{js,ts} - scripts/**/*.{js,mts,ts}
- sites/**/*.{js,ts} - sites/**/*.{js,ts}
channels: channels:
- sites/**/*.channels.xml - sites/**/*.channels.xml
@ -39,4 +39,6 @@ jobs:
- name: check changed *.channels.xml - name: check changed *.channels.xml
if: steps.files.outputs.channels_any_changed == 'true' if: steps.files.outputs.channels_any_changed == 'true'
run: | run: |
npm run channels:lint -- ${{ steps.files.outputs.channels_all_changed_files }} npm run channels:lint -- ${{ steps.files.outputs.channels_all_changed_files }}
npm run postinstall
npm run channels:validate -- ${{ steps.files.outputs.channels_all_changed_files }}

View file

@ -8,12 +8,16 @@
### How to add a channel to the guide? ### How to add a channel to the guide?
Open the [/sites](/sites) folder and select the source that you know has the guide for the channel you want. First, select a site from the [SITES.md](SITES.md) that you know has a guide for the channel you need. Then go to the folder with its config and open the file `*.channels.xml`.
Then in the selected folder open the file `*.channels.xml` and add to it: Make sure that the desired channel is not already in the list. If it is not, simply add its description to the end of the list as shown here:
```xml ```xml
<channel site="SITE" lang="LANGUAGE_CODE" xmltv_id="CHANNEL_ID" site_id="SITE_ID">CHANNEL_NAME</channel> <?xml version="1.0" encoding="UTF-8"?>
<channels>
...
<channel site="SITE" lang="LANGUAGE_CODE" xmltv_id="CHANNEL_ID" site_id="SITE_ID">CHANNEL_NAME</channel>
</channels>
``` ```
| Attribute | Description | Example | | Attribute | Description | Example |
@ -22,28 +26,56 @@ Then in the selected folder open the file `*.channels.xml` and add to it:
| LANGUAGE_CODE | Language of the guide ([ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) code). | `en` | | LANGUAGE_CODE | Language of the guide ([ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) code). | `en` |
| CHANNEL_ID | Channel ID from [iptv-org/database](https://github.com/iptv-org/database). A complete list of supported channels can also be found at https://iptv-org.github.io/. | `BBCOne.uk` | | CHANNEL_ID | Channel ID from [iptv-org/database](https://github.com/iptv-org/database). A complete list of supported channels can also be found at https://iptv-org.github.io/. | `BBCOne.uk` |
| SITE_ID | Unique ID of the channel used in the source. | `bbc1` | | SITE_ID | Unique ID of the channel used in the source. | `bbc1` |
| CHANNEL_NAME | Name of the channel used in the source. | `BBC 1` | | CHANNEL_NAME | Name of the channel used in the source. | `BBC One` |
After that just commit all changes and send a pull request. After that just [commit](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/about-commits) all changes and send a [pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).
### How to map the channels?
In order for the guides to be linked with playlists from [iptv-org/iptv](https://github.com/iptv-org/iptv) and also with our other projects, each channel must have the same ID in the description as in our [iptv-org/database](https://github.com/iptv-org/database).
To check this, select one of the sites in the [SITES.md](SITES.md), open its `*.channels.xml` file and check that all channels have a valid `xmltv_id`. If it is missing somewhere, just copy the matching ID from the [iptv-org.github.io](https://iptv-org.github.io/). If the channel is not in our database yet, you can add it to it through this [form](https://github.com/iptv-org/database/issues/new?assignees=&labels=channels%3Aadd&projects=&template=__channels_add.yml&title=Add%3A+).
If the `*.channels.xml` file contains many channels without `xmltv_id`, you can speed up the process by running the command in the [Console](https://en.wikipedia.org/wiki/Windows_Console) (or [Terminal](<https://en.wikipedia.org/wiki/Terminal_(macOS)>) if you have macOS):
```sh
npm run channels:edit path/to/channels.xml
```
This way, you can map channels by simply selecting the proper ID from the list:
```sh
? Select xmltv_id for "BBC One" (bbc1): (Use arrow keys)
BBC One (BBC1, BBC Television, BBC Television Service) | BBCOne.uk
BBC One HD | BBCOneHD.uk
Type...
Skip
```
Once complete, [commit](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/about-commits) all changes and send a [pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).
### How to add a new source to the repository? ### How to add a new source to the repository?
To do this, you must create a new folder in the [/sites](/sites) with at least 3 files: To do this, you will need to create a new folder in the [/sites](/sites) directory with at least 4 files:
<details> <details>
<summary>example.com.config.js</summary> <summary>example.com.config.js</summary>
<br> <br>
This file describes what kind of request we need to send to get the guide for a particular channel on a certain date. It also describes how to parse the response. This file describes what kind of request we need to send to get the guide for a particular channel on a certain date and how to parse the response.
```js ```js
module.exports = { module.exports = {
site: 'example.com', site: 'example.com',
url: function ({ channel, date }) { url({ channel, date }) {
return `https://example.com/api/${channel.site_id}/${date.format('YYYY-MM-DD')}` return `https://example.com/api/${channel.site_id}/${date.format('YYYY-MM-DD')}`
}, },
parser: function ({ content }) { parser({ content }) {
return JSON.parse(content) try {
return JSON.parse(content)
} catch {
return []
}
} }
} }
``` ```
@ -59,39 +91,51 @@ More detailed instructions for this file can be found here: https://github.com/f
With this file we can test the previously created config and make sure it works as you expect. With this file we can test the previously created config and make sure it works as you expect.
```js ```js
const { url, parser } = require('./example.com.config.js') const { parser, url } = require('./example.com.config.js')
const dayjs = require('dayjs') const dayjs = require('dayjs')
const utc = require('dayjs/plugin/utc') const utc = require('dayjs/plugin/utc')
const customParseFormat = require('dayjs/plugin/customParseFormat')
dayjs.extend(customParseFormat)
dayjs.extend(utc) dayjs.extend(utc)
const date = dayjs.utc('2022-11-18', 'YYYY-MM-DD').startOf('d') const date = dayjs.utc('2025-01-12', 'YYYY-MM-DD').startOf('d')
const channel = { site_id: 'bbc1', xmltv_id: 'BBCOne.uk', lang: 'en' } const channel = { site_id: 'bbc1', xmltv_id: 'BBCOne.uk' }
it('can generate valid url', () => { it('can generate valid url', () => {
expect(url({ channel, date })).toBe('https://example.com/api/bbc1/2022-11-18') expect(url({ channel, date })).toBe('https://example.com/api/bbc1/2025-01-12')
}) })
it('can parse response', () => { it('can parse response', () => {
const content = `[{"start":"2022-11-18T01:30:00.000Z","stop":"2022-11-18T02:00:00.000Z","title":"Program 1"}]` const content =
'[{"title":"Program 1","start":"2025-01-12T00:00:00.000Z","stop":"2025-01-12T00:30:00.000Z"},{"title":"Program 2","start":"2025-01-12T00:30:00.000Z","stop":"2025-01-12T01:00:00.000Z"}]'
const results = parser({ content }) const results = parser({ content })
expect(results).toMatchObject([ expect(results.length).toBe(2)
{ expect(results[0]).toMatchObject({
start: '2022-11-18T01:30:00.000Z', title: 'Program 1',
stop: '2022-11-18T02:00:00.000Z', start: '2025-01-12T00:00:00.000Z',
title: 'Program 1' stop: '2025-01-12T00:30:00.000Z'
} })
]) expect(results[1]).toMatchObject({
title: 'Program 2',
start: '2025-01-12T00:30:00.000Z',
stop: '2025-01-12T01:00:00.000Z'
})
}) })
it('can handle empty guide', () => { it('can handle empty guide', () => {
const results = parser({ content: '' }) const result = parser({
date,
channel,
content: ''
})
expect(results).toMatchObject([]) expect(result).toMatchObject([])
}) })
``` ```
To run the tests you can use the following command: To run all of these tests use the following command:
```sh ```sh
npm test --- example.com npm test --- example.com
@ -110,21 +154,45 @@ This file contains a list of channels available at the source.
```xml ```xml
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<channels> <channels>
<channel site="example.com" lang="en" xmltv_id="BBCOne.uk" site_id="bbc1">BBC 1</channel> <channel site="example.com" lang="en" xmltv_id="BBCOne.uk" site_id="bbc1">BBC One</channel>
</channels> </channels>
``` ```
</details> </details>
After creating all the files we can make sure that the guide loads correctly and has no errors using the command: <details>
<summary>readme.md</summary>
<br>
This file contains instructions on how to use this config.
````
# example.com
https://example.com
### Download the guide
```sh ```sh
npm run grab --- --site=example.com npm run grab --- --site=example.com
``` ```
If the download is successful, the `guide.xml` file with the ready to use program should appear in the root directory. ### Test
After that, all that remains is to commit all the changes and send a pull request. ```sh
npm test --- example.com
```
````
</details>
The fastest way to create all these files is to use the command:
```sh
npm run sites:init --- example.com
```
Once you are done working on the config make sure the tests pass, the guide downloads correctly, [commit](https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/about-commits) all changes and send us a [pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests).
## Project Structure ## Project Structure
@ -153,8 +221,9 @@ To run scripts use the `npm run <script-name>` command.
- `api:generate`: generates a JSON file with all channels for the [iptv-org/api](https://github.com/iptv-org/api) repository. - `api:generate`: generates a JSON file with all channels for the [iptv-org/api](https://github.com/iptv-org/api) repository.
- `channels:lint`: сhecks the channel lists for syntax errors. - `channels:lint`: сhecks the channel lists for syntax errors.
- `channels:parse`: generates a list of channels based on the site configuration. - `channels:parse`: generates a list of channels based on the site configuration.
- `channels:editor`: utility for quick channels markup. - `channels:edit`: utility for quick channels mapping.
- `channels:validate`: checks the description of channels for errors. - `channels:validate`: checks the description of channels for errors.
- `sites:init`: creates a new site config from the template.
- `sites:update`: updates the list of sites and their status in [SITES.md](SITES.md). - `sites:update`: updates the list of sites and their status in [SITES.md](SITES.md).
- `grab`: downloads a program from a specified source. - `grab`: downloads a program from a specified source.
- `serve`: starts the [web server](https://github.com/vercel/serve). - `serve`: starts the [web server](https://github.com/vercel/serve).

View file

@ -48,5 +48,8 @@ export default [
semi: ['error', 'never'] semi: ['error', 'never']
} }
},
{
ignores: ['tests/__data__/']
} }
] ]

1811
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -5,14 +5,15 @@
"act:update": "act workflow_dispatch -W .github/workflows/update.yml", "act:update": "act workflow_dispatch -W .github/workflows/update.yml",
"api:load": "npx tsx scripts/commands/api/load.ts", "api:load": "npx tsx scripts/commands/api/load.ts",
"api:generate": "npx tsx scripts/commands/api/generate.ts", "api:generate": "npx tsx scripts/commands/api/generate.ts",
"channels:lint": "npx tsx scripts/commands/channels/lint.ts", "channels:lint": "npx tsx scripts/commands/channels/lint.mts",
"channels:parse": "npx tsx scripts/commands/channels/parse.ts", "channels:parse": "npx tsx scripts/commands/channels/parse.ts",
"channels:editor": "npx tsx scripts/commands/channels/editor.ts", "channels:edit": "npx tsx scripts/commands/channels/edit.ts",
"channels:validate": "npx tsx scripts/commands/channels/validate.ts", "channels:validate": "npx tsx scripts/commands/channels/validate.ts",
"sites:init": "npx tsx scripts/commands/sites/init.ts",
"sites:update": "npx tsx scripts/commands/sites/update.ts", "sites:update": "npx tsx scripts/commands/sites/update.ts",
"grab": "npx tsx scripts/commands/epg/grab.ts", "grab": "npx tsx scripts/commands/epg/grab.ts",
"serve": "npx serve", "serve": "npx serve",
"lint": "npx eslint \"{scripts,tests,sites}/**/*.{ts,js}\"", "lint": "npx eslint \"{scripts,tests,sites}/**/*.{ts,mts,js}\"",
"test": "run-script-os", "test": "run-script-os",
"test:win32": "SET \"TZ=Pacific/Nauru\" && npx jest --runInBand", "test:win32": "SET \"TZ=Pacific/Nauru\" && npx jest --runInBand",
"test:default": "TZ=Pacific/Nauru npx jest --runInBand", "test:default": "TZ=Pacific/Nauru npx jest --runInBand",
@ -29,15 +30,17 @@
"transform": { "transform": {
"^.+\\.(ts|js)$": "@swc/jest" "^.+\\.(ts|js)$": "@swc/jest"
}, },
"testRegex": "(tests|sites)/(.*?/)?.*test.(js|ts)$", "testMatch": [
"<rootDir>/sites/**/*.test.(js|ts)",
"<rootDir>/tests/commands/**/*.test.(js|ts)"
],
"testTimeout": 10000 "testTimeout": 10000
}, },
"dependencies": { "dependencies": {
"@alex_neo/jest-expect-message": "^1.0.5", "@alex_neo/jest-expect-message": "^1.0.5",
"@eslint/eslintrc": "^3.2.0", "@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0", "@eslint/js": "^9.17.0",
"@freearhey/core": "^0.3.1", "@freearhey/core": "^0.5.0",
"@freearhey/search-js": "^0.1.1",
"@ntlab/sfetch": "^1.0.0", "@ntlab/sfetch": "^1.0.0",
"@octokit/plugin-paginate-rest": "^11.3.6", "@octokit/plugin-paginate-rest": "^11.3.6",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6", "@octokit/plugin-rest-endpoint-methods": "^13.2.6",
@ -68,6 +71,7 @@
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"form-data": "^4.0.0", "form-data": "^4.0.0",
"fs-extra": "^10.0.1", "fs-extra": "^10.0.1",
"fuse.js": "^7.0.0",
"glob": "^7.2.0", "glob": "^7.2.0",
"globals": "^15.14.0", "globals": "^15.14.0",
"husky": "^9.1.7", "husky": "^9.1.7",
@ -76,7 +80,7 @@
"jest": "^29.7.0", "jest": "^29.7.0",
"jest-offline": "^1.0.1", "jest-offline": "^1.0.1",
"langs": "^2.0.0", "langs": "^2.0.0",
"libxmljs2": "^0.35.0", "libxml2-wasm": "^0.5.0",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"luxon": "^3.3.0", "luxon": "^3.3.0",
"markdown-include": "^0.4.3", "markdown-include": "^0.4.3",
@ -88,6 +92,8 @@
"pako": "^2.1.0", "pako": "^2.1.0",
"parse-duration": "^1.0.0", "parse-duration": "^1.0.0",
"pdf-parse": "^1.1.1", "pdf-parse": "^1.1.1",
"readline": "^1.3.0",
"run-script-os": "^1.1.6",
"serve": "^14.2.4", "serve": "^14.2.4",
"signale": "^1.4.0", "signale": "^1.4.0",
"skip-postinstall": "^1.0.0", "skip-postinstall": "^1.0.0",
@ -99,8 +105,5 @@
"tsx": "^4.19.2", "tsx": "^4.19.2",
"unzipit": "^1.4.0", "unzipit": "^1.4.0",
"wildcard-match": "^5.1.2" "wildcard-match": "^5.1.2"
},
"devDependencies": {
"run-script-os": "^1.1.6"
} }
} }

View file

@ -0,0 +1,123 @@
import { DATA_DIR } from '../../constants'
import { Storage, Collection, Logger } from '@freearhey/core'
import { ChannelsParser, XML, ApiChannel } from '../../core'
import { Channel } from 'epg-grabber'
import nodeCleanup from 'node-cleanup'
import { program } from 'commander'
import inquirer, { QuestionCollection } from 'inquirer'
import Fuse from 'fuse.js'
import readline from 'readline'
if (process.platform === 'win32') {
readline
.createInterface({
input: process.stdin,
output: process.stdout
})
.on('SIGINT', function () {
process.emit('SIGINT')
})
}
program.argument('<filepath>', 'Path to *.channels.xml file to edit').parse(process.argv)
const filepath = program.args[0]
const logger = new Logger()
const storage = new Storage()
let channels = new Collection()
async function main() {
if (!(await storage.exists(filepath))) {
throw new Error(`File "${filepath}" does not exists`)
}
const parser = new ChannelsParser({ storage })
channels = await parser.parse(filepath)
const dataStorage = new Storage(DATA_DIR)
const channelsContent = await dataStorage.json('channels.json')
const searchIndex = new Fuse(channelsContent, { keys: ['name', 'alt_names'], threshold: 0.4 })
for (const channel of channels.all()) {
if (channel.xmltv_id) continue
const question: QuestionCollection = {
name: 'option',
message: `Select xmltv_id for "${channel.name}" (${channel.site_id}):`,
type: 'list',
choices: getOptions(searchIndex, channel),
pageSize: 10
}
await inquirer.prompt(question).then(async selected => {
switch (selected.option) {
case 'Type...':
const input = await getInput(channel)
channel.xmltv_id = input.xmltv_id
break
case 'Skip':
channel.xmltv_id = '-'
break
default:
const [, xmltv_id] = selected.option
.replace(/ \[.*\]/, '')
.split('|')
.map((i: string) => i.trim())
channel.xmltv_id = xmltv_id
break
}
})
}
channels.forEach((channel: Channel) => {
if (channel.xmltv_id === '-') {
channel.xmltv_id = ''
}
})
}
main()
function save() {
if (!storage.existsSync(filepath)) return
const xml = new XML(channels)
storage.saveSync(filepath, xml.toString())
logger.info(`\nFile '${filepath}' successfully saved`)
}
nodeCleanup(() => {
save()
})
async function getInput(channel: Channel) {
const name = channel.name.trim()
const input = await inquirer.prompt([
{
name: 'xmltv_id',
message: ' xmltv_id:',
type: 'input'
}
])
return { name, xmltv_id: input['xmltv_id'] }
}
function getOptions(index, channel: Channel) {
const similar = index.search(channel.name).map(result => new ApiChannel(result.item))
const variants = new Collection()
similar.forEach((_channel: ApiChannel) => {
const altNames = _channel.altNames.notEmpty() ? ` (${_channel.altNames.join(',')})` : ''
const closed = _channel.closed ? ` [closed:${_channel.closed}]` : ''
const replacedBy = _channel.replacedBy ? `[replaced_by:${_channel.replacedBy}]` : ''
variants.add(`${_channel.name}${altNames} | ${_channel.id}${closed}${replacedBy}`)
})
variants.add('Type...')
variants.add('Skip')
return variants.all()
}

View file

@ -1,179 +0,0 @@
import { DATA_DIR } from '../../constants'
import { Storage, Collection, Dictionary, Logger } from '@freearhey/core'
import { ChannelsParser, XML, ApiChannel } from '../../core'
import { Channel } from 'epg-grabber'
import { transliterate } from 'transliteration'
import nodeCleanup from 'node-cleanup'
import { program } from 'commander'
import inquirer, { QuestionCollection } from 'inquirer'
import sj from '@freearhey/search-js'
program
.argument('<filepath>', 'Path to *.channels.xml file to edit')
.option('-c, --country <name>', 'Default country (ISO 3166 code)', 'US')
.parse(process.argv)
const filepath = program.args[0]
const programOptions = program.opts()
const defaultCountry = programOptions.country.toLowerCase()
const newLabel = ' [new]'
let options = new Collection()
async function main() {
const storage = new Storage()
if (!(await storage.exists(filepath))) {
throw new Error(`File "${filepath}" does not exists`)
}
const parser = new ChannelsParser({ storage })
const parsedChannels = await parser.parse(filepath)
options = parsedChannels.map((channel: Channel): { channel: Channel; delete: boolean } => {
return {
channel,
delete: false
}
})
const dataStorage = new Storage(DATA_DIR)
const channelsContent = await dataStorage.json('channels.json')
const channelsIndex = sj.createIndex(channelsContent)
const buffer = new Dictionary()
for (const option of options.all()) {
const channel: Channel = option.channel
if (channel.xmltv_id) {
if (channel.xmltv_id !== '-') {
buffer.set(`${channel.xmltv_id}/${channel.lang}`, true)
}
continue
}
const choices = getOptions(channelsIndex, channel)
const question: QuestionCollection = {
name: 'option',
message: `Choose xmltv_id for "${channel.name}" (${channel.site_id}):`,
type: 'list',
choices,
pageSize: 10
}
await inquirer.prompt(question).then(async selected => {
switch (selected.option) {
case 'Overwrite':
const input = await getInput(channel)
channel.xmltv_id = input.xmltv_id
break
case 'Skip':
channel.xmltv_id = '-'
break
default:
const [, xmltv_id] = selected.option
.replace(/ \[.*\]/, '')
.split('|')
.map((i: string) => i.trim().replace(newLabel, ''))
channel.xmltv_id = xmltv_id
break
}
const found = buffer.has(`${channel.xmltv_id}/${channel.lang}`)
if (found) {
const question: QuestionCollection = {
name: 'option',
message: `"${channel.xmltv_id}" already on the list. Choose an option:`,
type: 'list',
choices: ['Skip', 'Add', 'Delete'],
pageSize: 5
}
await inquirer.prompt(question).then(async selected => {
switch (selected.option) {
case 'Skip':
channel.xmltv_id = '-'
break
case 'Delete':
option.delete = true
break
default:
break
}
})
} else {
if (channel.xmltv_id !== '-') {
buffer.set(`${channel.xmltv_id}/${channel.lang}`, true)
}
}
})
}
}
main()
function save() {
const logger = new Logger()
const storage = new Storage()
if (!storage.existsSync(filepath)) return
const channels = options
.filter((option: { channel: Channel; delete: boolean }) => !option.delete)
.map((option: { channel: Channel; delete: boolean }) => option.channel)
const xml = new XML(channels)
storage.saveSync(filepath, xml.toString())
logger.info(`\nFile '${filepath}' successfully saved`)
}
nodeCleanup(() => {
save()
})
async function getInput(channel: Channel) {
const name = channel.name.trim()
const input = await inquirer.prompt([
{
name: 'xmltv_id',
message: ' ID:',
type: 'input',
default: generateCode(name, defaultCountry)
}
])
return { name, xmltv_id: input['xmltv_id'] }
}
function getOptions(channelsIndex, channel: Channel) {
const channelId = generateCode(channel.name, defaultCountry)
const query = channel.name
.replace(/\s(SD|TV|HD|SD\/HD|HDTV)$/i, '')
.replace(/(\(|\)|,)/gi, '')
.replace(/-/gi, ' ')
.replace(/\+/gi, '')
const similar = channelsIndex.search(query).map(item => new ApiChannel(item))
const variants = new Collection()
variants.add(`${channel.name.trim()} | ${channelId}${newLabel}`)
similar.forEach((_channel: ApiChannel) => {
const altNames = _channel.altNames.notEmpty() ? ` (${_channel.altNames.join(',')})` : ''
const closed = _channel.closed ? ` [closed:${_channel.closed}]` : ''
const replacedBy = _channel.replacedBy ? `[replaced_by:${_channel.replacedBy}]` : ''
variants.add(`${_channel.name}${altNames} | ${_channel.id}${closed}${replacedBy}`)
})
variants.add('Overwrite')
variants.add('Skip')
return variants.all()
}
function generateCode(name: string, country: string) {
const channelId: string = transliterate(name)
.replace(/\+/gi, 'Plus')
.replace(/^&/gi, 'And')
.replace(/[^a-z\d]+/gi, '')
return `${channelId}.${country}`
}

View file

@ -1,7 +1,7 @@
import chalk from 'chalk' import chalk from 'chalk'
import libxml, { ValidationError } from 'libxmljs2'
import { program } from 'commander' import { program } from 'commander'
import { Storage, File } from '@freearhey/core' import { Storage, File } from '@freearhey/core'
import { XmlDocument, XsdValidator, XmlValidateError, ErrorDetail } from 'libxml2-wasm'
const xsd = `<?xml version="1.0" encoding="UTF-8"?> const xsd = `<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
@ -23,12 +23,12 @@ const xsd = `<?xml version="1.0" encoding="UTF-8"?>
</xs:element> </xs:element>
</xs:schema>` </xs:schema>`
program.argument('[filepath]', 'Path to *.channels.xml files to validate').parse(process.argv) program.argument('[filepath]', 'Path to *.channels.xml files to check').parse(process.argv)
async function main() { async function main() {
const storage = new Storage() const storage = new Storage()
let errors: ValidationError[] = [] let errors: ErrorDetail[] = []
const files = program.args.length ? program.args : await storage.list('sites/**/*.channels.xml') const files = program.args.length ? program.args : await storage.list('sites/**/*.channels.xml')
for (const filepath of files) { for (const filepath of files) {
@ -37,23 +37,28 @@ async function main() {
const xml = await storage.load(filepath) const xml = await storage.load(filepath)
let localErrors: ValidationError[] = [] let localErrors: ErrorDetail[] = []
try { try {
const xsdDoc = libxml.parseXml(xsd) const schema = XmlDocument.fromString(xsd)
const doc = libxml.parseXml(xml) const validator = XsdValidator.fromDoc(schema)
const doc = XmlDocument.fromString(xml)
if (!doc.validate(xsdDoc)) { validator.validate(doc)
localErrors = doc.validationErrors
} schema.dispose()
} catch (error) { validator.dispose()
localErrors.push(error) doc.dispose()
} catch (_error) {
const error = _error as XmlValidateError
localErrors = localErrors.concat(error.details)
} }
if (localErrors.length) { if (localErrors.length) {
console.log(`\n${chalk.underline(filepath)}`) console.log(`\n${chalk.underline(filepath)}`)
localErrors.forEach((error: ValidationError) => { localErrors.forEach((error: ErrorDetail) => {
const position = `${error.line}:${error.column}` const position = `${error.line}:${error.col}`
console.log(` ${chalk.gray(position.padEnd(4, ' '))} ${error.message.trim()}`) console.log(` ${chalk.gray(position.padEnd(4, ' '))} ${error.message.trim()}`)
}) })

View file

@ -1,4 +1,4 @@
import { Storage, Collection, Dictionary, File, Logger } from '@freearhey/core' import { Storage, Collection, Dictionary, File } from '@freearhey/core'
import { ChannelsParser, ApiChannel } from '../../core' import { ChannelsParser, ApiChannel } from '../../core'
import { program } from 'commander' import { program } from 'commander'
import chalk from 'chalk' import chalk from 'chalk'
@ -6,15 +6,7 @@ import langs from 'langs'
import { DATA_DIR } from '../../constants' import { DATA_DIR } from '../../constants'
import { Channel } from 'epg-grabber' import { Channel } from 'epg-grabber'
program program.argument('[filepath]', 'Path to *.channels.xml files to validate').parse(process.argv)
.option(
'-c, --channels <path>',
'Path to channels.xml file to validate',
'sites/**/*.channels.xml'
)
.parse(process.argv)
const options = program.opts()
type ValidationError = { type ValidationError = {
type: 'duplicate' | 'wrong_xmltv_id' | 'wrong_lang' type: 'duplicate' | 'wrong_xmltv_id' | 'wrong_lang'
@ -26,11 +18,6 @@ type ValidationError = {
} }
async function main() { async function main() {
const logger = new Logger()
logger.info('options:')
logger.tree(options)
const parser = new ChannelsParser({ storage: new Storage() }) const parser = new ChannelsParser({ storage: new Storage() })
const dataStorage = new Storage(DATA_DIR) const dataStorage = new Storage(DATA_DIR)
@ -39,8 +26,9 @@ async function main() {
let totalFiles = 0 let totalFiles = 0
let totalErrors = 0 let totalErrors = 0
const storage = new Storage() const storage = new Storage()
const files: string[] = await storage.list(options.channels) const files = program.args.length ? program.args : await storage.list('sites/**/*.channels.xml')
for (const filepath of files) { for (const filepath of files) {
const file = new File(filepath) const file = new File(filepath)
if (file.extension() !== 'xml') continue if (file.extension() !== 'xml') continue
@ -50,9 +38,9 @@ async function main() {
const bufferBySiteId = new Dictionary() const bufferBySiteId = new Dictionary()
const errors: ValidationError[] = [] const errors: ValidationError[] = []
parsedChannels.forEach((channel: Channel) => { parsedChannels.forEach((channel: Channel) => {
const bufferSiteId: string = `${channel.site_id}:${channel.lang}` const bufferId: string = channel.site_id
if (bufferBySiteId.missing(bufferSiteId)) { if (bufferBySiteId.missing(bufferId)) {
bufferBySiteId.set(bufferSiteId, true) bufferBySiteId.set(bufferId, true)
} else { } else {
errors.push({ type: 'duplicate', ...channel }) errors.push({ type: 'duplicate', ...channel })
totalErrors++ totalErrors++
@ -72,16 +60,6 @@ async function main() {
errors.push({ type: 'wrong_xmltv_id', ...channel }) errors.push({ type: 'wrong_xmltv_id', ...channel })
totalErrors++ totalErrors++
} }
// if (foundChannel && foundChannel.replacedBy) {
// errors.push({ type: 'replaced', ...channel })
// totalErrors++
// }
// if (foundChannel && foundChannel.closed && !foundChannel.replacedBy) {
// errors.push({ type: 'closed', ...channel })
// totalErrors++
// }
}) })
if (errors.length) { if (errors.length) {

View file

@ -0,0 +1,45 @@
import { Logger, Storage } from '@freearhey/core'
import { program } from 'commander'
import { SITES_DIR } from '../../constants'
import fs from 'fs-extra'
import { pathToFileURL } from 'node:url'
program.argument('<site>', 'Domain name of the site').parse(process.argv)
const domain = program.args[0]
async function main() {
const storage = new Storage(SITES_DIR)
const logger = new Logger()
logger.info(`Initializing "${domain}"...\r\n`)
const dir = domain
if (await storage.exists(dir)) {
throw new Error(`Folder "${dir}" already exists`)
}
await storage.createDir(dir)
logger.info(`Creating "${dir}/${domain}.test.js"...`)
const testTemplate = fs.readFileSync(pathToFileURL('scripts/templates/_test.js'), {
encoding: 'utf8'
})
await storage.save(`${dir}/${domain}.test.js`, testTemplate.replace(/<DOMAIN>/g, domain))
logger.info(`Creating "${dir}/${domain}.config.js"...`)
const configTemplate = fs.readFileSync(pathToFileURL('scripts/templates/_config.js'), {
encoding: 'utf8'
})
await storage.save(`${dir}/${domain}.config.js`, configTemplate.replace(/<DOMAIN>/g, domain))
logger.info(`Creating "${dir}/readme.md"...`)
const readmeTemplate = fs.readFileSync(pathToFileURL('scripts/templates/_readme.md'), {
encoding: 'utf8'
})
await storage.save(`${dir}/readme.md`, readmeTemplate.replace(/<DOMAIN>/g, domain))
logger.info('\r\nDone')
}
main()

View file

@ -41,7 +41,7 @@ export class ApiClient {
} }
async download(filename: string) { async download(filename: string) {
const stream = await this.storage.createStream(`/temp/data/${filename}`) const stream = await this.storage.createStream(`temp/data/${filename}`)
const bar = this.progressBar.create(0, 0, { filename }) const bar = this.progressBar.create(0, 0, { filename })

View file

@ -0,0 +1,16 @@
module.exports = {
site: '<DOMAIN>',
url({ channel, date }) {
return `https://example.com/api/${channel.site_id}/${date.format('YYYY-MM-DD')}`
},
parser({ content }) {
try {
return JSON.parse(content)
} catch {
return []
}
},
channels() {
return []
}
}

View file

@ -0,0 +1,21 @@
# <DOMAIN>
https://example.com
### Download the guide
```sh
npm run grab --- --site=<DOMAIN>
```
### Update channel list
```sh
npm run channels:parse --- --config=./sites/<DOMAIN>/<DOMAIN>.config.js --output=./sites/<DOMAIN>/<DOMAIN>.channels.xml
```
### Test
```sh
npm test --- <DOMAIN>
```

View file

@ -0,0 +1,42 @@
const { parser, url } = require('./<DOMAIN>.config.js')
const dayjs = require('dayjs')
const utc = require('dayjs/plugin/utc')
const customParseFormat = require('dayjs/plugin/customParseFormat')
dayjs.extend(customParseFormat)
dayjs.extend(utc)
const date = dayjs.utc('2025-01-12', 'YYYY-MM-DD').startOf('d')
const channel = { site_id: 'bbc1', xmltv_id: 'BBCOne.uk' }
it('can generate valid url', () => {
expect(url({ channel, date })).toBe('https://example.com/api/bbc1/2025-01-12')
})
it('can parse response', () => {
const content =
'[{"title":"Program 1","start":"2025-01-12T00:00:00.000Z","stop":"2025-01-12T00:30:00.000Z"},{"title":"Program 2","start":"2025-01-12T00:30:00.000Z","stop":"2025-01-12T01:00:00.000Z"}]'
const results = parser({ content })
expect(results.length).toBe(2)
expect(results[0]).toMatchObject({
title: 'Program 1',
start: '2025-01-12T00:00:00.000Z',
stop: '2025-01-12T00:30:00.000Z'
})
expect(results[1]).toMatchObject({
title: 'Program 2',
start: '2025-01-12T00:30:00.000Z',
stop: '2025-01-12T01:00:00.000Z'
})
})
it('can handle empty guide', () => {
const result = parser({
date,
channel,
content: ''
})
expect(result).toMatchObject([])
})

View file

@ -11,14 +11,14 @@
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="BblackCaribbean.fr" site_id="51557">Bblack! Caribbean</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="BblackCaribbean.fr" site_id="51557">Bblack! Caribbean</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="C8.fr" site_id="51120">C8</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="C8.fr" site_id="51120">C8</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="Canal10.gp" site_id="51176">Canal 10</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="Canal10.gp" site_id="51176">Canal 10</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CanalPlusCinema.fr" site_id="51014">Canal + Cinéma France</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="" site_id="51014">Canal + Cinéma France</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CanalPlusHaiti.fr" site_id="51966">Canal + Haïti</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="" site_id="51966">Canal + Haïti</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CanalPlusKids.fr" site_id="51401">Canal + Kids</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CanalPlusKids.fr" site_id="51401">Canal + Kids</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CanalPlusSport.fr" site_id="51022">Canal + Sport France</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CanalPlusSport.fr" site_id="51022">Canal + Sport France</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="51328">Cine + Classic</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="51328">Cine + Classic</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusClub.fr" site_id="51024">Cine + Club</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusClub.fr" site_id="51024">Cine + Club</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="51025">Cine + Émotion</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="51025">Cine + Émotion</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusFamiz.fr" site_id="51026">Cine + Famiz</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="" site_id="51026">Cine + Famiz</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="51027">Cine + Frisson</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="51027">Cine + Frisson</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="51028">Cine + Premier</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="51028">Cine + Premier</channel>
<channel site="canalplus-haiti.com" lang="fr" xmltv_id="CNews.fr" site_id="51048">C News</channel> <channel site="canalplus-haiti.com" lang="fr" xmltv_id="CNews.fr" site_id="51048">C News</channel>

View file

@ -29,7 +29,7 @@
<channel site="canalplus.com" lang="fr" xmltv_id="CanalAlphaNE.ch" site_id="#772">CANAL ALPHA NE</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CanalAlphaNE.ch" site_id="#772">CANAL ALPHA NE</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CanalJ.fr" site_id="#525">CANAL J</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CanalJ.fr" site_id="#525">CANAL J</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CanalPlus.fr" site_id="#301">CANAL+</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CanalPlus.fr" site_id="#301">CANAL+</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusCinema.fr" site_id="#198">CANAL+CINEMA(S)</channel> <channel site="canalplus.com" lang="fr" xmltv_id="" site_id="#198">CANAL+CINEMA(S)</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusDocs.fr" site_id="#899">CANAL+DOCS</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusDocs.fr" site_id="#899">CANAL+DOCS</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusFoot.fr" site_id="#19">CANAL+FOOT</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusFoot.fr" site_id="#19">CANAL+FOOT</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusFormula1.fr" site_id="#824">CANAL+FORMULA1</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CanalPlusFormula1.fr" site_id="#824">CANAL+FORMULA1</channel>
@ -47,7 +47,7 @@
<channel site="canalplus.com" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="#531">CINE+ CLASSIC</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="#531">CINE+ CLASSIC</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CinePlusClub.fr" site_id="#532">CINE+ CLUB</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CinePlusClub.fr" site_id="#532">CINE+ CLUB</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="#396">CINE+ EMOTION</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="#396">CINE+ EMOTION</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CinePlusFamiz.fr" site_id="#533">CINE+ FAMIZ</channel> <channel site="canalplus.com" lang="fr" xmltv_id="" site_id="#533">CINE+ FAMIZ</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="#398">CINE+ FRISSON</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="#398">CINE+ FRISSON</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="#322">CINE+ PREMIER</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="#322">CINE+ PREMIER</channel>
<channel site="canalplus.com" lang="fr" xmltv_id="CNBCEurope.uk" site_id="#64">CNBC</channel> <channel site="canalplus.com" lang="fr" xmltv_id="CNBCEurope.uk" site_id="#64">CNBC</channel>

View file

@ -175,7 +175,7 @@
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="C8.fr" site_id="445">C8</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="C8.fr" site_id="445">C8</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalJ.fr" site_id="32">CANAL J</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalJ.fr" site_id="32">CANAL J</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlus.fr" site_id="34">CANAL+</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlus.fr" site_id="34">CANAL+</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusCinema.fr" site_id="33">CANAL+CINEMA(S)</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="" site_id="33">CANAL+CINEMA(S)</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusDocs.fr" site_id="3347">CANAL+DOCS</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusDocs.fr" site_id="3347">CANAL+DOCS</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusGrandEcran.fr" site_id="3349">CANAL+GRAND ECRAN</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusGrandEcran.fr" site_id="3349">CANAL+GRAND ECRAN</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusKids.fr" site_id="3348">CANAL+kids</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CanalPlusKids.fr" site_id="3348">CANAL+kids</channel>
@ -186,7 +186,7 @@
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="287">CINE+CLASSIC</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="287">CINE+CLASSIC</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusClub.fr" site_id="285">CINE+CLUB</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusClub.fr" site_id="285">CINE+CLUB</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="283">CINE+EMOTION</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="283">CINE+EMOTION</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusFamiz.fr" site_id="401">CINE+FAMIZ</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="" site_id="401">CINE+FAMIZ</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="284">CINE+FRISSON</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="284">CINE+FRISSON</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="282">CINE+PREMIER</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="282">CINE+PREMIER</channel>
<channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="ClubbingTV.fr" site_id="1989">CLUBBING TV</channel> <channel site="chaines-tv.orange.fr" lang="fr" xmltv_id="ClubbingTV.fr" site_id="1989">CLUBBING TV</channel>

View file

@ -439,7 +439,7 @@
<channel site="directv.com" lang="en" xmltv_id="BravoEast.us" site_id="237#273">Bravo</channel> <channel site="directv.com" lang="en" xmltv_id="BravoEast.us" site_id="237#273">Bravo</channel>
<channel site="directv.com" lang="en" xmltv_id="BravoEast.us" site_id="237#8258">Bravo HD</channel> <channel site="directv.com" lang="en" xmltv_id="BravoEast.us" site_id="237#8258">Bravo HD</channel>
<channel site="directv.com" lang="en" xmltv_id="BYUTV.us" site_id="374#374">BYUtv</channel> <channel site="directv.com" lang="en" xmltv_id="BYUTV.us" site_id="374#374">BYUtv</channel>
<channel site="directv.com" lang="en" xmltv_id="Canal6Nacional.mx" site_id="412#5442">Multimedios</channel> <channel site="directv.com" lang="en" xmltv_id="" site_id="412#5442">Multimedios</channel>
<channel site="directv.com" lang="en" xmltv_id="CaracolInternacional.co" site_id="417#2547">Caracol TV</channel> <channel site="directv.com" lang="en" xmltv_id="CaracolInternacional.co" site_id="417#2547">Caracol TV</channel>
<channel site="directv.com" lang="en" xmltv_id="CartoonNetworkEast.us" site_id="296#296">Cartoon Network</channel> <channel site="directv.com" lang="en" xmltv_id="CartoonNetworkEast.us" site_id="296#296">Cartoon Network</channel>
<channel site="directv.com" lang="en" xmltv_id="CartoonNetworkEast.us" site_id="296#8255">Cartoon Network HD</channel> <channel site="directv.com" lang="en" xmltv_id="CartoonNetworkEast.us" site_id="296#8255">Cartoon Network HD</channel>
@ -448,8 +448,8 @@
<channel site="directv.com" lang="en" xmltv_id="CBSSportsNetworkUSA.us" site_id="221#5613">CBS Sports Network HD</channel> <channel site="directv.com" lang="en" xmltv_id="CBSSportsNetworkUSA.us" site_id="221#5613">CBS Sports Network HD</channel>
<channel site="directv.com" lang="en" xmltv_id="CCTV4America.cn" site_id="2052#4500">CCTV4</channel> <channel site="directv.com" lang="en" xmltv_id="CCTV4America.cn" site_id="2052#4500">CCTV4</channel>
<channel site="directv.com" lang="en" xmltv_id="CCTV4America.cn" site_id="2113#5448">CCTV-4 2113</channel> <channel site="directv.com" lang="en" xmltv_id="CCTV4America.cn" site_id="2113#5448">CCTV-4 2113</channel>
<channel site="directv.com" lang="en" xmltv_id="CGTNAmerica.cn" site_id="2053#4556">CGTN 2053 (99R)</channel> <channel site="directv.com" lang="en" xmltv_id="" site_id="2053#4556">CGTN 2053 (99R)</channel>
<channel site="directv.com" lang="en" xmltv_id="CGTNAmerica.cn" site_id="2119#4053">CGTN 2119</channel> <channel site="directv.com" lang="en" xmltv_id="" site_id="2119#4053">CGTN 2119</channel>
<channel site="directv.com" lang="en" xmltv_id="ChannelNecoInternational.jp" site_id="2042#2195">Channel NECO International</channel> <channel site="directv.com" lang="en" xmltv_id="ChannelNecoInternational.jp" site_id="2042#2195">Channel NECO International</channel>
<channel site="directv.com" lang="en" xmltv_id="CharmingChina.us" site_id="2055#4508">Charming China 2055</channel> <channel site="directv.com" lang="en" xmltv_id="CharmingChina.us" site_id="2055#4508">Charming China 2055</channel>
<channel site="directv.com" lang="en" xmltv_id="CharmingChina.us" site_id="2116#4031">Charming China 2116</channel> <channel site="directv.com" lang="en" xmltv_id="CharmingChina.us" site_id="2116#4031">Charming China 2116</channel>
@ -518,7 +518,7 @@
<channel site="directv.com" lang="en" xmltv_id="EWTN.us" site_id="370#422">EWTN</channel> <channel site="directv.com" lang="en" xmltv_id="EWTN.us" site_id="370#422">EWTN</channel>
<channel site="directv.com" lang="en" xmltv_id="FamilyEntertainmentTV.us" site_id="323#1983">Family Entertainment Television</channel> <channel site="directv.com" lang="en" xmltv_id="FamilyEntertainmentTV.us" site_id="323#1983">Family Entertainment Television</channel>
<channel site="directv.com" lang="en" xmltv_id="FlixEast.us" site_id="556#547">Flix</channel> <channel site="directv.com" lang="en" xmltv_id="FlixEast.us" site_id="556#547">Flix</channel>
<channel site="directv.com" lang="en" xmltv_id="FMTV.us" site_id="386#8983">FM HD</channel> <channel site="directv.com" lang="en" xmltv_id="" site_id="386#8983">FM HD</channel>
<channel site="directv.com" lang="en" xmltv_id="FoodNetworkEast.us" site_id="231#231">Food Network</channel> <channel site="directv.com" lang="en" xmltv_id="FoodNetworkEast.us" site_id="231#231">Food Network</channel>
<channel site="directv.com" lang="en" xmltv_id="FoodNetworkEast.us" site_id="231#8278">Food Network HD</channel> <channel site="directv.com" lang="en" xmltv_id="FoodNetworkEast.us" site_id="231#8278">Food Network HD</channel>
<channel site="directv.com" lang="en" xmltv_id="Foro.mx" site_id="453#3439">FOROtv</channel> <channel site="directv.com" lang="en" xmltv_id="Foro.mx" site_id="453#3439">FOROtv</channel>
@ -565,7 +565,7 @@
<channel site="directv.com" lang="en" xmltv_id="HBOEast.us" site_id="501#501">HBO East</channel> <channel site="directv.com" lang="en" xmltv_id="HBOEast.us" site_id="501#501">HBO East</channel>
<channel site="directv.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="507#507">HBO Family East</channel> <channel site="directv.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="507#507">HBO Family East</channel>
<channel site="directv.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="507#8973">HBO Family East HD</channel> <channel site="directv.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="507#8973">HBO Family East HD</channel>
<channel site="directv.com" lang="en" xmltv_id="HBOFamilyWest.us" site_id="508#508">HBO Family West</channel> <channel site="directv.com" lang="en" xmltv_id="" site_id="508#508">HBO Family West</channel>
<channel site="directv.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="503#1786">HBO Signature HD East</channel> <channel site="directv.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="503#1786">HBO Signature HD East</channel>
<channel site="directv.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="503#503">HBO Signature</channel> <channel site="directv.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="503#503">HBO Signature</channel>
<channel site="directv.com" lang="en" xmltv_id="HBOWest.us" site_id="504#504">HBO West</channel> <channel site="directv.com" lang="en" xmltv_id="HBOWest.us" site_id="504#504">HBO West</channel>
@ -628,7 +628,7 @@
<channel site="directv.com" lang="en" xmltv_id="MLBNetworkAlternate.us" site_id="213#5214">MLB Network Alt. 213-1 HD</channel> <channel site="directv.com" lang="en" xmltv_id="MLBNetworkAlternate.us" site_id="213#5214">MLB Network Alt. 213-1 HD</channel>
<channel site="directv.com" lang="en" xmltv_id="MoreMaxEast.us" site_id="517#4066">MoreMAX HD</channel> <channel site="directv.com" lang="en" xmltv_id="MoreMaxEast.us" site_id="517#4066">MoreMAX HD</channel>
<channel site="directv.com" lang="en" xmltv_id="MoreMaxEast.us" site_id="517#513">MoreMAX</channel> <channel site="directv.com" lang="en" xmltv_id="MoreMaxEast.us" site_id="517#513">MoreMAX</channel>
<channel site="directv.com" lang="en" xmltv_id="Motortrend.us" site_id="281#3505">MotorTrend HD</channel> <channel site="directv.com" lang="en" xmltv_id="" site_id="281#3505">MotorTrend HD</channel>
<channel site="directv.com" lang="en" xmltv_id="MovieMaxEast.us" site_id="521#3339">MovieMAX</channel> <channel site="directv.com" lang="en" xmltv_id="MovieMaxEast.us" site_id="521#3339">MovieMAX</channel>
<channel site="directv.com" lang="en" xmltv_id="MSNBC.us" site_id="356#3526">MSNBC HD</channel> <channel site="directv.com" lang="en" xmltv_id="MSNBC.us" site_id="356#3526">MSNBC HD</channel>
<channel site="directv.com" lang="en" xmltv_id="MSNBC.us" site_id="356#356">MSNBC</channel> <channel site="directv.com" lang="en" xmltv_id="MSNBC.us" site_id="356#356">MSNBC</channel>

View file

@ -137,7 +137,7 @@
<channel site="dishtv.in" lang="en" xmltv_id="ChannelDivya.in" site_id="10000000004750000">Divya TV</channel> <channel site="dishtv.in" lang="en" xmltv_id="ChannelDivya.in" site_id="10000000004750000">Divya TV</channel>
<channel site="dishtv.in" lang="en" xmltv_id="ChardiklaTimeTV.in" site_id="10000000003050000">CHARDIKLA TIME TV</channel> <channel site="dishtv.in" lang="en" xmltv_id="ChardiklaTimeTV.in" site_id="10000000003050000">CHARDIKLA TIME TV</channel>
<channel site="dishtv.in" lang="en" xmltv_id="CinemaTV.in" site_id="10000000009290000">CINEMA TV INDIA</channel> <channel site="dishtv.in" lang="en" xmltv_id="CinemaTV.in" site_id="10000000009290000">CINEMA TV INDIA</channel>
<channel site="dishtv.in" lang="en" xmltv_id="CNBCAwaaz.in" site_id="10000000000890000">CNBC AWAAZ</channel> <channel site="dishtv.in" lang="en" xmltv_id="" site_id="10000000000890000">CNBC AWAAZ</channel>
<channel site="dishtv.in" lang="en" xmltv_id="CNBCBajar.in" site_id="10000000022380000">CNBC Bajar</channel> <channel site="dishtv.in" lang="en" xmltv_id="CNBCBajar.in" site_id="10000000022380000">CNBC Bajar</channel>
<channel site="dishtv.in" lang="en" xmltv_id="CNNInternationalSouthAsia.us" site_id="10000000000770000">CNN INTL</channel> <channel site="dishtv.in" lang="en" xmltv_id="CNNInternationalSouthAsia.us" site_id="10000000000770000">CNN INTL</channel>
<channel site="dishtv.in" lang="en" xmltv_id="CNNNews18.in" site_id="10000000000780000">CNN NEWS 18</channel> <channel site="dishtv.in" lang="en" xmltv_id="CNNNews18.in" site_id="10000000000780000">CNN NEWS 18</channel>

View file

@ -18,15 +18,15 @@
<channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#489">Maaddii Abol</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#489">Maaddii Abol</channel>
<channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#215">SS MotorSport Nigeria</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#215">SS MotorSport Nigeria</channel>
<channel site="dstv.com" lang="en" xmltv_id="1Magic.za" site_id="nga#103">1 Magic</channel> <channel site="dstv.com" lang="en" xmltv_id="1Magic.za" site_id="nga#103">1 Magic</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicEpic.za" site_id="nga#152">Africa Magic Epic</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#152">Africa Magic Epic</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicFamily.za" site_id="nga#154">Africa Magic Family</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#154">Africa Magic Family</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicHausa.za" site_id="nga#156">Africa Magic Hausa</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#156">Africa Magic Hausa</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicIgbo.za" site_id="nga#159">Africa Magic Igbo</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#159">Africa Magic Igbo</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicShowcase.za" site_id="nga#151">Africa Magic Showcase HD</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#151">Africa Magic Showcase HD</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicUrban.za" site_id="nga#153">Africa Magic Urban</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#153">Africa Magic Urban</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricaMagicYoruba.za" site_id="nga#157">Africa Magic Yoruba</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#157">Africa Magic Yoruba</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfricanewsEnglish.cg" site_id="nga#417">Africanews</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#417">Africanews</channel>
<channel site="dstv.com" lang="en" xmltv_id="AfroMusicPop.pt" site_id="nga#326">AFRO Music English</channel> <channel site="dstv.com" lang="en" xmltv_id="" site_id="nga#326">AFRO Music English</channel>
<channel site="dstv.com" lang="en" xmltv_id="AITInternational.ng" site_id="nga#253">AIT</channel> <channel site="dstv.com" lang="en" xmltv_id="AITInternational.ng" site_id="nga#253">AIT</channel>
<channel site="dstv.com" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="nga#406">Al Jazeera</channel> <channel site="dstv.com" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="nga#406">Al Jazeera</channel>
<channel site="dstv.com" lang="en" xmltv_id="Arewa24.ng" site_id="nga#261">Arewa 24</channel> <channel site="dstv.com" lang="en" xmltv_id="Arewa24.ng" site_id="nga#261">Arewa 24</channel>

View file

@ -21,7 +21,7 @@
<channel site="elcinema.com" lang="ar" xmltv_id="2MInternational.ma" site_id="1353">المغربية الثانية</channel> <channel site="elcinema.com" lang="ar" xmltv_id="2MInternational.ma" site_id="1353">المغربية الثانية</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="AbuDhabiTV.ae" site_id="1136">أبو ظبي</channel> <channel site="elcinema.com" lang="ar" xmltv_id="AbuDhabiTV.ae" site_id="1136">أبو ظبي</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="AlAoulaMiddleEast.ma" site_id="1312">الأولى المغربية</channel> <channel site="elcinema.com" lang="ar" xmltv_id="AlAoulaMiddleEast.ma" site_id="1312">الأولى المغربية</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="AlArabyTV2.uk" site_id="1382">التلفزيون العربي 2</channel> <channel site="elcinema.com" lang="ar" xmltv_id="" site_id="1382">التلفزيون العربي 2</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="AlDafrahTV.ae" site_id="1264">الظفرة</channel> <channel site="elcinema.com" lang="ar" xmltv_id="AlDafrahTV.ae" site_id="1264">الظفرة</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="AlhayatTV.eg" site_id="1137">الحياة</channel> <channel site="elcinema.com" lang="ar" xmltv_id="AlhayatTV.eg" site_id="1137">الحياة</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="AlJadeed.lb" site_id="1216">الجديد</channel> <channel site="elcinema.com" lang="ar" xmltv_id="AlJadeed.lb" site_id="1216">الجديد</channel>
@ -78,7 +78,7 @@
<channel site="elcinema.com" lang="ar" xmltv_id="MBCMasr.eg" site_id="1239">إم بي سي مصر</channel> <channel site="elcinema.com" lang="ar" xmltv_id="MBCMasr.eg" site_id="1239">إم بي سي مصر</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="MBCMasr2.eg" site_id="1278">إم بي سي مصر 2</channel> <channel site="elcinema.com" lang="ar" xmltv_id="MBCMasr2.eg" site_id="1278">إم بي سي مصر 2</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="MBCMax.ae" site_id="1132">إم بي سي ماكس</channel> <channel site="elcinema.com" lang="ar" xmltv_id="MBCMax.ae" site_id="1132">إم بي سي ماكس</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="MBCPlusDrama.ae" site_id="1131">إم بي سي دراما +</channel> <channel site="elcinema.com" lang="ar" xmltv_id="" site_id="1131">إم بي سي دراما +</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="MixBelAraby.eg" site_id="1371">ميكس بالعربي</channel> <channel site="elcinema.com" lang="ar" xmltv_id="MixBelAraby.eg" site_id="1371">ميكس بالعربي</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="MTV.lb" site_id="1296">إم تي في</channel> <channel site="elcinema.com" lang="ar" xmltv_id="MTV.lb" site_id="1296">إم تي في</channel>
<channel site="elcinema.com" lang="ar" xmltv_id="NationalGeographicAbuDhabi.ae" site_id="1266">ناشونال جيوجراف...</channel> <channel site="elcinema.com" lang="ar" xmltv_id="NationalGeographicAbuDhabi.ae" site_id="1266">ناشونال جيوجراف...</channel>

View file

@ -11,7 +11,7 @@
<channel site="elcinema.com" lang="en" xmltv_id="2MInternational.ma" site_id="1353">2M TV</channel> <channel site="elcinema.com" lang="en" xmltv_id="2MInternational.ma" site_id="1353">2M TV</channel>
<channel site="elcinema.com" lang="en" xmltv_id="AbuDhabiTV.ae" site_id="1136">Abu Dhabi TV</channel> <channel site="elcinema.com" lang="en" xmltv_id="AbuDhabiTV.ae" site_id="1136">Abu Dhabi TV</channel>
<channel site="elcinema.com" lang="en" xmltv_id="AlAoulaMiddleEast.ma" site_id="1312">Al Aoula Morocco</channel> <channel site="elcinema.com" lang="en" xmltv_id="AlAoulaMiddleEast.ma" site_id="1312">Al Aoula Morocco</channel>
<channel site="elcinema.com" lang="en" xmltv_id="AlArabyTV2.uk" site_id="1382">Alaraby TV 2</channel> <channel site="elcinema.com" lang="en" xmltv_id="" site_id="1382">Alaraby TV 2</channel>
<channel site="elcinema.com" lang="en" xmltv_id="AlDafrahTV.ae" site_id="1264">Al Dafrah</channel> <channel site="elcinema.com" lang="en" xmltv_id="AlDafrahTV.ae" site_id="1264">Al Dafrah</channel>
<channel site="elcinema.com" lang="en" xmltv_id="AlhayatTV.eg" site_id="1137">Alhayat TV</channel> <channel site="elcinema.com" lang="en" xmltv_id="AlhayatTV.eg" site_id="1137">Alhayat TV</channel>
<channel site="elcinema.com" lang="en" xmltv_id="AlJadeed.lb" site_id="1216">Al Jadeed TV</channel> <channel site="elcinema.com" lang="en" xmltv_id="AlJadeed.lb" site_id="1216">Al Jadeed TV</channel>
@ -71,11 +71,11 @@
<channel site="elcinema.com" lang="en" xmltv_id="MBCAction.ae" site_id="1130">MBC Action</channel> <channel site="elcinema.com" lang="en" xmltv_id="MBCAction.ae" site_id="1130">MBC Action</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCBollywood.ae" site_id="1259">MBC Bollywood</channel> <channel site="elcinema.com" lang="en" xmltv_id="MBCBollywood.ae" site_id="1259">MBC Bollywood</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCDrama.ae" site_id="1194">MBC Drama</channel> <channel site="elcinema.com" lang="en" xmltv_id="MBCDrama.ae" site_id="1194">MBC Drama</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCIraq.ae" site_id="1340">MBC Iraq</channel> <channel site="elcinema.com" lang="en" xmltv_id="" site_id="1340">MBC Iraq</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCMasr.eg" site_id="1239">MBC Egypt</channel> <channel site="elcinema.com" lang="en" xmltv_id="MBCMasr.eg" site_id="1239">MBC Egypt</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCMasr2.eg" site_id="1278">MBC MASR 2</channel> <channel site="elcinema.com" lang="en" xmltv_id="MBCMasr2.eg" site_id="1278">MBC MASR 2</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCMax.ae" site_id="1132">MBC MAX</channel> <channel site="elcinema.com" lang="en" xmltv_id="MBCMax.ae" site_id="1132">MBC MAX</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MBCPlusDrama.ae" site_id="1131">MBC Drama +</channel> <channel site="elcinema.com" lang="en" xmltv_id="" site_id="1131">MBC Drama +</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MixBelAraby.eg" site_id="1371">Mix Bel Araby</channel> <channel site="elcinema.com" lang="en" xmltv_id="MixBelAraby.eg" site_id="1371">Mix Bel Araby</channel>
<channel site="elcinema.com" lang="en" xmltv_id="MTV.lb" site_id="1296">MTV</channel> <channel site="elcinema.com" lang="en" xmltv_id="MTV.lb" site_id="1296">MTV</channel>
<channel site="elcinema.com" lang="en" xmltv_id="NationalGeographicAbuDhabi.ae" site_id="1266">National Geogra...</channel> <channel site="elcinema.com" lang="en" xmltv_id="NationalGeographicAbuDhabi.ae" site_id="1266">National Geogra...</channel>

View file

@ -8,7 +8,7 @@
<channel site="entertainment.ie" lang="en" xmltv_id="" site_id="sky-cinema-spooky">Sky Cinema Spooky</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="sky-cinema-spooky">Sky Cinema Spooky</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="" site_id="sky-cinema-twilight">Sky Cinema Twilight</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="sky-cinema-twilight">Sky Cinema Twilight</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="4Music.uk" site_id="4music">4Music</channel> <channel site="entertainment.ie" lang="en" xmltv_id="4Music.uk" site_id="4music">4Music</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="alibi.uk" site_id="alibi">Alibi</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="alibi">Alibi</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="AnimalPlanet.uk" site_id="animal-planet">Animal Planet</channel> <channel site="entertainment.ie" lang="en" xmltv_id="AnimalPlanet.uk" site_id="animal-planet">Animal Planet</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="BBCFour.uk" site_id="bbc-four">BBC Four</channel> <channel site="entertainment.ie" lang="en" xmltv_id="BBCFour.uk" site_id="bbc-four">BBC Four</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="BBCOneNorthernIreland.uk" site_id="bbc-one-ni">BBC One NI</channel> <channel site="entertainment.ie" lang="en" xmltv_id="BBCOneNorthernIreland.uk" site_id="bbc-one-ni">BBC One NI</channel>
@ -26,20 +26,20 @@
<channel site="entertainment.ie" lang="en" xmltv_id="ComedyCentral.uk" site_id="comedy-central">Comedy Central</channel> <channel site="entertainment.ie" lang="en" xmltv_id="ComedyCentral.uk" site_id="comedy-central">Comedy Central</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="ComedyCentralExtra.uk" site_id="comedy-central-extra">Comedy Central Extra</channel> <channel site="entertainment.ie" lang="en" xmltv_id="ComedyCentralExtra.uk" site_id="comedy-central-extra">Comedy Central Extra</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Cula4.ie" site_id="cula4">Cúla4</channel> <channel site="entertainment.ie" lang="en" xmltv_id="Cula4.ie" site_id="cula4">Cúla4</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Dave.uk" site_id="dave">Dave</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="dave">Dave</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryChannel.uk" site_id="discovery-channel">Discovery Channel</channel> <channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryChannel.uk" site_id="discovery-channel">Discovery Channel</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryHistory.uk" site_id="discovery-history">Discovery History</channel> <channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryHistory.uk" site_id="discovery-history">Discovery History</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryScience.uk" site_id="discovery-science">Discovery Science</channel> <channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryScience.uk" site_id="discovery-science">Discovery Science</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryTurbo.uk" site_id="discovery-turbo">Discovery Turbo</channel> <channel site="entertainment.ie" lang="en" xmltv_id="DiscoveryTurbo.uk" site_id="discovery-turbo">Discovery Turbo</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="DMAX.uk" site_id="dmax">DMAX</channel> <channel site="entertainment.ie" lang="en" xmltv_id="DMAX.uk" site_id="dmax">DMAX</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Drama.uk" site_id="drama">Drama</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="drama">Drama</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="E.ie" site_id="e-entertainment">E! Entertainment</channel> <channel site="entertainment.ie" lang="en" xmltv_id="E.ie" site_id="e-entertainment">E! Entertainment</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="E4.uk" site_id="e4">E4</channel> <channel site="entertainment.ie" lang="en" xmltv_id="E4.uk" site_id="e4">E4</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="E4Extra.uk" site_id="e4-extra">E4 Extra</channel> <channel site="entertainment.ie" lang="en" xmltv_id="E4Extra.uk" site_id="e4-extra">E4 Extra</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Eden.uk" site_id="eden">Eden</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="eden">Eden</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Eurosport1.uk" site_id="eurosport-1">Eurosport 1</channel> <channel site="entertainment.ie" lang="en" xmltv_id="Eurosport1.uk" site_id="eurosport-1">Eurosport 1</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Eurosport2.uk" site_id="eurosport-2">Eurosport 2</channel> <channel site="entertainment.ie" lang="en" xmltv_id="Eurosport2.uk" site_id="eurosport-2">Eurosport 2</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="GOLD.uk" site_id="gold">GOLD</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="gold">GOLD</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="GREATaction.uk" site_id="great-action">Great! Action</channel> <channel site="entertainment.ie" lang="en" xmltv_id="GREATaction.uk" site_id="great-action">Great! Action</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="GREATmovies.uk" site_id="great-movies">Great! Movies</channel> <channel site="entertainment.ie" lang="en" xmltv_id="GREATmovies.uk" site_id="great-movies">Great! Movies</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="GREATromance.uk" site_id="great-movies-romance">Great! Movies Romance</channel> <channel site="entertainment.ie" lang="en" xmltv_id="GREATromance.uk" site_id="great-movies-romance">Great! Movies Romance</channel>
@ -107,6 +107,6 @@
<channel site="entertainment.ie" lang="en" xmltv_id="VirginMediaOne.ie" site_id="virgin-media-one">Virgin Media One</channel> <channel site="entertainment.ie" lang="en" xmltv_id="VirginMediaOne.ie" site_id="virgin-media-one">Virgin Media One</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="VirginMediaThree.ie" site_id="virgin-media-three">Virgin Media Three</channel> <channel site="entertainment.ie" lang="en" xmltv_id="VirginMediaThree.ie" site_id="virgin-media-three">Virgin Media Three</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="VirginMediaTwo.ie" site_id="virgin-media-two">Virgin Media Two</channel> <channel site="entertainment.ie" lang="en" xmltv_id="VirginMediaTwo.ie" site_id="virgin-media-two">Virgin Media Two</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="W.uk" site_id="w">W</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="w">W</channel>
<channel site="entertainment.ie" lang="en" xmltv_id="Yesterday.uk" site_id="yesterday">Yesterday</channel> <channel site="entertainment.ie" lang="en" xmltv_id="" site_id="yesterday">Yesterday</channel>
</channels> </channels>

View file

@ -14,7 +14,6 @@
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV3">CCTV3</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV3">CCTV3</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4">CCTV4</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4">CCTV4</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4K">CCTV4K</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4K">CCTV4K</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4K">CCTV4K</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4欧洲">CCTV4欧洲</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4欧洲">CCTV4欧洲</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4美洲">CCTV4美洲</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV4美洲">CCTV4美洲</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV5">CCTV5</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="CCTV5">CCTV5</channel>
@ -563,10 +562,8 @@
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="民视">民视</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="民视">民视</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索动物">求索动物</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索动物">求索动物</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索生活">求索生活</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索生活">求索生活</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索生活">求索生活</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索科学">求索科学</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索科学">求索科学</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索纪录">求索纪录</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索纪录">求索纪录</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索纪录">求索纪录</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索记录">求索记录</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="求索记录">求索记录</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="汕头文旅体育">汕头文旅体育</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="汕头文旅体育">汕头文旅体育</channel>
<channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="汕头新闻综合">汕头新闻综合</channel> <channel site="epg.112114.xyz" lang="zh" xmltv_id="" site_id="汕头新闻综合">汕头新闻综合</channel>

View file

@ -33,9 +33,9 @@
<channel site="firstmedia.com" lang="en" xmltv_id="CelestialMoviesIndonesiaHD.id" site_id="311">Celestial Movies HD</channel> <channel site="firstmedia.com" lang="en" xmltv_id="CelestialMoviesIndonesiaHD.id" site_id="311">Celestial Movies HD</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="CGTN.cn" site_id="210">CGTN</channel> <channel site="firstmedia.com" lang="en" xmltv_id="CGTN.cn" site_id="210">CGTN</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="ChampionsTV1.id" site_id="141">Champions TV 1</channel> <channel site="firstmedia.com" lang="en" xmltv_id="ChampionsTV1.id" site_id="141">Champions TV 1</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="ChampionsTV1HD.id" site_id="321">Champions TV 1 HD</channel> <channel site="firstmedia.com" lang="en" xmltv_id="" site_id="321">Champions TV 1 HD</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="ChampionsTV2.id" site_id="142">Champions TV 2</channel> <channel site="firstmedia.com" lang="en" xmltv_id="ChampionsTV2.id" site_id="142">Champions TV 2</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="ChampionsTV2HD.id" site_id="322">Champions TV 2 HD</channel> <channel site="firstmedia.com" lang="en" xmltv_id="" site_id="322">Champions TV 2 HD</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="CinemaxAsia.sg" site_id="290">Cinemax</channel> <channel site="firstmedia.com" lang="en" xmltv_id="CinemaxAsia.sg" site_id="290">Cinemax</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="CinemaxAsiaHD.sg" site_id="310">Cinemax HD</channel> <channel site="firstmedia.com" lang="en" xmltv_id="CinemaxAsiaHD.sg" site_id="310">Cinemax HD</channel>
<channel site="firstmedia.com" lang="en" xmltv_id="CNA.sg" site_id="242">Channel News Asia</channel> <channel site="firstmedia.com" lang="en" xmltv_id="CNA.sg" site_id="242">Channel News Asia</channel>

View file

@ -134,7 +134,7 @@
<channel site="flixed.io" lang="en" xmltv_id="CartoonNetworkEast.us" site_id="12131">Cartoon Network (East)</channel> <channel site="flixed.io" lang="en" xmltv_id="CartoonNetworkEast.us" site_id="12131">Cartoon Network (East)</channel>
<channel site="flixed.io" lang="en" xmltv_id="CartoonNetworkWest.us" site_id="18151">Cartoon Network (West)</channel> <channel site="flixed.io" lang="en" xmltv_id="CartoonNetworkWest.us" site_id="18151">Cartoon Network (West)</channel>
<channel site="flixed.io" lang="en" xmltv_id="CBSEast.us" site_id="10098">CBS (East)</channel> <channel site="flixed.io" lang="en" xmltv_id="CBSEast.us" site_id="10098">CBS (East)</channel>
<channel site="flixed.io" lang="en" xmltv_id="CBSNews.us" site_id="104846">CBS News Streaming</channel> <channel site="flixed.io" lang="en" xmltv_id="" site_id="104846">CBS News Streaming</channel>
<channel site="flixed.io" lang="en" xmltv_id="CBSSportsNetworkUSA.us" site_id="16365">CBS Sports Network</channel> <channel site="flixed.io" lang="en" xmltv_id="CBSSportsNetworkUSA.us" site_id="16365">CBS Sports Network</channel>
<channel site="flixed.io" lang="en" xmltv_id="CBSSportsNetworkUSA.us" site_id="59250">CBS Sports Network HD</channel> <channel site="flixed.io" lang="en" xmltv_id="CBSSportsNetworkUSA.us" site_id="59250">CBS Sports Network HD</channel>
<channel site="flixed.io" lang="en" xmltv_id="CBSWest.us" site_id="29073">CBS (West)</channel> <channel site="flixed.io" lang="en" xmltv_id="CBSWest.us" site_id="29073">CBS (West)</channel>
@ -234,7 +234,7 @@
<channel site="flixed.io" lang="en" xmltv_id="HBOComedyEast.us" site_id="59839">HBO Comedy HD</channel> <channel site="flixed.io" lang="en" xmltv_id="HBOComedyEast.us" site_id="59839">HBO Comedy HD</channel>
<channel site="flixed.io" lang="en" xmltv_id="HBOEast.us" site_id="10240">HBO (East)</channel> <channel site="flixed.io" lang="en" xmltv_id="HBOEast.us" site_id="10240">HBO (East)</channel>
<channel site="flixed.io" lang="en" xmltv_id="HBOFamilyEast.us" site_id="16585">HBO Family (East)</channel> <channel site="flixed.io" lang="en" xmltv_id="HBOFamilyEast.us" site_id="16585">HBO Family (East)</channel>
<channel site="flixed.io" lang="en" xmltv_id="HBOFamilyWest.us" site_id="16619">HBO Family (West)</channel> <channel site="flixed.io" lang="en" xmltv_id="" site_id="16619">HBO Family (West)</channel>
<channel site="flixed.io" lang="en" xmltv_id="HBOSignatureEast.us" site_id="10243">HBO Signature (East)</channel> <channel site="flixed.io" lang="en" xmltv_id="HBOSignatureEast.us" site_id="10243">HBO Signature (East)</channel>
<channel site="flixed.io" lang="en" xmltv_id="HBOSignatureWest.us" site_id="16576">HBO Signature (West)</channel> <channel site="flixed.io" lang="en" xmltv_id="HBOSignatureWest.us" site_id="16576">HBO Signature (West)</channel>
<channel site="flixed.io" lang="en" xmltv_id="HBOWest.us" site_id="10244">HBO (West)</channel> <channel site="flixed.io" lang="en" xmltv_id="HBOWest.us" site_id="10244">HBO (West)</channel>
@ -279,7 +279,7 @@
<channel site="flixed.io" lang="en" xmltv_id="MLBStrikeZone.us" site_id="75219">MLB Network Strike Zone</channel> <channel site="flixed.io" lang="en" xmltv_id="MLBStrikeZone.us" site_id="75219">MLB Network Strike Zone</channel>
<channel site="flixed.io" lang="en" xmltv_id="MoreMaxEast.us" site_id="10121">MoreMAX (East)</channel> <channel site="flixed.io" lang="en" xmltv_id="MoreMaxEast.us" site_id="10121">MoreMAX (East)</channel>
<channel site="flixed.io" lang="en" xmltv_id="MoreMaxWest.us" site_id="16620">MoreMAX (West)</channel> <channel site="flixed.io" lang="en" xmltv_id="MoreMaxWest.us" site_id="16620">MoreMAX (West)</channel>
<channel site="flixed.io" lang="en" xmltv_id="Motortrend.us" site_id="31046">MOTORTREND HD</channel> <channel site="flixed.io" lang="en" xmltv_id="" site_id="31046">MOTORTREND HD</channel>
<channel site="flixed.io" lang="en" xmltv_id="MSG.us" site_id="80169">MSG National</channel> <channel site="flixed.io" lang="en" xmltv_id="MSG.us" site_id="80169">MSG National</channel>
<channel site="flixed.io" lang="en" xmltv_id="MSGPlus.us" site_id="11105">MSG Plus Zone 1</channel> <channel site="flixed.io" lang="en" xmltv_id="MSGPlus.us" site_id="11105">MSG Plus Zone 1</channel>
<channel site="flixed.io" lang="en" xmltv_id="MSGPlus2.us" site_id="65492">MSG Plus HD Zone 2</channel> <channel site="flixed.io" lang="en" xmltv_id="MSGPlus2.us" site_id="65492">MSG Plus HD Zone 2</channel>

View file

@ -160,7 +160,7 @@
<channel site="freeview.co.uk" lang="en" xmltv_id="UDave.uk" site_id="64257#22272">U&amp;Dave</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UDave.uk" site_id="64257#22272">U&amp;Dave</channel>
<channel site="freeview.co.uk" lang="en" xmltv_id="UDaveJaVu.uk" site_id="64257#13008">U&amp;DaveJaVu</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UDaveJaVu.uk" site_id="64257#13008">U&amp;DaveJaVu</channel>
<channel site="freeview.co.uk" lang="en" xmltv_id="UDrama.uk" site_id="64257#16208">U&amp;Drama</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UDrama.uk" site_id="64257#16208">U&amp;Drama</channel>
<channel site="freeview.co.uk" lang="en" xmltv_id="UDramaPlus1.us" site_id="64257#22336">U&amp;Drama+1</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UDramaPlus1.uk" site_id="64257#22336">U&amp;Drama+1</channel>
<channel site="freeview.co.uk" lang="en" xmltv_id="UEden.uk" site_id="64257#19968">U&amp;Eden</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UEden.uk" site_id="64257#19968">U&amp;Eden</channel>
<channel site="freeview.co.uk" lang="en" xmltv_id="UW.uk" site_id="64257#28096">U&amp;W</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UW.uk" site_id="64257#28096">U&amp;W</channel>
<channel site="freeview.co.uk" lang="en" xmltv_id="UYesterday.uk" site_id="64257#25792">U&amp;Yesterday</channel> <channel site="freeview.co.uk" lang="en" xmltv_id="UYesterday.uk" site_id="64257#25792">U&amp;Yesterday</channel>

View file

@ -265,7 +265,7 @@
<channel site="gatotv.com" lang="es" xmltv_id="ExcelsiorTV.mx" site_id="excelsior_tv">Excelsior TV</channel> <channel site="gatotv.com" lang="es" xmltv_id="ExcelsiorTV.mx" site_id="excelsior_tv">Excelsior TV</channel>
<channel site="gatotv.com" lang="es" xmltv_id="ExtraTV42.cr" site_id="extra_tv_42_de_costa_rica">42 de Costa Rica</channel> <channel site="gatotv.com" lang="es" xmltv_id="ExtraTV42.cr" site_id="extra_tv_42_de_costa_rica">42 de Costa Rica</channel>
<channel site="gatotv.com" lang="es" xmltv_id="Foro.mx" site_id="foro_tv">Foro TV</channel> <channel site="gatotv.com" lang="es" xmltv_id="Foro.mx" site_id="foro_tv">Foro TV</channel>
<channel site="gatotv.com" lang="es" xmltv_id="Fox.es" site_id="fox_espana">Fox España</channel> <channel site="gatotv.com" lang="es" xmltv_id="" site_id="fox_espana">Fox España</channel>
<channel site="gatotv.com" lang="es" xmltv_id="FoxDeportes.us" site_id="fox_deportes">Fox Deportes</channel> <channel site="gatotv.com" lang="es" xmltv_id="FoxDeportes.us" site_id="fox_deportes">Fox Deportes</channel>
<channel site="gatotv.com" lang="es" xmltv_id="FoxNewsChannel.us" site_id="fox_news">Fox News</channel> <channel site="gatotv.com" lang="es" xmltv_id="FoxNewsChannel.us" site_id="fox_news">Fox News</channel>
<channel site="gatotv.com" lang="es" xmltv_id="FUTV.cr" site_id="futv">FUTV</channel> <channel site="gatotv.com" lang="es" xmltv_id="FUTV.cr" site_id="futv">FUTV</channel>
@ -379,7 +379,7 @@
<channel site="gatotv.com" lang="es" xmltv_id="Syfy.es" site_id="syfy_espana">Syfy España</channel> <channel site="gatotv.com" lang="es" xmltv_id="Syfy.es" site_id="syfy_espana">Syfy España</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TCM.es" site_id="tcm_espana">TCM España</channel> <channel site="gatotv.com" lang="es" xmltv_id="TCM.es" site_id="tcm_espana">TCM España</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TCMPanregional.us" site_id="tcm_panregional">TCM Panregional</channel> <channel site="gatotv.com" lang="es" xmltv_id="TCMPanregional.us" site_id="tcm_panregional">TCM Panregional</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TCTV.ec" site_id="tc_television">TC Televisión</channel> <channel site="gatotv.com" lang="es" xmltv_id="" site_id="tc_television">TC Televisión</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TeenNickLatinAmerica.us" site_id="teennick">TeenNick</channel> <channel site="gatotv.com" lang="es" xmltv_id="TeenNickLatinAmerica.us" site_id="teennick">TeenNick</channel>
<channel site="gatotv.com" lang="es" xmltv_id="Teleamazonas.ec" site_id="teleamazonas">Teleamazonas</channel> <channel site="gatotv.com" lang="es" xmltv_id="Teleamazonas.ec" site_id="teleamazonas">Teleamazonas</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TeleAntillas.do" site_id="2_de_republica_dominicana_teleantillas">2 de República Dominicana</channel> <channel site="gatotv.com" lang="es" xmltv_id="TeleAntillas.do" site_id="2_de_republica_dominicana_teleantillas">2 de República Dominicana</channel>
@ -428,7 +428,7 @@
<channel site="gatotv.com" lang="es" xmltv_id="Tooncast.us" site_id="tooncast">Tooncast</channel> <channel site="gatotv.com" lang="es" xmltv_id="Tooncast.us" site_id="tooncast">Tooncast</channel>
<channel site="gatotv.com" lang="es" xmltv_id="Trece.co" site_id="13_de_colombia">13 de Colombia</channel> <channel site="gatotv.com" lang="es" xmltv_id="Trece.co" site_id="13_de_colombia">13 de Colombia</channel>
<channel site="gatotv.com" lang="es" xmltv_id="Trece.py" site_id="13_de_paraguay">13 de Paraguay</channel> <channel site="gatotv.com" lang="es" xmltv_id="Trece.py" site_id="13_de_paraguay">13 de Paraguay</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TreceCostaRicaTV.cr" site_id="13_de_costa_rica">13 de Costa Rica</channel> <channel site="gatotv.com" lang="es" xmltv_id="" site_id="13_de_costa_rica">13 de Costa Rica</channel>
<channel site="gatotv.com" lang="es" xmltv_id="truTVLatinAmerica.us" site_id="tru_tv">truTV Lat.</channel> <channel site="gatotv.com" lang="es" xmltv_id="truTVLatinAmerica.us" site_id="tru_tv">truTV Lat.</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TSi.hn" site_id="tsi_honduras">Telesistema Informativo (TSI)</channel> <channel site="gatotv.com" lang="es" xmltv_id="TSi.hn" site_id="tsi_honduras">Telesistema Informativo (TSI)</channel>
<channel site="gatotv.com" lang="es" xmltv_id="TUDN.mx" site_id="tudn_mexico">TUDN México</channel> <channel site="gatotv.com" lang="es" xmltv_id="TUDN.mx" site_id="tudn_mexico">TUDN México</channel>

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="hoy.tv" lang="zh" xmltv_id="HOYIBC.hk" site_id="76">HOY 國際財經台</channel> <channel site="hoy.tv" lang="zh" xmltv_id="" site_id="76">HOY 國際財經台</channel>
<channel site="hoy.tv" lang="zh" xmltv_id="HOYTV.hk" site_id="77">HOY TV</channel> <channel site="hoy.tv" lang="zh" xmltv_id="HOYTV.hk" site_id="77">HOY TV</channel>
<channel site="hoy.tv" lang="zh" xmltv_id="HOYInfotainment.hk" site_id="78">HOY 資訊台</channel> <channel site="hoy.tv" lang="zh" xmltv_id="" site_id="78">HOY 資訊台</channel>
</channels> </channels>

View file

@ -230,7 +230,7 @@
<channel site="i.mjh.nz" lang="en" xmltv_id="GlewedTV.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5eea605474085f0040ddc76d">Glewed TV</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="GlewedTV.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5eea605474085f0040ddc76d">Glewed TV</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="GoTraveler.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-60a53634126de9002e694bc2">GoTraveler</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="GoTraveler.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-60a53634126de9002e694bc2">GoTraveler</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="GravitasMovies.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5efe1de7e0b3f5003f5d9f8e">Gravitas Movies</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="GravitasMovies.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5efe1de7e0b3f5003f5d9f8e">Gravitas Movies</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="GustoTV.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5f8746eabd529300418246d9">GUSTOTV</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="" site_id="Plex/all#5e20b730f2f8d5003d739db7-5f8746eabd529300418246d9">GUSTOTV</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="HallmarkMoviesMore.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-6244cf3c742b0d58cd4f2514">Hallmark Movies &amp; More</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="HallmarkMoviesMore.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-6244cf3c742b0d58cd4f2514">Hallmark Movies &amp; More</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="HardKnocks.ca" site_id="Plex/all#5e20b730f2f8d5003d739db7-5fd115bdb7ef8d002dcf1820">Hard Knocks</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="HardKnocks.ca" site_id="Plex/all#5e20b730f2f8d5003d739db7-5fd115bdb7ef8d002dcf1820">Hard Knocks</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="HiYAH.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5f64c4ef35f612003f6ffe30">Hi-YAH!</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="HiYAH.us" site_id="Plex/all#5e20b730f2f8d5003d739db7-5f64c4ef35f612003f6ffe30">Hi-YAH!</channel>

View file

@ -698,7 +698,7 @@
<channel site="i.mjh.nz" lang="en" xmltv_id="BritishDrama.us" site_id="PlutoTV/us#5b68a18823ecb93393cba2f1">British Drama</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="BritishDrama.us" site_id="PlutoTV/us#5b68a18823ecb93393cba2f1">British Drama</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="Buzzr.us" site_id="PlutoTV/us#5812bfbe4ced4f7b601b12e6">BUZZR</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="Buzzr.us" site_id="PlutoTV/us#5812bfbe4ced4f7b601b12e6">BUZZR</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="Cats247.us" site_id="PlutoTV/us#599375885ceaac3cabccbed7">Cats 24/7</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="Cats247.us" site_id="PlutoTV/us#599375885ceaac3cabccbed7">Cats 24/7</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CBSNews.us" site_id="PlutoTV/us#5a6b92f6e22a617379789618">CBS News</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="" site_id="PlutoTV/us#5a6b92f6e22a617379789618">CBS News</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CBSNewsBaltimore.us" site_id="PlutoTV/us#60f75919718aed0007250d7a">CBS News Baltimore</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="CBSNewsBaltimore.us" site_id="PlutoTV/us#60f75919718aed0007250d7a">CBS News Baltimore</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CBSNewsBayArea.us" site_id="PlutoTV/us#5eb1afb21486df0007abc57c">CBS News Bay Area</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="CBSNewsBayArea.us" site_id="PlutoTV/us#5eb1afb21486df0007abc57c">CBS News Bay Area</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CBSNewsBoston.us" site_id="PlutoTV/us#5eb1af2ad345340008fccd1e">CBS News Boston</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="CBSNewsBoston.us" site_id="PlutoTV/us#5eb1af2ad345340008fccd1e">CBS News Boston</channel>

View file

@ -961,7 +961,7 @@
<channel site="i.mjh.nz" lang="en" xmltv_id="BloombergQuicktake.us" site_id="SamsungTVPlus/us#USAJ30000041W">Bloomberg Originals</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="BloombergQuicktake.us" site_id="SamsungTVPlus/us#USAJ30000041W">Bloomberg Originals</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="BratTV.us" site_id="SamsungTVPlus/us#USBC240001823">Brat TV</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="BratTV.us" site_id="SamsungTVPlus/us#USBC240001823">Brat TV</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CarsTV.us" site_id="SamsungTVPlus/us#USAJ3504545A">Cars</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="CarsTV.us" site_id="SamsungTVPlus/us#USAJ3504545A">Cars</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CBSNews.us" site_id="SamsungTVPlus/us#USBA370000104">CBS News</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="" site_id="SamsungTVPlus/us#USBA370000104">CBS News</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="ChickenSoupfortheSoul.us" site_id="SamsungTVPlus/us#USBC2100007I2">Chicken Soup for the Soul</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="ChickenSoupfortheSoul.us" site_id="SamsungTVPlus/us#USBC2100007I2">Chicken Soup for the Soul</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="CineRomantico.us" site_id="SamsungTVPlus/us#USBA3800001E0">Cine Romantico</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="CineRomantico.us" site_id="SamsungTVPlus/us#USBA3800001E0">Cine Romantico</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="Cinevault80s.us" site_id="SamsungTVPlus/us#USAJ30000148W">CINEVAULT: 80s</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="Cinevault80s.us" site_id="SamsungTVPlus/us#USAJ30000148W">CINEVAULT: 80s</channel>
@ -988,7 +988,7 @@
<channel site="i.mjh.nz" lang="en" xmltv_id="FoxSoul.us" site_id="SamsungTVPlus/us#USBA300032J7">FOX SOUL</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="FoxSoul.us" site_id="SamsungTVPlus/us#USBA300032J7">FOX SOUL</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="FuboSportsNetwork.us" site_id="SamsungTVPlus/us#USAJ2200023Z0">fubo Sports Network</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="FuboSportsNetwork.us" site_id="SamsungTVPlus/us#USAJ2200023Z0">fubo Sports Network</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="GameShowCentral.us" site_id="SamsungTVPlus/us#USAJ3400012FA">Game Show Central</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="GameShowCentral.us" site_id="SamsungTVPlus/us#USAJ3400012FA">Game Show Central</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="GustoTV.us" site_id="SamsungTVPlus/us#USAK3508724A">Gusto TV</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="" site_id="SamsungTVPlus/us#USAK3508724A">Gusto TV</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="HallmarkMoviesMore.us" site_id="SamsungTVPlus/us#USBB19000017U">Highway to Heaven</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="HallmarkMoviesMore.us" site_id="SamsungTVPlus/us#USBB19000017U">Highway to Heaven</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="HeartlandWebFeed.us" site_id="SamsungTVPlus/us#USBB2900003O3">Heartland</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="HeartlandWebFeed.us" site_id="SamsungTVPlus/us#USBB2900003O3">Heartland</channel>
<channel site="i.mjh.nz" lang="en" xmltv_id="HollyWire.us" site_id="SamsungTVPlus/us#USBC2400015DO">Hollywire</channel> <channel site="i.mjh.nz" lang="en" xmltv_id="HollyWire.us" site_id="SamsungTVPlus/us#USBC2400015DO">Hollywire</channel>

View file

@ -3,5 +3,5 @@
<channel site="i24news.tv" lang="ar" xmltv_id="i24NEWSArabic.il" site_id="ar">I24NEWS عربى</channel> <channel site="i24news.tv" lang="ar" xmltv_id="i24NEWSArabic.il" site_id="ar">I24NEWS عربى</channel>
<channel site="i24news.tv" lang="en" xmltv_id="i24NEWSEnglishUSA.il" site_id="en">I24NEWS English (USA)</channel> <channel site="i24news.tv" lang="en" xmltv_id="i24NEWSEnglishUSA.il" site_id="en">I24NEWS English (USA)</channel>
<channel site="i24news.tv" lang="fr" xmltv_id="i24NEWSFrench.il" site_id="fr">I24NEWS Français</channel> <channel site="i24news.tv" lang="fr" xmltv_id="i24NEWSFrench.il" site_id="fr">I24NEWS Français</channel>
<channel site="i24news.tv" lang="he" xmltv_id="i24NEWSHebrew.il" site_id="he">I24NEWS עברית</channel> <channel site="i24news.tv" lang="he" xmltv_id="" site_id="he">I24NEWS עברית</channel>
</channels> </channels>

View file

@ -95,12 +95,12 @@
<channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="9#Vsport-live-4">V Sport Live 4</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="9#Vsport-live-4">V Sport Live 4</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="9#Vsport-live-5">V Sport Live 5</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="9#Vsport-live-5">V Sport Live 5</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="AnimalPlanetNordic.uk" site_id="13#animal-planet">Animal Planet</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="AnimalPlanetNordic.uk" site_id="13#animal-planet">Animal Planet</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="AVA.fi" site_id="1#ava">MTV Ava</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="1#ava">MTV Ava</channel>
<channel site="iltalehti.fi" lang="en" xmltv_id="CartoonNetwork.fi" site_id="10#cartoon-network">Cartoon Network</channel> <channel site="iltalehti.fi" lang="en" xmltv_id="CartoonNetwork.fi" site_id="10#cartoon-network">Cartoon Network</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="CMoreJuniori.fi" site_id="4#mtv-juniori">MTV juniori</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="CMoreJuniori.fi" site_id="4#mtv-juniori">MTV juniori</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="CMoreMax.fi" site_id="4#mtv-max">MTV Max</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="4#mtv-max">MTV Max</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="CMoreSport1.fi" site_id="4#mtv-sport-1">MTV Urheilu 1</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="4#mtv-sport-1">MTV Urheilu 1</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="CMoreSport2.fi" site_id="4#mtv-sport-2">MTV Urheilu 2</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="4#mtv-sport-2">MTV Urheilu 2</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="DiscoveryChannel.fi" site_id="13#discovery-channel">Discovery Channel</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="DiscoveryChannel.fi" site_id="13#discovery-channel">Discovery Channel</channel>
<channel site="iltalehti.fi" lang="en" xmltv_id="ExtremeSportsChannel.nl" site_id="9#extreme-sports">Extreme Sports</channel> <channel site="iltalehti.fi" lang="en" xmltv_id="ExtremeSportsChannel.nl" site_id="9#extreme-sports">Extreme Sports</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="Fox.fi" site_id="1#fox">Star</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="Fox.fi" site_id="1#fox">Star</channel>
@ -117,7 +117,7 @@
<channel site="iltalehti.fi" lang="fi" xmltv_id="NationalGeographic.fi" site_id="10#national-geographic">National Geographic</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="NationalGeographic.fi" site_id="10#national-geographic">National Geographic</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="Nelonen.fi" site_id="1#nelonen">Nelonen</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="Nelonen.fi" site_id="1#nelonen">Nelonen</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="SFkanalen.se" site_id="4#sf-kanalen">SF-kanalen</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="SFkanalen.se" site_id="4#sf-kanalen">SF-kanalen</channel>
<channel site="iltalehti.fi" lang="fi" xmltv_id="Sub.fi" site_id="1#sub">MTV Sub</channel> <channel site="iltalehti.fi" lang="fi" xmltv_id="" site_id="1#sub">MTV Sub</channel>
<channel site="iltalehti.fi" lang="sv" xmltv_id="SVT1.se" site_id="20#svt-1">SVT 1</channel> <channel site="iltalehti.fi" lang="sv" xmltv_id="SVT1.se" site_id="20#svt-1">SVT 1</channel>
<channel site="iltalehti.fi" lang="sv" xmltv_id="SVT2.se" site_id="20#svt-2">SVT 2</channel> <channel site="iltalehti.fi" lang="sv" xmltv_id="SVT2.se" site_id="20#svt-2">SVT 2</channel>
<channel site="iltalehti.fi" lang="sv" xmltv_id="SVT24.se" site_id="20#svt24">SVT24</channel> <channel site="iltalehti.fi" lang="sv" xmltv_id="SVT24.se" site_id="20#svt24">SVT24</channel>

View file

@ -54,7 +54,7 @@
<channel site="indihometv.com" lang="id" xmltv_id="HITSNowHD.sg" site_id="hitsnow">HITS Now</channel> <channel site="indihometv.com" lang="id" xmltv_id="HITSNowHD.sg" site_id="hitsnow">HITS Now</channel>
<channel site="indihometv.com" lang="id" xmltv_id="Horee.id" site_id="horee">Horee</channel> <channel site="indihometv.com" lang="id" xmltv_id="Horee.id" site_id="horee">Horee</channel>
<channel site="indihometv.com" lang="id" xmltv_id="HorizonSports.us" site_id="horizonsport">Horizon Sports</channel> <channel site="indihometv.com" lang="id" xmltv_id="HorizonSports.us" site_id="horizonsport">Horizon Sports</channel>
<channel site="indihometv.com" lang="id" xmltv_id="I-Konser.id" site_id="ikonser">I-Konser</channel> <channel site="indihometv.com" lang="id" xmltv_id="" site_id="ikonser">I-Konser</channel>
<channel site="indihometv.com" lang="id" xmltv_id="IDTV.id" site_id="idtv">IDTV</channel> <channel site="indihometv.com" lang="id" xmltv_id="IDTV.id" site_id="idtv">IDTV</channel>
<channel site="indihometv.com" lang="id" xmltv_id="IDXChannel.id" site_id="idx">IDX</channel> <channel site="indihometv.com" lang="id" xmltv_id="IDXChannel.id" site_id="idx">IDX</channel>
<channel site="indihometv.com" lang="id" xmltv_id="IMC.id" site_id="imc">IMC</channel> <channel site="indihometv.com" lang="id" xmltv_id="IMC.id" site_id="imc">IMC</channel>
@ -76,7 +76,7 @@
<channel site="indihometv.com" lang="id" xmltv_id="MentariTV.id" site_id="mentaritv">Mentari TV</channel> <channel site="indihometv.com" lang="id" xmltv_id="MentariTV.id" site_id="mentaritv">Mentari TV</channel>
<channel site="indihometv.com" lang="id" xmltv_id="MetroTV.id" site_id="metrotv">Metro TV</channel> <channel site="indihometv.com" lang="id" xmltv_id="MetroTV.id" site_id="metrotv">Metro TV</channel>
<channel site="indihometv.com" lang="id" xmltv_id="Moji.id" site_id="ochannel">MOJI</channel> <channel site="indihometv.com" lang="id" xmltv_id="Moji.id" site_id="ochannel">MOJI</channel>
<channel site="indihometv.com" lang="id" xmltv_id="Moonbug.id" site_id="moonbug">Moonbug</channel> <channel site="indihometv.com" lang="id" xmltv_id="" site_id="moonbug">Moonbug</channel>
<channel site="indihometv.com" lang="id" xmltv_id="MQTV.id" site_id="mqtv">MQTV</channel> <channel site="indihometv.com" lang="id" xmltv_id="MQTV.id" site_id="mqtv">MQTV</channel>
<channel site="indihometv.com" lang="id" xmltv_id="MTATV.id" site_id="mtatv">MTATV</channel> <channel site="indihometv.com" lang="id" xmltv_id="MTATV.id" site_id="mtatv">MTATV</channel>
<channel site="indihometv.com" lang="id" xmltv_id="MTVLive.uk" site_id="mtvlive">MTV Live</channel> <channel site="indihometv.com" lang="id" xmltv_id="MTVLive.uk" site_id="mtvlive">MTV Live</channel>
@ -84,9 +84,9 @@
<channel site="indihometv.com" lang="id" xmltv_id="MyKidz.id" site_id="mykids">MyKidz</channel> <channel site="indihometv.com" lang="id" xmltv_id="MyKidz.id" site_id="mykids">MyKidz</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NBATV.us" site_id="nba">NBA</channel> <channel site="indihometv.com" lang="id" xmltv_id="NBATV.us" site_id="nba">NBA</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NET.id" site_id="net">Net.</channel> <channel site="indihometv.com" lang="id" xmltv_id="NET.id" site_id="net">Net.</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NewTvComprehensive.cn" site_id="newtvcomprehensive">New Tv Comprehensive</channel> <channel site="indihometv.com" lang="id" xmltv_id="" site_id="newtvcomprehensive">New Tv Comprehensive</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NewTvFinance.cn" site_id="newtvfinance">New Tv Finance</channel> <channel site="indihometv.com" lang="id" xmltv_id="" site_id="newtvfinance">New Tv Finance</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NewTvVariety.cn" site_id="newtvvariety">New Tv Variety</channel> <channel site="indihometv.com" lang="id" xmltv_id="" site_id="newtvvariety">New Tv Variety</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NHKWorldJapan.jp" site_id="nhkworld">nhk world Japan</channel> <channel site="indihometv.com" lang="id" xmltv_id="NHKWorldJapan.jp" site_id="nhkworld">nhk world Japan</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NickelodeonAsia.sg" site_id="nickelodeon">Nickelodeon</channel> <channel site="indihometv.com" lang="id" xmltv_id="NickelodeonAsia.sg" site_id="nickelodeon">Nickelodeon</channel>
<channel site="indihometv.com" lang="id" xmltv_id="NickJrAsia.sg" site_id="nickjr">Nick Junior</channel> <channel site="indihometv.com" lang="id" xmltv_id="NickJrAsia.sg" site_id="nickjr">Nick Junior</channel>
@ -95,7 +95,7 @@
<channel site="indihometv.com" lang="id" xmltv_id="ONE.sg" site_id="sone">SONE</channel> <channel site="indihometv.com" lang="id" xmltv_id="ONE.sg" site_id="sone">SONE</channel>
<channel site="indihometv.com" lang="id" xmltv_id="PhoenixChineseChannel.hk" site_id="phoenixchinese">Phoenix Chinese</channel> <channel site="indihometv.com" lang="id" xmltv_id="PhoenixChineseChannel.hk" site_id="phoenixchinese">Phoenix Chinese</channel>
<channel site="indihometv.com" lang="id" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="phoenixinfonews">Phoenix InfoNews</channel> <channel site="indihometv.com" lang="id" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="phoenixinfonews">Phoenix InfoNews</channel>
<channel site="indihometv.com" lang="id" xmltv_id="Prambors.id" site_id="pramborstv">Prambors</channel> <channel site="indihometv.com" lang="id" xmltv_id="" site_id="pramborstv">Prambors</channel>
<channel site="indihometv.com" lang="id" xmltv_id="QuranTV.sa" site_id="alquran">AlQuran Kareem</channel> <channel site="indihometv.com" lang="id" xmltv_id="QuranTV.sa" site_id="alquran">AlQuran Kareem</channel>
<channel site="indihometv.com" lang="id" xmltv_id="RajawaliTV.id" site_id="rtv">Rajawali TV</channel> <channel site="indihometv.com" lang="id" xmltv_id="RajawaliTV.id" site_id="rtv">Rajawali TV</channel>
<channel site="indihometv.com" lang="id" xmltv_id="ROCKEntertainment.sg" site_id="blueant">Rock Entertainment</channel> <channel site="indihometv.com" lang="id" xmltv_id="ROCKEntertainment.sg" site_id="blueant">Rock Entertainment</channel>

View file

@ -10,19 +10,19 @@
<channel site="ipko.tv" lang="tr" xmltv_id="A2TV.tr" site_id="a2">A2</channel> <channel site="ipko.tv" lang="tr" xmltv_id="A2TV.tr" site_id="a2">A2</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="A2CNN.al" site_id="a2-cnn">A2 CNN</channel> <channel site="ipko.tv" lang="sq" xmltv_id="A2CNN.al" site_id="a2-cnn">A2 CNN</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="AHaber.tr" site_id="a-haber">A Haber</channel> <channel site="ipko.tv" lang="tr" xmltv_id="AHaber.tr" site_id="a-haber">A Haber</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="AlbUKTV.al" site_id="alb-uk-tv">ALB UK TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="alb-uk-tv">ALB UK TV</channel>
<channel site="ipko.tv" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="al-jazeera">Al Jazeera</channel> <channel site="ipko.tv" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="al-jazeera">Al Jazeera</channel>
<channel site="ipko.tv" lang="bs" xmltv_id="AlJazeeraBalkans.ba" site_id="al-jazeera-balkans">Al Jazeera Balkans</channel> <channel site="ipko.tv" lang="bs" xmltv_id="AlJazeeraBalkans.ba" site_id="al-jazeera-balkans">Al Jazeera Balkans</channel>
<channel site="ipko.tv" lang="mk" xmltv_id="AlsatM.mk" site_id="alsat-m">Alsat M</channel> <channel site="ipko.tv" lang="mk" xmltv_id="" site_id="alsat-m">Alsat M</channel>
<channel site="ipko.tv" lang="en" xmltv_id="ANews.tr" site_id="a-news">A News</channel> <channel site="ipko.tv" lang="en" xmltv_id="ANews.tr" site_id="a-news">A News</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="APara.tr" site_id="a-para">A Para</channel> <channel site="ipko.tv" lang="tr" xmltv_id="APara.tr" site_id="a-para">A Para</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="ASpor.tr" site_id="a-spor">A Spor</channel> <channel site="ipko.tv" lang="tr" xmltv_id="ASpor.tr" site_id="a-spor">A Spor</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="ADTTV.xk" site_id="atd-tv">ATD TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="atd-tv">ATD TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="ATV.xk" site_id="atv">ATV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="ATV.xk" site_id="atv">ATV</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="ATV.tr" site_id="atv-(turkey)">ATV (Turkey)</channel> <channel site="ipko.tv" lang="tr" xmltv_id="ATV.tr" site_id="atv-(turkey)">ATV (Turkey)</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="BangBang.al" site_id="bang-bang">Bang Bang</channel> <channel site="ipko.tv" lang="sq" xmltv_id="BangBang.al" site_id="bang-bang">Bang Bang</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="BBFMusicTV.al" site_id="bbf">BBF</channel> <channel site="ipko.tv" lang="sq" xmltv_id="BBFMusicTV.al" site_id="bbf">BBF</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="BeatTV.xk" site_id="beat-tv">Beat TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="beat-tv">Beat TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="BubbleTV.al" site_id="bubble">Bubble</channel> <channel site="ipko.tv" lang="sq" xmltv_id="BubbleTV.al" site_id="bubble">Bubble</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Click.al" site_id="click-tv">Click TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Click.al" site_id="click-tv">Click TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="ClubTV.al" site_id="club-tv">Club TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="ClubTV.al" site_id="club-tv">Club TV</channel>
@ -36,9 +36,9 @@
<channel site="ipko.tv" lang="sq" xmltv_id="ElrodiTV.al" site_id="elrodi">Elrodi</channel> <channel site="ipko.tv" lang="sq" xmltv_id="ElrodiTV.al" site_id="elrodi">Elrodi</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Episode.xk" site_id="episode">Episode</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Episode.xk" site_id="episode">Episode</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="EroXXX.nl" site_id="eroxxx">EroXXX</channel> <channel site="ipko.tv" lang="sq" xmltv_id="EroXXX.nl" site_id="eroxxx">EroXXX</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="ETV.al" site_id="e--tv">E-TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="e--tv">E-TV</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="EuroD.tr" site_id="euro-d">Euro D</channel> <channel site="ipko.tv" lang="tr" xmltv_id="EuroD.tr" site_id="euro-d">Euro D</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="EuroFilm.al" site_id="eurofilm">EuroFilm</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="eurofilm">EuroFilm</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="EuronewsAlbania.al" site_id="euronews-albania">Euronews Albania</channel> <channel site="ipko.tv" lang="sq" xmltv_id="EuronewsAlbania.al" site_id="euronews-albania">Euronews Albania</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="EuroStar.tr" site_id="euro-star">Euro Star</channel> <channel site="ipko.tv" lang="tr" xmltv_id="EuroStar.tr" site_id="euro-star">Euro Star</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="ExplorerHistori.al" site_id="exp-histori">Explorer Histori</channel> <channel site="ipko.tv" lang="sq" xmltv_id="ExplorerHistori.al" site_id="exp-histori">Explorer Histori</channel>
@ -47,29 +47,29 @@
<channel site="ipko.tv" lang="sq" xmltv_id="FilmAksion.al" site_id="film-aksion">Film Aksion</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FilmAksion.al" site_id="film-aksion">Film Aksion</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmAutor.al" site_id="film-autor">Film Autor</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FilmAutor.al" site_id="film-autor">Film Autor</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmDrame.al" site_id="film-drame">Film Dramë</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FilmDrame.al" site_id="film-drame">Film Dramë</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmFamily.al" site_id="family-hd">Film Family</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="family-hd">Film Family</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmGold.al" site_id="gold-hd">Film Gold</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="gold-hd">Film Gold</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmHits.al" site_id="film-hits-hd">Film Hits</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FilmHits.al" site_id="film-hits-hd">Film Hits</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmKomedi.al" site_id="film-komedi">Film Komedi</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FilmKomedi.al" site_id="film-komedi">Film Komedi</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmMax.al" site_id="max-hd">Film Max</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="max-hd">Film Max</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FilmThriller.al" site_id="film-thriller">Film Thriller</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FilmThriller.al" site_id="film-thriller">Film Thriller</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FirstChannel.xk" site_id="first-channel">First Channel</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FirstChannel.xk" site_id="first-channel">First Channel</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="FolkPlus.al" site_id="folk-+">Folk+</channel> <channel site="ipko.tv" lang="sq" xmltv_id="FolkPlus.al" site_id="folk-+">Folk+</channel>
<channel site="ipko.tv" lang="fr" xmltv_id="France24.fr" site_id="france-24">France 24</channel> <channel site="ipko.tv" lang="fr" xmltv_id="" site_id="france-24">France 24</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Gurmania.xk" site_id="gurmania">Gurmania</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="gurmania">Gurmania</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="HaberTurk.tr" site_id="haber-turk">Haber Türk</channel> <channel site="ipko.tv" lang="tr" xmltv_id="" site_id="haber-turk">Haber Türk</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="HalkTV.tr" site_id="halk-tv">Halk TV</channel> <channel site="ipko.tv" lang="tr" xmltv_id="HalkTV.tr" site_id="halk-tv">Halk TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="IPKOPromo.xk" site_id="ipko-promo">IPKO Promo</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="ipko-promo">IPKO Promo</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="JuniorTV.al" site_id="junior-tv">Junior TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="JuniorTV.al" site_id="junior-tv">Junior TV</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="Kanal7.tr" site_id="kanal-7">Kanal 7</channel> <channel site="ipko.tv" lang="tr" xmltv_id="Kanal7.tr" site_id="kanal-7">Kanal 7</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kanal10.xk" site_id="kanal-10">Kanal 10</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Kanal10.xk" site_id="kanal-10">Kanal 10</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="KanalDDrama.tr" site_id="kanald-drama">Kanal D Drama</channel> <channel site="ipko.tv" lang="tr" xmltv_id="KanalDDrama.tr" site_id="kanald-drama">Kanal D Drama</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kanali7.al" site_id="kanali-7">Kanali 7</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Kanali7.al" site_id="kanali-7">Kanali 7</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="KBPeja.xk" site_id="kb-peja">KB Peja</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="kb-peja">KB Peja</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kids.xk" site_id="kids">Kids</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="kids">Kids</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kino1.xk" site_id="kino-1">Kino 1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Kino1.xk" site_id="kino-1">Kino 1</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kino2.xk" site_id="kino-2">Kino 2</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Kino2.xk" site_id="kino-2">Kino 2</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kino3.xk" site_id="kino-3">Kino 3</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="kino-3">Kino 3</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVKlan.al" site_id="klan">Klan</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TVKlan.al" site_id="klan">Klan</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="KlanKosova.xk" site_id="klan-kosova">Klan Kosova</channel> <channel site="ipko.tv" lang="sq" xmltv_id="KlanKosova.xk" site_id="klan-kosova">Klan Kosova</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="KlanMacedonia.mk" site_id="klan-mk">Klan Macedonia</channel> <channel site="ipko.tv" lang="sq" xmltv_id="KlanMacedonia.mk" site_id="klan-mk">Klan Macedonia</channel>
@ -81,22 +81,22 @@
<channel site="ipko.tv" lang="sq" xmltv_id="KSport3.xk" site_id="k-sport-3">K-Sport 3</channel> <channel site="ipko.tv" lang="sq" xmltv_id="KSport3.xk" site_id="k-sport-3">K-Sport 3</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="KSport4.xk" site_id="k-sport-4">K-Sport 4</channel> <channel site="ipko.tv" lang="sq" xmltv_id="KSport4.xk" site_id="k-sport-4">K-Sport 4</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Kohavision.xk" site_id="ktv">KTV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Kohavision.xk" site_id="ktv">KTV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="LifeHD.xk" site_id="life-hd">Life HD</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="life-hd">Life HD</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="LivingHD.al" site_id="living-hd">Living HD</channel> <channel site="ipko.tv" lang="sq" xmltv_id="LivingHD.al" site_id="living-hd">Living HD</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Muse.al" site_id="muse">Muse</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Muse.al" site_id="muse">Muse</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="MyMusic.al" site_id="my-music">My Music</channel> <channel site="ipko.tv" lang="sq" xmltv_id="MyMusic.al" site_id="my-music">My Music</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="ntv.al" site_id="ntv">ntv</channel> <channel site="ipko.tv" lang="sq" xmltv_id="ntv.al" site_id="ntv">ntv</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="PeaceTV.xk" site_id="peace-tv">Peace TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="peace-tv">Peace TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="PositiveGold.xk" site_id="positive-gold">Positive Gold</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="positive-gold">Positive Gold</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="PowerTurk.tr" site_id="power-turk">Power Türk</channel> <channel site="ipko.tv" lang="tr" xmltv_id="" site_id="power-turk">Power Türk</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Premiere1.xk" site_id="premiere-1">Premiere 1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="premiere-1">Premiere 1</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Premiere2.xk" site_id="premiere-2">Premiere 2</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="premiere-2">Premiere 2</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Premiere3.xk" site_id="premiere-3">Premiere 3</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="premiere-3">Premiere 3</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Premiere4.xk" site_id="premiere-4">Premiere 4</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="premiere-4">Premiere 4</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="PremiumChannel.xk" site_id="premium-channel">Premium Channel</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="premium-channel">Premium Channel</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="PrimeTV.xk" site_id="prime-tv">Prime TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="PrimeTV.xk" site_id="prime-tv">Prime TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="PrinceKids.xk" site_id="prince-kids">Prince Kids</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="prince-kids">Prince Kids</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="PRO1.xk" site_id="pro1">PRO1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="pro1">PRO1</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTVIliria.xk" site_id="rti">RTI</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTVIliria.xk" site_id="rti">RTI</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTK1.xk" site_id="rtk-1">RTK 1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTK1.xk" site_id="rtk-1">RTK 1</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTK2.xk" site_id="rtk-2">RTK 2</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTK2.xk" site_id="rtk-2">RTK 2</channel>
@ -109,25 +109,25 @@
<channel site="ipko.tv" lang="sq" xmltv_id="RTSHPlus.al" site_id="rtsh-plus">RTSH Plus</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTSHPlus.al" site_id="rtsh-plus">RTSH Plus</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTSHShqip.al" site_id="rtsh-shqip">RTSH Shqip</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTSHShqip.al" site_id="rtsh-shqip">RTSH Shqip</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTV21.xk" site_id="rtv-21">RTV 21</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTV21.xk" site_id="rtv-21">RTV 21</channel>
<channel site="ipko.tv" lang="mk" xmltv_id="RTV21.mk" site_id="rtv-21-mk">RTV 21 MK</channel> <channel site="ipko.tv" lang="mk" xmltv_id="" site_id="rtv-21-mk">RTV 21 MK</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTVMir.xk" site_id="rtv-mir">RTV Mir</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTVMir.xk" site_id="rtv-mir">RTV Mir</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="ShowMax.tr" site_id="show-maxx">Show Max</channel> <channel site="ipko.tv" lang="tr" xmltv_id="ShowMax.tr" site_id="show-maxx">Show Max</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="ShowTurk.tr" site_id="show-turk">Show Türk</channel> <channel site="ipko.tv" lang="tr" xmltv_id="ShowTurk.tr" site_id="show-turk">Show Türk</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Smile.al" site_id="smile">Smile</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Smile.al" site_id="smile">Smile</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sofia.xk" site_id="sofia">Sofia</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="sofia">Sofia</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sport1.xk" site_id="sport-1">Sport 1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Sport1.xk" site_id="sport-1">Sport 1</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sport2.xk" site_id="sport-2">Sport 2</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Sport2.xk" site_id="sport-2">Sport 2</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sport3.xk" site_id="sport-3">Sport 3</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Sport3.xk" site_id="sport-3">Sport 3</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sport4.xk" site_id="sport-4">Sport 4</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Sport4.xk" site_id="sport-4">Sport 4</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sport5.xk" site_id="sport-5">Sport 5</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Sport5.xk" site_id="sport-5">Sport 5</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Sport6.xk" site_id="sport-6">Sport 6</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Sport6.xk" site_id="sport-6">Sport 6</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="StarChannel.al" site_id="star">Star Channel</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="star">Star Channel</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="StarLife.al" site_id="star-life">Star Life</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="star-life">Star Life</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="StarMovies.al" site_id="star-movies">Star Movies</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="star-movies">Star Movies</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="StarPlus.al" site_id="star-plus-tv">Star Plus</channel> <channel site="ipko.tv" lang="sq" xmltv_id="StarPlus.al" site_id="star-plus-tv">Star Plus</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Stinet.al" site_id="stinet">Stinët</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Stinet.al" site_id="stinet">Stinët</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="STVFolk.al" site_id="stv-folk">STV Folk</channel> <channel site="ipko.tv" lang="sq" xmltv_id="STVFolk.al" site_id="stv-folk">STV Folk</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Suite.xk" site_id="suite">Suite</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="suite">Suite</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="SuperSonicTV.al" site_id="supersonic-tv">Supersonic TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="SuperSonicTV.al" site_id="supersonic-tv">Supersonic TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="SuperSport1.al" site_id="supersport-1">SuperSport 1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="SuperSport1.al" site_id="supersport-1">SuperSport 1</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="SuperSport2.al" site_id="supersport-2">SuperSport 2</channel> <channel site="ipko.tv" lang="sq" xmltv_id="SuperSport2.al" site_id="supersport-2">SuperSport 2</channel>
@ -139,8 +139,8 @@
<channel site="ipko.tv" lang="sq" xmltv_id="Syri.al" site_id="syri-tv">Syri TV</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Syri.al" site_id="syri-tv">Syri TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="SyriVision.xk" site_id="tv-syri-vision">Syri Vision</channel> <channel site="ipko.tv" lang="sq" xmltv_id="SyriVision.xk" site_id="tv-syri-vision">Syri Vision</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="T7.xk" site_id="t7">T7</channel> <channel site="ipko.tv" lang="sq" xmltv_id="T7.xk" site_id="t7">T7</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TaoTao.xk" site_id="tao-tao">Tao Tao</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="tao-tao">Tao Tao</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Terra.xk" site_id="terra-hd">Terra</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="terra-hd">Terra</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="Teve1.xk" site_id="teve-1">tëvë 1</channel> <channel site="ipko.tv" lang="sq" xmltv_id="Teve1.xk" site_id="teve-1">tëvë 1</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="TGRTBelgesel.tr" site_id="tgrt-belgesel">TGRT Belgesel</channel> <channel site="ipko.tv" lang="tr" xmltv_id="TGRTBelgesel.tr" site_id="tgrt-belgesel">TGRT Belgesel</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="TGRTEurope.tr" site_id="tgrt-eu">TGRT EU</channel> <channel site="ipko.tv" lang="tr" xmltv_id="TGRTEurope.tr" site_id="tgrt-eu">TGRT EU</channel>
@ -160,13 +160,13 @@
<channel site="ipko.tv" lang="sq" xmltv_id="TringKids.al" site_id="tring-kids">Tring Kids</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringKids.al" site_id="tring-kids">Tring Kids</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringLife.al" site_id="tring-life">Tring Life</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringLife.al" site_id="tring-life">Tring Life</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringNovelas.al" site_id="novelas">Tring Novelas</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringNovelas.al" site_id="novelas">Tring Novelas</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringOriginals.al" site_id="tring-orignals">Tring Originals</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="tring-orignals">Tring Originals</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringPlanet.al" site_id="tring-planet">Tring Planet</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringPlanet.al" site_id="tring-planet">Tring Planet</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringSeries.al" site_id="tring-series">Tring Series</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="tring-series">Tring Series</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringShqip.al" site_id="tring-shqip">Tring Shqip</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringShqip.al" site_id="tring-shqip">Tring Shqip</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringSuper.al" site_id="tring-super-hd">Tring Super</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringSuper.al" site_id="tring-super-hd">Tring Super</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringTring.al" site_id="tring-tring">Tring Tring</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringTring.al" site_id="tring-tring">Tring Tring</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringTurkishStories.al" site_id="turkish-stories">Tring Turkish Stories</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="turkish-stories">Tring Turkish Stories</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TringWorld.al" site_id="tring-world">Tring World</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TringWorld.al" site_id="tring-world">Tring World</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="TRT1.tr" site_id="trt-1">TRT 1</channel> <channel site="ipko.tv" lang="tr" xmltv_id="TRT1.tr" site_id="trt-1">TRT 1</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="TRTBelgesel.tr" site_id="trt-belgesel">TRT Belgesel</channel> <channel site="ipko.tv" lang="tr" xmltv_id="TRTBelgesel.tr" site_id="trt-belgesel">TRT Belgesel</channel>
@ -183,15 +183,15 @@
<channel site="ipko.tv" lang="sq" xmltv_id="RTVBesa.xk" site_id="tv-besa">TV Besa</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTVBesa.xk" site_id="tv-besa">TV Besa</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="RTVDukagjini.xk" site_id="tv-dukagjini">TV Dukagjini</channel> <channel site="ipko.tv" lang="sq" xmltv_id="RTVDukagjini.xk" site_id="tv-dukagjini">TV Dukagjini</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVFestina.xk" site_id="tv-festina">TV Festina</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TVFestina.xk" site_id="tv-festina">TV Festina</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVLiria.xk" site_id="tv-liria">TV Liria</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="tv-liria">TV Liria</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVLlapi.xk" site_id="tv-llapi">TV Llapi</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TVLlapi.xk" site_id="tv-llapi">TV Llapi</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVMitrovica.xk" site_id="tv-mitrovica">TV Mitrovica</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TVMitrovica.xk" site_id="tv-mitrovica">TV Mitrovica</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVMost.xk" site_id="tv-most">TV Most</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="tv-most">TV Most</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVOpinion.xk" site_id="tv-opinioni">TV Opinion</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TVOpinion.xk" site_id="tv-opinioni">TV Opinion</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TVPuls.xk" site_id="tv-puls">TV Puls</channel> <channel site="ipko.tv" lang="sq" xmltv_id="" site_id="tv-puls">TV Puls</channel>
<channel site="ipko.tv" lang="bs" xmltv_id="TVSlonExtra.ba" site_id="tv-slon">TV Slon</channel> <channel site="ipko.tv" lang="bs" xmltv_id="TVSlonExtra.ba" site_id="tv-slon">TV Slon</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="TemaTV.xk" site_id="tv-tema">TV Tema</channel> <channel site="ipko.tv" lang="sq" xmltv_id="TemaTV.xk" site_id="tv-tema">TV Tema</channel>
<channel site="ipko.tv" lang="tr" xmltv_id="UlkeTV.tr" site_id="ulke-tv">Ülke TV</channel> <channel site="ipko.tv" lang="tr" xmltv_id="UlkeTV.tr" site_id="ulke-tv">Ülke TV</channel>
<channel site="ipko.tv" lang="sq" xmltv_id="VizionPlus.al" site_id="vizion-+-hd">Vizion+</channel> <channel site="ipko.tv" lang="sq" xmltv_id="VizionPlus.al" site_id="vizion-+-hd">Vizion+</channel>
<channel site="ipko.tv" lang="sr" xmltv_id="ZicoTV.rs" site_id="zico-tv">Zico TV</channel> <channel site="ipko.tv" lang="sr" xmltv_id="" site_id="zico-tv">Zico TV</channel>
</channels> </channels>

View file

@ -13,7 +13,7 @@
<channel site="kplus.vn" lang="vi" xmltv_id="KPlusSport1.vn" site_id="7012">K+PM HD</channel> <channel site="kplus.vn" lang="vi" xmltv_id="KPlusSport1.vn" site_id="7012">K+PM HD</channel>
<channel site="kplus.vn" lang="vi" xmltv_id="KPlusSport2.vn" site_id="7014">K+PC HD</channel> <channel site="kplus.vn" lang="vi" xmltv_id="KPlusSport2.vn" site_id="7014">K+PC HD</channel>
<channel site="kplus.vn" lang="vi" xmltv_id="NHKWorldJapan.jp" site_id="7070">NHK WORLD JAPAN</channel> <channel site="kplus.vn" lang="vi" xmltv_id="NHKWorldJapan.jp" site_id="7070">NHK WORLD JAPAN</channel>
<channel site="kplus.vn" lang="vi" xmltv_id="SCTVPhimtonghop.vn" site_id="7034">SCTV PHIMTONGHOP</channel> <channel site="kplus.vn" lang="vi" xmltv_id="" site_id="7034">SCTV PHIMTONGHOP</channel>
<channel site="kplus.vn" lang="vi" xmltv_id="TodayTV.vn" site_id="7049">VTC7-TODAY TV</channel> <channel site="kplus.vn" lang="vi" xmltv_id="TodayTV.vn" site_id="7049">VTC7-TODAY TV</channel>
<channel site="kplus.vn" lang="vi" xmltv_id="TV5MondeAsia.fr" site_id="7068">TV5 MONDE</channel> <channel site="kplus.vn" lang="vi" xmltv_id="TV5MondeAsia.fr" site_id="7068">TV5 MONDE</channel>
<channel site="kplus.vn" lang="vi" xmltv_id="VTC1.vn" site_id="7069">VTC1</channel> <channel site="kplus.vn" lang="vi" xmltv_id="VTC1.vn" site_id="7069">VTC1</channel>

View file

@ -538,7 +538,7 @@
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="CTart.cz" site_id="%C8T+art">T art</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="CTart.cz" site_id="%C8T+art">T art</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="CTDecko.cz" site_id="%C8T+%3AD">T :D</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="CTDecko.cz" site_id="%C8T+%3AD">T :D</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="CTSport.cz" site_id="%C8T4+Sport">T4 Sport</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="CTSport.cz" site_id="%C8T4+Sport">T4 Sport</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="Dave.uk" site_id="Dave+SD+UK">Dave SD UK</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="" site_id="Dave+SD+UK">Dave SD UK</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="DeluxeLounge.de" site_id="Deluxe+Lounge+HD">Deluxe Lounge HD</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="DeluxeLounge.de" site_id="Deluxe+Lounge+HD">Deluxe Lounge HD</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="DeluxeMusic.de" site_id="Deluxe+Music">Deluxe Music</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="DeluxeMusic.de" site_id="Deluxe+Music">Deluxe Music</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="DigiSport1.hu" site_id="Digi+Sport+1+HD">Digi Sport 1 HD</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="DigiSport1.hu" site_id="Digi+Sport+1+HD">Digi Sport 1 HD</channel>
@ -613,7 +613,7 @@
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="JOJPlus.sk" site_id="JOJ+Plus">JOJ Plus</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="JOJPlus.sk" site_id="JOJ+Plus">JOJ Plus</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="JOJSport.sk" site_id="JOJ+%8Aport">JOJ port</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="JOJSport.sk" site_id="JOJ+%8Aport">JOJ port</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="JOJWAU.sk" site_id="WAU">WAU</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="JOJWAU.sk" site_id="WAU">WAU</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="JugotonTV.hr" site_id="Jugoton">Jugoton</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="" site_id="Jugoton">Jugoton</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="JurnalTV.md" site_id="Jurnal+TV+Moldova">Jurnal TV Moldova</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="JurnalTV.md" site_id="Jurnal+TV+Moldova">Jurnal TV Moldova</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="K2.ua" site_id="K2+UA">K2 UA</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="K2.ua" site_id="K2+UA">K2 UA</channel>
<channel site="m.tv.sms.cz" lang="cs" xmltv_id="kabeleins.de" site_id="Kabel1">Kabel1</channel> <channel site="m.tv.sms.cz" lang="cs" xmltv_id="kabeleins.de" site_id="Kabel1">Kabel1</channel>
@ -892,7 +892,7 @@
<channel site="m.tv.sms.cz" lang="en" xmltv_id="DuskTV.nl" site_id="Dusk%21">Dusk!</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="DuskTV.nl" site_id="Dusk%21">Dusk!</channel>
<channel site="m.tv.sms.cz" lang="en" xmltv_id="DWDeutsch.de" site_id="Deutsche+Welle">Deutsche Welle</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="DWDeutsch.de" site_id="Deutsche+Welle">Deutsche Welle</channel>
<channel site="m.tv.sms.cz" lang="en" xmltv_id="E4.uk" site_id="E4+HD+UK">E4 HD UK</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="E4.uk" site_id="E4+HD+UK">E4 HD UK</channel>
<channel site="m.tv.sms.cz" lang="en" xmltv_id="Eden.uk" site_id="Eden+HD">Eden HD</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="" site_id="Eden+HD">Eden HD</channel>
<channel site="m.tv.sms.cz" lang="en" xmltv_id="EnglishClubTV.uk" site_id="English+Club+TV">English Club TV</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="EnglishClubTV.uk" site_id="English+Club+TV">English Club TV</channel>
<channel site="m.tv.sms.cz" lang="en" xmltv_id="EroXHD.nl" site_id="Erox+HD">Erox HD</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="EroXHD.nl" site_id="Erox+HD">Erox HD</channel>
<channel site="m.tv.sms.cz" lang="en" xmltv_id="EroXXXHD.nl" site_id="Eroxxx+HD">Eroxxx HD</channel> <channel site="m.tv.sms.cz" lang="en" xmltv_id="EroXXXHD.nl" site_id="Eroxxx+HD">Eroxxx HD</channel>

View file

@ -199,7 +199,7 @@
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="HRT2.hr" site_id="432">HRT 2</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="HRT2.hr" site_id="432">HRT 2</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="HRT3.hr" site_id="451">HRT 3</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="HRT3.hr" site_id="451">HRT 3</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="HRT4.hr" site_id="94">HRT 4</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="HRT4.hr" site_id="94">HRT 4</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="JugotonTV.hr" site_id="179">Jugoton</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="" site_id="179">Jugoton</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="KiKA.de" site_id="242">KiKa</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="KiKA.de" site_id="242">KiKa</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="KinoTV.hr" site_id="647">Kino TV</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="KinoTV.hr" site_id="647">Kino TV</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="Klasik.hr" site_id="178">Klasik TV</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="Klasik.hr" site_id="178">Klasik TV</channel>
@ -228,7 +228,7 @@
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkExtra.rs" site_id="248">Pink Extra</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkExtra.rs" site_id="248">Pink Extra</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkFashion.rs" site_id="254">Pink Fashion</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkFashion.rs" site_id="254">Pink Fashion</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkFilm.rs" site_id="251">Pink Film</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkFilm.rs" site_id="251">Pink Film</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkFolk1.rs" site_id="250">Pink Folk 1</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="" site_id="250">Pink Folk 1</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkKoncert.rs" site_id="253">Pink Koncert</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkKoncert.rs" site_id="253">Pink Koncert</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkM.me" site_id="245">Pink M</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkM.me" site_id="245">Pink M</channel>
<channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkMusic2.rs" site_id="252">Pink Music 2</channel> <channel site="maxtv.hrvatskitelekom.hr" lang="hr" xmltv_id="PinkMusic2.rs" site_id="252">Pink Music 2</channel>

View file

@ -3,6 +3,6 @@
<channel site="mediagenie.co.kr" lang="ko" xmltv_id="CHING.kr" site_id="CHING">CHING</channel> <channel site="mediagenie.co.kr" lang="ko" xmltv_id="CHING.kr" site_id="CHING">CHING</channel>
<channel site="mediagenie.co.kr" lang="ko" xmltv_id="ENADRAMA.kr" site_id="ENA_DRAMA">ENA DRAMA</channel> <channel site="mediagenie.co.kr" lang="ko" xmltv_id="ENADRAMA.kr" site_id="ENA_DRAMA">ENA DRAMA</channel>
<channel site="mediagenie.co.kr" lang="ko" xmltv_id="ENASTORY.kr" site_id="ENA_STORY">ENA STORY</channel> <channel site="mediagenie.co.kr" lang="ko" xmltv_id="ENASTORY.kr" site_id="ENA_STORY">ENA STORY</channel>
<channel site="mediagenie.co.kr" lang="ko" xmltv_id="Healthmedi.kr" site_id="Healthmedi">Healthmedi</channel> <channel site="mediagenie.co.kr" lang="ko" xmltv_id="" site_id="Healthmedi">Healthmedi</channel>
<channel site="mediagenie.co.kr" lang="ko" xmltv_id="ONT.kr" site_id="ONT">ONT</channel> <channel site="mediagenie.co.kr" lang="ko" xmltv_id="ONT.kr" site_id="ONT">ONT</channel>
</channels> </channels>

View file

@ -94,7 +94,7 @@
<channel site="meo.pt" lang="pt" xmltv_id="" site_id="WSPORT">W-Sport</channel> <channel site="meo.pt" lang="pt" xmltv_id="" site_id="WSPORT">W-Sport</channel>
<channel site="meo.pt" lang="pt" xmltv_id="3sat.de" site_id="3SAT">3SAT</channel> <channel site="meo.pt" lang="pt" xmltv_id="3sat.de" site_id="3SAT">3SAT</channel>
<channel site="meo.pt" lang="pt" xmltv_id="ABolaTV.pt" site_id="ABOLA">A Bola TV</channel> <channel site="meo.pt" lang="pt" xmltv_id="ABolaTV.pt" site_id="ABOLA">A Bola TV</channel>
<channel site="meo.pt" lang="pt" xmltv_id="AfroMusicChannel.pt" site_id="AFRO">Afro Music</channel> <channel site="meo.pt" lang="pt" xmltv_id="" site_id="AFRO">Afro Music</channel>
<channel site="meo.pt" lang="pt" xmltv_id="AlmaLusa.pt" site_id="ALMALUS">Alma Lusa</channel> <channel site="meo.pt" lang="pt" xmltv_id="AlmaLusa.pt" site_id="ALMALUS">Alma Lusa</channel>
<channel site="meo.pt" lang="pt" xmltv_id="arte.fr" site_id="ARTEHD">Arte</channel> <channel site="meo.pt" lang="pt" xmltv_id="arte.fr" site_id="ARTEHD">Arte</channel>
<channel site="meo.pt" lang="pt" xmltv_id="ARTV.pt" site_id="ARTV">ARTV</channel> <channel site="meo.pt" lang="pt" xmltv_id="ARTV.pt" site_id="ARTV">ARTV</channel>

View file

@ -92,7 +92,7 @@
<channel site="meuguia.tv" lang="pt" xmltv_id="TVBrasil.br" site_id="TED">TV Brasil</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="TVBrasil.br" site_id="TED">TV Brasil</channel>
<channel site="meuguia.tv" lang="pt" xmltv_id="TVCamara.br" site_id="CAM">TV Câmara</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="TVCamara.br" site_id="CAM">TV Câmara</channel>
<channel site="meuguia.tv" lang="pt" xmltv_id="TVCancaoNova.br" site_id="CNV">Canção Nova</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="TVCancaoNova.br" site_id="CNV">Canção Nova</channel>
<channel site="meuguia.tv" lang="pt" xmltv_id="TVCulturaNacional.br" site_id="CUL">TV Cultura</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="" site_id="CUL">TV Cultura</channel>
<channel site="meuguia.tv" lang="pt" xmltv_id="TVEscola.br" site_id="ESC">TV Escola</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="TVEscola.br" site_id="ESC">TV Escola</channel>
<channel site="meuguia.tv" lang="pt" xmltv_id="" site_id="TVE">TV Espanha</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="" site_id="TVE">TV Espanha</channel>
<channel site="meuguia.tv" lang="pt" xmltv_id="TVGazeta.br" site_id="GAZ">TV Gazeta</channel> <channel site="meuguia.tv" lang="pt" xmltv_id="TVGazeta.br" site_id="GAZ">TV Gazeta</channel>

View file

@ -606,10 +606,10 @@
<channel site="mi.tv" lang="pt" xmltv_id="CNNBrasil.br" site_id="br#cnn-brasil">CNN Brasil</channel> <channel site="mi.tv" lang="pt" xmltv_id="CNNBrasil.br" site_id="br#cnn-brasil">CNN Brasil</channel>
<channel site="mi.tv" lang="pt" xmltv_id="CNNInternationalAsiaPacific.hk" site_id="br#cnn-international-hd">CNN International HD</channel> <channel site="mi.tv" lang="pt" xmltv_id="CNNInternationalAsiaPacific.hk" site_id="br#cnn-international-hd">CNN International HD</channel>
<channel site="mi.tv" lang="pt" xmltv_id="ComedyCentral.br" site_id="br#comedy-central">Comedy Central</channel> <channel site="mi.tv" lang="pt" xmltv_id="ComedyCentral.br" site_id="br#comedy-central">Comedy Central</channel>
<channel site="mi.tv" lang="pt" xmltv_id="ConmebolTV1.br" site_id="br#conmebol-tv-1">Conmebol TV 1</channel> <channel site="mi.tv" lang="pt" xmltv_id="" site_id="br#conmebol-tv-1">Conmebol TV 1</channel>
<channel site="mi.tv" lang="pt" xmltv_id="ConmebolTV2.br" site_id="br#conmebol-tv-2">Conmebol TV 2</channel> <channel site="mi.tv" lang="pt" xmltv_id="" site_id="br#conmebol-tv-2">Conmebol TV 2</channel>
<channel site="mi.tv" lang="pt" xmltv_id="ConmebolTV3.br" site_id="br#conmebol-tv-3">Conmebol TV 3</channel> <channel site="mi.tv" lang="pt" xmltv_id="" site_id="br#conmebol-tv-3">Conmebol TV 3</channel>
<channel site="mi.tv" lang="pt" xmltv_id="ConmebolTV4.br" site_id="br#conmebol-tv-4">Conmebol TV 4</channel> <channel site="mi.tv" lang="pt" xmltv_id="" site_id="br#conmebol-tv-4">Conmebol TV 4</channel>
<channel site="mi.tv" lang="pt" xmltv_id="Curta.br" site_id="br#curta">Curta!</channel> <channel site="mi.tv" lang="pt" xmltv_id="Curta.br" site_id="br#curta">Curta!</channel>
<channel site="mi.tv" lang="pt" xmltv_id="DiscoveryChannel.br" site_id="br#discovery">Discovery</channel> <channel site="mi.tv" lang="pt" xmltv_id="DiscoveryChannel.br" site_id="br#discovery">Discovery</channel>
<channel site="mi.tv" lang="pt" xmltv_id="DiscoveryHomeHealth.br" site_id="br#discovery-home-health">Discovery Home &amp; Health</channel> <channel site="mi.tv" lang="pt" xmltv_id="DiscoveryHomeHealth.br" site_id="br#discovery-home-health">Discovery Home &amp; Health</channel>
@ -781,7 +781,7 @@
<channel site="mi.tv" lang="pt" xmltv_id="TVCidadeVerdeCuiaba.br" site_id="br#tv-cidade-verde-hd">TV Cidade Verde HD</channel> <channel site="mi.tv" lang="pt" xmltv_id="TVCidadeVerdeCuiaba.br" site_id="br#tv-cidade-verde-hd">TV Cidade Verde HD</channel>
<channel site="mi.tv" lang="pt" xmltv_id="TVClube.br" site_id="br#tv-clube">TV Clube</channel> <channel site="mi.tv" lang="pt" xmltv_id="TVClube.br" site_id="br#tv-clube">TV Clube</channel>
<channel site="mi.tv" lang="pt" xmltv_id="TVCorreio.br" site_id="br#tv-correio">TV Correio</channel> <channel site="mi.tv" lang="pt" xmltv_id="TVCorreio.br" site_id="br#tv-correio">TV Correio</channel>
<channel site="mi.tv" lang="pt" xmltv_id="TVCulturaNacional.br" site_id="br#cultura">Cultura</channel> <channel site="mi.tv" lang="pt" xmltv_id="" site_id="br#cultura">Cultura</channel>
<channel site="mi.tv" lang="pt" xmltv_id="TVDiario.br" site_id="br#tv-diario">TV Diário</channel> <channel site="mi.tv" lang="pt" xmltv_id="TVDiario.br" site_id="br#tv-diario">TV Diário</channel>
<channel site="mi.tv" lang="pt" xmltv_id="TVDifusoraSaoLuis.br" site_id="br#tv-difusora-s-o-luis">TV Difusora São Luís</channel> <channel site="mi.tv" lang="pt" xmltv_id="TVDifusoraSaoLuis.br" site_id="br#tv-difusora-s-o-luis">TV Difusora São Luís</channel>
<channel site="mi.tv" lang="pt" xmltv_id="TVEBahia.br" site_id="br#tve-bahia">TVE Bahia</channel> <channel site="mi.tv" lang="pt" xmltv_id="TVEBahia.br" site_id="br#tve-bahia">TVE Bahia</channel>

View file

@ -6,18 +6,18 @@
<channel site="mncvision.id" lang="en" xmltv_id="ANTV.id" site_id="115">ANTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="ANTV.id" site_id="115">ANTV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ArirangWorld.kr" site_id="351">Arirang</channel> <channel site="mncvision.id" lang="en" xmltv_id="ArirangWorld.kr" site_id="351">Arirang</channel>
<channel site="mncvision.id" lang="en" xmltv_id="AXN.id" site_id="154">AXN</channel> <channel site="mncvision.id" lang="en" xmltv_id="AXN.id" site_id="154">AXN</channel>
<channel site="mncvision.id" lang="en" xmltv_id="AXNHD.id" site_id="447">AXN HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="447">AXN HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="BBCEarthAsia.uk" site_id="200">BBC Earth</channel> <channel site="mncvision.id" lang="en" xmltv_id="BBCEarthAsia.uk" site_id="200">BBC Earth</channel>
<channel site="mncvision.id" lang="en" xmltv_id="BBCEarthAsiaHD.uk" site_id="461">BBC Earth HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="BBCEarthAsiaHD.uk" site_id="461">BBC Earth HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="BBCNewsAsiaPacific.uk" site_id="332">BBC World News</channel> <channel site="mncvision.id" lang="en" xmltv_id="BBCNewsAsiaPacific.uk" site_id="332">BBC World News</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports1.id" site_id="309">beIN Sports 1</channel> <channel site="mncvision.id" lang="en" xmltv_id="beINSports1.id" site_id="309">beIN Sports 1</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports1HD.id" site_id="417">beIN Sports 1 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="417">beIN Sports 1 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports2.id" site_id="310">beIN Sports 2</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="310">beIN Sports 2</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports2HD.id" site_id="418">beIN Sports 2 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="418">beIN Sports 2 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports3.id" site_id="311">beIN Sports 3</channel> <channel site="mncvision.id" lang="en" xmltv_id="beINSports3.id" site_id="311">beIN Sports 3</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports3HD.id" site_id="419">beIN Sports 3 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="419">beIN Sports 3 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports4.id" site_id="312">beIN SPORTS 4</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="312">beIN SPORTS 4</channel>
<channel site="mncvision.id" lang="en" xmltv_id="beINSports5.id" site_id="313">beIN SPORTS 5</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="313">beIN SPORTS 5</channel>
<channel site="mncvision.id" lang="en" xmltv_id="BloombergTVAsia.hk" site_id="338">Bloomberg</channel> <channel site="mncvision.id" lang="en" xmltv_id="BloombergTVAsia.hk" site_id="338">Bloomberg</channel>
<channel site="mncvision.id" lang="en" xmltv_id="BTV.id" site_id="103">BTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="BTV.id" site_id="103">BTV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="CBeebiesAsia.uk" site_id="41">CBeebies</channel> <channel site="mncvision.id" lang="en" xmltv_id="CBeebiesAsia.uk" site_id="41">CBeebies</channel>
@ -40,7 +40,7 @@
<channel site="mncvision.id" lang="en" xmltv_id="CNBCAsia.sg" site_id="337">CNBC</channel> <channel site="mncvision.id" lang="en" xmltv_id="CNBCAsia.sg" site_id="337">CNBC</channel>
<channel site="mncvision.id" lang="en" xmltv_id="CrimePlusInvestigationAsia.sg" site_id="207">Crime Investigation</channel> <channel site="mncvision.id" lang="en" xmltv_id="CrimePlusInvestigationAsia.sg" site_id="207">Crime Investigation</channel>
<channel site="mncvision.id" lang="en" xmltv_id="DreamWorksChannelAsia.us" site_id="47">Dreamworks</channel> <channel site="mncvision.id" lang="en" xmltv_id="DreamWorksChannelAsia.us" site_id="47">Dreamworks</channel>
<channel site="mncvision.id" lang="en" xmltv_id="DreamWorksChannelAsiaHD.us" site_id="473">Dreamworks HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="473">Dreamworks HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="DWEnglish.de" site_id="357">DW English</channel> <channel site="mncvision.id" lang="en" xmltv_id="DWEnglish.de" site_id="357">DW English</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Entertainment.id" site_id="86">Entertainment</channel> <channel site="mncvision.id" lang="en" xmltv_id="Entertainment.id" site_id="86">Entertainment</channel>
<channel site="mncvision.id" lang="en" xmltv_id="EuronewsEnglish.fr" site_id="333">EURONEWS</channel> <channel site="mncvision.id" lang="en" xmltv_id="EuronewsEnglish.fr" site_id="333">EURONEWS</channel>
@ -51,24 +51,24 @@
<channel site="mncvision.id" lang="en" xmltv_id="Galaxy.id" site_id="13">Galaxy</channel> <channel site="mncvision.id" lang="en" xmltv_id="Galaxy.id" site_id="13">Galaxy</channel>
<channel site="mncvision.id" lang="en" xmltv_id="GalaxyPremium.id" site_id="12">Galaxy Premium</channel> <channel site="mncvision.id" lang="en" xmltv_id="GalaxyPremium.id" site_id="12">Galaxy Premium</channel>
<channel site="mncvision.id" lang="en" xmltv_id="GlobalTrekker.sg" site_id="201">Global Trekker</channel> <channel site="mncvision.id" lang="en" xmltv_id="GlobalTrekker.sg" site_id="201">Global Trekker</channel>
<channel site="mncvision.id" lang="en" xmltv_id="GlobalTrekkerHD.sg" site_id="462">Global Trekker HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="462">Global Trekker HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="GTV.id" site_id="81">GTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="GTV.id" site_id="81">GTV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="GTV.id" site_id="431">GTV HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="GTV.id" site_id="431">GTV HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="HanacarakaTV.id" site_id="90">Hanacaraka TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="90">Hanacaraka TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="HistoryAsia.us" site_id="206">History</channel> <channel site="mncvision.id" lang="en" xmltv_id="HistoryAsia.us" site_id="206">History</channel>
<channel site="mncvision.id" lang="en" xmltv_id="HITS.sg" site_id="160">HITS</channel> <channel site="mncvision.id" lang="en" xmltv_id="HITS.sg" site_id="160">HITS</channel>
<channel site="mncvision.id" lang="en" xmltv_id="HITSMovies.sg" site_id="11">HITS MOVIES</channel> <channel site="mncvision.id" lang="en" xmltv_id="HITSMovies.sg" site_id="11">HITS MOVIES</channel>
<channel site="mncvision.id" lang="en" xmltv_id="HITSMoviesHD.sg" site_id="409">HITS MOVIES HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="HITSMoviesHD.sg" site_id="409">HITS MOVIES HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="IDXChannel.id" site_id="100">IDX</channel> <channel site="mncvision.id" lang="en" xmltv_id="IDXChannel.id" site_id="100">IDX</channel>
<channel site="mncvision.id" lang="en" xmltv_id="IDXChannelHD.id" site_id="436">IDX HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="436">IDX HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="IMC.id" site_id="14">IMC</channel> <channel site="mncvision.id" lang="en" xmltv_id="IMC.id" site_id="14">IMC</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Indosiar.id" site_id="78">Indosiar</channel> <channel site="mncvision.id" lang="en" xmltv_id="Indosiar.id" site_id="78">Indosiar</channel>
<channel site="mncvision.id" lang="en" xmltv_id="IndosiarHD.id" site_id="438">Indosiar HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="438">Indosiar HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="iNews.id" site_id="83">iNews</channel> <channel site="mncvision.id" lang="en" xmltv_id="iNews.id" site_id="83">iNews</channel>
<channel site="mncvision.id" lang="en" xmltv_id="iNewsHD.id" site_id="433">iNews HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="433">iNews HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="JakTV.id" site_id="113">JAKTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="JakTV.id" site_id="113">JAKTV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="KidsTV.id" site_id="46">Kids TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="KidsTV.id" site_id="46">Kids TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="KidsTVHD.id" site_id="471">Kids TV HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="471">Kids TV HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="KIX.hk" site_id="161">KIX</channel> <channel site="mncvision.id" lang="en" xmltv_id="KIX.hk" site_id="161">KIX</channel>
<channel site="mncvision.id" lang="en" xmltv_id="KompasTV.id" site_id="106">Kompas TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="KompasTV.id" site_id="106">Kompas TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Life.id" site_id="91">LIFE</channel> <channel site="mncvision.id" lang="en" xmltv_id="Life.id" site_id="91">LIFE</channel>
@ -77,12 +77,12 @@
<channel site="mncvision.id" lang="en" xmltv_id="LoveNatureHD.ca" site_id="463">Love Nature HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="LoveNatureHD.ca" site_id="463">Love Nature HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MetroTV.id" site_id="107">Metro TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="MetroTV.id" site_id="107">Metro TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MNCTV.id" site_id="82">MNCTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="MNCTV.id" site_id="82">MNCTV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MNCTVHD.id" site_id="432">MNCTV HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="432">MNCTV HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Moonbug.id" site_id="40">Moonbug</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="40">Moonbug</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MTV90s.uk" site_id="149">MTV 90&apos;s</channel> <channel site="mncvision.id" lang="en" xmltv_id="MTV90s.uk" site_id="149">MTV 90&apos;s</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MTVLive.uk" site_id="148">MTV LIVE</channel> <channel site="mncvision.id" lang="en" xmltv_id="MTVLive.uk" site_id="148">MTV LIVE</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MusicTV.id" site_id="111">Music TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="MusicTV.id" site_id="111">Music TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MusicTVHD.id" site_id="444">Music TV HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="444">Music TV HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MuslimTV.id" site_id="92">Muslim TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="MuslimTV.id" site_id="92">Muslim TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MyCinema.id" site_id="16">My Cinema</channel> <channel site="mncvision.id" lang="en" xmltv_id="MyCinema.id" site_id="16">My Cinema</channel>
<channel site="mncvision.id" lang="en" xmltv_id="MyCinemaAsia.id" site_id="17">My Cinema Asia</channel> <channel site="mncvision.id" lang="en" xmltv_id="MyCinemaAsia.id" site_id="17">My Cinema Asia</channel>
@ -95,31 +95,31 @@
<channel site="mncvision.id" lang="en" xmltv_id="NickJrAsia.sg" site_id="37">Nickelodeon Jr</channel> <channel site="mncvision.id" lang="en" xmltv_id="NickJrAsia.sg" site_id="37">Nickelodeon Jr</channel>
<channel site="mncvision.id" lang="en" xmltv_id="NickJrAsiaHD.sg" site_id="472">Nick Jr. HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="NickJrAsiaHD.sg" site_id="472">Nick Jr. HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="OKTV.id" site_id="95">FOOD TRAVEL</channel> <channel site="mncvision.id" lang="en" xmltv_id="OKTV.id" site_id="95">FOOD TRAVEL</channel>
<channel site="mncvision.id" lang="en" xmltv_id="OKTVHD.id" site_id="459">Food Travel HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="459">Food Travel HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ONE.sg" site_id="164">ONE</channel> <channel site="mncvision.id" lang="en" xmltv_id="ONE.sg" site_id="164">ONE</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ONEHD.sg" site_id="445">ONE HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="ONEHD.sg" site_id="445">ONE HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="OutdoorChannel.us" site_id="202">Outdoor Channel</channel> <channel site="mncvision.id" lang="en" xmltv_id="OutdoorChannel.us" site_id="202">Outdoor Channel</channel>
<channel site="mncvision.id" lang="en" xmltv_id="OutdoorChannelHD.us" site_id="460">Outdoor channel HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="OutdoorChannelHD.us" site_id="460">Outdoor channel HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="QuranTV.sa" site_id="93">Al Quran Al Kareem</channel> <channel site="mncvision.id" lang="en" xmltv_id="QuranTV.sa" site_id="93">Al Quran Al Kareem</channel>
<channel site="mncvision.id" lang="en" xmltv_id="RCTI.id" site_id="80">RCTI</channel> <channel site="mncvision.id" lang="en" xmltv_id="RCTI.id" site_id="80">RCTI</channel>
<channel site="mncvision.id" lang="en" xmltv_id="RCTIHD.id" site_id="430">RCTI HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="430">RCTI HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ROCKEntertainment.sg" site_id="240">Rock Entertainment</channel> <channel site="mncvision.id" lang="en" xmltv_id="ROCKEntertainment.sg" site_id="240">Rock Entertainment</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ROCKExtreme.sg" site_id="248">Rock Action</channel> <channel site="mncvision.id" lang="en" xmltv_id="ROCKExtreme.sg" site_id="248">Rock Action</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SCTV.id" site_id="89">SCTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="SCTV.id" site_id="89">SCTV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SCTVHD.id" site_id="437">SCTV HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="437">SCTV HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SEAToday.id" site_id="336">SEA TODAY</channel> <channel site="mncvision.id" lang="en" xmltv_id="SEAToday.id" site_id="336">SEA TODAY</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SindoNewsTV.id" site_id="84">Sindo News TV</channel> <channel site="mncvision.id" lang="en" xmltv_id="SindoNewsTV.id" site_id="84">Sindo News TV</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SindoNewsTVHD.id" site_id="434">Sindo News TV HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="434">Sindo News TV HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SoccerChannel.id" site_id="101">Soccer Channel</channel> <channel site="mncvision.id" lang="en" xmltv_id="SoccerChannel.id" site_id="101">Soccer Channel</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SoccerChannelHD.id" site_id="420">Soccer Channel HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="420">Soccer Channel HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars2.id" site_id="98">Sportstars 2</channel> <channel site="mncvision.id" lang="en" xmltv_id="Sportstars2.id" site_id="98">Sportstars 2</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars2HD.id" site_id="422">Sportstars 2 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="422">Sportstars 2 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars3.id" site_id="99">Sportstars 3</channel> <channel site="mncvision.id" lang="en" xmltv_id="Sportstars3.id" site_id="99">Sportstars 3</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars3HD.id" site_id="423">sportstars 3 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="423">sportstars 3 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars4.id" site_id="88">Sportstars 4</channel> <channel site="mncvision.id" lang="en" xmltv_id="Sportstars4.id" site_id="88">Sportstars 4</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars4HD.id" site_id="424">Sportstars 4 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="424">Sportstars 4 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="Sportstars.id" site_id="102">Sportstars</channel> <channel site="mncvision.id" lang="en" xmltv_id="Sportstars.id" site_id="102">Sportstars</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SportstarsHD.id" site_id="421">Sportstars HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="421">Sportstars HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SPOTV2.kr" site_id="308">SPOTV 2</channel> <channel site="mncvision.id" lang="en" xmltv_id="SPOTV2.kr" site_id="308">SPOTV 2</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SPOTV2HD.kr" site_id="428">SPOTV 2 HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="SPOTV2HD.kr" site_id="428">SPOTV 2 HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="SPOTV.kr" site_id="307">SPOTV</channel> <channel site="mncvision.id" lang="en" xmltv_id="SPOTV.kr" site_id="307">SPOTV</channel>
@ -135,7 +135,7 @@
<channel site="mncvision.id" lang="en" xmltv_id="tvOne.id" site_id="97">tvOne</channel> <channel site="mncvision.id" lang="en" xmltv_id="tvOne.id" site_id="97">tvOne</channel>
<channel site="mncvision.id" lang="en" xmltv_id="TVRINasional.id" site_id="118">TVRI</channel> <channel site="mncvision.id" lang="en" xmltv_id="TVRINasional.id" site_id="118">TVRI</channel>
<channel site="mncvision.id" lang="en" xmltv_id="VisionPrime.id" site_id="94">Vision Prime</channel> <channel site="mncvision.id" lang="en" xmltv_id="VisionPrime.id" site_id="94">Vision Prime</channel>
<channel site="mncvision.id" lang="en" xmltv_id="VisionPrimeHD.id" site_id="1">Vision Prime HD</channel> <channel site="mncvision.id" lang="en" xmltv_id="" site_id="1">Vision Prime HD</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ZeeBioskop.id" site_id="23">Zee Bioskop</channel> <channel site="mncvision.id" lang="en" xmltv_id="ZeeBioskop.id" site_id="23">Zee Bioskop</channel>
<channel site="mncvision.id" lang="en" xmltv_id="ZooMoo.sg" site_id="39">Zoomoo</channel> <channel site="mncvision.id" lang="en" xmltv_id="ZooMoo.sg" site_id="39">Zoomoo</channel>
</channels> </channels>

View file

@ -6,18 +6,18 @@
<channel site="mncvision.id" lang="id" xmltv_id="ANTV.id" site_id="115">ANTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="ANTV.id" site_id="115">ANTV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ArirangWorld.kr" site_id="351">Arirang</channel> <channel site="mncvision.id" lang="id" xmltv_id="ArirangWorld.kr" site_id="351">Arirang</channel>
<channel site="mncvision.id" lang="id" xmltv_id="AXN.id" site_id="154">AXN</channel> <channel site="mncvision.id" lang="id" xmltv_id="AXN.id" site_id="154">AXN</channel>
<channel site="mncvision.id" lang="id" xmltv_id="AXNHD.id" site_id="447">AXN HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="447">AXN HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="BBCEarthAsia.uk" site_id="200">BBC Earth</channel> <channel site="mncvision.id" lang="id" xmltv_id="BBCEarthAsia.uk" site_id="200">BBC Earth</channel>
<channel site="mncvision.id" lang="id" xmltv_id="BBCEarthAsiaHD.uk" site_id="461">BBC Earth HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="BBCEarthAsiaHD.uk" site_id="461">BBC Earth HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="BBCNewsAsiaPacific.uk" site_id="332">BBC World News</channel> <channel site="mncvision.id" lang="id" xmltv_id="BBCNewsAsiaPacific.uk" site_id="332">BBC World News</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports1.id" site_id="309">beIN Sports 1</channel> <channel site="mncvision.id" lang="id" xmltv_id="beINSports1.id" site_id="309">beIN Sports 1</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports1HD.id" site_id="417">beIN Sports 1 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="417">beIN Sports 1 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports2.id" site_id="310">beIN Sports 2</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="310">beIN Sports 2</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports2HD.id" site_id="418">beIN Sports 2 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="418">beIN Sports 2 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports3.id" site_id="311">beIN Sports 3</channel> <channel site="mncvision.id" lang="id" xmltv_id="beINSports3.id" site_id="311">beIN Sports 3</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports3HD.id" site_id="419">beIN Sports 3 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="419">beIN Sports 3 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports4.id" site_id="312">beIN SPORTS 4</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="312">beIN SPORTS 4</channel>
<channel site="mncvision.id" lang="id" xmltv_id="beINSports5.id" site_id="313">beIN SPORTS 5</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="313">beIN SPORTS 5</channel>
<channel site="mncvision.id" lang="id" xmltv_id="BloombergTVAsia.hk" site_id="338">Bloomberg</channel> <channel site="mncvision.id" lang="id" xmltv_id="BloombergTVAsia.hk" site_id="338">Bloomberg</channel>
<channel site="mncvision.id" lang="id" xmltv_id="BTV.id" site_id="103">BTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="BTV.id" site_id="103">BTV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="CBeebiesAsia.uk" site_id="41">CBeebies</channel> <channel site="mncvision.id" lang="id" xmltv_id="CBeebiesAsia.uk" site_id="41">CBeebies</channel>
@ -40,7 +40,7 @@
<channel site="mncvision.id" lang="id" xmltv_id="CNBCAsia.sg" site_id="337">CNBC</channel> <channel site="mncvision.id" lang="id" xmltv_id="CNBCAsia.sg" site_id="337">CNBC</channel>
<channel site="mncvision.id" lang="id" xmltv_id="CrimePlusInvestigationAsia.sg" site_id="207">Crime Investigation</channel> <channel site="mncvision.id" lang="id" xmltv_id="CrimePlusInvestigationAsia.sg" site_id="207">Crime Investigation</channel>
<channel site="mncvision.id" lang="id" xmltv_id="DreamWorksChannelAsia.us" site_id="47">Dreamworks</channel> <channel site="mncvision.id" lang="id" xmltv_id="DreamWorksChannelAsia.us" site_id="47">Dreamworks</channel>
<channel site="mncvision.id" lang="id" xmltv_id="DreamWorksChannelAsiaHD.us" site_id="473">Dreamworks HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="473">Dreamworks HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="DWEnglish.de" site_id="357">DW English</channel> <channel site="mncvision.id" lang="id" xmltv_id="DWEnglish.de" site_id="357">DW English</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Entertainment.id" site_id="86">Entertainment</channel> <channel site="mncvision.id" lang="id" xmltv_id="Entertainment.id" site_id="86">Entertainment</channel>
<channel site="mncvision.id" lang="id" xmltv_id="EuronewsEnglish.fr" site_id="333">EURONEWS</channel> <channel site="mncvision.id" lang="id" xmltv_id="EuronewsEnglish.fr" site_id="333">EURONEWS</channel>
@ -51,24 +51,24 @@
<channel site="mncvision.id" lang="id" xmltv_id="Galaxy.id" site_id="13">Galaxy</channel> <channel site="mncvision.id" lang="id" xmltv_id="Galaxy.id" site_id="13">Galaxy</channel>
<channel site="mncvision.id" lang="id" xmltv_id="GalaxyPremium.id" site_id="12">Galaxy Premium</channel> <channel site="mncvision.id" lang="id" xmltv_id="GalaxyPremium.id" site_id="12">Galaxy Premium</channel>
<channel site="mncvision.id" lang="id" xmltv_id="GlobalTrekker.sg" site_id="201">Global Trekker</channel> <channel site="mncvision.id" lang="id" xmltv_id="GlobalTrekker.sg" site_id="201">Global Trekker</channel>
<channel site="mncvision.id" lang="id" xmltv_id="GlobalTrekkerHD.sg" site_id="462">Global Trekker HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="462">Global Trekker HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="GTV.id" site_id="81">GTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="GTV.id" site_id="81">GTV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="GTV.id" site_id="431">GTV HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="GTV.id" site_id="431">GTV HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="HanacarakaTV.id" site_id="90">Hanacaraka TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="90">Hanacaraka TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="HistoryAsia.us" site_id="206">History</channel> <channel site="mncvision.id" lang="id" xmltv_id="HistoryAsia.us" site_id="206">History</channel>
<channel site="mncvision.id" lang="id" xmltv_id="HITS.sg" site_id="160">HITS</channel> <channel site="mncvision.id" lang="id" xmltv_id="HITS.sg" site_id="160">HITS</channel>
<channel site="mncvision.id" lang="id" xmltv_id="HITSMovies.sg" site_id="11">HITS MOVIES</channel> <channel site="mncvision.id" lang="id" xmltv_id="HITSMovies.sg" site_id="11">HITS MOVIES</channel>
<channel site="mncvision.id" lang="id" xmltv_id="HITSMoviesHD.sg" site_id="409">HITS MOVIES HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="HITSMoviesHD.sg" site_id="409">HITS MOVIES HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="IDXChannel.id" site_id="100">IDX</channel> <channel site="mncvision.id" lang="id" xmltv_id="IDXChannel.id" site_id="100">IDX</channel>
<channel site="mncvision.id" lang="id" xmltv_id="IDXChannelHD.id" site_id="436">IDX HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="436">IDX HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="IMC.id" site_id="14">IMC</channel> <channel site="mncvision.id" lang="id" xmltv_id="IMC.id" site_id="14">IMC</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Indosiar.id" site_id="78">Indosiar</channel> <channel site="mncvision.id" lang="id" xmltv_id="Indosiar.id" site_id="78">Indosiar</channel>
<channel site="mncvision.id" lang="id" xmltv_id="IndosiarHD.id" site_id="438">Indosiar HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="438">Indosiar HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="iNews.id" site_id="83">iNews</channel> <channel site="mncvision.id" lang="id" xmltv_id="iNews.id" site_id="83">iNews</channel>
<channel site="mncvision.id" lang="id" xmltv_id="iNewsHD.id" site_id="433">iNews HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="433">iNews HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="JakTV.id" site_id="113">JAKTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="JakTV.id" site_id="113">JAKTV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="KidsTV.id" site_id="46">Kids TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="KidsTV.id" site_id="46">Kids TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="KidsTVHD.id" site_id="471">Kids TV HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="471">Kids TV HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="KIX.hk" site_id="161">KIX</channel> <channel site="mncvision.id" lang="id" xmltv_id="KIX.hk" site_id="161">KIX</channel>
<channel site="mncvision.id" lang="id" xmltv_id="KompasTV.id" site_id="106">Kompas TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="KompasTV.id" site_id="106">Kompas TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Life.id" site_id="91">LIFE</channel> <channel site="mncvision.id" lang="id" xmltv_id="Life.id" site_id="91">LIFE</channel>
@ -77,12 +77,12 @@
<channel site="mncvision.id" lang="id" xmltv_id="LoveNatureHD.ca" site_id="463">Love Nature HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="LoveNatureHD.ca" site_id="463">Love Nature HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MetroTV.id" site_id="107">Metro TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="MetroTV.id" site_id="107">Metro TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MNCTV.id" site_id="82">MNCTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="MNCTV.id" site_id="82">MNCTV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MNCTVHD.id" site_id="432">MNCTV HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="432">MNCTV HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Moonbug.id" site_id="40">Moonbug</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="40">Moonbug</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MTV90s.uk" site_id="149">MTV 90&apos;s</channel> <channel site="mncvision.id" lang="id" xmltv_id="MTV90s.uk" site_id="149">MTV 90&apos;s</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MTVLive.uk" site_id="148">MTV LIVE</channel> <channel site="mncvision.id" lang="id" xmltv_id="MTVLive.uk" site_id="148">MTV LIVE</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MusicTV.id" site_id="111">Music TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="MusicTV.id" site_id="111">Music TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MusicTVHD.id" site_id="444">Music TV HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="444">Music TV HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MuslimTV.id" site_id="92">Muslim TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="MuslimTV.id" site_id="92">Muslim TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MyCinema.id" site_id="16">My Cinema</channel> <channel site="mncvision.id" lang="id" xmltv_id="MyCinema.id" site_id="16">My Cinema</channel>
<channel site="mncvision.id" lang="id" xmltv_id="MyCinemaAsia.id" site_id="17">My Cinema Asia</channel> <channel site="mncvision.id" lang="id" xmltv_id="MyCinemaAsia.id" site_id="17">My Cinema Asia</channel>
@ -95,31 +95,31 @@
<channel site="mncvision.id" lang="id" xmltv_id="NickJrAsia.sg" site_id="37">Nickelodeon Jr</channel> <channel site="mncvision.id" lang="id" xmltv_id="NickJrAsia.sg" site_id="37">Nickelodeon Jr</channel>
<channel site="mncvision.id" lang="id" xmltv_id="NickJrAsiaHD.sg" site_id="472">Nick Jr. HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="NickJrAsiaHD.sg" site_id="472">Nick Jr. HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="OKTV.id" site_id="95">FOOD TRAVEL</channel> <channel site="mncvision.id" lang="id" xmltv_id="OKTV.id" site_id="95">FOOD TRAVEL</channel>
<channel site="mncvision.id" lang="id" xmltv_id="OKTVHD.id" site_id="459">Food Travel HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="459">Food Travel HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ONE.sg" site_id="164">ONE</channel> <channel site="mncvision.id" lang="id" xmltv_id="ONE.sg" site_id="164">ONE</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ONEHD.sg" site_id="445">ONE HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="ONEHD.sg" site_id="445">ONE HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="OutdoorChannel.us" site_id="202">Outdoor Channel</channel> <channel site="mncvision.id" lang="id" xmltv_id="OutdoorChannel.us" site_id="202">Outdoor Channel</channel>
<channel site="mncvision.id" lang="id" xmltv_id="OutdoorChannelHD.us" site_id="460">Outdoor channel HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="OutdoorChannelHD.us" site_id="460">Outdoor channel HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="QuranTV.sa" site_id="93">Al Quran Al Kareem</channel> <channel site="mncvision.id" lang="id" xmltv_id="QuranTV.sa" site_id="93">Al Quran Al Kareem</channel>
<channel site="mncvision.id" lang="id" xmltv_id="RCTI.id" site_id="80">RCTI</channel> <channel site="mncvision.id" lang="id" xmltv_id="RCTI.id" site_id="80">RCTI</channel>
<channel site="mncvision.id" lang="id" xmltv_id="RCTIHD.id" site_id="430">RCTI HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="430">RCTI HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ROCKEntertainment.sg" site_id="240">Rock Entertainment</channel> <channel site="mncvision.id" lang="id" xmltv_id="ROCKEntertainment.sg" site_id="240">Rock Entertainment</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ROCKExtreme.sg" site_id="248">Rock Action</channel> <channel site="mncvision.id" lang="id" xmltv_id="ROCKExtreme.sg" site_id="248">Rock Action</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SCTV.id" site_id="89">SCTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="SCTV.id" site_id="89">SCTV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SCTV.id" site_id="437">SCTV HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="SCTV.id" site_id="437">SCTV HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SEAToday.id" site_id="336">SEA TODAY</channel> <channel site="mncvision.id" lang="id" xmltv_id="SEAToday.id" site_id="336">SEA TODAY</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SindoNewsTV.id" site_id="84">Sindo News TV</channel> <channel site="mncvision.id" lang="id" xmltv_id="SindoNewsTV.id" site_id="84">Sindo News TV</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SindoNewsTVHD.id" site_id="434">Sindo News TV HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="434">Sindo News TV HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SoccerChannel.id" site_id="101">Soccer Channel</channel> <channel site="mncvision.id" lang="id" xmltv_id="SoccerChannel.id" site_id="101">Soccer Channel</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SoccerChannelHD.id" site_id="420">Soccer Channel HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="420">Soccer Channel HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars2.id" site_id="98">Sportstars 2</channel> <channel site="mncvision.id" lang="id" xmltv_id="Sportstars2.id" site_id="98">Sportstars 2</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars2HD.id" site_id="422">Sportstars 2 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="422">Sportstars 2 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars3.id" site_id="99">Sportstars 3</channel> <channel site="mncvision.id" lang="id" xmltv_id="Sportstars3.id" site_id="99">Sportstars 3</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars3HD.id" site_id="423">sportstars 3 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="423">sportstars 3 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars4.id" site_id="88">Sportstars 4</channel> <channel site="mncvision.id" lang="id" xmltv_id="Sportstars4.id" site_id="88">Sportstars 4</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars4HD.id" site_id="424">Sportstars 4 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="424">Sportstars 4 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="Sportstars.id" site_id="102">Sportstars</channel> <channel site="mncvision.id" lang="id" xmltv_id="Sportstars.id" site_id="102">Sportstars</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SportstarsHD.id" site_id="421">Sportstars HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="421">Sportstars HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SPOTV2.kr" site_id="308">SPOTV 2</channel> <channel site="mncvision.id" lang="id" xmltv_id="SPOTV2.kr" site_id="308">SPOTV 2</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SPOTV2HD.kr" site_id="428">SPOTV 2 HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="SPOTV2HD.kr" site_id="428">SPOTV 2 HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="SPOTV.kr" site_id="307">SPOTV</channel> <channel site="mncvision.id" lang="id" xmltv_id="SPOTV.kr" site_id="307">SPOTV</channel>
@ -135,7 +135,7 @@
<channel site="mncvision.id" lang="id" xmltv_id="tvOne.id" site_id="97">tvOne</channel> <channel site="mncvision.id" lang="id" xmltv_id="tvOne.id" site_id="97">tvOne</channel>
<channel site="mncvision.id" lang="id" xmltv_id="TVRINasional.id" site_id="118">TVRI</channel> <channel site="mncvision.id" lang="id" xmltv_id="TVRINasional.id" site_id="118">TVRI</channel>
<channel site="mncvision.id" lang="id" xmltv_id="VisionPrime.id" site_id="94">Vision Prime</channel> <channel site="mncvision.id" lang="id" xmltv_id="VisionPrime.id" site_id="94">Vision Prime</channel>
<channel site="mncvision.id" lang="id" xmltv_id="VisionPrimeHD.id" site_id="1">Vision Prime HD</channel> <channel site="mncvision.id" lang="id" xmltv_id="" site_id="1">Vision Prime HD</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ZeeBioskop.id" site_id="23">Zee Bioskop</channel> <channel site="mncvision.id" lang="id" xmltv_id="ZeeBioskop.id" site_id="23">Zee Bioskop</channel>
<channel site="mncvision.id" lang="id" xmltv_id="ZooMoo.sg" site_id="39">Zoomoo</channel> <channel site="mncvision.id" lang="id" xmltv_id="ZooMoo.sg" site_id="39">Zoomoo</channel>
</channels> </channels>

View file

@ -28,12 +28,12 @@
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="Boomerang.fr" site_id="269/programme-television-boomerang">BOOMERANG</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="Boomerang.fr" site_id="269/programme-television-boomerang">BOOMERANG</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="C8.fr" site_id="1032/programme-television-c8">C8</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="C8.fr" site_id="1032/programme-television-c8">C8</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CanalJ.fr" site_id="87/programme-television-canal-j">CANAL J</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="CanalJ.fr" site_id="87/programme-television-canal-j">CANAL J</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="Canvas.be" site_id="581/programme-television-canvas">CANVAS</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="" site_id="581/programme-television-canvas">CANVAS</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="93/programme-television-cartoon-network">CARTOON NETWORK</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="93/programme-television-cartoon-network">CARTOON NETWORK</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="ChassePeche.fr" site_id="127/programme-television-chasse-peche">CHASSE &amp; PECHE</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="ChassePeche.fr" site_id="127/programme-television-chasse-peche">CHASSE &amp; PECHE</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CinePlusClassicBelgium.be" site_id="312/programme-television-cine-classic-be">CINE + CLASSIC BE</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="" site_id="312/programme-television-cine-classic-be">CINE + CLASSIC BE</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CinePlusFrissonBelgium.be" site_id="266/programme-television-cine-frisson-be">CINE + FRISSON BE</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="" site_id="266/programme-television-cine-frisson-be">CINE + FRISSON BE</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CinePlusPremierBelgium.be" site_id="265/programme-television-cine-premier-be">CINE + PREMIER BE</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="" site_id="265/programme-television-cine-premier-be">CINE + PREMIER BE</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CNews.fr" site_id="179/programme-television-cnews">CNEWS</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="CNews.fr" site_id="179/programme-television-cnews">CNEWS</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="ComediePlus.fr" site_id="73/programme-television-comedie-">COMEDIE +</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="ComediePlus.fr" site_id="73/programme-television-comedie-">COMEDIE +</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="CStar.fr" site_id="1033/programme-television-cstar">CSTAR</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="CStar.fr" site_id="1033/programme-television-cstar">CSTAR</channel>
@ -41,7 +41,7 @@
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="DisneyChannel.fr" site_id="64/programme-television-disney-channel">DISNEY CHANNEL</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="DisneyChannel.fr" site_id="64/programme-television-disney-channel">DISNEY CHANNEL</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="DisneyJunior.fr" site_id="871/programme-television-disney-junior">DISNEY JUNIOR</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="DisneyJunior.fr" site_id="871/programme-television-disney-junior">DISNEY JUNIOR</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="E.fr" site_id="304/programme-television-e-entertainment">E! ENTERTAINMENT</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="E.fr" site_id="304/programme-television-e-entertainment">E! ENTERTAINMENT</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="Een.be" site_id="313/programme-television-een">EEN</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="" site_id="313/programme-television-een">EEN</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="Equidia.fr" site_id="884/programme-television-equidia">EQUIDIA</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="Equidia.fr" site_id="884/programme-television-equidia">EQUIDIA</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="Eurosport1.fr" site_id="83/programme-television-eurosport">EUROSPORT</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="Eurosport1.fr" site_id="83/programme-television-eurosport">EUROSPORT</channel>
<channel site="mon-programme-tv.be" lang="fr" xmltv_id="Eurosport1.nl" site_id="618/programme-television-eurosport-nl">EUROSPORT NL</channel> <channel site="mon-programme-tv.be" lang="fr" xmltv_id="Eurosport1.nl" site_id="618/programme-television-eurosport-nl">EUROSPORT NL</channel>

View file

@ -103,7 +103,7 @@
<channel site="movistarplus.es" lang="es" xmltv_id="Eurosport2.fr" site_id="ESP2">Eurosport 2</channel> <channel site="movistarplus.es" lang="es" xmltv_id="Eurosport2.fr" site_id="ESP2">Eurosport 2</channel>
<channel site="movistarplus.es" lang="es" xmltv_id="EWTNEspanaLatinAmerica.us" site_id="EWTN">EWTN</channel> <channel site="movistarplus.es" lang="es" xmltv_id="EWTNEspanaLatinAmerica.us" site_id="EWTN">EWTN</channel>
<channel site="movistarplus.es" lang="es" xmltv_id="FactoriadeFiccion.es" site_id="FDFIC">Factoría de Ficción</channel> <channel site="movistarplus.es" lang="es" xmltv_id="FactoriadeFiccion.es" site_id="FDFIC">Factoría de Ficción</channel>
<channel site="movistarplus.es" lang="es" xmltv_id="Fox.es" site_id="FOXGE">Fox</channel> <channel site="movistarplus.es" lang="es" xmltv_id="" site_id="FOXGE">Fox</channel>
<channel site="movistarplus.es" lang="es" xmltv_id="FoxNewsChannel.us" site_id="FOXNWS">Fox News</channel> <channel site="movistarplus.es" lang="es" xmltv_id="FoxNewsChannel.us" site_id="FOXNWS">Fox News</channel>
<channel site="movistarplus.es" lang="es" xmltv_id="France24Espanol.fr" site_id="FRANCE">FRANCE24 (FR)</channel> <channel site="movistarplus.es" lang="es" xmltv_id="France24Espanol.fr" site_id="FRANCE">FRANCE24 (FR)</channel>
<channel site="movistarplus.es" lang="es" xmltv_id="FutbolReplay.es" site_id="FUTREP">Canal Fútbol Replay</channel> <channel site="movistarplus.es" lang="es" xmltv_id="FutbolReplay.es" site_id="FUTREP">Canal Fútbol Replay</channel>

View file

@ -225,7 +225,7 @@
<channel site="mtel.ba" lang="bs" xmltv_id="BravoMusic.rs" site_id="258#206">Bravo Music</channel> <channel site="mtel.ba" lang="bs" xmltv_id="BravoMusic.rs" site_id="258#206">Bravo Music</channel>
<channel site="mtel.ba" lang="en" xmltv_id="BrazzersTVEurope.us" site_id="191#300">Brazzers TV</channel> <channel site="mtel.ba" lang="en" xmltv_id="BrazzersTVEurope.us" site_id="191#300">Brazzers TV</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="BVN.nl" site_id="810#281">BVN</channel> <channel site="mtel.ba" lang="bs" xmltv_id="BVN.nl" site_id="810#281">BVN</channel>
<channel site="mtel.ba" lang="en" xmltv_id="CGTNEurope.cn" site_id="809#207">CGTN</channel> <channel site="mtel.ba" lang="en" xmltv_id="" site_id="809#207">CGTN</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="CityPlay.rs" site_id="630#208">City Play</channel> <channel site="mtel.ba" lang="bs" xmltv_id="CityPlay.rs" site_id="630#208">City Play</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="DexyTV.rs" site_id="024#423">Dexy TV</channel> <channel site="mtel.ba" lang="bs" xmltv_id="DexyTV.rs" site_id="024#423">Dexy TV</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="DMSat.rs" site_id="627#199">DM SAT</channel> <channel site="mtel.ba" lang="bs" xmltv_id="DMSat.rs" site_id="627#199">DM SAT</channel>
@ -252,7 +252,7 @@
<channel site="mtel.ba" lang="sr" xmltv_id="HappyReality2.rs" site_id="666#372">Happy Reality 2</channel> <channel site="mtel.ba" lang="sr" xmltv_id="HappyReality2.rs" site_id="666#372">Happy Reality 2</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="Hayat.ba" site_id="054#35">HAYAT TV</channel> <channel site="mtel.ba" lang="bs" xmltv_id="Hayat.ba" site_id="054#35">HAYAT TV</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="HayatFolk.ba" site_id="662#223">HAYAT FOLK</channel> <channel site="mtel.ba" lang="bs" xmltv_id="HayatFolk.ba" site_id="662#223">HAYAT FOLK</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="HayatHD.ba" site_id="061#263">Hayat HD</channel> <channel site="mtel.ba" lang="bs" xmltv_id="" site_id="061#263">Hayat HD</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="HayatMusic.ba" site_id="661#222">HAYAT MUSIC</channel> <channel site="mtel.ba" lang="bs" xmltv_id="HayatMusic.ba" site_id="661#222">HAYAT MUSIC</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="Hayatovci.ba" site_id="213#100">HAYATOVCI</channel> <channel site="mtel.ba" lang="bs" xmltv_id="Hayatovci.ba" site_id="213#100">HAYATOVCI</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="HayatPlus.ba" site_id="073#83">HAYAT PLUS</channel> <channel site="mtel.ba" lang="bs" xmltv_id="HayatPlus.ba" site_id="073#83">HAYAT PLUS</channel>
@ -303,7 +303,7 @@
<channel site="mtel.ba" lang="bs" xmltv_id="PinkFamily.rs" site_id="12#1">Pink Family</channel> <channel site="mtel.ba" lang="bs" xmltv_id="PinkFamily.rs" site_id="12#1">Pink Family</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="PinkFashion.rs" site_id="504#151">Pink Fashion</channel> <channel site="mtel.ba" lang="bs" xmltv_id="PinkFashion.rs" site_id="504#151">Pink Fashion</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="PinkFilm.rs" site_id="335#164">Pink Film</channel> <channel site="mtel.ba" lang="bs" xmltv_id="PinkFilm.rs" site_id="335#164">Pink Film</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="PinkFolk2.rs" site_id="628#203">PINK FOLK 2</channel> <channel site="mtel.ba" lang="bs" xmltv_id="" site_id="628#203">PINK FOLK 2</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="PinkHits.rs" site_id="615#180">PINK HITS</channel> <channel site="mtel.ba" lang="bs" xmltv_id="PinkHits.rs" site_id="615#180">PINK HITS</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="PinkHits2.rs" site_id="615#185">Pink Hits 2</channel> <channel site="mtel.ba" lang="bs" xmltv_id="PinkHits2.rs" site_id="615#185">Pink Hits 2</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="PinkHorror.rs" site_id="064#159">Pink Horror</channel> <channel site="mtel.ba" lang="bs" xmltv_id="PinkHorror.rs" site_id="064#159">Pink Horror</channel>
@ -386,7 +386,7 @@
<channel site="mtel.ba" lang="bs" xmltv_id="ToxicRap.rs" site_id="166#449">Toxic Rap</channel> <channel site="mtel.ba" lang="bs" xmltv_id="ToxicRap.rs" site_id="166#449">Toxic Rap</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="ToxicTV.rs" site_id="618#407">Toxic TV</channel> <channel site="mtel.ba" lang="bs" xmltv_id="ToxicTV.rs" site_id="618#407">Toxic TV</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="TurizamTV.rs" site_id="512#401">Turizam TV</channel> <channel site="mtel.ba" lang="bs" xmltv_id="TurizamTV.rs" site_id="512#401">Turizam TV</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="TV101.rs" site_id="077#428">TV 101</channel> <channel site="mtel.ba" lang="bs" xmltv_id="" site_id="077#428">TV 101</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="TVCGMNE.me" site_id="045#38">RTCG Sat</channel> <channel site="mtel.ba" lang="bs" xmltv_id="TVCGMNE.me" site_id="045#38">RTCG Sat</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="TVDR.rs" site_id="514#410">TV DR</channel> <channel site="mtel.ba" lang="bs" xmltv_id="TVDR.rs" site_id="514#410">TV DR</channel>
<channel site="mtel.ba" lang="bs" xmltv_id="TVHram.rs" site_id="039#354">Hram TV</channel> <channel site="mtel.ba" lang="bs" xmltv_id="TVHram.rs" site_id="039#354">Hram TV</channel>

View file

@ -416,8 +416,8 @@
<channel site="mts.rs" lang="sr" xmltv_id="PinkFamily.rs" site_id="242#152">Pink Family</channel> <channel site="mts.rs" lang="sr" xmltv_id="PinkFamily.rs" site_id="242#152">Pink Family</channel>
<channel site="mts.rs" lang="sr" xmltv_id="PinkFashion.rs" site_id="275#151">Pink Fashion</channel> <channel site="mts.rs" lang="sr" xmltv_id="PinkFashion.rs" site_id="275#151">Pink Fashion</channel>
<channel site="mts.rs" lang="sr" xmltv_id="PinkFilm.rs" site_id="216#164">Pink Film</channel> <channel site="mts.rs" lang="sr" xmltv_id="PinkFilm.rs" site_id="216#164">Pink Film</channel>
<channel site="mts.rs" lang="sh" xmltv_id="PinkFolk1.rs" site_id="461#209">Pink Folk</channel> <channel site="mts.rs" lang="sr" xmltv_id="" site_id="461#209">Pink Folk</channel>
<channel site="mts.rs" lang="sh" xmltv_id="PinkFolk2.rs" site_id="462#203">Pink Folk 2</channel> <channel site="mts.rs" lang="sr" xmltv_id="" site_id="462#203">Pink Folk 2</channel>
<channel site="mts.rs" lang="sr" xmltv_id="PinkHits.rs" site_id="471#287">Pink Hits 1</channel> <channel site="mts.rs" lang="sr" xmltv_id="PinkHits.rs" site_id="471#287">Pink Hits 1</channel>
<channel site="mts.rs" lang="hr" xmltv_id="PinkHits2.rs" site_id="472#185">Pink Hits 2</channel> <channel site="mts.rs" lang="hr" xmltv_id="PinkHits2.rs" site_id="472#185">Pink Hits 2</channel>
<channel site="mts.rs" lang="sr" xmltv_id="PinkHorror.rs" site_id="214#159">Pink Horror</channel> <channel site="mts.rs" lang="sr" xmltv_id="PinkHorror.rs" site_id="214#159">Pink Horror</channel>
@ -501,7 +501,7 @@
<channel site="mts.rs" lang="sr" xmltv_id="ToxicRap.rs" site_id="475#757">Toxic Rap SD/HD</channel> <channel site="mts.rs" lang="sr" xmltv_id="ToxicRap.rs" site_id="475#757">Toxic Rap SD/HD</channel>
<channel site="mts.rs" lang="en" xmltv_id="TravelChannelEMEA.uk" site_id="272#160">Travel Channel SD/HD</channel> <channel site="mts.rs" lang="en" xmltv_id="TravelChannelEMEA.uk" site_id="272#160">Travel Channel SD/HD</channel>
<channel site="mts.rs" lang="sr" xmltv_id="TurizamTV.rs" site_id="271#507">Turizam + TV</channel> <channel site="mts.rs" lang="sr" xmltv_id="TurizamTV.rs" site_id="271#507">Turizam + TV</channel>
<channel site="mts.rs" lang="sh" xmltv_id="TV101.rs" site_id="504#759">RTV 101</channel> <channel site="mts.rs" lang="sr" xmltv_id="" site_id="504#759">RTV 101</channel>
<channel site="mts.rs" lang="hu" xmltv_id="TV2.hu" site_id="227#676">TV2</channel> <channel site="mts.rs" lang="hu" xmltv_id="TV2.hu" site_id="227#676">TV2</channel>
<channel site="mts.rs" lang="sr" xmltv_id="TV4S.rs" site_id="560#614">TV 4S</channel> <channel site="mts.rs" lang="sr" xmltv_id="TV4S.rs" site_id="560#614">TV 4S</channel>
<channel site="mts.rs" lang="fr" xmltv_id="TV5MondeEurope.fr" site_id="667#197">TV5 Monde SD/HD</channel> <channel site="mts.rs" lang="fr" xmltv_id="TV5MondeEurope.fr" site_id="667#197">TV5 Monde SD/HD</channel>

View file

@ -49,7 +49,6 @@
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="SOROZAT_KLUB">Sorozat Klub</channel> <channel site="musor.tv" lang="hu" xmltv_id="" site_id="SOROZAT_KLUB">Sorozat Klub</channel>
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="SZAKCSI_RADIO">Szakcsi Rádió</channel> <channel site="musor.tv" lang="hu" xmltv_id="" site_id="SZAKCSI_RADIO">Szakcsi Rádió</channel>
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="TRAVELXP_4K">Travel XP 4K</channel> <channel site="musor.tv" lang="hu" xmltv_id="" site_id="TRAVELXP_4K">Travel XP 4K</channel>
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="TRAVELXP_4K">Travel XP 4K</channel>
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="TV2_KLUB">TV2 Klub</channel> <channel site="musor.tv" lang="hu" xmltv_id="" site_id="TV2_KLUB">TV2 Klub</channel>
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="VASARHELYI_TV">Vásárhelyi Televízió</channel> <channel site="musor.tv" lang="hu" xmltv_id="" site_id="VASARHELYI_TV">Vásárhelyi Televízió</channel>
<channel site="musor.tv" lang="hu" xmltv_id="" site_id="VESZPREM_TV">Veszprém TV HD</channel> <channel site="musor.tv" lang="hu" xmltv_id="" site_id="VESZPREM_TV">Veszprém TV HD</channel>
@ -90,7 +89,6 @@
<channel site="musor.tv" lang="hu" xmltv_id="Eurosport1.hu" site_id="EUROSPORT">Eurosport 1 (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="Eurosport1.hu" site_id="EUROSPORT">Eurosport 1 (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="Eurosport2.hu" site_id="EUROSPORT2">Eurosport 2 (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="Eurosport2.hu" site_id="EUROSPORT2">Eurosport 2 (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="Eurosport4K.fr" site_id="EUROSPORT4K">Eurosport 4K</channel> <channel site="musor.tv" lang="hu" xmltv_id="Eurosport4K.fr" site_id="EUROSPORT4K">Eurosport 4K</channel>
<channel site="musor.tv" lang="hu" xmltv_id="Eurosport4K.fr" site_id="EUROSPORT4K">Eurosport 4K</channel>
<channel site="musor.tv" lang="hu" xmltv_id="EWTNBonumTV.hu" site_id="BONUM">EWTN / Bonum TV (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="EWTNBonumTV.hu" site_id="BONUM">EWTN / Bonum TV (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="FashionTVEurope.fr" site_id="FTVHD">Fashion TV HD</channel> <channel site="musor.tv" lang="hu" xmltv_id="FashionTVEurope.fr" site_id="FTVHD">Fashion TV HD</channel>
<channel site="musor.tv" lang="hu" xmltv_id="FehervarTV.hu" site_id="FEHERVAR_TV">Fehérvár TV</channel> <channel site="musor.tv" lang="hu" xmltv_id="FehervarTV.hu" site_id="FEHERVAR_TV">Fehérvár TV</channel>
@ -105,7 +103,6 @@
<channel site="musor.tv" lang="hu" xmltv_id="FitHD.hu" site_id="FIT_HD">Fit HD</channel> <channel site="musor.tv" lang="hu" xmltv_id="FitHD.hu" site_id="FIT_HD">Fit HD</channel>
<channel site="musor.tv" lang="hu" xmltv_id="FoodNetworkEMEA.us" site_id="FOODNETWORK">Food Network (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="FoodNetworkEMEA.us" site_id="FOODNETWORK">Food Network (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="FunBoxUHD.nl" site_id="FUNBOX_UHD">Funbox UltraHD 4K</channel> <channel site="musor.tv" lang="hu" xmltv_id="FunBoxUHD.nl" site_id="FUNBOX_UHD">Funbox UltraHD 4K</channel>
<channel site="musor.tv" lang="hu" xmltv_id="FunBoxUHD.nl" site_id="FUNBOX_UHD">Funbox UltraHD 4K</channel>
<channel site="musor.tv" lang="hu" xmltv_id="Galaxy4.hu" site_id="GALAXY">Galaxy 4 (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="Galaxy4.hu" site_id="GALAXY">Galaxy 4 (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="Gametoon.nl" site_id="GAMETOON">Gametoon (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="Gametoon.nl" site_id="GAMETOON">Gametoon (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="Hatoscsatorna.hu" site_id="HATOS_CSATORNA">Hatoscsatorna</channel> <channel site="musor.tv" lang="hu" xmltv_id="Hatoscsatorna.hu" site_id="HATOS_CSATORNA">Hatoscsatorna</channel>
@ -123,7 +120,6 @@
<channel site="musor.tv" lang="hu" xmltv_id="KolcseyTV.hu" site_id="KOLCSEY_TV">Kölcsey TV</channel> <channel site="musor.tv" lang="hu" xmltv_id="KolcseyTV.hu" site_id="KOLCSEY_TV">Kölcsey TV</channel>
<channel site="musor.tv" lang="hu" xmltv_id="LifeTV.hu" site_id="LIFE_TV">Life TV (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="LifeTV.hu" site_id="LIFE_TV">Life TV (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="LoveNature.ca" site_id="LOVE_NATURE">Love Nature (HD / 4K)</channel> <channel site="musor.tv" lang="hu" xmltv_id="LoveNature.ca" site_id="LOVE_NATURE">Love Nature (HD / 4K)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="LoveNature.ca" site_id="LOVE_NATURE">Love Nature (HD / 4K)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="M1.hu" site_id="M1">M1 (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="M1.hu" site_id="M1">M1 (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="M2.hu" site_id="M2">M2 / Petőfi (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="M2.hu" site_id="M2">M2 / Petőfi (HD)</channel>
<channel site="musor.tv" lang="hu" xmltv_id="M4Sport.hu" site_id="M4_SPORT">M4 Sport (HD)</channel> <channel site="musor.tv" lang="hu" xmltv_id="M4Sport.hu" site_id="M4_SPORT">M4 Sport (HD)</channel>

View file

@ -101,8 +101,8 @@
<channel site="mytelly.co.uk" lang="en" xmltv_id="B4UMoviesUK.uk" site_id="619/b4u-movies">B4U Movies</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="B4UMoviesUK.uk" site_id="619/b4u-movies">B4U Movies</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="B4UMusicUK.uk" site_id="1815/b4u-music">B4U Music</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="B4UMusicUK.uk" site_id="1815/b4u-music">B4U Music</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="BabyTV.uk" site_id="1761/baby-tv">Baby TV</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="BabyTV.uk" site_id="1761/baby-tv">Baby TV</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="BBCALBA.uk" site_id="1442/bbc-alba">BBC Alba</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="" site_id="1442/bbc-alba">BBC Alba</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="BBCALBAHD.uk" site_id="2403/bbc-alba-hd">BBC Alba HD</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="" site_id="2403/bbc-alba-hd">BBC Alba HD</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="BBCFour.uk" site_id="742/bbc-four">BBC Four</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="BBCFour.uk" site_id="742/bbc-four">BBC Four</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="BBCFourHD.uk" site_id="1851/bbc-four-hd">BBC Four HD</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="BBCFourHD.uk" site_id="1851/bbc-four-hd">BBC Four HD</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="BBCNews.uk" site_id="85/bbc-news">BBC News</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="BBCNews.uk" site_id="85/bbc-news">BBC News</channel>
@ -231,7 +231,7 @@
<channel site="mytelly.co.uk" lang="en" xmltv_id="GBNews.uk" site_id="2339/gb-news">GB News</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="GBNews.uk" site_id="2339/gb-news">GB News</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="GBNewsHD.uk" site_id="2340/gb-news-hd">GB News HD</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="GBNewsHD.uk" site_id="2340/gb-news-hd">GB News HD</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="GeoNewsInternational.pk" site_id="2130/geo-news">GEO News</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="GeoNewsInternational.pk" site_id="2130/geo-news">GEO News</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="GeoUK.uk" site_id="2128/geo-tv">GEO TV</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="" site_id="2128/geo-tv">GEO TV</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="GREATaction.uk" site_id="1431/great-action">GREAT! action</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="GREATaction.uk" site_id="1431/great-action">GREAT! action</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="GREATactionPlus1.uk" site_id="1541/great-action-1">GREAT! action +1</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="GREATactionPlus1.uk" site_id="1541/great-action-1">GREAT! action +1</channel>
<channel site="mytelly.co.uk" lang="en" xmltv_id="GREATmovies.uk" site_id="1680/great-movies">GREAT! movies</channel> <channel site="mytelly.co.uk" lang="en" xmltv_id="GREATmovies.uk" site_id="1680/great-movies">GREAT! movies</channel>

View file

@ -9,30 +9,30 @@
<channel site="neo.io" lang="sl" xmltv_id="AdriaMusicTelevision.de" site_id="adria">Adria</channel> <channel site="neo.io" lang="sl" xmltv_id="AdriaMusicTelevision.de" site_id="adria">Adria</channel>
<channel site="neo.io" lang="ba" xmltv_id="AlfaTV.ba" site_id="alfa-tv">Alfa TV</channel> <channel site="neo.io" lang="ba" xmltv_id="AlfaTV.ba" site_id="alfa-tv">Alfa TV</channel>
<channel site="neo.io" lang="ba" xmltv_id="AlJazeeraBalkans.ba" site_id="al-jazeera-balkans">Al Jazeera Balkans</channel> <channel site="neo.io" lang="ba" xmltv_id="AlJazeeraBalkans.ba" site_id="al-jazeera-balkans">Al Jazeera Balkans</channel>
<channel site="neo.io" lang="mk" xmltv_id="AlsatM.mk" site_id="alsat-macedonia">Алсат-М</channel> <channel site="neo.io" lang="mk" xmltv_id="Alsat.mk" site_id="alsat-macedonia">Алсат-М</channel>
<channel site="neo.io" lang="ba" xmltv_id="Elta2.ba" site_id="elta-2">Elta 2</channel> <channel site="neo.io" lang="ba" xmltv_id="" site_id="elta-2">Elta 2</channel>
<channel site="neo.io" lang="sl" xmltv_id="AMC.si" site_id="amc">AMC</channel> <channel site="neo.io" lang="sl" xmltv_id="AMC.si" site_id="amc">AMC</channel>
<channel site="neo.io" lang="sl" xmltv_id="AngelsHD.si" site_id="angels-hd">Angels HD</channel> <channel site="neo.io" lang="sl" xmltv_id="AngelsHD.si" site_id="angels-hd">Angels HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="AnimalPlanet.si" site_id="animal-planet">Animal Planet</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="animal-planet">Animal Planet</channel>
<channel site="neo.io" lang="sl" xmltv_id="ePosavjeTV.si" site_id="eposavje-tv-hd">ePosavje TV</channel> <channel site="neo.io" lang="sl" xmltv_id="ePosavjeTV.si" site_id="eposavje-tv-hd">ePosavje TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaeSport.si" site_id="arena-esport">Arena eSport</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="arena-esport">Arena eSport</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaFight.si" site_id="arena-fight">Arena Fight</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="arena-fight">Arena Fight</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaSport1Premium.si" site_id="arena-sport-1-premium">Arena Sport 1 Premium</channel> <channel site="neo.io" lang="sl" xmltv_id="ArenaSport1Premium.si" site_id="arena-sport-1-premium">Arena Sport 1 Premium</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaSport1.si" site_id="arena-sport-1">Arena Sport 1</channel> <channel site="neo.io" lang="sl" xmltv_id="ArenaSport1.si" site_id="arena-sport-1">Arena Sport 1</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaSport2.si" site_id="arena-sport-2">Arena Sport 2</channel> <channel site="neo.io" lang="sl" xmltv_id="ArenaSport2.si" site_id="arena-sport-2">Arena Sport 2</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaSport3.si" site_id="arena-sport-3">Arena Sport 3</channel> <channel site="neo.io" lang="sl" xmltv_id="ArenaSport3.si" site_id="arena-sport-3">Arena Sport 3</channel>
<channel site="neo.io" lang="sl" xmltv_id="ArenaSport4.si" site_id="arena-sport-4">Arena Sport 4</channel> <channel site="neo.io" lang="sl" xmltv_id="ArenaSport4.si" site_id="arena-sport-4">Arena Sport 4</channel>
<channel site="neo.io" lang="sl" xmltv_id="TVArena.si" site_id="arena-tv">Arena TV</channel> <channel site="neo.io" lang="sl" xmltv_id="TVArena.si" site_id="arena-tv">Arena TV</channel>
<channel site="neo.io" lang="de" xmltv_id="Arte.de" site_id="arte">Arte</channel> <channel site="neo.io" lang="de" xmltv_id="" site_id="arte">Arte</channel>
<channel site="neo.io" lang="sl" xmltv_id="ATMTV.si" site_id="atm-tv-kranjska-gora-hd">ATM TV</channel> <channel site="neo.io" lang="sl" xmltv_id="ATMTV.si" site_id="atm-tv-kranjska-gora-hd">ATM TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="B92.rs" site_id="b92">B92</channel> <channel site="neo.io" lang="sr" xmltv_id="B92.rs" site_id="b92">B92</channel>
<channel site="neo.io" lang="sl" xmltv_id="BabyTV.si" site_id="baby-tv">Baby TV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="baby-tv">Baby TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="BalkanErotic.si" site_id="balkan-erotic">Balkan Erotic</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="balkan-erotic">Balkan Erotic</channel>
<channel site="neo.io" lang="sr" xmltv_id="BalkanTripTV.rs" site_id="balkan-trip">Balkan Trip</channel> <channel site="neo.io" lang="sr" xmltv_id="BalkanTripTV.rs" site_id="balkan-trip">Balkan Trip</channel>
<channel site="neo.io" lang="sl" xmltv_id="BBCEarth.si" site_id="bbc-earth">BBC Earth</channel> <channel site="neo.io" lang="sl" xmltv_id="BBCEarth.si" site_id="bbc-earth">BBC Earth</channel>
<channel site="neo.io" lang="en" xmltv_id="BBCFirstBenelux.uk" site_id="bbc-first">BBC First</channel> <channel site="neo.io" lang="en" xmltv_id="BBCFirstBenelux.uk" site_id="bbc-first">BBC First</channel>
<channel site="neo.io" lang="en" xmltv_id="BBCNews.uk" site_id="bbc-news">BBC News</channel> <channel site="neo.io" lang="en" xmltv_id="BBCNews.uk" site_id="bbc-news">BBC News</channel>
<channel site="neo.io" lang="sl" xmltv_id="BestTV.si" site_id="best-tv">Best TV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="best-tv">Best TV</channel>
<channel site="neo.io" lang="ba" xmltv_id="BHT1.ba" site_id="bht1">BHT1</channel> <channel site="neo.io" lang="ba" xmltv_id="BHT1.ba" site_id="bht1">BHT1</channel>
<channel site="neo.io" lang="ba" xmltv_id="BIRTV.ba" site_id="bir">BIR TV</channel> <channel site="neo.io" lang="ba" xmltv_id="BIRTV.ba" site_id="bir">BIR TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="BKTV.si" site_id="bk-tv">BK TV</channel> <channel site="neo.io" lang="sl" xmltv_id="BKTV.si" site_id="bk-tv">BK TV</channel>
@ -41,14 +41,14 @@
<channel site="neo.io" lang="sl" xmltv_id="BooBHD.si" site_id="boob-hd">BooB HD</channel> <channel site="neo.io" lang="sl" xmltv_id="BooBHD.si" site_id="boob-hd">BooB HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="BRIO.si" site_id="brio">BRIO</channel> <channel site="neo.io" lang="sl" xmltv_id="BRIO.si" site_id="brio">BRIO</channel>
<channel site="neo.io" lang="it" xmltv_id="Canale5.it" site_id="canale-5">Canale 5</channel> <channel site="neo.io" lang="it" xmltv_id="Canale5.it" site_id="canale-5">Canale 5</channel>
<channel site="neo.io" lang="it" xmltv_id="20Mediaset.it" site_id="20-mediaset">20 Mediaset</channel> <channel site="neo.io" lang="it" xmltv_id="" site_id="20-mediaset">20 Mediaset</channel>
<channel site="neo.io" lang="sl" xmltv_id="CapableHoleHD.si" site_id="capable-hole-hd">Capable Hole HD</channel> <channel site="neo.io" lang="sl" xmltv_id="CapableHoleHD.si" site_id="capable-hole-hd">Capable Hole HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="VeseljakGolica.si" site_id="veseljak-golica">Veseljak Golica</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="veseljak-golica">Veseljak Golica</channel>
<channel site="neo.io" lang="sl" xmltv_id="CartoonNetwork.si" site_id="cartoon">Cartoon Network</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="cartoon">Cartoon Network</channel>
<channel site="neo.io" lang="sl" xmltv_id="Cartoonito.si" site_id="cartoonito">Cartoonito</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="cartoonito">Cartoonito</channel>
<channel site="neo.io" lang="it" xmltv_id="Cartoonito.it" site_id="cartoonito-italija">Cartoonito</channel> <channel site="neo.io" lang="it" xmltv_id="Cartoonito.it" site_id="cartoonito-italija">Cartoonito</channel>
<channel site="neo.io" lang="sl" xmltv_id="Cinemax.si" site_id="cinemax">Cinemax</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="cinemax">Cinemax</channel>
<channel site="neo.io" lang="sl" xmltv_id="Cinemax2.si" site_id="cinemax-2">Cinemax 2</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="cinemax-2">Cinemax 2</channel>
<channel site="neo.io" lang="sl" xmltv_id="CineStarTVAction.si" site_id="cinestar-tv-action-&amp;-thriller">CineStar TV Action &amp; Thriller</channel> <channel site="neo.io" lang="sl" xmltv_id="CineStarTVAction.si" site_id="cinestar-tv-action-&amp;-thriller">CineStar TV Action &amp; Thriller</channel>
<channel site="neo.io" lang="sl" xmltv_id="CineStarTVFantasy.si" site_id="cinestar-fantasy">Cinestar Fantasy</channel> <channel site="neo.io" lang="sl" xmltv_id="CineStarTVFantasy.si" site_id="cinestar-fantasy">Cinestar Fantasy</channel>
<channel site="neo.io" lang="sl" xmltv_id="CineStarTVPremiere1.si" site_id="cinestar-tv-premiere-1">CineStar TV Premiere 1</channel> <channel site="neo.io" lang="sl" xmltv_id="CineStarTVPremiere1.si" site_id="cinestar-tv-premiere-1">CineStar TV Premiere 1</channel>
@ -56,20 +56,20 @@
<channel site="neo.io" lang="sl" xmltv_id="CineStarTV1.si" site_id="cinestar-tv-1">Cinestar TV 1</channel> <channel site="neo.io" lang="sl" xmltv_id="CineStarTV1.si" site_id="cinestar-tv-1">Cinestar TV 1</channel>
<channel site="neo.io" lang="sl" xmltv_id="CineStarTV2.si" site_id="cinestar-tv-2">Cinestar TV 2</channel> <channel site="neo.io" lang="sl" xmltv_id="CineStarTV2.si" site_id="cinestar-tv-2">Cinestar TV 2</channel>
<channel site="neo.io" lang="hr" xmltv_id="CMCTV.hr" site_id="cmc">CMC</channel> <channel site="neo.io" lang="hr" xmltv_id="CMCTV.hr" site_id="cmc">CMC</channel>
<channel site="neo.io" lang="en" xmltv_id="CNNInternational.us" site_id="cnn">CNN</channel> <channel site="neo.io" lang="en" xmltv_id="" site_id="cnn">CNN</channel>
<channel site="neo.io" lang="de" xmltv_id="CuriosityChannel.de" site_id="curiosity-channel">Curiosity Channel</channel> <channel site="neo.io" lang="de" xmltv_id="CuriosityChannel.de" site_id="curiosity-channel">Curiosity Channel</channel>
<channel site="neo.io" lang="de" xmltv_id="DasErste.de" site_id="ard">Das Erste</channel> <channel site="neo.io" lang="de" xmltv_id="DasErste.de" site_id="ard">Das Erste</channel>
<channel site="neo.io" lang="sl" xmltv_id="DaVinci.si" site_id="da-vinci-learning">Da Vinci</channel> <channel site="neo.io" lang="sl" xmltv_id="DaVinci.si" site_id="da-vinci-learning">Da Vinci</channel>
<channel site="neo.io" lang="sl" xmltv_id="DevilsHomeHD.si" site_id="devils-home-hd">Devils Home HD</channel> <channel site="neo.io" lang="sl" xmltv_id="DevilsHomeHD.si" site_id="devils-home-hd">Devils Home HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="InvestigationDiscovery.si" site_id="discovery-id-xtra">Investigation Discovery</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="discovery-id-xtra">Investigation Discovery</channel>
<channel site="neo.io" lang="sl" xmltv_id="DiscoveryChannel.si" site_id="discovery-channel">Discovery Channel</channel> <channel site="neo.io" lang="sl" xmltv_id="DiscoveryChannel.si" site_id="discovery-channel">Discovery Channel</channel>
<channel site="neo.io" lang="sl" xmltv_id="DisneyChannel.si" site_id="disney-channel">Disney Channel</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="disney-channel">Disney Channel</channel>
<channel site="neo.io" lang="sl" xmltv_id="DisneyJunior.si" site_id="disney-junior">Disney Junior</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="disney-junior">Disney Junior</channel>
<channel site="neo.io" lang="sl" xmltv_id="Diva.si" site_id="diva">Diva</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="diva">Diva</channel>
<channel site="neo.io" lang="sr" xmltv_id="Dizi.rs" site_id="dizi">Dizi</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="dizi">Dizi</channel>
<channel site="neo.io" lang="sr" xmltv_id="DMSat.rs" site_id="dm-sat">DM Sat</channel> <channel site="neo.io" lang="sr" xmltv_id="DMSat.rs" site_id="dm-sat">DM Sat</channel>
<channel site="neo.io" lang="en" xmltv_id="DocuBox.nl" site_id="docubox">DocuBox</channel> <channel site="neo.io" lang="en" xmltv_id="DocuBox.nl" site_id="docubox">DocuBox</channel>
<channel site="neo.io" lang="ru" xmltv_id="DomKino.ru" site_id="dom-kino">Дом кино</channel> <channel site="neo.io" lang="ru" xmltv_id="" site_id="dom-kino">Дом кино</channel>
<channel site="neo.io" lang="fr" xmltv_id="DorcelTV.nl" site_id="dorcel-tv-hd">Dorcel TV</channel> <channel site="neo.io" lang="fr" xmltv_id="DorcelTV.nl" site_id="dorcel-tv-hd">Dorcel TV</channel>
<channel site="neo.io" lang="fr" xmltv_id="DorcelXXX.nl" site_id="dorcel-xxx-hd">Dorcel XXX</channel> <channel site="neo.io" lang="fr" xmltv_id="DorcelXXX.nl" site_id="dorcel-xxx-hd">Dorcel XXX</channel>
<channel site="neo.io" lang="hr" xmltv_id="DoxTV.hr" site_id="dox-tv">Dox TV</channel> <channel site="neo.io" lang="hr" xmltv_id="DoxTV.hr" site_id="dox-tv">Dox TV</channel>
@ -77,58 +77,58 @@
<channel site="neo.io" lang="hu" xmltv_id="DunaWorld.hu" site_id="duna-world">Duna World</channel> <channel site="neo.io" lang="hu" xmltv_id="DunaWorld.hu" site_id="duna-world">Duna World</channel>
<channel site="neo.io" lang="hu" xmltv_id="Duna.hu" site_id="duna-hd">Duna HD</channel> <channel site="neo.io" lang="hu" xmltv_id="Duna.hu" site_id="duna-hd">Duna HD</channel>
<channel site="neo.io" lang="en" xmltv_id="DuskTV.nl" site_id="dusk-tv">Dusk TV</channel> <channel site="neo.io" lang="en" xmltv_id="DuskTV.nl" site_id="dusk-tv">Dusk TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="EEurope.si" site_id="e!">E!</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="e!">E!</channel>
<channel site="neo.io" lang="ba" xmltv_id="ELTAHD.ba" site_id="elta-hd">ELTA HD</channel> <channel site="neo.io" lang="ba" xmltv_id="ELTAHD.ba" site_id="elta-hd">ELTA HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="" site_id="elta-tv">ELTA TV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="elta-tv">ELTA TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="EpicDrama.si" site_id="epic-drama">Epic Drama</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="epic-drama">Epic Drama</channel>
<channel site="neo.io" lang="en" xmltv_id="EroX.nl" site_id="erox">EroX</channel> <channel site="neo.io" lang="en" xmltv_id="EroX.nl" site_id="erox">EroX</channel>
<channel site="neo.io" lang="en" xmltv_id="EroXXX.nl" site_id="eroxxx">EroXXX</channel> <channel site="neo.io" lang="en" xmltv_id="EroXXX.nl" site_id="eroxxx">EroXXX</channel>
<channel site="neo.io" lang="sl" xmltv_id="ETV.si" site_id="etv-hd">ETV</channel> <channel site="neo.io" lang="sl" xmltv_id="ETV.si" site_id="etv-hd">ETV</channel>
<channel site="neo.io" lang="sl" xmltv_id="Eurosport1.si" site_id="eurosport-1">Eurosport 1</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="eurosport-1">Eurosport 1</channel>
<channel site="neo.io" lang="sl" xmltv_id="Eurosport2.si" site_id="eurosport-2">Eurosport 2</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="eurosport-2">Eurosport 2</channel>
<channel site="neo.io" lang="de" xmltv_id="EWTN.de" site_id="ewtn">EWTN</channel> <channel site="neo.io" lang="de" xmltv_id="EWTN.de" site_id="ewtn">EWTN</channel>
<channel site="neo.io" lang="sl" xmltv_id="ExodusTV.si" site_id="exodus-tv">Exodus TV</channel> <channel site="neo.io" lang="sl" xmltv_id="ExodusTV.si" site_id="exodus-tv">Exodus TV</channel>
<channel site="neo.io" lang="en" xmltv_id="ExtremeSportsChannel.nl" site_id="extreme-tv">Extreme Sports Channel</channel> <channel site="neo.io" lang="en" xmltv_id="ExtremeSportsChannel.nl" site_id="extreme-tv">Extreme Sports Channel</channel>
<channel site="neo.io" lang="de" xmltv_id="ExtremeHD.si" site_id="extrem">Extreme</channel> <channel site="neo.io" lang="de" xmltv_id="ExtremeHD.si" site_id="extrem">Extreme</channel>
<channel site="neo.io" lang="en" xmltv_id="FashionTVEurope.fr" site_id="fashion-tv">Fashion TV</channel> <channel site="neo.io" lang="en" xmltv_id="FashionTVEurope.fr" site_id="fashion-tv">Fashion TV</channel>
<channel site="neo.io" lang="en" xmltv_id="FashionBox.nl" site_id="fashionbox">FashionBox</channel> <channel site="neo.io" lang="en" xmltv_id="FashionBox.nl" site_id="fashionbox">FashionBox</channel>
<channel site="neo.io" lang="sl" xmltv_id="FashionHD.si" site_id="fashion-hd">Fashion HD</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="fashion-hd">Fashion HD</channel>
<channel site="neo.io" lang="en" xmltv_id="FashionTVEurope.fr" site_id="fashiontv-4k">Fashion TV 4K</channel> <channel site="neo.io" lang="en" xmltv_id="FashionTVEurope.fr" site_id="fashiontv-4k">Fashion TV 4K</channel>
<channel site="neo.io" lang="en" xmltv_id="FastFunBox.nl" site_id="fast-and-funbox">Fast and FunBox</channel> <channel site="neo.io" lang="en" xmltv_id="FastFunBox.nl" site_id="fast-and-funbox">Fast and FunBox</channel>
<channel site="neo.io" lang="en" xmltv_id="FightBox.nl" site_id="fightbox">FightBox</channel> <channel site="neo.io" lang="en" xmltv_id="FightBox.nl" site_id="fightbox">FightBox</channel>
<channel site="neo.io" lang="sl" xmltv_id="FilmBoxArthouse.si" site_id="filmbox-arthouse">FilmBox Arthouse</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="filmbox-arthouse">FilmBox Arthouse</channel>
<channel site="neo.io" lang="sl" xmltv_id="FilmBoxExtra.si" site_id="filmbox-extra">FilmBox Extra</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="filmbox-extra">FilmBox Extra</channel>
<channel site="neo.io" lang="sl" xmltv_id="FilmBoxPremium.si" site_id="filmbox-premium">FilmBox Premium</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="filmbox-premium">FilmBox Premium</channel>
<channel site="neo.io" lang="sl" xmltv_id="FilmBoxStars.si" site_id="filmbox-stars">FilmBox Stars</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="filmbox-stars">FilmBox Stars</channel>
<channel site="neo.io" lang="it" xmltv_id="Focus.it" site_id="focus">Focus</channel> <channel site="neo.io" lang="it" xmltv_id="Focus.it" site_id="focus">Focus</channel>
<channel site="neo.io" lang="sq" xmltv_id="FolkPlus.al" site_id="folk-plus">Folk Plus</channel> <channel site="neo.io" lang="sq" xmltv_id="FolkPlus.al" site_id="folk-plus">Folk Plus</channel>
<channel site="neo.io" lang="sl" xmltv_id="FolxMusicTelevision.de" site_id="folx">Folx</channel> <channel site="neo.io" lang="sl" xmltv_id="FolxMusicTelevision.de" site_id="folx">Folx</channel>
<channel site="neo.io" lang="en" xmltv_id="FOXNews.us" site_id="fox-news">FOX News</channel> <channel site="neo.io" lang="en" xmltv_id="" site_id="fox-news">FOX News</channel>
<channel site="neo.io" lang="sl" xmltv_id="FoxyDollsHD.si" site_id="foxy-dolls-hd">Foxy Dolls HD</channel> <channel site="neo.io" lang="sl" xmltv_id="FoxyDollsHD.si" site_id="foxy-dolls-hd">Foxy Dolls HD</channel>
<channel site="neo.io" lang="fr" xmltv_id="France24.fr" site_id="france-24">France 24</channel> <channel site="neo.io" lang="fr" xmltv_id="" site_id="france-24">France 24</channel>
<channel site="neo.io" lang="sl" xmltv_id="PinkoClub.si" site_id="pinko-club">Pinko Club</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="pinko-club">Pinko Club</channel>
<channel site="neo.io" lang="ba" xmltv_id="Federalnatelevizija.ba" site_id="ftv">FTV</channel> <channel site="neo.io" lang="ba" xmltv_id="Federalnatelevizija.ba" site_id="ftv">FTV</channel>
<channel site="neo.io" lang="en" xmltv_id="FunBoxUHD.nl" site_id="funbox">FunBox 4K</channel> <channel site="neo.io" lang="en" xmltv_id="FunBoxUHD.nl" site_id="funbox">FunBox 4K</channel>
<channel site="neo.io" lang="sl" xmltv_id="TVGaleja.si" site_id="tv-galeja-hd">TV Galeja</channel> <channel site="neo.io" lang="sl" xmltv_id="TVGaleja.si" site_id="tv-galeja-hd">TV Galeja</channel>
<channel site="neo.io" lang="en" xmltv_id="Gametoon.nl" site_id="gametoon">Gametoon</channel> <channel site="neo.io" lang="en" xmltv_id="Gametoon.nl" site_id="gametoon">Gametoon</channel>
<channel site="neo.io" lang="sl" xmltv_id="GasscoreHD.si" site_id="gasscore-hd">Gasscore HD</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="gasscore-hd">Gasscore HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="GeaTV.si" site_id="gea-tv">Gea TV</channel> <channel site="neo.io" lang="sl" xmltv_id="GeaTV.si" site_id="gea-tv">Gea TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="GlamHD.si" site_id="glam-hd">Glam HD</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="glam-hd">Glam HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="GoldTV.si" site_id="gold-tv">Gold TV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="gold-tv">Gold TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="Happy.rs" site_id="HAPPY">Happy TV</channel> <channel site="neo.io" lang="sr" xmltv_id="Happy.rs" site_id="HAPPY">Happy TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="HappyReality1.rs" site_id="HAPPYREALITY1">Happy Reality 1</channel> <channel site="neo.io" lang="sr" xmltv_id="HappyReality1.rs" site_id="HAPPYREALITY1">Happy Reality 1</channel>
<channel site="neo.io" lang="sr" xmltv_id="HappyReality2.rs" site_id="HAPPYREALITY2">Happy Reality 2</channel> <channel site="neo.io" lang="sr" xmltv_id="HappyReality2.rs" site_id="HAPPYREALITY2">Happy Reality 2</channel>
<channel site="neo.io" lang="ba" xmltv_id="Hayat.ba" site_id="hayat">Hayat</channel> <channel site="neo.io" lang="ba" xmltv_id="Hayat.ba" site_id="hayat">Hayat</channel>
<channel site="neo.io" lang="sl" xmltv_id="HBO.si" site_id="hbo">HBO</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="hbo">HBO</channel>
<channel site="neo.io" lang="sl" xmltv_id="HBO2.si" site_id="hbo-2">HBO 2</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="hbo-2">HBO 2</channel>
<channel site="neo.io" lang="sl" xmltv_id="HBO3.si" site_id="hbo-3">HBO 3</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="hbo-3">HBO 3</channel>
<channel site="neo.io" lang="ba" xmltv_id="HemaTV.ba" site_id="hema">Hema</channel> <channel site="neo.io" lang="ba" xmltv_id="HemaTV.ba" site_id="hema">Hema</channel>
<channel site="neo.io" lang="sl" xmltv_id="HGTV.si" site_id="hgtv">HGTV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="hgtv">HGTV</channel>
<channel site="neo.io" lang="sl" xmltv_id="History.si" site_id="history-channel">History</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="history-channel">History</channel>
<channel site="neo.io" lang="sl" xmltv_id="History2.si" site_id="h2">History 2</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="h2">History 2</channel>
<channel site="neo.io" lang="sl" xmltv_id="" site_id="hit-tv">Hit TV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="hit-tv">Hit TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="HotPleasure.si" site_id="hot-pleasure">Hot Pleasure</channel> <channel site="neo.io" lang="sl" xmltv_id="HotPleasure.si" site_id="hot-pleasure">Hot Pleasure</channel>
<channel site="neo.io" lang="sl" xmltv_id="HotXXL.si" site_id="hot-xxl">Hot XXL</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="hot-xxl">Hot XXL</channel>
<channel site="neo.io" lang="hr" xmltv_id="HRT1.hr" site_id="hrt-1">HRT 1</channel> <channel site="neo.io" lang="hr" xmltv_id="HRT1.hr" site_id="hrt-1">HRT 1</channel>
<channel site="neo.io" lang="hr" xmltv_id="HRT2.hr" site_id="hrt-2">HRT 2</channel> <channel site="neo.io" lang="hr" xmltv_id="HRT2.hr" site_id="hrt-2">HRT 2</channel>
<channel site="neo.io" lang="hr" xmltv_id="HRT3.hr" site_id="hrt-3">HRT 3</channel> <channel site="neo.io" lang="hr" xmltv_id="HRT3.hr" site_id="hrt-3">HRT 3</channel>
@ -140,13 +140,13 @@
<channel site="neo.io" lang="it" xmltv_id="Italia1.it" site_id="italia-1">Italia 1</channel> <channel site="neo.io" lang="it" xmltv_id="Italia1.it" site_id="italia-1">Italia 1</channel>
<channel site="neo.io" lang="sl" xmltv_id="" site_id="jabuka-(otv)">Jabuka (OTV)</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="jabuka-(otv)">Jabuka (OTV)</channel>
<channel site="neo.io" lang="hr" xmltv_id="TVJadran.hr" site_id="tv-jadran">TV Jadran</channel> <channel site="neo.io" lang="hr" xmltv_id="TVJadran.hr" site_id="tv-jadran">TV Jadran</channel>
<channel site="neo.io" lang="sl" xmltv_id="JimJam.si" site_id="jimjam">JimJam</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="jimjam">JimJam</channel>
<channel site="neo.io" lang="hr" xmltv_id="JugotonTV.hr" site_id="jugoton">Jugoton</channel> <channel site="neo.io" lang="hr" xmltv_id="" site_id="jugoton">Jugoton</channel>
<channel site="neo.io" lang="de" xmltv_id="kabeleins.de" site_id="kabel-1">kabel eins</channel> <channel site="neo.io" lang="de" xmltv_id="kabeleins.de" site_id="kabel-1">kabel eins</channel>
<channel site="neo.io" lang="ba" xmltv_id="NTVICKakanj.ba" site_id="ntv-ic-kakanj">NTV IC Kakanj</channel> <channel site="neo.io" lang="ba" xmltv_id="NTVICKakanj.ba" site_id="ntv-ic-kakanj">NTV IC Kakanj</channel>
<channel site="neo.io" lang="sl" xmltv_id="Kamin.si" site_id="kamin">Kamin</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="kamin">Kamin</channel>
<channel site="neo.io" lang="sl" xmltv_id="KanalA.si" site_id="kanal-a">Kanal A</channel> <channel site="neo.io" lang="sl" xmltv_id="KanalA.si" site_id="kanal-a">Kanal A</channel>
<channel site="neo.io" lang="ru" xmltv_id="Karousel.ru" site_id="karousel">Карусель</channel> <channel site="neo.io" lang="ru" xmltv_id="" site_id="karousel">Карусель</channel>
<channel site="neo.io" lang="sr" xmltv_id="TVKCN1.rs" site_id="kcn-1">KCN 1</channel> <channel site="neo.io" lang="sr" xmltv_id="TVKCN1.rs" site_id="kcn-1">KCN 1</channel>
<channel site="neo.io" lang="sr" xmltv_id="TVKCN2.rs" site_id="kcn-2-(music)">KCN 2 (music)</channel> <channel site="neo.io" lang="sr" xmltv_id="TVKCN2.rs" site_id="kcn-2-(music)">KCN 2 (music)</channel>
<channel site="neo.io" lang="sl" xmltv_id="KICTV.si" site_id="kic-tv">KIC TV</channel> <channel site="neo.io" lang="sl" xmltv_id="KICTV.si" site_id="kic-tv">KIC TV</channel>
@ -156,7 +156,7 @@
<channel site="neo.io" lang="hr" xmltv_id="Klasik.hr" site_id="klasik">Klasik</channel> <channel site="neo.io" lang="hr" xmltv_id="Klasik.hr" site_id="klasik">Klasik</channel>
<channel site="neo.io" lang="sl" xmltv_id="TVKoperCapodistria.si" site_id="tv-koper-capodistria">TV Koper Capodistria</channel> <channel site="neo.io" lang="sl" xmltv_id="TVKoperCapodistria.si" site_id="tv-koper-capodistria">TV Koper Capodistria</channel>
<channel site="neo.io" lang="sl" xmltv_id="KoroskaTV.si" site_id="koroska-tv">Koroška TV</channel> <channel site="neo.io" lang="sl" xmltv_id="KoroskaTV.si" site_id="koroska-tv">Koroška TV</channel>
<channel site="neo.io" lang="ba" xmltv_id="MrezaTV.ba" site_id="mreza-tv">Mreža TV</channel> <channel site="neo.io" lang="ba" xmltv_id="" site_id="mreza-tv">Mreža TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="LHTV.me" site_id="lh-tv-hd">LH TV</channel> <channel site="neo.io" lang="sr" xmltv_id="LHTV.me" site_id="lh-tv-hd">LH TV</channel>
<channel site="neo.io" lang="sq" xmltv_id="LivingHD.al" site_id="living-hd">Living HD</channel> <channel site="neo.io" lang="sq" xmltv_id="LivingHD.al" site_id="living-hd">Living HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="LjubljanaTV.si" site_id="ljubljana-tv-hd">Ljubljana TV</channel> <channel site="neo.io" lang="sl" xmltv_id="LjubljanaTV.si" site_id="ljubljana-tv-hd">Ljubljana TV</channel>
@ -179,8 +179,8 @@
<channel site="neo.io" lang="en" xmltv_id="MTV90s.uk" site_id="mtv-90s">MTV 90s</channel> <channel site="neo.io" lang="en" xmltv_id="MTV90s.uk" site_id="mtv-90s">MTV 90s</channel>
<channel site="neo.io" lang="en" xmltv_id="ClubMTVEurope.uk" site_id="club-mtv">Club MTV</channel> <channel site="neo.io" lang="en" xmltv_id="ClubMTVEurope.uk" site_id="club-mtv">Club MTV</channel>
<channel site="neo.io" lang="en" xmltv_id="MTVHitsEurope.uk" site_id="mtv-hits">MTV Hits</channel> <channel site="neo.io" lang="en" xmltv_id="MTVHitsEurope.uk" site_id="mtv-hits">MTV Hits</channel>
<channel site="neo.io" lang="en" xmltv_id="MTVEurope.uk" site_id="mtv-hd">MTV</channel> <channel site="neo.io" lang="en" xmltv_id="" site_id="mtv-hd">MTV</channel>
<channel site="neo.io" lang="fr" xmltv_id="MuseumTV.fr" site_id="museum-hd">Museum</channel> <channel site="neo.io" lang="fr" xmltv_id="" site_id="museum-hd">Museum</channel>
<channel site="neo.io" lang="ru" xmltv_id="MuzykaPervogo.ru" site_id="muzika-pervogo">Музыка Первого</channel> <channel site="neo.io" lang="ru" xmltv_id="MuzykaPervogo.ru" site_id="muzika-pervogo">Музыка Первого</channel>
<channel site="neo.io" lang="sr" xmltv_id="NarodnaTV.rs" site_id="narodna-tv">Narodna TV</channel> <channel site="neo.io" lang="sr" xmltv_id="NarodnaTV.rs" site_id="narodna-tv">Narodna TV</channel>
<channel site="neo.io" lang="mk" xmltv_id="NasaTV.mk" site_id="nasa-tv">Наша ТВ</channel> <channel site="neo.io" lang="mk" xmltv_id="NasaTV.mk" site_id="nasa-tv">Наша ТВ</channel>
@ -190,8 +190,8 @@
<channel site="neo.io" lang="sl" xmltv_id="NetTV.si" site_id="net-tv">Net TV</channel> <channel site="neo.io" lang="sl" xmltv_id="NetTV.si" site_id="net-tv">Net TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="NickJr.si" site_id="nick-jr.">Nick Jr.</channel> <channel site="neo.io" lang="sl" xmltv_id="NickJr.si" site_id="nick-jr.">Nick Jr.</channel>
<channel site="neo.io" lang="sl" xmltv_id="Nickelodeon.si" site_id="nickelodeon">Nickelodeon</channel> <channel site="neo.io" lang="sl" xmltv_id="Nickelodeon.si" site_id="nickelodeon">Nickelodeon</channel>
<channel site="neo.io" lang="sl" xmltv_id="NickToons.si" site_id="nicktoons">NickToons</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="nicktoons">NickToons</channel>
<channel site="neo.io" lang="sl" xmltv_id="NONStop.si" site_id="non-stop">NON Stop</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="non-stop">NON Stop</channel>
<channel site="neo.io" lang="sl" xmltv_id="Nova24TV.si" site_id="nova-24-tv">Nova 24 TV</channel> <channel site="neo.io" lang="sl" xmltv_id="Nova24TV.si" site_id="nova-24-tv">Nova 24 TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="Nova24TV2.si" site_id="nova-24-tv-2">Nova 24 TV 2</channel> <channel site="neo.io" lang="sl" xmltv_id="Nova24TV2.si" site_id="nova-24-tv-2">Nova 24 TV 2</channel>
<channel site="neo.io" lang="de" xmltv_id="ntv.de" site_id="n-tv">n-tv</channel> <channel site="neo.io" lang="de" xmltv_id="ntv.de" site_id="n-tv">n-tv</channel>
@ -206,8 +206,8 @@
<channel site="neo.io" lang="hr" xmltv_id="PickboxTV.hr" site_id="pickbox-tv">Pickbox TV</channel> <channel site="neo.io" lang="hr" xmltv_id="PickboxTV.hr" site_id="pickbox-tv">Pickbox TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkExtra.rs" site_id="pink-extra">Pink Extra</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkExtra.rs" site_id="pink-extra">Pink Extra</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkFilm.rs" site_id="pink-film">Pink Film</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkFilm.rs" site_id="pink-film">Pink Film</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkFolk1.rs" site_id="pink-folk">Pink Folk</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="pink-folk">Pink Folk</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkFolk2.rs" site_id="pink-folk-2">Pink Folk 2</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="pink-folk-2">Pink Folk 2</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkKoncert.rs" site_id="pink-koncert">Pink Koncert</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkKoncert.rs" site_id="pink-koncert">Pink Koncert</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkMusic.rs" site_id="pink-music">Pink Music</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkMusic.rs" site_id="pink-music">Pink Music</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkPlus.rs" site_id="pink-plus">Pink Plus</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkPlus.rs" site_id="pink-plus">Pink Plus</channel>
@ -215,7 +215,7 @@
<channel site="neo.io" lang="sr" xmltv_id="PinkReality.rs" site_id="pink-reality">Pink Reality</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkReality.rs" site_id="pink-reality">Pink Reality</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkSerije.rs" site_id="pink-serije">Pink Serije</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkSerije.rs" site_id="pink-serije">Pink Serije</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkShow.rs" site_id="pink-show">Pink Show</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkShow.rs" site_id="pink-show">Pink Show</channel>
<channel site="neo.io" lang="sl" xmltv_id="PinkSI.si" site_id="pink-si">Pink SI</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="pink-si">Pink SI</channel>
<channel site="neo.io" lang="sr" xmltv_id="PinkZabava.rs" site_id="pink-zabava">Pink Zabava</channel> <channel site="neo.io" lang="sr" xmltv_id="PinkZabava.rs" site_id="pink-zabava">Pink Zabava</channel>
<channel site="neo.io" lang="sl" xmltv_id="PlanetTV2.si" site_id="planet-2">Planet 2</channel> <channel site="neo.io" lang="sl" xmltv_id="PlanetTV2.si" site_id="planet-2">Planet 2</channel>
<channel site="neo.io" lang="sl" xmltv_id="PlanetEva.si" site_id="planet-eva">Planet Eva</channel> <channel site="neo.io" lang="sl" xmltv_id="PlanetEva.si" site_id="planet-eva">Planet Eva</channel>
@ -232,20 +232,20 @@
<channel site="neo.io" lang="sr" xmltv_id="" site_id="PRVASRB">PRVA Srbska TV</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="PRVASRB">PRVA Srbska TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="" site_id="prva-tv">Prva TV</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="prva-tv">Prva TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="PrvaWorld.rs" site_id="PRVAWORLD">Prva World</channel> <channel site="neo.io" lang="sr" xmltv_id="PrvaWorld.rs" site_id="PRVAWORLD">Prva World</channel>
<channel site="neo.io" lang="sl" xmltv_id="PtujskaTV.si" site_id="ptujska-tv">Ptujska TV</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="ptujska-tv">Ptujska TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="PurplePills.si" site_id="purple-pills-hd">Purple Pills</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="purple-pills-hd">Purple Pills</channel>
<channel site="neo.io" lang="it" xmltv_id="Rai1.it" site_id="rai-1">Rai 1</channel> <channel site="neo.io" lang="it" xmltv_id="Rai1.it" site_id="rai-1">Rai 1</channel>
<channel site="neo.io" lang="it" xmltv_id="Rai2.it" site_id="rai-2">Rai 2</channel> <channel site="neo.io" lang="it" xmltv_id="Rai2.it" site_id="rai-2">Rai 2</channel>
<channel site="neo.io" lang="it" xmltv_id="Rai3.it" site_id="rai-3">Rai 3</channel> <channel site="neo.io" lang="it" xmltv_id="Rai3.it" site_id="rai-3">Rai 3</channel>
<channel site="neo.io" lang="it" xmltv_id="Rai3BISFJK.it" site_id="rai-3-bis">Rai 3 BIS</channel> <channel site="neo.io" lang="it" xmltv_id="Rai3BISFJK.it" site_id="rai-3-bis">Rai 3 BIS</channel>
<channel site="neo.io" lang="it" xmltv_id="RaiMovie.it" site_id="rai-movie">Rai Movie</channel> <channel site="neo.io" lang="it" xmltv_id="RaiMovie.it" site_id="rai-movie">Rai Movie</channel>
<channel site="neo.io" lang="it" xmltv_id="RaiSport.it" site_id="rai-sport">Rai Sport</channel> <channel site="neo.io" lang="it" xmltv_id="RaiSport.it" site_id="rai-sport">Rai Sport</channel>
<channel site="neo.io" lang="it" xmltv_id="RaiYoYo.it" site_id="rai-yoyo">Rai YoYo</channel> <channel site="neo.io" lang="it" xmltv_id="" site_id="rai-yoyo">Rai YoYo</channel>
<channel site="neo.io" lang="it" xmltv_id="Rete4.it" site_id="rete-4">Rete 4</channel> <channel site="neo.io" lang="it" xmltv_id="Rete4.it" site_id="rete-4">Rete 4</channel>
<channel site="neo.io" lang="sl" xmltv_id="RkanalPlus.si" site_id="RKANALP">R Kanal+</channel> <channel site="neo.io" lang="sl" xmltv_id="RkanalPlus.si" site_id="RKANALP">R Kanal+</channel>
<channel site="neo.io" lang="en" xmltv_id="RealityKingsTV.us" site_id="reality-kings-tv">Reality Kings TV</channel> <channel site="neo.io" lang="en" xmltv_id="RealityKingsTV.us" site_id="reality-kings-tv">Reality Kings TV</channel>
<channel site="neo.io" lang="sr" xmltv_id="RTCGMNE.me" site_id="mne">MNE</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="mne">MNE</channel>
<channel site="neo.io" lang="sr" xmltv_id="RTCG2.me" site_id="rtcg-2">RTCG 2</channel> <channel site="neo.io" lang="sr" xmltv_id="" site_id="rtcg-2">RTCG 2</channel>
<channel site="neo.io" lang="sq" xmltv_id="RTK1.xk" site_id="rtk">RTK</channel> <channel site="neo.io" lang="sq" xmltv_id="RTK1.xk" site_id="rtk">RTK</channel>
<channel site="neo.io" lang="de" xmltv_id="RTL.de" site_id="rtl">RTL</channel> <channel site="neo.io" lang="de" xmltv_id="RTL.de" site_id="rtl">RTL</channel>
<channel site="neo.io" lang="de" xmltv_id="RTLZwei.de" site_id="rtl-ii">RTL II</channel> <channel site="neo.io" lang="de" xmltv_id="RTLZwei.de" site_id="rtl-ii">RTL II</channel>
@ -262,10 +262,10 @@
<channel site="neo.io" lang="de" xmltv_id="SAT1.de" site_id="sat-1">SAT.1</channel> <channel site="neo.io" lang="de" xmltv_id="SAT1.de" site_id="sat-1">SAT.1</channel>
<channel site="neo.io" lang="en" xmltv_id="RedlightHD.nl" site_id="redlight-hd">Redlight HD</channel> <channel site="neo.io" lang="en" xmltv_id="RedlightHD.nl" site_id="redlight-hd">Redlight HD</channel>
<channel site="neo.io" lang="sl" xmltv_id="SavinjskaTV.si" site_id="savinjska-tv">Savinjska TV</channel> <channel site="neo.io" lang="sl" xmltv_id="SavinjskaTV.si" site_id="savinjska-tv">Savinjska TV</channel>
<channel site="neo.io" lang="sl" xmltv_id="SciFi.si" site_id="scifi">SciFi</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="scifi">SciFi</channel>
<channel site="neo.io" lang="en" xmltv_id="VividRed.us" site_id="vivid-red-hd">Vivid Red</channel> <channel site="neo.io" lang="en" xmltv_id="" site_id="vivid-red-hd">Vivid Red</channel>
<channel site="neo.io" lang="it" xmltv_id="CentoXCentoTV.it" site_id="centoxcento">CentoXCento</channel> <channel site="neo.io" lang="it" xmltv_id="CentoXCentoTV.it" site_id="centoxcento">CentoXCento</channel>
<channel site="neo.io" lang="sl" xmltv_id="Sexation.si" site_id="sexation">Sexation</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="sexation">Sexation</channel>
<channel site="neo.io" lang="sl" xmltv_id="SIPTV.si" site_id="sip-tv">SIP TV</channel> <channel site="neo.io" lang="sl" xmltv_id="SIPTV.si" site_id="sip-tv">SIP TV</channel>
<channel site="neo.io" lang="ml" xmltv_id="Sitel.mk" site_id="tv-sitel">Sitel</channel> <channel site="neo.io" lang="ml" xmltv_id="Sitel.mk" site_id="tv-sitel">Sitel</channel>
<channel site="neo.io" lang="en" xmltv_id="SkyNews.uk" site_id="sky-news">Sky News</channel> <channel site="neo.io" lang="en" xmltv_id="SkyNews.uk" site_id="sky-news">Sky News</channel>
@ -284,7 +284,7 @@
<channel site="neo.io" lang="sl" xmltv_id="StarLife.si" site_id="star-life">Star Life</channel> <channel site="neo.io" lang="sl" xmltv_id="StarLife.si" site_id="star-life">Star Life</channel>
<channel site="neo.io" lang="sl" xmltv_id="StarMovies.si" site_id="star-movies">Star Movies</channel> <channel site="neo.io" lang="sl" xmltv_id="StarMovies.si" site_id="star-movies">Star Movies</channel>
<channel site="neo.io" lang="sl" xmltv_id="" site_id="super-one-hd">Super One HD</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="super-one-hd">Super One HD</channel>
<channel site="neo.io" lang="de" xmltv_id="SuperRTL.de" site_id="super-rtl">Super RTL</channel> <channel site="neo.io" lang="de" xmltv_id="" site_id="super-rtl">Super RTL</channel>
<channel site="neo.io" lang="ru" xmltv_id="Telecafe.ru" site_id="telecafe">Телекафе</channel> <channel site="neo.io" lang="ru" xmltv_id="Telecafe.ru" site_id="telecafe">Телекафе</channel>
<channel site="neo.io" lang="sl" xmltv_id="TVMaribor.si" site_id="tele-maribor">Tele Maribor</channel> <channel site="neo.io" lang="sl" xmltv_id="TVMaribor.si" site_id="tele-maribor">Tele Maribor</channel>
<channel site="neo.io" lang="sl" xmltv_id="TLC.si" site_id="discovery-tlc">TLC</channel> <channel site="neo.io" lang="sl" xmltv_id="TLC.si" site_id="discovery-tlc">TLC</channel>
@ -292,11 +292,11 @@
<channel site="neo.io" lang="sl" xmltv_id="TopTV.si" site_id="top-tv">Top TV</channel> <channel site="neo.io" lang="sl" xmltv_id="TopTV.si" site_id="top-tv">Top TV</channel>
<channel site="neo.io" lang="en" xmltv_id="TraceUrban.fr" site_id="trace-urban">Trace Urban</channel> <channel site="neo.io" lang="en" xmltv_id="TraceUrban.fr" site_id="trace-urban">Trace Urban</channel>
<channel site="neo.io" lang="en" xmltv_id="TraceSportStars.fr" site_id="trace-sport">Trace Sport Stars</channel> <channel site="neo.io" lang="en" xmltv_id="TraceSportStars.fr" site_id="trace-sport">Trace Sport Stars</channel>
<channel site="neo.io" lang="sl" xmltv_id="TravelChannel.si" site_id="travel-channel">Travel Channel</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="travel-channel">Travel Channel</channel>
<channel site="neo.io" lang="sl" xmltv_id="Travelxp.si" site_id="travelxp-4k">Travelxp 4K</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="travelxp-4k">Travelxp 4K</channel>
<channel site="neo.io" lang="sl" xmltv_id="Travelxp.si" site_id="travelxp-hd">Travelxp</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="travelxp-hd">Travelxp</channel>
<channel site="neo.io" lang="sq" xmltv_id="Kanali7.al" site_id="tring-7">Tring 7</channel> <channel site="neo.io" lang="sq" xmltv_id="Kanali7.al" site_id="tring-7">Tring 7</channel>
<channel site="neo.io" lang="sq" xmltv_id="TringMax.al" site_id="tring-max">Tring Max</channel> <channel site="neo.io" lang="sq" xmltv_id="" site_id="tring-max">Tring Max</channel>
<channel site="neo.io" lang="sq" xmltv_id="TringShqip.al" site_id="tring-shqip">Tring Shqip</channel> <channel site="neo.io" lang="sq" xmltv_id="TringShqip.al" site_id="tring-shqip">Tring Shqip</channel>
<channel site="neo.io" lang="sq" xmltv_id="TringTring.al" site_id="tring-tring">Tring Tring</channel> <channel site="neo.io" lang="sq" xmltv_id="TringTring.al" site_id="tring-tring">Tring Tring</channel>
<channel site="neo.io" lang="sl" xmltv_id="" site_id="tropski-podvodni-svet">Tropski podvodni svet</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="tropski-podvodni-svet">Tropski podvodni svet</channel>
@ -304,10 +304,10 @@
<channel site="neo.io" lang="ba" xmltv_id="OKanal.ba" site_id="o-kanal">O Kanal</channel> <channel site="neo.io" lang="ba" xmltv_id="OKanal.ba" site_id="o-kanal">O Kanal</channel>
<channel site="neo.io" lang="sl" xmltv_id="TV3.si" site_id="tv3">TV3</channel> <channel site="neo.io" lang="sl" xmltv_id="TV3.si" site_id="tv3">TV3</channel>
<channel site="neo.io" lang="fr" xmltv_id="TV5MondeEurope.fr" site_id="tv5monde">TV5Monde Europe</channel> <channel site="neo.io" lang="fr" xmltv_id="TV5MondeEurope.fr" site_id="tv5monde">TV5Monde Europe</channel>
<channel site="neo.io" lang="sl" xmltv_id="Tv8.si" site_id="tv8">Tv8</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="tv8">Tv8</channel>
<channel site="neo.io" lang="sl" xmltv_id="TV8.it" site_id="tv-8">TV 8</channel> <channel site="neo.io" lang="sl" xmltv_id="TV8.it" site_id="tv-8">TV 8</channel>
<channel site="neo.io" lang="sl" xmltv_id="TV1000.si" site_id="tv-1000">TV 1000</channel> <channel site="neo.io" lang="sl" xmltv_id="TV1000.si" site_id="tv-1000">TV 1000</channel>
<channel site="neo.io" lang="sl" xmltv_id="TVAs.si" site_id="tv-as">TV As</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="tv-as">TV As</channel>
<channel site="neo.io" lang="sl" xmltv_id="KanalK3Beltinci.si" site_id="tv-beltinci">TV Beltinci</channel> <channel site="neo.io" lang="sl" xmltv_id="KanalK3Beltinci.si" site_id="tv-beltinci">TV Beltinci</channel>
<channel site="neo.io" lang="sl" xmltv_id="TVCelje.si" site_id="tv-celje">TV Celje</channel> <channel site="neo.io" lang="sl" xmltv_id="TVCelje.si" site_id="tv-celje">TV Celje</channel>
<channel site="neo.io" lang="es" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="tve">TVE Internacional</channel> <channel site="neo.io" lang="es" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="tve">TVE Internacional</channel>
@ -321,10 +321,10 @@
<channel site="neo.io" lang="sl" xmltv_id="" site_id="otv-music">OTV Music</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="otv-music">OTV Music</channel>
<channel site="neo.io" lang="sl" xmltv_id="Vaskanal.si" site_id="vas-kanal">Vaš kanal</channel> <channel site="neo.io" lang="sl" xmltv_id="Vaskanal.si" site_id="vas-kanal">Vaš kanal</channel>
<channel site="neo.io" lang="sl" xmltv_id="" site_id="veseli-december">Veseli december</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="veseli-december">Veseli december</channel>
<channel site="neo.io" lang="sl" xmltv_id="ViasatExplore.si" site_id="viasat-explore">Viasat Explore</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="viasat-explore">Viasat Explore</channel>
<channel site="neo.io" lang="sl" xmltv_id="ViasatHistory.si" site_id="viasat-history">Viasat History</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="viasat-history">Viasat History</channel>
<channel site="neo.io" lang="sl" xmltv_id="ViasatNature.si" site_id="viasat-nature">Viasat Nature</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="viasat-nature">Viasat Nature</channel>
<channel site="neo.io" lang="sl" xmltv_id="ViasatTrueCrime.si" site_id="viasat-true-crime">Viasat True Crime</channel> <channel site="neo.io" lang="sl" xmltv_id="" site_id="viasat-true-crime">Viasat True Crime</channel>
<channel site="neo.io" lang="ba" xmltv_id="RTVVikom.ba" site_id="vikom">Vikom</channel> <channel site="neo.io" lang="ba" xmltv_id="RTVVikom.ba" site_id="vikom">Vikom</channel>
<channel site="neo.io" lang="sl" xmltv_id="Vitel.si" site_id="vitel">Vitel</channel> <channel site="neo.io" lang="sl" xmltv_id="Vitel.si" site_id="vitel">Vitel</channel>
<channel site="neo.io" lang="en" xmltv_id="VividTouch.uk" site_id="vivid-touch">Vivid Touch</channel> <channel site="neo.io" lang="en" xmltv_id="VividTouch.uk" site_id="vivid-touch">Vivid Touch</channel>

View file

@ -20,7 +20,7 @@
<channel site="nostv.pt" lang="pt" xmltv_id="" site_id="702">Dizi</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="702">Dizi</channel>
<channel site="nostv.pt" lang="en" xmltv_id="1Plus1International.ua" site_id="24">1+1</channel> <channel site="nostv.pt" lang="en" xmltv_id="1Plus1International.ua" site_id="24">1+1</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="24Kitchen.pt" site_id="243">24Kitchen HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="24Kitchen.pt" site_id="243">24Kitchen HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="AfroMusicChannel.pt" site_id="272">Afro Music Channel</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="272">Afro Music Channel</channel>
<channel site="nostv.pt" lang="en" xmltv_id="AlJazeera.qa" site_id="108">Al Jazeera</channel> <channel site="nostv.pt" lang="en" xmltv_id="AlJazeera.qa" site_id="108">Al Jazeera</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="AMC.pt" site_id="415">AMC HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="AMC.pt" site_id="415">AMC HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="AMCBreak.pt" site_id="509">AMC Break HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="AMCBreak.pt" site_id="509">AMC Break HD</channel>
@ -37,13 +37,13 @@
<channel site="nostv.pt" lang="nl" xmltv_id="BVN.nl" site_id="28">BVN</channel> <channel site="nostv.pt" lang="nl" xmltv_id="BVN.nl" site_id="28">BVN</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="Canal11.pt" site_id="565">Canal 11 HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="Canal11.pt" site_id="565">Canal 11 HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="CanalHollywood.pt" site_id="14">Canal Hollywood HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="CanalHollywood.pt" site_id="14">Canal Hollywood HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="Canalnostv.pt" site_id="408">Canal NOS HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="408">Canal NOS HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="CanalPanda.pt" site_id="593">Canal Panda HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="CanalPanda.pt" site_id="593">Canal Panda HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="CanalQ.pt" site_id="235">Canal Q</channel> <channel site="nostv.pt" lang="pt" xmltv_id="CanalQ.pt" site_id="235">Canal Q</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="CartoonNetwork.pt" site_id="252">Cartoon Network HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="CartoonNetwork.pt" site_id="252">Cartoon Network HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="CasaeCozinha.pt" site_id="572">Casa e Cozinha HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="CasaeCozinha.pt" site_id="572">Casa e Cozinha HD</channel>
<channel site="nostv.pt" lang="en" xmltv_id="CCTV4Europe.cn" site_id="316">CCTV 4</channel> <channel site="nostv.pt" lang="en" xmltv_id="CCTV4Europe.cn" site_id="316">CCTV 4</channel>
<channel site="nostv.pt" lang="en" xmltv_id="CGTNEurope.cn" site_id="312">CGTN</channel> <channel site="nostv.pt" lang="en" xmltv_id="" site_id="312">CGTN</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="CMTV.pt" site_id="425">CMTV HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="CMTV.pt" site_id="425">CMTV HD</channel>
<channel site="nostv.pt" lang="en" xmltv_id="CNBCEurope.uk" site_id="52">CNBC</channel> <channel site="nostv.pt" lang="en" xmltv_id="CNBCEurope.uk" site_id="52">CNBC</channel>
<channel site="nostv.pt" lang="en" xmltv_id="CNNInternationalEurope.us" site_id="26">CNN</channel> <channel site="nostv.pt" lang="en" xmltv_id="CNNInternationalEurope.us" site_id="26">CNN</channel>
@ -71,11 +71,11 @@
<channel site="nostv.pt" lang="pt" xmltv_id="FashionTVHD.fr" site_id="47">FTV HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="FashionTVHD.fr" site_id="47">FTV HD</channel>
<channel site="nostv.pt" lang="en" xmltv_id="FightNetwork.ca" site_id="236">Fight Network HD</channel> <channel site="nostv.pt" lang="en" xmltv_id="FightNetwork.ca" site_id="236">Fight Network HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="FoodNetworkEMEA.us" site_id="62">Food Network HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="FoodNetworkEMEA.us" site_id="62">Food Network HD</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="STARChannel.pt" site_id="174">STAR Channel</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="174">STAR Channel</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="STARComedy.pt" site_id="113">STAR Comedy</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="113">STAR Comedy</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="STARCrime.pt" site_id="244">STAR Crime</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="244">STAR Crime</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="STARLife.pt" site_id="175">STAR Life</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="175">STAR Life</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="STARMovies.pt" site_id="242">STAR Movies</channel> <channel site="nostv.pt" lang="pt" xmltv_id="" site_id="242">STAR Movies</channel>
<channel site="nostv.pt" lang="en" xmltv_id="France24English.fr" site_id="109">France 24 (I)</channel> <channel site="nostv.pt" lang="en" xmltv_id="France24English.fr" site_id="109">France 24 (I)</channel>
<channel site="nostv.pt" lang="fr" xmltv_id="France24French.fr" site_id="132">France 24 (F)</channel> <channel site="nostv.pt" lang="fr" xmltv_id="France24French.fr" site_id="132">France 24 (F)</channel>
<channel site="nostv.pt" lang="pt" xmltv_id="FUELTV.at" site_id="72">Fuel TV HD</channel> <channel site="nostv.pt" lang="pt" xmltv_id="FUELTV.at" site_id="72">Fuel TV HD</channel>

View file

@ -10,7 +10,7 @@
<channel site="novacyprus.com" lang="el" xmltv_id="FoxLife.gr" site_id="570">FOX Life</channel> <channel site="novacyprus.com" lang="el" xmltv_id="FoxLife.gr" site_id="570">FOX Life</channel>
<channel site="novacyprus.com" lang="el" xmltv_id="HellenicParliamentTV.gr" site_id="521">Βουλή - Τηλεόραση</channel> <channel site="novacyprus.com" lang="el" xmltv_id="HellenicParliamentTV.gr" site_id="521">Βουλή - Τηλεόραση</channel>
<channel site="novacyprus.com" lang="el" xmltv_id="InsightTV.nl" site_id="81">InsightTV</channel> <channel site="novacyprus.com" lang="el" xmltv_id="InsightTV.nl" site_id="81">InsightTV</channel>
<channel site="novacyprus.com" lang="el" xmltv_id="MADGreekz.gr" site_id="582">MAD GREEKZ</channel> <channel site="novacyprus.com" lang="el" xmltv_id="" site_id="582">MAD GREEKZ</channel>
<channel site="novacyprus.com" lang="el" xmltv_id="MadTV.gr" site_id="227">Mad TV</channel> <channel site="novacyprus.com" lang="el" xmltv_id="MadTV.gr" site_id="227">Mad TV</channel>
<channel site="novacyprus.com" lang="el" xmltv_id="MTVLive.uk" site_id="673">MTV Live HD</channel> <channel site="novacyprus.com" lang="el" xmltv_id="MTVLive.uk" site_id="673">MTV Live HD</channel>
<channel site="novacyprus.com" lang="el" xmltv_id="MyZenTV.fr" site_id="221">MyZen TV</channel> <channel site="novacyprus.com" lang="el" xmltv_id="MyZenTV.fr" site_id="221">MyZen TV</channel>

View file

@ -1388,7 +1388,7 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="Evasion.ca" site_id="ca#69033921/evasion-hdtv">Évasion HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="Evasion.ca" site_id="ca#69033921/evasion-hdtv">Évasion HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="FilipinoTV.ca" site_id="ca#69031569/filipino-tv">Filipino TV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="FilipinoTV.ca" site_id="ca#69031569/filipino-tv">Filipino TV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="GameTV.ca" site_id="ca#69027369/gametv">GameTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="GameTV.ca" site_id="ca#69027369/gametv">GameTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="GeoCanada.ca" site_id="ca#69030172/geo-tv-canada">GEO TV (Canada)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="ca#69030172/geo-tv-canada">GEO TV (Canada)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="GINXEsportsTVCanada.ca" site_id="ca#69031005/super-channel-ginx-esports-tv-canada">Super Channel GINX eSports TV (Canada)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="GINXEsportsTVCanada.ca" site_id="ca#69031005/super-channel-ginx-esports-tv-canada">Super Channel GINX eSports TV (Canada)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="GMALifeTV.ph" site_id="ca#69033240/gma-life-tv">GMA Life TV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="GMALifeTV.ph" site_id="ca#69033240/gma-life-tv">GMA Life TV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HPItv.ca" site_id="ca#69023075/hpitv">HPItv</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HPItv.ca" site_id="ca#69023075/hpitv">HPItv</channel>

View file

@ -1713,13 +1713,13 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyEast.us" site_id="us#69031638/hbo-comedy-hdtv-east">HBO Comedy HDTV (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyEast.us" site_id="us#69031638/hbo-comedy-hdtv-east">HBO Comedy HDTV (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyEast.us" site_id="us#69047950/hbo-comedy-east">HBO Comedy (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyEast.us" site_id="us#69047950/hbo-comedy-east">HBO Comedy (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyWest.us" site_id="us#69047951/hbo-comedy-west">HBO Comedy (West)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyWest.us" site_id="us#69047951/hbo-comedy-west">HBO Comedy (West)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOComedyWest.ys" site_id="us#69031856/hbo-comedy-hdtv-west">HBO Comedy HDTV (West)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#69031856/hbo-comedy-hdtv-west">HBO Comedy HDTV (West)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOEast.us" site_id="us#69022151/hbo-hdtv-east">HBO HDTV (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOEast.us" site_id="us#69022151/hbo-hdtv-east">HBO HDTV (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOEast.us" site_id="us#69046988/hbo-east">HBO (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOEast.us" site_id="us#69046988/hbo-east">HBO (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="us#69031636/hbo-family-hdtv-east">HBO Family HDTV (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="us#69031636/hbo-family-hdtv-east">HBO Family HDTV (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="us#69032418/hbo-family-east">HBO Family (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOFamilyEast.us" site_id="us#69032418/hbo-family-east">HBO Family (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOFamilyWest.us" site_id="us#69031761/hbo-family-hdtv-west">HBO Family HDTV (West)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#69031761/hbo-family-hdtv-west">HBO Family HDTV (West)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOFamilyWest.us" site_id="us#69035804/hbo-family-west">HBO Family (West)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#69035804/hbo-family-west">HBO Family (West)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="us#69031637/hbo-signature-hdtv-east">HBO Signature HDTV (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="us#69031637/hbo-signature-hdtv-east">HBO Signature HDTV (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="us#69032052/hbo-signature-east">HBO Signature (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOSignatureEast.us" site_id="us#69032052/hbo-signature-east">HBO Signature (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="HBOSignatureWest.us" site_id="us#69031762/hbo-signature-hdtv-west">HBO Signature HDTV (West)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="HBOSignatureWest.us" site_id="us#69031762/hbo-signature-hdtv-west">HBO Signature HDTV (West)</channel>
@ -1744,7 +1744,7 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="KFTRDT1.us" site_id="us#69033125/kftr-unimas-46-hdtv">KFTR UniMás 46 HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KFTRDT1.us" site_id="us#69033125/kftr-unimas-46-hdtv">KFTR UniMás 46 HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KFTVDT1.us" site_id="us#69025383/kftv-hdtv-univision-21">KFTV HDTV Univision 21</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KFTVDT1.us" site_id="us#69025383/kftv-hdtv-univision-21">KFTV HDTV Univision 21</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KFXADT6.us" site_id="us#69025175/kfxa-dabl">KFXA Dabl</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KFXADT6.us" site_id="us#69025175/kfxa-dabl">KFXA Dabl</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KIITDT1.us" site_id="us#69045147/kiit-hdtv">KIIT HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#69045147/kiit-hdtv">KIIT HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KINCDT1.us" site_id="us#69033134/kinc-hdtv-univision-15">KINC HDTV Univision 15</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KINCDT1.us" site_id="us#69033134/kinc-hdtv-univision-15">KINC HDTV Univision 15</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KINTDT1.us" site_id="us#69033135/kint-hdtv-univision-26">KINT HDTV Univision 26</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KINTDT1.us" site_id="us#69033135/kint-hdtv-univision-26">KINT HDTV Univision 26</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KLDODT1.us" site_id="us#69025384/kldo-univision-27">KLDO Univision 27</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KLDODT1.us" site_id="us#69025384/kldo-univision-27">KLDO Univision 27</channel>
@ -1779,7 +1779,7 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="KTFNDT1.us" site_id="us#69033218/ktfn-hdtv-unimas-65">KTFN HDTV UniMás 65</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTFNDT1.us" site_id="us#69033218/ktfn-hdtv-unimas-65">KTFN HDTV UniMás 65</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTFQDT1.us" site_id="us#69033136/ktfq-hdtv-univision">KTFQ HDTV Univision</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTFQDT1.us" site_id="us#69033136/ktfq-hdtv-univision">KTFQ HDTV Univision</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTFQDT1.us" site_id="us#69033853/ktfq-hdtv-unimas-14">KTFQ HDTV UniMás 14</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTFQDT1.us" site_id="us#69033853/ktfq-hdtv-unimas-14">KTFQ HDTV UniMás 14</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTFVDT1.us" site_id="us#1734066853/ktfv-unimas-32">KTFV UniMás 32</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#1734066853/ktfv-unimas-32">KTFV UniMás 32</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTRKDT1.us" site_id="us#69021825/ktrk-hdtv">KTRK HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTRKDT1.us" site_id="us#69021825/ktrk-hdtv">KTRK HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTTVDT1.us" site_id="us#69022186/kttv-hdtv">KTTV HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTTVDT1.us" site_id="us#69022186/kttv-hdtv">KTTV HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTVIDT1.us" site_id="us#69022788/ktvi-hdtv">KTVI HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTVIDT1.us" site_id="us#69022788/ktvi-hdtv">KTVI HDTV</channel>
@ -1787,13 +1787,13 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="KTVWDT1.us" site_id="us#69025387/ktvw-hdtv-univision-33">KTVW HDTV Univision 33</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTVWDT1.us" site_id="us#69025387/ktvw-hdtv-univision-33">KTVW HDTV Univision 33</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KTXLDT1.us" site_id="us#69022796/ktxl-hdtv">KTXL HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KTXLDT1.us" site_id="us#69022796/ktxl-hdtv">KTXL HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUNPDT1.us" site_id="us#69033958/kunp-univision-16">KUNP Univision 16</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KUNPDT1.us" site_id="us#69033958/kunp-univision-16">KUNP Univision 16</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUNWDT1.us" site_id="us#69022002/kunw-univision-2">KUNW Univision 2</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#69022002/kunw-univision-2">KUNW Univision 2</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUPBDT1.us" site_id="us#69033902/kupb-hdtv-univision-18">KUPB HDTV Univision 18</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KUPBDT1.us" site_id="us#69033902/kupb-hdtv-univision-18">KUPB HDTV Univision 18</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUTHDT1.us" site_id="us#69034876/kuth-hdtv-univision-32">KUTH HDTV Univision 32</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KUTHDT1.us" site_id="us#69034876/kuth-hdtv-univision-32">KUTH HDTV Univision 32</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUVEDT1.us" site_id="us#69034830/kuve-hdtv-univision-38">KUVE HDTV Univision 38</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KUVEDT1.us" site_id="us#69034830/kuve-hdtv-univision-38">KUVE HDTV Univision 38</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUVNDT1.us" site_id="us#69025388/kuvn-hdtv-univision-23">KUVN HDTV Univision 23</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KUVNDT1.us" site_id="us#69025388/kuvn-hdtv-univision-23">KUVN HDTV Univision 23</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KUVSDT1.us" site_id="us#69025389/kuvs-hdtv-univision-19">KUVS HDTV Univision 19</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KUVSDT1.us" site_id="us#69025389/kuvs-hdtv-univision-19">KUVS HDTV Univision 19</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KVERDT1.us" site_id="us#3678425910/kver-univision-4-hdtv">KVER Univision 4 HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#3678425910/kver-univision-4-hdtv">KVER Univision 4 HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KVSNDT1.us" site_id="us#69034099/kvsn-hdtv-univision-48">KVSN HDTV Univision 48</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KVSNDT1.us" site_id="us#69034099/kvsn-hdtv-univision-48">KVSN HDTV Univision 48</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KVVUDT1.us" site_id="us#69023154/kvvu-hdtv">KVVU HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KVVUDT1.us" site_id="us#69023154/kvvu-hdtv">KVVU HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="KVYEDT1.us" site_id="us#69047975/kvye-univision-7">KVYE Univision 7</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="KVYEDT1.us" site_id="us#69047975/kvye-univision-7">KVYE Univision 7</channel>
@ -1830,7 +1830,7 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="ShowtimeWomenEast.us" site_id="us#69049897/showtime-women-east">Showtime Women (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="ShowtimeWomenEast.us" site_id="us#69049897/showtime-women-east">Showtime Women (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="ShoxBetEast.us" site_id="us#8807289331/shoxbet-hdtv-east">SHOxBET HDTV (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="ShoxBetEast.us" site_id="us#8807289331/shoxbet-hdtv-east">SHOxBET HDTV (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="ShoxBetEast.us" site_id="us#8807289333/shoxbeteast">SHOxBET(East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="ShoxBetEast.us" site_id="us#8807289333/shoxbeteast">SHOxBET(East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="ShoxBetWast.us" site_id="us#8807289332/shoxbet-hdtv-west">SHOxBET HDTV (West)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#8807289332/shoxbet-hdtv-west">SHOxBET HDTV (West)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="StarzCinemaEast.us" site_id="us#69035051/starz-cinema-hd-east">STARZ Cinema HD (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="StarzCinemaEast.us" site_id="us#69035051/starz-cinema-hd-east">STARZ Cinema HD (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="StarzCinemaEast.us" site_id="us#69047892/starz-cinema-east">STARZ Cinema (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="StarzCinemaEast.us" site_id="us#69047892/starz-cinema-east">STARZ Cinema (East)</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="StarzComedyEast.us" site_id="us#69023898/starz-comedy-east">Starz Comedy (East)</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="StarzComedyEast.us" site_id="us#69023898/starz-comedy-east">Starz Comedy (East)</channel>
@ -1894,7 +1894,7 @@
<channel site="ontvtonight.com" lang="en" xmltv_id="WDAFDT1.us" site_id="us#69022331/wdaf-hdtv">WDAF HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="WDAFDT1.us" site_id="us#69022331/wdaf-hdtv">WDAF HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="WDFXDT1.us" site_id="us#69027443/wdfx-hdtv">WDFX HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="WDFXDT1.us" site_id="us#69027443/wdfx-hdtv">WDFX HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="WDKYDT1.us" site_id="us#69025348/wdky-hdtv">WDKY HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="WDKYDT1.us" site_id="us#69025348/wdky-hdtv">WDKY HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="WEDWDT4.us" site_id="us#1760282857/wedwdt4">WEDWDT4</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="" site_id="us#1760282857/wedwdt4">WEDWDT4</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="WFDCDT1.us" site_id="us#69033219/wfdc-hdtv-univision-14">WFDC HDTV Univision 14</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="WFDCDT1.us" site_id="us#69033219/wfdc-hdtv-univision-14">WFDC HDTV Univision 14</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="WFLDDT1.us" site_id="us#69022882/wfld-hdtv">WFLD HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="WFLDDT1.us" site_id="us#69022882/wfld-hdtv">WFLD HDTV</channel>
<channel site="ontvtonight.com" lang="en" xmltv_id="WFLXDT1.us" site_id="us#69022883/wflx-hdtv">WFLX HDTV</channel> <channel site="ontvtonight.com" lang="en" xmltv_id="WFLXDT1.us" site_id="us#69022883/wflx-hdtv">WFLX HDTV</channel>

View file

@ -43,7 +43,7 @@
<channel site="orangetv.orange.es" lang="es" xmltv_id="RuntimeComedia.es" site_id="11092">Runtime Comedia</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="RuntimeComedia.es" site_id="11092">Runtime Comedia</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="RuntimeCrimen.es" site_id="11095">Runtime Crimen</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="RuntimeCrimen.es" site_id="11095">Runtime Crimen</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="RuntimeRomance.es" site_id="11096">Runtime Romance</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="RuntimeRomance.es" site_id="11096">Runtime Romance</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="RunTimeClasicos.es" site_id="11097">RunTime Clásicos</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="" site_id="11097">RunTime Clásicos</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="CinesVerdi.es" site_id="11098">Cines Verdi TV</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="CinesVerdi.es" site_id="11098">Cines Verdi TV</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="CineFeelGood.es" site_id="11099">Cine Feel Good</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="CineFeelGood.es" site_id="11099">Cine Feel Good</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ParamountNetwork.es" site_id="12032">Paramount Network</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="ParamountNetwork.es" site_id="12032">Paramount Network</channel>
@ -72,7 +72,7 @@
<channel site="orangetv.orange.es" lang="es" xmltv_id="CanalSur.es" site_id="1035">Canal Sur</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="CanalSur.es" site_id="1035">Canal Sur</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="CanalSur2.es" site_id="2022">CanalSur 2</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="CanalSur2.es" site_id="2022">CanalSur 2</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="CanalSurAndalucia.es" site_id="2031">Andalucía TV</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="CanalSurAndalucia.es" site_id="2031">Andalucía TV</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="7TVAndalucia.e" site_id="2065">7 TV Andalucia</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="" site_id="2065">7 TV Andalucia</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="TV3.es" site_id="2008">TV3 HD</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="TV3.es" site_id="2008">TV3 HD</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="TV3CAT.es" site_id="1036">TV3CAT</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="TV3CAT.es" site_id="1036">TV3CAT</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="324.es" site_id="2050">3/24</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="324.es" site_id="2050">3/24</channel>
@ -82,7 +82,6 @@
<channel site="orangetv.orange.es" lang="es" xmltv_id="IB3.es" site_id="2013">IB3 HD</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="IB3.es" site_id="2013">IB3 HD</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="TelevisionCanaria.es" site_id="2059">RTV Canaria HD</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="TelevisionCanaria.es" site_id="2059">RTV Canaria HD</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ETB1.es" site_id="2014">ETB1 HD</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="ETB1.es" site_id="2014">ETB1 HD</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ETB2.es" site_id="1037">ETB2 HD</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ETB3.es" site_id="2032">ETB3</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="ETB3.es" site_id="2032">ETB3</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ETB4.es" site_id="2037">ETB4</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="ETB4.es" site_id="2037">ETB4</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ETBBasque.es" site_id="1037">ETB Basque</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="ETBBasque.es" site_id="1037">ETB Basque</channel>
@ -154,7 +153,7 @@
<channel site="orangetv.orange.es" lang="es" xmltv_id="MyZenTV.fr" site_id="11070">Myzen TV</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="MyZenTV.fr" site_id="11070">Myzen TV</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="FightSports.us" site_id="12007">FightSports</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="FightSports.us" site_id="12007">FightSports</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="FightBoxHD.nl" site_id="1091">Fight Box HD</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="FightBoxHD.nl" site_id="1091">Fight Box HD</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="Gametoon.es" site_id="1086">Gametoon</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="" site_id="1086">Gametoon</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="EuronewsSpanish.fr" site_id="1090">Euronews</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="EuronewsSpanish.fr" site_id="1090">Euronews</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="ElToroTV.es" site_id="11049">El Toro TV</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="ElToroTV.es" site_id="11049">El Toro TV</channel>
<channel site="orangetv.orange.es" lang="es" xmltv_id="Motorvision.de" site_id="11105">Motorvision</channel> <channel site="orangetv.orange.es" lang="es" xmltv_id="Motorvision.de" site_id="11105">Motorvision</channel>

View file

@ -14,7 +14,7 @@
<channel site="osn.com" lang="ar" xmltv_id="AlSafwa.ae" site_id="SAF">Al Safwa</channel> <channel site="osn.com" lang="ar" xmltv_id="AlSafwa.ae" site_id="SAF">Al Safwa</channel>
<channel site="osn.com" lang="ar" xmltv_id="AlYawm.ae" site_id="YAW">Alfa Al Yawm</channel> <channel site="osn.com" lang="ar" xmltv_id="AlYawm.ae" site_id="YAW">Alfa Al Yawm</channel>
<channel site="osn.com" lang="ar" xmltv_id="ANC.ph" site_id="ANC">ANC</channel> <channel site="osn.com" lang="ar" xmltv_id="ANC.ph" site_id="ANC">ANC</channel>
<channel site="osn.com" lang="ar" xmltv_id="AnimalPlanet.ae" site_id="APL">Animal Planet</channel> <channel site="osn.com" lang="ar" xmltv_id="" site_id="APL">Animal Planet</channel>
<channel site="osn.com" lang="ar" xmltv_id="BloombergTVEurope.uk" site_id="BTV">Bloomberg</channel> <channel site="osn.com" lang="ar" xmltv_id="BloombergTVEurope.uk" site_id="BTV">Bloomberg</channel>
<channel site="osn.com" lang="ar" xmltv_id="CartoonNetworkArabic.ae" site_id="TCN">Cartoon Network</channel> <channel site="osn.com" lang="ar" xmltv_id="CartoonNetworkArabic.ae" site_id="TCN">Cartoon Network</channel>
<channel site="osn.com" lang="ar" xmltv_id="Cinema1.ae" site_id="CM1">Alfa Cinema 1</channel> <channel site="osn.com" lang="ar" xmltv_id="Cinema1.ae" site_id="CM1">Alfa Cinema 1</channel>
@ -49,7 +49,7 @@
<channel site="osn.com" lang="ar" xmltv_id="OSNMoviesAction.ae" site_id="AHD">OSN TV Movies Action</channel> <channel site="osn.com" lang="ar" xmltv_id="OSNMoviesAction.ae" site_id="AHD">OSN TV Movies Action</channel>
<channel site="osn.com" lang="ar" xmltv_id="OSNMoviesHollywood.ae" site_id="OPR">OSN TV Movies Hollywood</channel> <channel site="osn.com" lang="ar" xmltv_id="OSNMoviesHollywood.ae" site_id="OPR">OSN TV Movies Hollywood</channel>
<channel site="osn.com" lang="ar" xmltv_id="OSNMoviesPremiere.ae" site_id="OM1">OSN TV Movies Premiere</channel> <channel site="osn.com" lang="ar" xmltv_id="OSNMoviesPremiere.ae" site_id="OM1">OSN TV Movies Premiere</channel>
<channel site="osn.com" lang="ar" xmltv_id="OSNNews.ae" site_id="ONS">OSN TV News</channel> <channel site="osn.com" lang="ar" xmltv_id="" site_id="ONS">OSN TV News</channel>
<channel site="osn.com" lang="ar" xmltv_id="OSNShowcase.ae" site_id="OFH">OSN TV Showcase</channel> <channel site="osn.com" lang="ar" xmltv_id="OSNShowcase.ae" site_id="OFH">OSN TV Showcase</channel>
<channel site="osn.com" lang="ar" xmltv_id="OSNYahala.ae" site_id="OYH">OSN TV Yahala</channel> <channel site="osn.com" lang="ar" xmltv_id="OSNYahala.ae" site_id="OYH">OSN TV Yahala</channel>
<channel site="osn.com" lang="ar" xmltv_id="OSNYahalaAflam.ae" site_id="OYC">OSN TV Yahala Aflam</channel> <channel site="osn.com" lang="ar" xmltv_id="OSNYahalaAflam.ae" site_id="OYC">OSN TV Yahala Aflam</channel>

View file

@ -14,7 +14,7 @@
<channel site="osn.com" lang="en" xmltv_id="AlSafwa.ae" site_id="SAF">Al Safwa</channel> <channel site="osn.com" lang="en" xmltv_id="AlSafwa.ae" site_id="SAF">Al Safwa</channel>
<channel site="osn.com" lang="en" xmltv_id="AlYawm.ae" site_id="YAW">Alfa Al Yawm</channel> <channel site="osn.com" lang="en" xmltv_id="AlYawm.ae" site_id="YAW">Alfa Al Yawm</channel>
<channel site="osn.com" lang="en" xmltv_id="ANC.ph" site_id="ANC">ANC</channel> <channel site="osn.com" lang="en" xmltv_id="ANC.ph" site_id="ANC">ANC</channel>
<channel site="osn.com" lang="en" xmltv_id="AnimalPlanet.ae" site_id="APL">Animal Planet</channel> <channel site="osn.com" lang="en" xmltv_id="" site_id="APL">Animal Planet</channel>
<channel site="osn.com" lang="en" xmltv_id="BloombergTVEurope.uk" site_id="BTV">Bloomberg</channel> <channel site="osn.com" lang="en" xmltv_id="BloombergTVEurope.uk" site_id="BTV">Bloomberg</channel>
<channel site="osn.com" lang="en" xmltv_id="CartoonNetworkArabic.ae" site_id="TCN">Cartoon Network</channel> <channel site="osn.com" lang="en" xmltv_id="CartoonNetworkArabic.ae" site_id="TCN">Cartoon Network</channel>
<channel site="osn.com" lang="en" xmltv_id="Cinema1.ae" site_id="CM1">Alfa Cinema 1</channel> <channel site="osn.com" lang="en" xmltv_id="Cinema1.ae" site_id="CM1">Alfa Cinema 1</channel>
@ -49,7 +49,7 @@
<channel site="osn.com" lang="en" xmltv_id="OSNMoviesAction.ae" site_id="AHD">OSN TV Movies Action</channel> <channel site="osn.com" lang="en" xmltv_id="OSNMoviesAction.ae" site_id="AHD">OSN TV Movies Action</channel>
<channel site="osn.com" lang="en" xmltv_id="OSNMoviesHollywood.ae" site_id="OPR">OSN TV Movies Hollywood</channel> <channel site="osn.com" lang="en" xmltv_id="OSNMoviesHollywood.ae" site_id="OPR">OSN TV Movies Hollywood</channel>
<channel site="osn.com" lang="en" xmltv_id="OSNMoviesPremiere.ae" site_id="OM1">OSN TV Movies Premiere</channel> <channel site="osn.com" lang="en" xmltv_id="OSNMoviesPremiere.ae" site_id="OM1">OSN TV Movies Premiere</channel>
<channel site="osn.com" lang="en" xmltv_id="OSNNews.ae" site_id="ONS">OSN TV News</channel> <channel site="osn.com" lang="en" xmltv_id="" site_id="ONS">OSN TV News</channel>
<channel site="osn.com" lang="en" xmltv_id="OSNShowcase.ae" site_id="OFH">OSN TV Showcase</channel> <channel site="osn.com" lang="en" xmltv_id="OSNShowcase.ae" site_id="OFH">OSN TV Showcase</channel>
<channel site="osn.com" lang="en" xmltv_id="OSNYahala.ae" site_id="OYH">OSN TV Yahala</channel> <channel site="osn.com" lang="en" xmltv_id="OSNYahala.ae" site_id="OYH">OSN TV Yahala</channel>
<channel site="osn.com" lang="en" xmltv_id="OSNYahalaAflam.ae" site_id="OYC">OSN TV Yahala Aflam</channel> <channel site="osn.com" lang="en" xmltv_id="OSNYahalaAflam.ae" site_id="OYC">OSN TV Yahala Aflam</channel>

View file

@ -40,11 +40,11 @@
<channel site="pickx.be" lang="fr" xmltv_id="CanalZoom.be" site_id="UID50146">Canal Zoom</channel> <channel site="pickx.be" lang="fr" xmltv_id="CanalZoom.be" site_id="UID50146">Canal Zoom</channel>
<channel site="pickx.be" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="UID2361">Cartoon F HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="UID2361">Cartoon F HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="UID50021">Cartoon F</channel> <channel site="pickx.be" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="UID50021">Cartoon F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="CinePlusClassicBelgium.be" site_id="UID0305">Ciné+Classic</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0305">Ciné+Classic</channel>
<channel site="pickx.be" lang="fr" xmltv_id="CinePlusFrissonBelgium.be" site_id="UID0304">Ciné+Frisson</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0304">Ciné+Frisson</channel>
<channel site="pickx.be" lang="fr" xmltv_id="CinePlusPremierBelgium.be" site_id="UID0303">Ciné+Premier</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0303">Ciné+Premier</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ClubRTL.be" site_id="UID50070">RTL club</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID50070">RTL club</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ClubRTL.be" site_id="UID50209">RTL club HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID50209">RTL club HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ComedyCentral.fr" site_id="UID2068">Comedy Central F</channel> <channel site="pickx.be" lang="fr" xmltv_id="ComedyCentral.fr" site_id="UID2068">Comedy Central F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="CrimeDistrict.fr" site_id="UID0189">Crime District</channel> <channel site="pickx.be" lang="fr" xmltv_id="CrimeDistrict.fr" site_id="UID0189">Crime District</channel>
<channel site="pickx.be" lang="fr" xmltv_id="DiscoveryChannel.fr" site_id="UID0090">Discovery F</channel> <channel site="pickx.be" lang="fr" xmltv_id="DiscoveryChannel.fr" site_id="UID0090">Discovery F</channel>
@ -58,18 +58,18 @@
<channel site="pickx.be" lang="fr" xmltv_id="DorcelXXX.nl" site_id="UID50099">Dorcel XXX</channel> <channel site="pickx.be" lang="fr" xmltv_id="DorcelXXX.nl" site_id="UID50099">Dorcel XXX</channel>
<channel site="pickx.be" lang="fr" xmltv_id="E.fr" site_id="UID2040">E! HD F</channel> <channel site="pickx.be" lang="fr" xmltv_id="E.fr" site_id="UID2040">E! HD F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="E.fr" site_id="UID50109">E! F</channel> <channel site="pickx.be" lang="fr" xmltv_id="E.fr" site_id="UID50109">E! F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eleven1.be" site_id="UID0640">ES1 F</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0640">ES1 F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eleven1.be" site_id="UID0644">ES1 F HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0644">ES1 F HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eleven2.be" site_id="UID0642">ES2 F</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0642">ES2 F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eleven2.be" site_id="UID0646">ES2 F HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0646">ES2 F HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eleven3.be" site_id="UID0648">ES3 F</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0648">ES3 F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eleven3.be" site_id="UID0697">ES3 F HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0697">ES3 F HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ElevenProLeague1.be" site_id="UID2130">Eleven Pro League 1 (FR) [HD]</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2130">Eleven Pro League 1 (FR) [HD]</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ElevenProLeague1.be" site_id="UID2131">Eleven Pro League 1 (FR)</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2131">Eleven Pro League 1 (FR)</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ElevenProLeague2.be" site_id="UID2182">Eleven Pro League 2 (FR) [HD]</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2182">Eleven Pro League 2 (FR) [HD]</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ElevenProLeague2.be" site_id="UID2183">Eleven Pro League 2 (FR)</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2183">Eleven Pro League 2 (FR)</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ElevenProLeague3.be" site_id="UID2186">Eleven Pro League 3 (FR) [HD]</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2186">Eleven Pro League 3 (FR) [HD]</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ElevenProLeague3.be" site_id="UID2187">Eleven Pro League 3 (FR)</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2187">Eleven Pro League 3 (FR)</channel>
<channel site="pickx.be" lang="fr" xmltv_id="EuronewsFrench.fr" site_id="UID0154">Euronews F</channel> <channel site="pickx.be" lang="fr" xmltv_id="EuronewsFrench.fr" site_id="UID0154">Euronews F</channel>
<channel site="pickx.be" lang="fr" xmltv_id="EuronewsFrench.fr" site_id="UID2489">Euronews F HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="EuronewsFrench.fr" site_id="UID2489">Euronews F HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="Eurosport1.fr" site_id="UID50077">Eurosp F</channel> <channel site="pickx.be" lang="fr" xmltv_id="Eurosport1.fr" site_id="UID50077">Eurosp F</channel>
@ -149,13 +149,13 @@
<channel site="pickx.be" lang="fr" xmltv_id="PickxPlusSports10FR.be" site_id="UID50231">Pickx+ Sports 10 F</channel> <channel site="pickx.be" lang="fr" xmltv_id="PickxPlusSports10FR.be" site_id="UID50231">Pickx+ Sports 10 F</channel>
<channel site="pickx.be" lang="en" xmltv_id="PinkX.fr" site_id="UID2466">Pink HD</channel> <channel site="pickx.be" lang="en" xmltv_id="PinkX.fr" site_id="UID2466">Pink HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="PinkX.fr" site_id="UID50192">Pink</channel> <channel site="pickx.be" lang="fr" xmltv_id="PinkX.fr" site_id="UID50192">Pink</channel>
<channel site="pickx.be" lang="fr" xmltv_id="PlugRTL.be" site_id="UID0106">RTL plug HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID0106">RTL plug HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="PlugRTL.be" site_id="UID50026">RTL plug</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID50026">RTL plug</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RadioContact.be" site_id="UID50014">ContactV</channel> <channel site="pickx.be" lang="fr" xmltv_id="RadioContact.be" site_id="UID50014">ContactV</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RFMTV.fr" site_id="UID2478">RFM TV HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="RFMTV.fr" site_id="UID2478">RFM TV HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RFMTV.fr" site_id="UID50043">RFM TV</channel> <channel site="pickx.be" lang="fr" xmltv_id="RFMTV.fr" site_id="UID50043">RFM TV</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RTCTeleLiege.be" site_id="UID2335">RTC Liège HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID2335">RTC Liège HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RTCTeleLiege.be" site_id="UID29769866">RTC Liège</channel> <channel site="pickx.be" lang="fr" xmltv_id="" site_id="UID29769866">RTC Liège</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RTLTVI.be" site_id="UID0102">RTL tvi HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="RTLTVI.be" site_id="UID0102">RTL tvi HD</channel>
<channel site="pickx.be" lang="fr" xmltv_id="RTLTVI.be" site_id="UID50072">RTL tvi</channel> <channel site="pickx.be" lang="fr" xmltv_id="RTLTVI.be" site_id="UID50072">RTL tvi</channel>
<channel site="pickx.be" lang="fr" xmltv_id="ScienceVieTV.fr" site_id="UID2368">Sc et Vie TV HD</channel> <channel site="pickx.be" lang="fr" xmltv_id="ScienceVieTV.fr" site_id="UID2368">Sc et Vie TV HD</channel>

View file

@ -14,8 +14,8 @@
<channel site="pickx.be" lang="nl" xmltv_id="BabyTV.uk" site_id="UID50052">Baby TV N</channel> <channel site="pickx.be" lang="nl" xmltv_id="BabyTV.uk" site_id="UID50052">Baby TV N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Bruzz.be" site_id="UID2326">BRUZZ HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="Bruzz.be" site_id="UID2326">BRUZZ HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Bruzz.be" site_id="UID50130">BRUZZ</channel> <channel site="pickx.be" lang="nl" xmltv_id="Bruzz.be" site_id="UID50130">BRUZZ</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Canvas.be" site_id="UID50084">VRT Canvas</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID50084">VRT Canvas</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Canvas.be" site_id="UID50306">VRT Canvas HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID50306">VRT Canvas HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Cartoonito.uk" site_id="UID2360">Cartoonito HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="Cartoonito.uk" site_id="UID2360">Cartoonito HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Cartoonito.uk" site_id="UID50305">Cartoonito</channel> <channel site="pickx.be" lang="nl" xmltv_id="Cartoonito.uk" site_id="UID50305">Cartoonito</channel>
<channel site="pickx.be" lang="nl" xmltv_id="CartoonNetwork.nl" site_id="UID2362">Cartoon N HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="CartoonNetwork.nl" site_id="UID2362">Cartoon N HD</channel>
@ -33,29 +33,29 @@
<channel site="pickx.be" lang="nl" xmltv_id="DobbitTVNL.be" site_id="UID2374">Dobbit N HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="DobbitTVNL.be" site_id="UID2374">Dobbit N HD</channel>
<channel site="pickx.be" lang="en" xmltv_id="DuskTV.nl" site_id="UID0628">Dusk</channel> <channel site="pickx.be" lang="en" xmltv_id="DuskTV.nl" site_id="UID0628">Dusk</channel>
<channel site="pickx.be" lang="nl" xmltv_id="EclipsTV.be" site_id="UID0211">Eclips</channel> <channel site="pickx.be" lang="nl" xmltv_id="EclipsTV.be" site_id="UID0211">Eclips</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Een.be" site_id="UID50037">VRT 1</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID50037">VRT 1</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Een.be" site_id="UID50208">VRT 1 HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID50208">VRT 1 HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="EEurope.nl" site_id="UID2041">E! HD N</channel> <channel site="pickx.be" lang="nl" xmltv_id="EEurope.nl" site_id="UID2041">E! HD N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="EEurope.nl" site_id="UID50128">E! N</channel> <channel site="pickx.be" lang="nl" xmltv_id="EEurope.nl" site_id="UID50128">E! N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eleven1.be" site_id="UID0641">ES1 N</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0641">ES1 N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eleven1.be" site_id="UID0645">ES1 N HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0645">ES1 N HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eleven2.be" site_id="UID0643">ES2 N</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0643">ES2 N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eleven2.be" site_id="UID0647">ES2 N HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0647">ES2 N HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eleven3.be" site_id="UID0649">ES3 N</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0649">ES3 N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eleven3.be" site_id="UID0698">ES3 N HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0698">ES3 N HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="ElevenProLeague1.be" site_id="UID2180">Eleven Pro League 1 (NL) [HD]</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID2180">Eleven Pro League 1 (NL) [HD]</channel>
<channel site="pickx.be" lang="nl" xmltv_id="ElevenProLeague1.be" site_id="UID2181">Eleven Pro League 1 (NL)</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID2181">Eleven Pro League 1 (NL)</channel>
<channel site="pickx.be" lang="nl" xmltv_id="ElevenProLeague2.be" site_id="UID2184">Eleven Pro League 2 (NL) [HD]</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID2184">Eleven Pro League 2 (NL) [HD]</channel>
<channel site="pickx.be" lang="nl" xmltv_id="ElevenProLeague2.be" site_id="UID2185">Eleven Pro League 2 (NL)</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID2185">Eleven Pro League 2 (NL)</channel>
<channel site="pickx.be" lang="nl" xmltv_id="ElevenProLeague3.be" site_id="UID2188">Eleven Pro League 3 (NL) [HD]</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID2188">Eleven Pro League 3 (NL) [HD]</channel>
<channel site="pickx.be" lang="nl" xmltv_id="ElevenProLeague3.be" site_id="UID2189">Eleven Pro League 3 (NL)</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID2189">Eleven Pro League 3 (NL)</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eurosport1.fr" site_id="UID50094">Eurosp N</channel> <channel site="pickx.be" lang="nl" xmltv_id="Eurosport1.fr" site_id="UID50094">Eurosp N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eurosport1.fr" site_id="UID50210">Eurosp HD N</channel> <channel site="pickx.be" lang="nl" xmltv_id="Eurosport1.fr" site_id="UID50210">Eurosp HD N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eurosport2.fr" site_id="UID2358">Eurosp2 HD N</channel> <channel site="pickx.be" lang="nl" xmltv_id="Eurosport2.fr" site_id="UID2358">Eurosp2 HD N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Eurosport2.fr" site_id="UID50269">Eurosp2 N</channel> <channel site="pickx.be" lang="nl" xmltv_id="Eurosport2.fr" site_id="UID50269">Eurosp2 N</channel>
<channel site="pickx.be" lang="nl" xmltv_id="FocusWTV.be" site_id="UID2330">Focus TV HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="FocusWTV.be" site_id="UID2330">Focus TV HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="FocusWTV.be" site_id="UID50115">Focus TV</channel> <channel site="pickx.be" lang="nl" xmltv_id="FocusWTV.be" site_id="UID50115">Focus TV</channel>
<channel site="pickx.be" lang="nl" xmltv_id="Fox.nl" site_id="UID0142">STAR Channel HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="" site_id="UID0142">STAR Channel HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="History.nl" site_id="UID2370">History HD</channel> <channel site="pickx.be" lang="nl" xmltv_id="History.nl" site_id="UID2370">History HD</channel>
<channel site="pickx.be" lang="nl" xmltv_id="History.nl" site_id="UID50154">History</channel> <channel site="pickx.be" lang="nl" xmltv_id="History.nl" site_id="UID50154">History</channel>
<channel site="pickx.be" lang="nl" xmltv_id="InsightTV.nl" site_id="UID2350">INPLUS</channel> <channel site="pickx.be" lang="nl" xmltv_id="InsightTV.nl" site_id="UID2350">INPLUS</channel>

View file

@ -16,8 +16,8 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="5SELECT.uk" site_id="dvb://233a..4f20">5Select</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="5SELECT.uk" site_id="dvb://233a..4f20">5Select</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="5STAR.uk" site_id="dvb://233a..3280">5STAR</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="5STAR.uk" site_id="dvb://233a..3280">5STAR</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="5USA.uk" site_id="dvb://233a..32c0">5USA</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="5USA.uk" site_id="dvb://233a..32c0">5USA</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="alibi.uk" site_id="http://bds.tv/services/BT_509198_3825_SD">Alibi</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_509198_3825_SD">Alibi</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="alibiHD.uk" site_id="http://bds.tv/services/BT_760040_3825_HD">Alibi HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_760040_3825_HD">Alibi HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="dvb://233a..6c40">Al Jazeera Eng</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="dvb://233a..6c40">Al Jazeera Eng</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Babestation.uk" site_id="dvb://233a..6d00">ADULT Babestn</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="Babestation.uk" site_id="dvb://233a..6d00">ADULT Babestn</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="BBCFour.uk" site_id="dvb://233a..11c0">BBC Four</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="BBCFour.uk" site_id="dvb://233a..11c0">BBC Four</channel>
@ -55,13 +55,13 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="ComedyCentral.uk" site_id="http://bds.tv/services/BT_750989_2510_SD">Comedy Central</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="ComedyCentral.uk" site_id="http://bds.tv/services/BT_750989_2510_SD">Comedy Central</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="ComedyCentralHD.uk" site_id="http://bds.tv/services/BT_759077_2510_HD">Comedy Central HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="ComedyCentralHD.uk" site_id="http://bds.tv/services/BT_759077_2510_HD">Comedy Central HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="CreateandCraft.uk" site_id="dvb://233a..5b20">Create &amp; Craft</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="CreateandCraft.uk" site_id="dvb://233a..5b20">Create &amp; Craft</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Dave.uk" site_id="dvb://233a..5700">Dave</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..5700">Dave</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Davejavu.uk" site_id="dvb://233a..32d0">Dave Ja Vu</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..32d0">Dave Ja Vu</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="DiscoveryChannel.uk" site_id="http://bds.tv/services/BT_608791">Discovery</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="DiscoveryChannel.uk" site_id="http://bds.tv/services/BT_608791">Discovery</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="DiscoveryChannelHD.uk" site_id="http://bds.tv/services/BT_756787">Discovery HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="DiscoveryChannelHD.uk" site_id="http://bds.tv/services/BT_756787">Discovery HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="DMAX.uk" site_id="dvb://233a..6c20">DMAX</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="DMAX.uk" site_id="dvb://233a..6c20">DMAX</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Drama.uk" site_id="dvb://233a..3f50">Drama</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..3f50">Drama</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="DramaPlus1.uk" site_id="dvb://233a..5740">Drama+1</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..5740">Drama+1</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="E4.uk" site_id="dvb://233a..2100">E4</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="E4.uk" site_id="dvb://233a..2100">E4</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="E4Extra.uk" site_id="dvb://233a..5760">E4 Extra</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="E4Extra.uk" site_id="dvb://233a..5760">E4 Extra</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="E4Plus1.uk" site_id="dvb://233a..210a">E4+1</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="E4Plus1.uk" site_id="dvb://233a..210a">E4+1</channel>
@ -75,12 +75,12 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="FoodNetwork.uk" site_id="dvb://233a..5a00">Food Network</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="FoodNetwork.uk" site_id="dvb://233a..5a00">Food Network</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GBNews.uk" site_id="dvb://233a..6ae0">GB News</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GBNews.uk" site_id="dvb://233a..6ae0">GB News</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GemsTV.uk" site_id="dvb://233a..5f80">Gems TV</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GemsTV.uk" site_id="dvb://233a..5f80">Gems TV</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GOLD.uk" site_id="http://bds.tv/services/BT_81523_2304_SD">GOLD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_81523_2304_SD">GOLD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GOLDHD.uk" site_id="http://bds.tv/services/BT_771058_2304_HD">GOLD HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GOLDHD.uk" site_id="http://bds.tv/services/BT_771058_2304_HD">GOLD HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATaction.uk" site_id="dvb://233a..3cd8">GREAT! action</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GREATaction.uk" site_id="dvb://233a..3cd8">GREAT! action</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATChristmasmix.uk" site_id="dvb://233a..6ee0">GREAT! Christmas mix</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..6ee0">GREAT! Christmas mix</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATmovies.uk" site_id="dvb://233a..6ce0">GREAT! movies</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GREATmovies.uk" site_id="dvb://233a..6ce0">GREAT! movies</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATmoviesextra.uk" site_id="dvb://233a..6ea0">GREAT! movies extra</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..6ea0">GREAT! movies extra</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATromance.uk" site_id="dvb://233a..6aa0">GREAT! Christmas</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GREATromance.uk" site_id="dvb://233a..6aa0">GREAT! Christmas</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATtv.uk" site_id="dvb://233a..6a20">GREAT! tv</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GREATtv.uk" site_id="dvb://233a..6a20">GREAT! tv</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="GREATtvPlus1.uk" site_id="dvb://233a..6ec0">GREAT! tv +1</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="GREATtvPlus1.uk" site_id="dvb://233a..6ec0">GREAT! tv +1</channel>
@ -101,7 +101,7 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="JewelleryMaker.uk" site_id="dvb://233a..6a40">Jewellery Maker</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="JewelleryMaker.uk" site_id="dvb://233a..6a40">Jewellery Maker</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="KetchupTV.us" site_id="dvb://233a..3f48">KetchupTv</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="KetchupTV.us" site_id="dvb://233a..3f48">KetchupTv</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Legend.uk" site_id="dvb://233a..3890">Legend</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="Legend.uk" site_id="dvb://233a..3890">Legend</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="LegendXtra.uk" site_id="dvb://233a..8540">Legend Xtra</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..8540">Legend Xtra</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="More4.uk" site_id="dvb://233a..20fa">More 4</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="More4.uk" site_id="dvb://233a..20fa">More 4</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="MTV.uk" site_id="http://bds.tv/services/BT_57005_2501_SD">MTV</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="MTV.uk" site_id="http://bds.tv/services/BT_57005_2501_SD">MTV</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="MTVHD.uk" site_id="http://bds.tv/services/BT_762673_2501_HD">MTV HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="MTVHD.uk" site_id="http://bds.tv/services/BT_762673_2501_HD">MTV HD</channel>
@ -115,7 +115,7 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="PBSAmerica.uk" site_id="dvb://233a..6d40">PBS America</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="PBSAmerica.uk" site_id="dvb://233a..6d40">PBS America</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Pop.uk" site_id="dvb://233a..8200">POP</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="Pop.uk" site_id="dvb://233a..8200">POP</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="PopMax.uk" site_id="dvb://233a..8240">POP MAX</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="PopMax.uk" site_id="dvb://233a..8240">POP MAX</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="PopPlayer.uk" site_id="dvb://233a..32a0">POP Player</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..32a0">POP Player</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Quest.uk" site_id="dvb://233a..6ac0">QUEST</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="Quest.uk" site_id="dvb://233a..6ac0">QUEST</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="QuestPlus1.uk" site_id="dvb://233a..5d00">QUEST+1</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="QuestPlus1.uk" site_id="dvb://233a..5d00">QUEST+1</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="QuestRed.uk" site_id="dvb://233a..5cc0">Quest Red</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="QuestRed.uk" site_id="dvb://233a..5cc0">Quest Red</channel>
@ -123,7 +123,7 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="QVC.uk" site_id="dvb://233a..3340">QVC</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="QVC.uk" site_id="dvb://233a..3340">QVC</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Really.uk" site_id="dvb://233a..5ca0">Really</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="Really.uk" site_id="dvb://233a..5ca0">Really</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyArts.uk" site_id="dvb://233a..5680">Sky Arts</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyArts.uk" site_id="dvb://233a..5680">Sky Arts</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyArtsDot.uk" site_id="http://bds.tv/services/BT_750973_1752_SD">Sky Arts.</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_750973_1752_SD">Sky Arts.</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyArtsHD.uk" site_id="http://bds.tv/services/BT_756518_1752_HD">Sky Arts HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyArtsHD.uk" site_id="http://bds.tv/services/BT_756518_1752_HD">Sky Arts HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyAtlantic.uk" site_id="http://bds.tv/services/BT_759409_1412_SD">Sky Atlantic</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyAtlantic.uk" site_id="http://bds.tv/services/BT_759409_1412_SD">Sky Atlantic</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyAtlanticHD.uk" site_id="http://bds.tv/services/BT_759410_1412_HD">Sky Atlantic HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyAtlanticHD.uk" site_id="http://bds.tv/services/BT_759410_1412_HD">Sky Atlantic HD</channel>
@ -131,16 +131,16 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaActionHD.uk" site_id="http://bds.tv/services/BT_758027_1001_HD">Sky Cinema Action HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaActionHD.uk" site_id="http://bds.tv/services/BT_758027_1001_HD">Sky Cinema Action HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaAnimation.uk" site_id="http://bds.tv/services/BT_772174_1198_SD">Sky Cinema Animation</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaAnimation.uk" site_id="http://bds.tv/services/BT_772174_1198_SD">Sky Cinema Animation</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaAnimationHD.uk" site_id="http://bds.tv/services/BT_772175_1198_HD">Sky Cinema Animation HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaAnimationHD.uk" site_id="http://bds.tv/services/BT_772175_1198_HD">Sky Cinema Animation HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaBestof2023.uk" site_id="http://bds.tv/services/BT_727787_1811_SD">Sky Cinema Best of 2023</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_727787_1811_SD">Sky Cinema Best of 2023</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaBestof2023HD.uk" site_id="http://bds.tv/services/BT_758727_1811_HD">Sky Cinema Best of 2023 HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_758727_1811_HD">Sky Cinema Best of 2023 HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaChristmas.uk" site_id="http://bds.tv/services/BT_750602_1816_SD">Sky Cinema Christmas</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_750602_1816_SD">Sky Cinema Christmas</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaChristmasHD.uk" site_id="http://bds.tv/services/BT_758029_1816_HD">Sky Cinema Christmas HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_758029_1816_HD">Sky Cinema Christmas HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaComedy.uk" site_id="http://bds.tv/services/BT_91_1002_SD">Sky Cinema Comedy</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaComedy.uk" site_id="http://bds.tv/services/BT_91_1002_SD">Sky Cinema Comedy</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaComedyHD.uk" site_id="http://bds.tv/services/BT_758026_1002_HD">Sky Cinema Comedy HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaComedyHD.uk" site_id="http://bds.tv/services/BT_758026_1002_HD">Sky Cinema Comedy HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaFamily.uk" site_id="http://bds.tv/services/BT_727783_1808_SD">Sky Cinema Family</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaFamily.uk" site_id="http://bds.tv/services/BT_727783_1808_SD">Sky Cinema Family</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaFamilyHD.uk" site_id="http://bds.tv/services/BT_758028_1808_HD">Sky Cinema Family HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaFamilyHD.uk" site_id="http://bds.tv/services/BT_758028_1808_HD">Sky Cinema Family HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaFavourites.uk" site_id="http://bds.tv/services/BT_727785_1815_SD">Sky Cinema Favourites</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_727785_1815_SD">Sky Cinema Favourites</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaFavouritesHD.uk" site_id="http://bds.tv/services/BT_758031_1815_HD">Sky Cinema Favourites HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_758031_1815_HD">Sky Cinema Favourites HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaHits.uk" site_id="http://bds.tv/services/BT_756489_1814_SD">Sky Cinema Hits</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaHits.uk" site_id="http://bds.tv/services/BT_756489_1814_SD">Sky Cinema Hits</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaHitsHD.uk" site_id="http://bds.tv/services/BT_727788_1814_HD">Sky Cinema Hits HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaHitsHD.uk" site_id="http://bds.tv/services/BT_727788_1814_HD">Sky Cinema Hits HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaPremiere.uk" site_id="http://bds.tv/services/BT_750600_1409_SD">Sky Cinema Premiere</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyCinemaPremiere.uk" site_id="http://bds.tv/services/BT_750600_1409_SD">Sky Cinema Premiere</channel>
@ -165,7 +165,7 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNature.uk" site_id="http://bds.tv/services/BT_772168_1194_SD">Sky Nature</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNature.uk" site_id="http://bds.tv/services/BT_772168_1194_SD">Sky Nature</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNatureHD.uk" site_id="http://bds.tv/services/BT_772171_1194_HD">Sky Nature HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNatureHD.uk" site_id="http://bds.tv/services/BT_772171_1194_HD">Sky Nature HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNews.uk" site_id="dvb://233a..5640">Sky News</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNews.uk" site_id="dvb://233a..5640">Sky News</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNewsDot.uk" site_id="http://bds.tv/services/BT_93_1404_SD">Sky News.</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_93_1404_SD">Sky News.</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNewsHD.uk" site_id="http://bds.tv/services/BT_759054_1404_HD">Sky News HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyNewsHD.uk" site_id="http://bds.tv/services/BT_759054_1404_HD">Sky News HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySciFi.uk" site_id="http://bds.tv/services/BT_318488_2505_SD">Sky Sci-Fi</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySciFi.uk" site_id="http://bds.tv/services/BT_318488_2505_SD">Sky Sci-Fi</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySciFiHD.uk" site_id="http://bds.tv/services/BT_758174_2505_HD">Sky Sci-Fi HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySciFiHD.uk" site_id="http://bds.tv/services/BT_758174_2505_HD">Sky Sci-Fi HD</channel>
@ -173,8 +173,8 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkyShowcaseHD.uk" site_id="http://bds.tv/services/BT_772488_1276_HD">Sky Showcase HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkyShowcaseHD.uk" site_id="http://bds.tv/services/BT_772488_1276_HD">Sky Showcase HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsArena.uk" site_id="http://bds.tv/services/BT_771051_3839_SD">Sky Sports Arena</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsArena.uk" site_id="http://bds.tv/services/BT_771051_3839_SD">Sky Sports Arena</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsArenaHD.uk" site_id="http://bds.tv/services/BT_771075_3839_HD">Sky Sports Arena HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsArenaHD.uk" site_id="http://bds.tv/services/BT_771075_3839_HD">Sky Sports Arena HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsBoxOffice1HD.uk" site_id="http://bds.tv/services/BT_769095">Sky Sports Box Office HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_769095">Sky Sports Box Office HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsBoxOffice2HD.uk" site_id="http://bds.tv/services/BT_772384">Sky Sports Box Office 2 HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="http://bds.tv/services/BT_772384">Sky Sports Box Office 2 HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsCricket.uk" site_id="http://bds.tv/services/BT_223160_1302_SD">Sky Sports Cricket</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsCricket.uk" site_id="http://bds.tv/services/BT_223160_1302_SD">Sky Sports Cricket</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsCricketHD.uk" site_id="http://bds.tv/services/BT_756533_1302_HD">Sky Sports Cricket HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsCricketHD.uk" site_id="http://bds.tv/services/BT_756533_1302_HD">Sky Sports Cricket HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsF1.uk" site_id="http://bds.tv/services/BT_759963_1306_SD">Sky Sports F1</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="SkySportsF1.uk" site_id="http://bds.tv/services/BT_759963_1306_SD">Sky Sports F1</channel>
@ -234,11 +234,11 @@
<channel site="player.ee.co.uk" lang="en" xmltv_id="TogetherTV.uk" site_id="dvb://233a..6b00">Together TV</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="TogetherTV.uk" site_id="dvb://233a..6b00">Together TV</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="UtsavGoldHD.in" site_id="http://bds.tv/services/BT_772614">Utsav Gold HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="UtsavGoldHD.in" site_id="http://bds.tv/services/BT_772614">Utsav Gold HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="UtsavPlusHD.uk" site_id="http://bds.tv/services/BT_760356">Utsav Plus HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="UtsavPlusHD.uk" site_id="http://bds.tv/services/BT_760356">Utsav Plus HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="W.uk" site_id="dvb://233a..6dc0">W</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..6dc0">W</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="WildEarth.uk" site_id="dvb://233a..3880">WildEarth</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="WildEarth.uk" site_id="dvb://233a..3880">WildEarth</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="XpandedTV.uk" site_id="dvb://233a..6c00">ADULT Xpanded TV</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="XpandedTV.uk" site_id="dvb://233a..6c00">ADULT Xpanded TV</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="Yesterday.uk" site_id="dvb://233a..64c0">Yesterday</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..64c0">Yesterday</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="YesterdayPlus1.uk" site_id="dvb://233a..5d40">Yesterday+1</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="" site_id="dvb://233a..5d40">Yesterday+1</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="ZeeCinemaHDUK.uk" site_id="http://bds.tv/services/BT_772315">Zee Cinema HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="ZeeCinemaHDUK.uk" site_id="http://bds.tv/services/BT_772315">Zee Cinema HD</channel>
<channel site="player.ee.co.uk" lang="en" xmltv_id="ZeeTVHDUK.uk" site_id="http://bds.tv/services/BT_772314">Zee TV HD</channel> <channel site="player.ee.co.uk" lang="en" xmltv_id="ZeeTVHDUK.uk" site_id="http://bds.tv/services/BT_772314">Zee TV HD</channel>
</channels> </channels>

View file

@ -85,8 +85,8 @@
<channel site="plex.tv" lang="en" xmltv_id="GravitasAdrenaline.us" site_id="5e20b730f2f8d5003d739db7-629141f6a0ed9c2b6ae63bb0">Gravitas Adrenaline</channel> <channel site="plex.tv" lang="en" xmltv_id="GravitasAdrenaline.us" site_id="5e20b730f2f8d5003d739db7-629141f6a0ed9c2b6ae63bb0">Gravitas Adrenaline</channel>
<channel site="plex.tv" lang="en" xmltv_id="GravitasDocumentaries.us" site_id="5e20b730f2f8d5003d739db7-6291409aa0ed9c2b6ae63bae">Gravitas Documentaries</channel> <channel site="plex.tv" lang="en" xmltv_id="GravitasDocumentaries.us" site_id="5e20b730f2f8d5003d739db7-6291409aa0ed9c2b6ae63bae">Gravitas Documentaries</channel>
<channel site="plex.tv" lang="en" xmltv_id="GravitasMovies.us" site_id="5e20b730f2f8d5003d739db7-5efe1de7e0b3f5003f5d9f8e">Gravitas Movies</channel> <channel site="plex.tv" lang="en" xmltv_id="GravitasMovies.us" site_id="5e20b730f2f8d5003d739db7-5efe1de7e0b3f5003f5d9f8e">Gravitas Movies</channel>
<channel site="plex.tv" lang="en" xmltv_id="GrjngoWesternMovies.us" site_id="5e20b730f2f8d5003d739db7-63489a771159f6a5ce819b7b">Grjngo - Western Movies</channel> <channel site="plex.tv" lang="en" xmltv_id="" site_id="5e20b730f2f8d5003d739db7-63489a771159f6a5ce819b7b">Grjngo - Western Movies</channel>
<channel site="plex.tv" lang="en" xmltv_id="GustoTV.us" site_id="5e20b730f2f8d5003d739db7-5f8746eabd529300418246d9">GUSTOTV</channel> <channel site="plex.tv" lang="en" xmltv_id="" site_id="5e20b730f2f8d5003d739db7-5f8746eabd529300418246d9">GUSTOTV</channel>
<channel site="plex.tv" lang="en" xmltv_id="HappiTV.us" site_id="5e20b730f2f8d5003d739db7-623171af5995505c86629208">HappiTV</channel> <channel site="plex.tv" lang="en" xmltv_id="HappiTV.us" site_id="5e20b730f2f8d5003d739db7-623171af5995505c86629208">HappiTV</channel>
<channel site="plex.tv" lang="en" xmltv_id="HardKnocks.ca" site_id="5e20b730f2f8d5003d739db7-5fd115bdb7ef8d002dcf1820">Hard Knocks</channel> <channel site="plex.tv" lang="en" xmltv_id="HardKnocks.ca" site_id="5e20b730f2f8d5003d739db7-5fd115bdb7ef8d002dcf1820">Hard Knocks</channel>
<channel site="plex.tv" lang="en" xmltv_id="HumorMill.us" site_id="5e20b730f2f8d5003d739db7-5fd115b7b7ef8d002dcf1814">Humor Mill</channel> <channel site="plex.tv" lang="en" xmltv_id="HumorMill.us" site_id="5e20b730f2f8d5003d739db7-5fd115b7b7ef8d002dcf1814">Humor Mill</channel>

View file

@ -1,453 +1,453 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="en" xmltv_id="ION.us" site_id="65453f30085df200085883d8">ION</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65453f30085df200085883d8">ION</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTrendingNow.us" site_id="673247127d5da5000817b4d6">Pluto TV Trending Now</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673247127d5da5000817b4d6">Pluto TV Trending Now</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSpotlight.us" site_id="5ba3fb9c4b078e0f37ad34e8">Pluto TV Spotlight</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ba3fb9c4b078e0f37ad34e8">Pluto TV Spotlight</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVIcons.us" site_id="64b585f84ea480000838e446">Pluto TV Icons</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64b585f84ea480000838e446">Pluto TV Icons</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV007.us" site_id="5d4db961034718b2f52f9e52">Pluto TV 007</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d4db961034718b2f52f9e52">Pluto TV 007</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAction.us" site_id="561d7d484dc7c8770484914a">Pluto TV Action</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="561d7d484dc7c8770484914a">Pluto TV Action</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVReaction.us" site_id="617b37b361e0fd0008cfd8c5">Pluto TV Reaction</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="617b37b361e0fd0008cfd8c5">Pluto TV Reaction</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVFantastic.us" site_id="5b64a245a202b3337f09e51d">Pluto TV Fantastic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b64a245a202b3337f09e51d">Pluto TV Fantastic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVComedy.us" site_id="5a4d3a00ad95e4718ae8d8db">Pluto TV Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a4d3a00ad95e4718ae8d8db">Pluto TV Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVDrama.us" site_id="5b4e92e4694c027be6ecece1">Pluto TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e92e4694c027be6ecece1">Pluto TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRomance.us" site_id="5a66795ef91fef2c7031c599">Pluto TV Romance</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a66795ef91fef2c7031c599">Pluto TV Romance</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackCinema.us" site_id="58af4c093a41ca9d4ecabe96">Black Cinema</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="58af4c093a41ca9d4ecabe96">Black Cinema</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackVisionaries.us" site_id="663946c1b18d700008d9c168">Black Visionaries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="663946c1b18d700008d9c168">Black Visionaries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCrimeMovies.us" site_id="5f4d8594eb979c0007706de7">Pluto TV Crime Movies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d8594eb979c0007706de7">Pluto TV Crime Movies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVThrillers.us" site_id="5b4e69e08291147bd04a9fd7">Pluto TV Thrillers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e69e08291147bd04a9fd7">Pluto TV Thrillers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHorror.us" site_id="569546031a619b8f07ce6e25">Pluto TV Horror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="569546031a619b8f07ce6e25">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTerror.us" site_id="5c6dc88fcd232425a6e0f06e">Pluto TV Terror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c6dc88fcd232425a6e0f06e">Pluto TV Terror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="00sReplay.us" site_id="62ba60f059624e000781c436">00s Replay</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ba60f059624e000781c436">00s Replay</channel>
<channel site="pluto.tv" lang="en" xmltv_id="90sThrowback.us" site_id="5f4d86f519358a00072b978e">90s Throwback</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d86f519358a00072b978e">90s Throwback</channel>
<channel site="pluto.tv" lang="en" xmltv_id="80sRewind.us" site_id="5ca525b650be2571e3943c63">80s Rewind</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca525b650be2571e3943c63">80s Rewind</channel>
<channel site="pluto.tv" lang="en" xmltv_id="70sCinema.us" site_id="5f4d878d3d19b30007d2e782">70s Cinema</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d878d3d19b30007d2e782">70s Cinema</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ParamountMovieChannel.us" site_id="5cb0cae7a461406ffe3f5213">Paramount Movie Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cb0cae7a461406ffe3f5213">Paramount Movie Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MovieSpherebyLionsgate.us" site_id="645e7828e1979c00087b75b4">MovieSphere by Lionsgate</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="645e7828e1979c00087b75b4">MovieSphere by Lionsgate</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVWesterns.us" site_id="5b4e94282d4ec87bdcbb87cd">Pluto TV Westerns</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e94282d4ec87bdcbb87cd">Pluto TV Westerns</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicMoviesChannel.us" site_id="561c5b0dada51f8004c4d855">Classic Movies Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="561c5b0dada51f8004c4d855">Classic Movies Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVStaffPicks.us" site_id="5f4d863b98b41000076cd061">Pluto TV Staff Picks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d863b98b41000076cd061">Pluto TV Staff Picks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FlicksofFury.us" site_id="58e55b14ad8e9c364d55f717">Flicks of Fury</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="58e55b14ad8e9c364d55f717">Flicks of Fury</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCultFilms.us" site_id="5c665db3e6c01b72c4977bc2">Pluto TV Cult Films</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c665db3e6c01b72c4977bc2">Pluto TV Cult Films</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVChristmas.us" site_id="5bb1b9f0adfc955391f8b7a2">Pluto TV Christmas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb1b9f0adfc955391f8b7a2">Pluto TV Christmas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HolidayMovieFavoritesByLifetime.us" site_id="63335c59e4d7eb000785e71a">Holiday Movie Favorites By Lifetime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335c59e4d7eb000785e71a">Holiday Movie Favorites By Lifetime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HallmarkMovies&amp;MoreHolidayFavorites.us" site_id="63335d36a1cd8c000765466c">Hallmark Movies &amp; More Holiday Favorites</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335d36a1cd8c000765466c">Hallmark Movies &amp; More Holiday Favorites</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomefortheHolidays.us" site_id="5f7f8698ec435a000785810b">Home for the Holidays</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7f8698ec435a000785810b">Home for the Holidays</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Places&amp;Spaces.us" site_id="66e0b30415d2c60008e2b99e">Places &amp; Spaces</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b30415d2c60008e2b99e">Places &amp; Spaces</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CracklingFireplace.us" site_id="5bf48085851dd5632e2f7b4d">Crackling Fireplace</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bf48085851dd5632e2f7b4d">Crackling Fireplace</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FestiveFireplace.us" site_id="614501c653ceee000772b0ca">Festive Fireplace</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="614501c653ceee000772b0ca">Festive Fireplace</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StingrayHolidayscapes.us" site_id="66ff1d5a565d3a000892bdcd">Stingray Holidayscapes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ff1d5a565d3a000892bdcd">Stingray Holidayscapes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoHoliday.us" site_id="5dcf059646c0cf000a293edd">Vevo Holiday</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dcf059646c0cf000a293edd">Vevo Holiday</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hallmarkenespañol.us" site_id="65453ee6056b97000880302a">Hallmark en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65453ee6056b97000880302a">Hallmark en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cinenavideño.us" site_id="60fb3162df090700075da907">Cine navideño</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb3162df090700075da907">Cine navideño</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SitcomLegends.us" site_id="633354b63df9700007f6a1b7">Sitcom Legends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="633354b63df9700007f6a1b7">Sitcom Legends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cheers+Frasier.us" site_id="66ba495ffe11e5000881f049">Cheers + Frasier</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ba495ffe11e5000881f049">Cheers + Frasier</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TVLandSitcoms.us" site_id="5c2d64ffbdf11b71587184b8">TV Land Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c2d64ffbdf11b71587184b8">TV Land Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTVSitcoms.us" site_id="6132619f9ddaa50007e7dd86">More TV Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6132619f9ddaa50007e7dd86">More TV Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HitSitcoms.us" site_id="66e0b4a3f0f17500085cc268">Hit Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b4a3f0f17500085cc268">Hit Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackThrowbacks.us" site_id="61326275b3c86a00078e4833">Black Throwbacks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61326275b3c86a00078e4833">Black Throwbacks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETxTylerPerryComedy.us" site_id="666b265722acab000885c6aa">BET x Tyler Perry Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666b265722acab000885c6aa">BET x Tyler Perry Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FunnyAF.us" site_id="580e87ff497c73ba2f321dd3">Funny AF</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="580e87ff497c73ba2f321dd3">Funny AF</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralPlutoTV.us" site_id="5ca671f215a62078d2ec0abf">Comedy Central Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca671f215a62078d2ec0abf">Comedy Central Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralAnimation.us" site_id="5f99e24636d67d0007a94e6d">Comedy Central Animation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f99e24636d67d0007a94e6d">Comedy Central Animation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVPranks.us" site_id="60f86f539f03cd00070c503a">Pluto TV Pranks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f86f539f03cd00070c503a">Pluto TV Pranks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Tosh.0.us" site_id="5dae084727c8af0009fe40a4">Tosh.0</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dae084727c8af0009fe40a4">Tosh.0</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Wild'NOut.us" site_id="5d48678d34ceb37d3c458a55">Wild 'N Out</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d48678d34ceb37d3c458a55">Wild 'N Out</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KevinHartsLOL!Network.us" site_id="5af09e645126c2157123f9eb">Kevin Harts LOL! Network</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5af09e645126c2157123f9eb">Kevin Harts LOL! Network</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Stand-UpTV.us" site_id="5637d31f319573e26b64040b">Stand-Up TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5637d31f319573e26b64040b">Stand-Up TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SlightlyOffIFC.us" site_id="5e82547b6b3df60007fec2b5">Slightly Off IFC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e82547b6b3df60007fec2b5">Slightly Off IFC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BritishComedy.us" site_id="60f870184865da00074210ee">British Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f870184865da00074210ee">British Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MST3K.us" site_id="545943f1c9f133a519bbac92">MST3K</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="545943f1c9f133a519bbac92">MST3K</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RiffTrax.us" site_id="58d947b9e420d8656ee101ab">RiffTrax</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="58d947b9e420d8656ee101ab">RiffTrax</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FailArmy.us" site_id="554158e864526b29254ff105">FailArmy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="554158e864526b29254ff105">FailArmy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVComedy.us" site_id="5f15e32b297f96000768f928">Classic TV Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f15e32b297f96000768f928">Classic TV Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTV:Families.us" site_id="61325d18f5166c00081b84e0">Classic TV: Families</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61325d18f5166c00081b84e0">Classic TV: Families</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackClassics.us" site_id="60f85644a9493e0007a1f035">Black Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f85644a9493e0007a1f035">Black Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ILoveLucy.us" site_id="634f3011f4fff20007431641">I Love Lucy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634f3011f4fff20007431641">I Love Lucy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAndyGriffithShow.us" site_id="60f75178e7f8aa0007e9c259">The Andy Griffith Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f75178e7f8aa0007e9c259">The Andy Griffith Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAddamsFamily.us" site_id="5d81607ab737153ea3c1c80e">The Addams Family</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d81607ab737153ea3c1c80e">The Addams Family</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BeverlyHillbillies.us" site_id="5f7796e470510900070d4e3d">Beverly Hillbillies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7796e470510900070d4e3d">Beverly Hillbillies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HappyDays.us" site_id="5f7794162a4559000781fc12">Happy Days</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7794162a4559000781fc12">Happy Days</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Three'sCompany.us" site_id="5ef3977e5d773400077de284">Three's Company</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ef3977e5d773400077de284">Three's Company</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyTies.us" site_id="5f77939a630f530007dde654">Family Ties</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f77939a630f530007dde654">Family Ties</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheLoveBoat.us" site_id="5f7794a788d29000079d2f07">The Love Boat</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7794a788d29000079d2f07">The Love Boat</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dynasty.us" site_id="64d1606b4c5ed80008e3b8b9">Dynasty</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d1606b4c5ed80008e3b8b9">Dynasty</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LittleHouseonthePrairie.us" site_id="654933ac986ad20008a1f406">Little House on the Prairie</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654933ac986ad20008a1f406">Little House on the Prairie</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVDrama.us" site_id="5f15e3cccf49290007053c67">Classic TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f15e3cccf49290007053c67">Classic TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVCrimeDrama.us" site_id="61325c4f982acd000723287e">Classic TV Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61325c4f982acd000723287e">Classic TV Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UniversalCrime.us" site_id="6549341853fc9700083901ac">Universal Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549341853fc9700083901ac">Universal Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Matlock.us" site_id="60f754f98185580007eb0754">Matlock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f754f98185580007eb0754">Matlock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Murder,SheWrote.us" site_id="6549337183595c000815ad05">Murder, She Wrote</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549337183595c000815ad05">Murder, She Wrote</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PerryMason.us" site_id="6197086891ddd4000739941a">Perry Mason</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6197086891ddd4000739941a">Perry Mason</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MissionImpossible.us" site_id="5f77977bd924d80007eee60c">Mission Impossible</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f77977bd924d80007eee60c">Mission Impossible</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVVariety.us" site_id="64d1867c6b1fdb0008c6c95b">Classic TV Variety</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d1867c6b1fdb0008c6c95b">Classic TV Variety</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheBobRossChannel.us" site_id="5f36d726234ce10007784f2a">The Bob Ross Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f36d726234ce10007784f2a">The Bob Ross Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WesternTV.us" site_id="5e8df4bc16e34700077e77d3">Western TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e8df4bc16e34700077e77d3">Western TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Gunsmoke.us" site_id="60f75771dfc72a00071fd0e0">Gunsmoke</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f75771dfc72a00071fd0e0">Gunsmoke</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWildWildWest.us" site_id="664e640a0120f40008be4582">The Wild Wild West</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664e640a0120f40008be4582">The Wild Wild West</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Rawhide.us" site_id="634f307c7a068e00072c9982">Rawhide</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634f307c7a068e00072c9982">Rawhide</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheRifleman.us" site_id="5e825550e758c700077b0aef">The Rifleman</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e825550e758c700077b0aef">The Rifleman</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Wanted:DeadorAlive.us" site_id="6089788de5c8410007808e26">Wanted: Dead or Alive</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6089788de5c8410007808e26">Wanted: Dead or Alive</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheLoneRanger.us" site_id="65a6dafb7bdc8d0008473c85">The Lone Ranger</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a6dafb7bdc8d0008473c85">The Lone Ranger</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WildWestTV.us" site_id="6661f88f3d173b000845958c">Wild West TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6661f88f3d173b000845958c">Wild West TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicMovieWesterns.us" site_id="61f33318210549000806a530">Classic Movie Westerns</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61f33318210549000806a530">Classic Movie Westerns</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrek.us" site_id="5efbd39f8c4ce900075d7698">Star Trek</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5efbd39f8c4ce900075d7698">Star Trek</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrekVoyager.us" site_id="634dacf51d90320007fcd5fa">Star Trek Voyager</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634dacf51d90320007fcd5fa">Star Trek Voyager</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrekDeepSpaceNine.us" site_id="65c69bbfd77d450008c7ffee">Star Trek Deep Space Nine</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69bbfd77d450008c7ffee">Star Trek Deep Space Nine</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheTwilightZone.us" site_id="67352ed93a61d4000881f9fa">The Twilight Zone</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="67352ed93a61d4000881f9fa">The Twilight Zone</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Stargate.us" site_id="620bfa7df72827000703ddb1">Stargate</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="620bfa7df72827000703ddb1">Stargate</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoctorWhoClassic.us" site_id="5ce4475cd43850831ca91ce7">Doctor Who Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ce4475cd43850831ca91ce7">Doctor Who Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OuterSphere.us" site_id="66c638726838ee00085ac20d">OuterSphere</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66c638726838ee00085ac20d">OuterSphere</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSci-Fi.us" site_id="5b4fc274694c027be6ed3eea">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4fc274694c027be6ed3eea">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AlienNationbyDUST.us" site_id="66621ed08ea5560008fde7c9">Alien Nation by DUST</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66621ed08ea5560008fde7c9">Alien Nation by DUST</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Godzilla.us" site_id="6452c8cee1979c0008608e27">Godzilla</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c8cee1979c0008608e27">Godzilla</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UniversalMonsters.us" site_id="65a9b20f0c7ff50008d3a3b6">Universal Monsters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a9b20f0c7ff50008d3a3b6">Universal Monsters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TokuSHOUTsu.us" site_id="5c3f8f12a93c2d61b9990a4e">TokuSHOUTsu</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c3f8f12a93c2d61b9990a4e">TokuSHOUTsu</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI.us" site_id="5efbd29e4aa26700076c0d06">CSI</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5efbd29e4aa26700076c0d06">CSI</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:Miami.us" site_id="62f54c11b3af68000702c304">CSI: Miami</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f54c11b3af68000702c304">CSI: Miami</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:NY.us" site_id="62f54c6439183b000769fb8f">CSI: NY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f54c6439183b000769fb8f">CSI: NY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CriminalMinds.us" site_id="65653817c917a5000844bc30">Criminal Minds</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65653817c917a5000844bc30">Criminal Minds</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlueBloods.us" site_id="61b3b8c645b45d0007a9bb8d">Blue Bloods</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61b3b8c645b45d0007a9bb8d">Blue Bloods</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheGoodWife.us" site_id="66df70cd61dbf00008fa26ff">The Good Wife</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66df70cd61dbf00008fa26ff">The Good Wife</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NashBridges.us" site_id="6675c742ca74680008566b88">Nash Bridges</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675c742ca74680008566b88">Nash Bridges</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCrimeDrama.us" site_id="5f31fd1b4c510e00071c3103">Pluto TV Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f31fd1b4c510e00071c3103">Pluto TV Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreCrimeDrama.us" site_id="650b6905d1f20c0008586b0c">More Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b6905d1f20c0008586b0c">More Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETxTylerPerryDrama.us" site_id="666b38a5efa2a10008b15b3a">BET x Tyler Perry Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666b38a5efa2a10008b15b3a">BET x Tyler Perry Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EbonyTVDrama.us" site_id="6675c713fc3a46000863dde7">Ebony TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675c713fc3a46000863dde7">Ebony TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TVLandDrama.us" site_id="5d40bebc5e3d2750a2239d7e">TV Land Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d40bebc5e3d2750a2239d7e">TV Land Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTVDrama.us" site_id="613260e4bdb71c00070d63fa">More TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="613260e4bdb71c00070d63fa">More TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UniversalAction.us" site_id="654933e253fc970008390114">Universal Action</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654933e253fc970008390114">Universal Action</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWalkingDeadUniverse.us" site_id="62fa8176b9884200074ef5ae">The Walking Dead Universe</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fa8176b9884200074ef5ae">The Walking Dead Universe</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StoriesbyAMC.us" site_id="62f2ce24f328e00007e7f55a">Stories by AMC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f2ce24f328e00007e7f55a">Stories by AMC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MidsomerMurders.us" site_id="5cbf6a868a1bce4a3d52a5e9">Midsomer Murders</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cbf6a868a1bce4a3d52a5e9">Midsomer Murders</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BritBoxMysteries.us" site_id="60f5d389985a0c0007357304">BritBox Mysteries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f5d389985a0c0007357304">BritBox Mysteries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BritishDrama.us" site_id="5b68a18823ecb93393cba2f1">British Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b68a18823ecb93393cba2f1">British Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FeelGoodDrama.us" site_id="65775af3b3801200084a3aa4">Feel Good Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775af3b3801200084a3aa4">Feel Good Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SupernaturalDrama.us" site_id="5f24662bebe0f0000767de32">Supernatural Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f24662bebe0f0000767de32">Supernatural Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Baywatch.us" site_id="5d815eb889bca2ce7b746fdd">Baywatch</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d815eb889bca2ce7b746fdd">Baywatch</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BeverlyHills90210.us" site_id="5f4d83e0a382c00007bc02e7">Beverly Hills 90210</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d83e0a382c00007bc02e7">Beverly Hills 90210</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Heartland.us" site_id="61f07513227feb00073ee6bc">Heartland</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61f07513227feb00073ee6bc">Heartland</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Degrassi.us" site_id="5c6eeb85c05dfc257e5a50c4">Degrassi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c6eeb85c05dfc257e5a50c4">Degrassi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTrueCrime.us" site_id="5812be1c249444e05d09cc50">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812be1c249444e05d09cc50">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTrueCrime.us" site_id="6532e6a9bdf3cf000887ab29">More True Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e6a9bdf3cf000887ab29">More True Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AmericanCrimes.us" site_id="65492fc7056b9700088560b5">American Crimes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65492fc7056b9700088560b5">American Crimes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dateline24/7.us" site_id="637413d8531e0c0007442d6d">Dateline 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="637413d8531e0c0007442d6d">Dateline 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="48Hours.us" site_id="6176f39e709f160007ec61c3">48 Hours</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6176f39e709f160007ec61c3">48 Hours</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UnsolvedMysteries.us" site_id="5b4e96a0423e067bd6df6901">Unsolved Mysteries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e96a0423e067bd6df6901">Unsolved Mysteries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheNewDetectives.us" site_id="5aea40b35126c2157123aa64">The New Detectives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5aea40b35126c2157123aa64">The New Detectives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ColdCaseFilesbyA&amp;E.us" site_id="5c37d6712de254456f7ec340">Cold Case Files by A&amp;E</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c37d6712de254456f7ec340">Cold Case Files by A&amp;E</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ForensicFiles.us" site_id="5bb1af6a268cae539bcedb0a">Forensic Files</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb1af6a268cae539bcedb0a">Forensic Files</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OxygenTrueCrimeArchives.us" site_id="654930a8346f420008d3b0b8">Oxygen True Crime Archives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654930a8346f420008d3b0b8">Oxygen True Crime Archives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CourtTV.us" site_id="5dae0b4841a7d0000938ddbd">Court TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dae0b4841a7d0000938ddbd">Court TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crime360byA&amp;E.us" site_id="6000a5a9e767980007b497ca">Crime 360 by A&amp;E</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6000a5a9e767980007b497ca">Crime 360 by A&amp;E</channel>
<channel site="pluto.tv" lang="en" xmltv_id="COPS.us" site_id="5e1f7e089f23700009d66303">COPS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e1f7e089f23700009d66303">COPS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CarChase.us" site_id="65244c403fd33c0008ffff31">Car Chase</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65244c403fd33c0008ffff31">Car Chase</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DogtheBountyHunter.us" site_id="5bee1a7359ee03633e780238">Dog the Bounty Hunter</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bee1a7359ee03633e780238">Dog the Bounty Hunter</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Rescue911.us" site_id="5f21e831e9fe730007706acb">Rescue 911</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21e831e9fe730007706acb">Rescue 911</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpikePlutoTV.us" site_id="5812bcc8237a6ff45d16c407">Spike Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812bcc8237a6ff45d16c407">Spike Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVReality.us" site_id="5d8bf0b06d2d855ee15115e3">Pluto TV Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8bf0b06d2d855ee15115e3">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BarRescue.us" site_id="60a3d889a5b3690008dc7fe8">Bar Rescue</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60a3d889a5b3690008dc7fe8">Bar Rescue</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Pickers&amp;Pawn.us" site_id="6565413e4261ca0008215320">Pickers &amp; Pawn</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565413e4261ca0008215320">Pickers &amp; Pawn</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XtremeOutdoorPresentedbyHISTORY.us" site_id="6000a6f4c3f8550008fc9b91">Xtreme Outdoor Presented by HISTORY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6000a6f4c3f8550008fc9b91">Xtreme Outdoor Presented by HISTORY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomefortheHolidays.us" site_id="6334a3355471ee0007609e21">Home for the Holidays</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a3355471ee0007609e21">Home for the Holidays</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpikeOutdoors.us" site_id="5c393cad2de254456f7ef8c2">Spike Outdoors</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c393cad2de254456f7ef8c2">Spike Outdoors</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ToughJobs.us" site_id="65c69bf23ef47d0008583967">Tough Jobs</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69bf23ef47d0008583967">Tough Jobs</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVBackcountry.us" site_id="5cabdf1437b88b26947346b2">Pluto TV Backcountry</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cabdf1437b88b26947346b2">Pluto TV Backcountry</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVLives.us" site_id="5d8beeb39b5d5d5f8c672530">Pluto TV Lives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8beeb39b5d5d5f8c672530">Pluto TV Lives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MedicalIncredible.us" site_id="6565436c9d5ac4000822f552">Medical Incredible</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565436c9d5ac4000822f552">Medical Incredible</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UnXplainedZone.us" site_id="656538f8954b020008d389db">UnXplained Zone</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656538f8954b020008d389db">UnXplained Zone</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVParanormal.us" site_id="5adf96e3e738977e2c31cb04">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5adf96e3e738977e2c31cb04">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GhostHunters.us" site_id="64e561a4354251000823a0e0">Ghost Hunters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64e561a4354251000823a0e0">Ghost Hunters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCars.us" site_id="5812b3a4249444e05d09cc46">Pluto TV Cars</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812b3a4249444e05d09cc46">Pluto TV Cars</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopGear.us" site_id="636adc255bcf470007d6e0e2">Top Gear</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="636adc255bcf470007d6e0e2">Top Gear</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cheaters.us" site_id="627d355aa95efd00077afcc7">Cheaters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="627d355aa95efd00077afcc7">Cheaters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DatingDisasters.us" site_id="651f239d9c7aeb0008286823">Dating Disasters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="651f239d9c7aeb0008286823">Dating Disasters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="QueensofReality.us" site_id="66abefe5d2d50d00082c7d12">Queens of Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66abefe5d2d50d00082c7d12">Queens of Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackInkCrew.us" site_id="5d51e2bceca5b4b2c0e06c50">Black Ink Crew</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51e2bceca5b4b2c0e06c50">Black Ink Crew</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Love&amp;HipHop.us" site_id="5d51ddf0369acdb278dfb05e">Love &amp; Hip Hop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51ddf0369acdb278dfb05e">Love &amp; Hip Hop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VH1HipHopFamily.us" site_id="5d71561df6f2e6d0b6493bf5">VH1 Hip Hop Family</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d71561df6f2e6d0b6493bf5">VH1 Hip Hop Family</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VH1ILoveReality.us" site_id="5d7154fa8326b6ce4ec31f2e">VH1 I Love Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d7154fa8326b6ce4ec31f2e">VH1 I Love Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JerseyShore.us" site_id="609bfa51fbecc1000733152e">Jersey Shore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="609bfa51fbecc1000733152e">Jersey Shore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AcapulcoShore.us" site_id="64dab1f835425100080e1e7b">Acapulco Shore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64dab1f835425100080e1e7b">Acapulco Shore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TeenMom.us" site_id="6127e12ed140e900077e7b6f">Teen Mom</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6127e12ed140e900077e7b6f">Teen Mom</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVDating.us" site_id="5ca6899a37b88b269472ea4b">MTV Dating</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca6899a37b88b269472ea4b">MTV Dating</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MillionDollarListingVault.us" site_id="6549322e53fc97000838febc">Million Dollar Listing Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549322e53fc97000838febc">Million Dollar Listing Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BravoVault.us" site_id="6549310a53fc97000838fcc9">Bravo Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549310a53fc97000838fcc9">Bravo Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealHousewivesVault.us" site_id="6549316d2c1d330008631496">Real Housewives Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549316d2c1d330008631496">Real Housewives Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BadGirlsClub.us" site_id="654932fa4d6d8f00084c4723">Bad Girls Club</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654932fa4d6d8f00084c4723">Bad Girls Club</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WarnerBros.TVSayYestotheDress.us" site_id="6532e8342cf13100083b404c">Warner Bros. TV Say Yes to the Dress</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e8342cf13100083b404c">Warner Bros. TV Say Yes to the Dress</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AllRealitybyWEtv.us" site_id="5e82530945600e0007ca076c">All Reality by WE tv</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e82530945600e0007ca076c">All Reality by WE tv</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PerformbyLifetime.us" site_id="656538bb635c3c0008695660">Perform by Lifetime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656538bb635c3c0008695660">Perform by Lifetime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCompetition.us" site_id="603fde9026ecbf0007752c2c">Pluto TV Competition</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="603fde9026ecbf0007752c2c">Pluto TV Competition</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DCC:MakingtheTeam.us" site_id="5d40855b3fb0855028c99b6f">DCC: Making the Team</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d40855b3fb0855028c99b6f">DCC: Making the Team</channel>
<channel site="pluto.tv" lang="en" xmltv_id="InkMaster.us" site_id="60807fd5db701400078219c2">Ink Master</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60807fd5db701400078219c2">Ink Master</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GordonRamsay'sHell'sKitchen.us" site_id="5b4e99f4423e067bd6df6903">Gordon Ramsay's Hell's Kitchen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e99f4423e067bd6df6903">Gordon Ramsay's Hell's Kitchen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopChefVault.us" site_id="654931d753fc97000838fe55">Top Chef Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654931d753fc97000838fe55">Top Chef Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FearFactor.us" site_id="588128d17d64bc0d0f385c34">Fear Factor</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="588128d17d64bc0d0f385c34">Fear Factor</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BigBrother.us" site_id="6661f11a41af6400080e90d8">Big Brother</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6661f11a41af6400080e90d8">Big Brother</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Survivor.us" site_id="5f21e7b24744c60007c1f6fc">Survivor</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21e7b24744c60007c1f6fc">Survivor</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAmazingRace.us" site_id="5f21e8a6e2f12b000755afdb">The Amazing Race</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21e8a6e2f12b000755afdb">The Amazing Race</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheChallenge.us" site_id="5d48685da7e9f476aa8a1888">The Challenge</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d48685da7e9f476aa8a1888">The Challenge</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Paramount+Picks.us" site_id="5ff8c708653d080007361b14">Paramount+ Picks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ff8c708653d080007361b14">Paramount+ Picks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETPlutoTV.us" site_id="5ca670f6593a5d78f0e85aed">BET Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca670f6593a5d78f0e85aed">BET Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETHer.us" site_id="5d51e6949ab8e2b35bdcaa9f">BET Her</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51e6949ab8e2b35bdcaa9f">BET Her</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HolidayMovieFavoritesByLifetime.us" site_id="63335b193583440007c859fb">Holiday Movie Favorites By Lifetime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335b193583440007c859fb">Holiday Movie Favorites By Lifetime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HallmarkMovies&amp;MoreHolidayFavorites.us" site_id="628e685ba3811100070551a8">Hallmark Movies &amp; More Holiday Favorites</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="628e685ba3811100070551a8">Hallmark Movies &amp; More Holiday Favorites</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVChristmas.us" site_id="63335df531a7590007c226b9">Pluto TV Christmas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335df531a7590007c226b9">Pluto TV Christmas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BounceXL.us" site_id="6176fd25e83a5f0007a464c9">Bounce XL</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6176fd25e83a5f0007a464c9">Bounce XL</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXSOUL.us" site_id="60fb2c9c663b130008945ad0">FOX SOUL</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb2c9c663b130008945ad0">FOX SOUL</channel>
<channel site="pluto.tv" lang="en" xmltv_id="theGrio.us" site_id="5f1efad04320070007dbb60b">theGrio</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f1efad04320070007dbb60b">theGrio</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVPlutoTV.us" site_id="5ca672f515a62078d2ec0ad2">MTV Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca672f515a62078d2ec0ad2">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CMTPlutoTV.us" site_id="5dcc42446750e200093b15e2">CMT Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dcc42446750e200093b15e2">CMT Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LogoPlutoTV.us" site_id="5ce5a8954311f992edbe1da2">Logo Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ce5a8954311f992edbe1da2">Logo Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="4UV.us" site_id="65775e07dfed030008cb3f47">4UV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775e07dfed030008cb3f47">4UV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ET.us" site_id="5dc0c78281eddb0009a02d5e">ET</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc0c78281eddb0009a02d5e">ET</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LiveMusic.us" site_id="5873fc21cad696fb37aa9054">Live Music</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5873fc21cad696fb37aa9054">Live Music</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePriceIsRight.us" site_id="643f035d5a0cd50008361534">The Price Is Right</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="643f035d5a0cd50008361534">The Price Is Right</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePriceIsRight:TheBarkerEra.us" site_id="5f7791b8372da90007fd45e6">The Price Is Right: The Barker Era</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7791b8372da90007fd45e6">The Price Is Right: The Barker Era</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Let'sMakeADeal.us" site_id="6267352efcf21c0007c76642">Let's Make A Deal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6267352efcf21c0007c76642">Let's Make A Deal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyFeud.us" site_id="672e4d915534bb0008c50168">Family Feud</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="672e4d915534bb0008c50168">Family Feud</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyFeudClassic.us" site_id="643f03b9d8436e0008edf021">Family Feud Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="643f03b9d8436e0008edf021">Family Feud Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HollywoodSquares.us" site_id="64387bb1af2bd90008978a2b">Hollywood Squares</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64387bb1af2bd90008978a2b">Hollywood Squares</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SupermarketSweep.us" site_id="649ddbfb6f29ec000874ca9e">Supermarket Sweep</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="649ddbfb6f29ec000874ca9e">Supermarket Sweep</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DealorNoDeal.us" site_id="5e9debf8c881310007d7bde1">Deal or No Deal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e9debf8c881310007d7bde1">Deal or No Deal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BUZZR.us" site_id="5812bfbe4ced4f7b601b12e6">BUZZR</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812bfbe4ced4f7b601b12e6">BUZZR</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVGameShows.us" site_id="6036e7c385749f00075dbd3b">Pluto TV Game Shows</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6036e7c385749f00075dbd3b">Pluto TV Game Shows</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTVGameShows.us" site_id="64387c25e0789d000849f62e">More TV Game Shows</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64387c25e0789d000849f62e">More TV Game Shows</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GameShowCentral.us" site_id="5e54187aae660e00093561d6">Game Show Central</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e54187aae660e00093561d6">Game Show Central</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BestofTheDrewBarrymoreShow.us" site_id="61858ac0491af10007f8ce4f">Best of The Drew Barrymore Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61858ac0491af10007f8ce4f">Best of The Drew Barrymore Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BestofDr.Phil.us" site_id="60f760bbdf090700075d7bfe">Best of Dr. Phil</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f760bbdf090700075d7bfe">Best of Dr. Phil</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Nosey.us" site_id="5aec96ec5126c2157123c657">Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5aec96ec5126c2157123c657">Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ConfessbyNosey.us" site_id="634ee8f95aa9870007248333">Confess by Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634ee8f95aa9870007248333">Confess by Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JudgeNosey.us" site_id="5e9decb953e157000752321c">Judge Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e9decb953e157000752321c">Judge Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJudgeJudyChannel.us" site_id="6283d51144ad8f0007fa382d">The Judge Judy Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6283d51144ad8f0007fa382d">The Judge Judy Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HotBench.us" site_id="6036e6e7ac69c400072afca2">Hot Bench</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6036e6e7ac69c400072afca2">Hot Bench</channel>
<channel site="pluto.tv" lang="en" xmltv_id="QVC.us" site_id="5bdcdf1e851dd5632e2c11d1">QVC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bdcdf1e851dd5632e2c11d1">QVC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HSN.us" site_id="5f8a02476b72230007e62b7d">HSN</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8a02476b72230007e62b7d">HSN</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNews24/7.us" site_id="5a6b92f6e22a617379789618">CBS News 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a6b92f6e22a617379789618">CBS News 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NBCNewsNOW.us" site_id="5df97894467dfa00091c873c">NBC News NOW</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5df97894467dfa00091c873c">NBC News NOW</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ABCNewsLive.us" site_id="6508be683a0d700008c534e4">ABC News Live</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6508be683a0d700008c534e4">ABC News Live</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNHEADLINES.us" site_id="5421f71da6af422839419cb3">CNN HEADLINES</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5421f71da6af422839419cb3">CNN HEADLINES</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LiveNOWfromFOX.us" site_id="63d025db4e83e700086eaa96">LiveNOW from FOX</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63d025db4e83e700086eaa96">LiveNOW from FOX</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsNewYork.us" site_id="5dc9b8223687ff000936ed79">CBS News New York</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc9b8223687ff000936ed79">CBS News New York</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsLosAngeles.us" site_id="5dc9b875e280c80009a8a44a">CBS News Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc9b875e280c80009a8a44a">CBS News Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsChicago.us" site_id="62cdc75b1a1cbd0007ed45dc">CBS News Chicago</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cdc75b1a1cbd0007ed45dc">CBS News Chicago</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TODAYAllDay.us" site_id="5d695f7db53adf96b78e7ce3">TODAY All Day</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d695f7db53adf96b78e7ce3">TODAY All Day</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ScrippsNews.us" site_id="5459795fc9f133a519bc0bef">Scripps News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5459795fc9f133a519bc0bef">Scripps News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXWeather.us" site_id="640a68880e884c0009979cc2">FOX Weather</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="640a68880e884c0009979cc2">FOX Weather</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WeatherNationLosAngeles.us" site_id="61e9af6bfbbcc6000700119b">WeatherNation Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61e9af6bfbbcc6000700119b">WeatherNation Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCNews.us" site_id="65d92a8c8b24c80008e285c0">BBC News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65d92a8c8b24c80008e285c0">BBC News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SkyNews.us" site_id="55b285cd2665de274553d66f">Sky News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="55b285cd2665de274553d66f">Sky News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BloombergTV.us" site_id="54ff7ba69222cb1c2624c584">Bloomberg TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="54ff7ba69222cb1c2624c584">Bloomberg TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Newsmax2.us" site_id="55b179af994403942f3061d6">Newsmax2</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="55b179af994403942f3061d6">Newsmax2</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlazeLive.us" site_id="5e46fba0c43b0d00096e5ac1">Blaze Live</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e46fba0c43b0d00096e5ac1">Blaze Live</channel>
<channel site="pluto.tv" lang="en" xmltv_id="America'sVoiceNews.us" site_id="5e1f7da4bc7d740009831259">America's Voice News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e1f7da4bc7d740009831259">America's Voice News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OANPlus.us" site_id="5e7cf6c7b156d500078c5f44">OAN Plus</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e7cf6c7b156d500078c5f44">OAN Plus</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SalemNewsChannel.us" site_id="66a7f0a78561260008c177f2">Salem News Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66a7f0a78561260008c177f2">Salem News Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheFirst.us" site_id="5d486acc34ceb37d3c458a64">The First</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d486acc34ceb37d3c458a64">The First</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSSportsHQ.us" site_id="5e9f2c05172a0f0007db4786">CBS Sports HQ</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e9f2c05172a0f0007db4786">CBS Sports HQ</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXSports.us" site_id="5a74b8e1e22a61737979c6bf">FOX Sports</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a74b8e1e22a61737979c6bf">FOX Sports</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NBCSports.us" site_id="6549306c83595c000815a696">NBC Sports</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549306c83595c000815a696">NBC Sports</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NFLChannel.us" site_id="5ced7d5df64be98e07ed47b6">NFL Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ced7d5df64be98e07ed47b6">NFL Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MLB.us" site_id="5e66968a70f34c0007d050be">MLB</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e66968a70f34c0007d050be">MLB</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PGATOUR.us" site_id="5de94dacb394a300099fa22a">PGA TOUR</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5de94dacb394a300099fa22a">PGA TOUR</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GolfPass.us" site_id="65493029ab052400089e9d2f">GolfPass</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65493029ab052400089e9d2f">GolfPass</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GolazoNetwork.us" site_id="63a0e33a45264d000850ed7e">Golazo Network</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63a0e33a45264d000850ed7e">Golazo Network</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UEFAChampionsLeague.us" site_id="65ea8b928145cb0008509426">UEFA Champions League</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65ea8b928145cb0008509426">UEFA Champions League</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBRRidePass.us" site_id="60d39387706fe50007fda8e8">PBR RidePass</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d39387706fe50007fda8e8">PBR RidePass</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopRankClassics.us" site_id="64d160f53c785e0008df525e">Top Rank Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d160f53c785e0008df525e">Top Rank Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DAZNRingside.us" site_id="649b6898f2ec0000081a9460">DAZN Ringside</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="649b6898f2ec0000081a9460">DAZN Ringside</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BellatorMMA.us" site_id="5ebc8688f3697d00072f7cf8">Bellator MMA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ebc8688f3697d00072f7cf8">Bellator MMA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ONEChampionshipTV.us" site_id="668c5d3bfd9eb2000882bb50">ONE Championship TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668c5d3bfd9eb2000882bb50">ONE Championship TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PFLMMA.us" site_id="6334a574605f140007e233c4">PFL MMA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a574605f140007e233c4">PFL MMA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TNAWrestling.us" site_id="59b722526996084038c01e1b">TNA Wrestling</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="59b722526996084038c01e1b">TNA Wrestling</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WOWWomenofWrestling.us" site_id="66b66b9e14a2bb000872f606">WOW Women of Wrestling</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b66b9e14a2bb000872f606">WOW Women of Wrestling</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GLORYKickboxing.us" site_id="5417a212ff9fba68282fbf5e">GLORY Kickboxing</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5417a212ff9fba68282fbf5e">GLORY Kickboxing</channel>
<channel site="pluto.tv" lang="en" xmltv_id="beINSPORTSXTRA.us" site_id="5df975e2b27cf5000921c102">beIN SPORTS XTRA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5df975e2b27cf5000921c102">beIN SPORTS XTRA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WorldPokerTour.us" site_id="5616f9c0ada51f8004c4b091">World Poker Tour</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5616f9c0ada51f8004c4b091">World Poker Tour</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PokerGo.us" site_id="5fc54366b04b2300072e31af">PokerGo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fc54366b04b2300072e31af">PokerGo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TritonPoker.us" site_id="661827ffe8fba800086b217d">Triton Poker</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="661827ffe8fba800086b217d">Triton Poker</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Formula1Channel.us" site_id="65c69ee3d77d450008c80438">Formula 1 Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69ee3d77d450008c80438">Formula 1 Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpeedSport1.us" site_id="6675b8ccca74680008563c24">Speed Sport 1</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675b8ccca74680008563c24">Speed Sport 1</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MonsterJam.us" site_id="65c69b683ba51e00084534a3">Monster Jam</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69b683ba51e00084534a3">Monster Jam</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MotorTrendFASTTV.us" site_id="6400f731d200410008f9b339">MotorTrend FAST TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6400f731d200410008f9b339">MotorTrend FAST TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="POWERNATION.us" site_id="63b48016d9dd51000828fa37">POWERNATION</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63b48016d9dd51000828fa37">POWERNATION</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FanDuelTVExtra.us" site_id="650b68bc2ce8e40008ac9c14">FanDuel TV Extra</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b68bc2ce8e40008ac9c14">FanDuel TV Extra</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVMilitary.us" site_id="5bb3fea0f711fd76340eebff">Pluto TV Military</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb3fea0f711fd76340eebff">Pluto TV Military</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHistory.us" site_id="5a4d35dfa5c02e717a234f86">Pluto TV History</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a4d35dfa5c02e717a234f86">Pluto TV History</channel>
<channel site="pluto.tv" lang="en" xmltv_id="60Minutes.us" site_id="66b646f9cd0d3100086af83c">60 Minutes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b646f9cd0d3100086af83c">60 Minutes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNOriginals.us" site_id="66e0b4536ad04d0008fff4b2">CNN Originals</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b4536ad04d0008fff4b2">CNN Originals</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ModernMarvelsPresentedbyHISTORY.us" site_id="65775d29dfed030008cb3db2">Modern Marvels Presented by HISTORY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775d29dfed030008cb3db2">Modern Marvels Presented by HISTORY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealDisasterChannel.us" site_id="64d2b6bf9b414d0008187d83">Real Disaster Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d2b6bf9b414d0008187d83">Real Disaster Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVScience.us" site_id="563a970aa1a1f7fe7c9daad7">Pluto TV Science</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="563a970aa1a1f7fe7c9daad7">Pluto TV Science</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MythBusters.us" site_id="66e0b4866ad04d0008fff4d8">MythBusters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b4866ad04d0008fff4d8">MythBusters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTalkTV.us" site_id="65775a88b3801200084a39ed">StarTalk TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775a88b3801200084a39ed">StarTalk TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SmithsonianChannelSelects.us" site_id="5f21ea08007a49000762d349">Smithsonian Channel Selects</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21ea08007a49000762d349">Smithsonian Channel Selects</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBSGenealogy.us" site_id="65a6db580d9ab400080e6ab6">PBS Genealogy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a6db580d9ab400080e6ab6">PBS Genealogy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTravel.us" site_id="59c01b1953680139c6ae9d4d">Pluto TV Travel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="59c01b1953680139c6ae9d4d">Pluto TV Travel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThisOldHouse.us" site_id="5d51e791b7dba3b2ae990ab2">This Old House</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51e791b7dba3b2ae990ab2">This Old House</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThisOldHouseMakersChannel.us" site_id="6452c9465a0cd50008654fc1">This Old House Makers Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c9465a0cd50008654fc1">This Old House Makers Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHome.us" site_id="6022bd17849c620007f43ae0">Pluto TV Home</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6022bd17849c620007f43ae0">Pluto TV Home</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Homeful.us" site_id="66df8aa7abec540008ca8cb6">Homeful</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66df8aa7abec540008ca8cb6">Homeful</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomeCrashers.us" site_id="65654230c917a5000844ce96">Home Crashers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65654230c917a5000844ce96">Home Crashers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UltimateBuilds.us" site_id="656542ae4261ca00082154a8">Ultimate Builds</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656542ae4261ca00082154a8">Ultimate Builds</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RusticRetreats.us" site_id="6565430c9d5ac4000822f508">Rustic Retreats</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565430c9d5ac4000822f508">Rustic Retreats</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Places&amp;Spaces.us" site_id="66e0b265dd2d690008c5496b">Places &amp; Spaces</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b265dd2d690008c5496b">Places &amp; Spaces</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TinyHouseNation.us" site_id="601a0342dcf4370007566891">Tiny House Nation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="601a0342dcf4370007566891">Tiny House Nation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Home.Made.Nation.us" site_id="5dc1cb279c91420009db261d">Home.Made.Nation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc1cb279c91420009db261d">Home.Made.Nation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBSAntiquesRoadshow.us" site_id="636c2b3c55d2e700074105c4">PBS Antiques Roadshow</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="636c2b3c55d2e700074105c4">PBS Antiques Roadshow</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AntiquesRoadshowUK.us" site_id="5ce44810b421747ae467b7cd">Antiques Roadshow UK</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ce44810b421747ae467b7cd">Antiques Roadshow UK</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AntiquesRoadTrip.us" site_id="615b8ec39e878900073f419a">Antiques Road Trip</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="615b8ec39e878900073f419a">Antiques Road Trip</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TBN.us" site_id="5d486b2eeddd9576d66f9066">TBN</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d486b2eeddd9576d66f9066">TBN</channel>
<channel site="pluto.tv" lang="en" xmltv_id="America'sTestKitchen.us" site_id="5e84f54a82f05300080e6746">America's Test Kitchen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84f54a82f05300080e6746">America's Test Kitchen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVFood.us" site_id="5877ac8cb791f4eb4a140d81">Pluto TV Food</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5877ac8cb791f4eb4a140d81">Pluto TV Food</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NoReservations.us" site_id="66ff0cf663292d0008320cf8">No Reservations</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ff0cf663292d0008320cf8">No Reservations</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WarnerBros.TVSweetEscapes.us" site_id="6532e7fa045c3d0008514ca7">Warner Bros. TV Sweet Escapes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e7fa045c3d0008514ca7">Warner Bros. TV Sweet Escapes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJamieOliverChannel.us" site_id="64dab9df3d48f40008868091">The Jamie Oliver Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64dab9df3d48f40008868091">The Jamie Oliver Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCFood.us" site_id="5fb5844bf5514d0007945bda">BBC Food</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fb5844bf5514d0007945bda">BBC Food</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCHome&amp;Garden.us" site_id="5fb5836fe745b600070fc743">BBC Home &amp; Garden</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fb5836fe745b600070fc743">BBC Home &amp; Garden</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCEarth.us" site_id="656535fc2c46f30008870fae">BBC Earth</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656535fc2c46f30008870fae">BBC Earth</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dinos24/7.us" site_id="673bf05ddaad7f0008ac7a5c">Dinos 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673bf05ddaad7f0008ac7a5c">Dinos 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EarthDay365.us" site_id="650b69cfd1f20c0008586bac">EarthDay 365</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b69cfd1f20c0008586bac">EarthDay 365</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBSNature.us" site_id="640a64bd73e013000893d4e0">PBS Nature</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="640a64bd73e013000893d4e0">PBS Nature</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LoveNature.us" site_id="66df8a29b25d2b0008fc5fe0">Love Nature</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66df8a29b25d2b0008fc5fe0">Love Nature</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Naturescape.us" site_id="5812bd9f249444e05d09cc4e">Naturescape</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812bd9f249444e05d09cc4e">Naturescape</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJackHannaChannel.us" site_id="650b6a0c6625510008e1043b">The Jack Hanna Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b6a0c6625510008e1043b">The Jack Hanna Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAnimals.us" site_id="56b27f85ff3037045055037e">Pluto TV Animals</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="56b27f85ff3037045055037e">Pluto TV Animals</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePetCollective.us" site_id="5bb1ad55268cae539bcedb08">The Pet Collective</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb1ad55268cae539bcedb08">The Pet Collective</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DogWhispererwithCesarMillan.us" site_id="664fd48894d5580008e45e7c">Dog Whisperer with Cesar Millan</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664fd48894d5580008e45e7c">Dog Whisperer with Cesar Millan</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dogs24/7.us" site_id="5b329e0a7b9d8872aeb49ceb">Dogs 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b329e0a7b9d8872aeb49ceb">Dogs 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cats24/7.us" site_id="599375885ceaac3cabccbed7">Cats 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="599375885ceaac3cabccbed7">Cats 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickJr.PlutoTV.us" site_id="5ca6748a37b88b269472dad9">Nick Jr. Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca6748a37b88b269472dad9">Nick Jr. Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MisterRogers'Neighborhood.us" site_id="65e23f340d4561000821540d">Mister Rogers' Neighborhood</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65e23f340d4561000821540d">Mister Rogers' Neighborhood</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Zoom!Zoom!.us" site_id="6452c77ed3fdde00080eb3a8">Zoom! Zoom!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c77ed3fdde00080eb3a8">Zoom! Zoom!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PeppaPig.us" site_id="5d14fb6c84dd37df3b4290c5">Peppa Pig</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fb6c84dd37df3b4290c5">Peppa Pig</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LittleStarsUniverse.us" site_id="51c75f7bb6f26ba1cd00002f">Little Stars Universe</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="51c75f7bb6f26ba1cd00002f">Little Stars Universe</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LittleAngel'sPlayroom.us" site_id="5eb301b7395671000780d100">Little Angel's Playroom</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb301b7395671000780d100">Little Angel's Playroom</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BebecitoBumysusamigos.us" site_id="60493283ffc52f000710edae">Bebecito Bum y sus amigos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60493283ffc52f000710edae">Bebecito Bum y sus amigos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ElReinoInfantil.us" site_id="66fedd65d7de140008dccd66">El Reino Infantil</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66fedd65d7de140008dccd66">El Reino Infantil</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BabySharkTV.us" site_id="60faffc3fbbc120007fc4376">Baby Shark TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60faffc3fbbc120007fc4376">Baby Shark TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickelodeonPlutoTV.us" site_id="5ca673e0d0bd6c2689c94ce3">Nickelodeon Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca673e0d0bd6c2689c94ce3">Nickelodeon Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Nickelodeonenespañol.us" site_id="5d8d08395f39465da6fb3ec4">Nickelodeon en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d08395f39465da6fb3ec4">Nickelodeon en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="90'sKids.us" site_id="6452c814939a590008567a3b">90's Kids</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c814939a590008567a3b">90's Kids</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TotallyTeen.us" site_id="6450209d939a5900084dba1d">Totally Teen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6450209d939a5900084dba1d">Totally Teen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TOTALLYTURTLES.us" site_id="5d0c16d686454ead733d08f8">TOTALLY TURTLES</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d0c16d686454ead733d08f8">TOTALLY TURTLES</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Pokémon.us" site_id="6675c7868768aa0008d7f1c7">Pokémon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675c7868768aa0008d7f1c7">Pokémon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TransformersTV.us" site_id="60fb053712f22a0007ff14d2">Transformers TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb053712f22a0007ff14d2">Transformers TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GoGoGadget!.us" site_id="667f3852efa2a10008e1e514">Go Go Gadget!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667f3852efa2a10008e1e514">Go Go Gadget!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TeamSpirit.us" site_id="60f9ebb06f0b3d000746fbdb">Team Spirit</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f9ebb06f0b3d000746fbdb">Team Spirit</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LEGOKidsTV.us" site_id="60fb01a24795a6000762fe83">LEGO Kids TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb01a24795a6000762fe83">LEGO Kids TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KidsMovieClub.us" site_id="5db0ad56edc89300090d2ebb">Kids Movie Club</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5db0ad56edc89300090d2ebb">Kids Movie Club</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RainbowSquad.us" site_id="60fb028c2e6a0c00075275a5">Rainbow Squad</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb028c2e6a0c00075275a5">Rainbow Squad</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StrawberryShortcakeandFriends.us" site_id="667f393836a2f90008fd17c0">Strawberry Shortcake and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667f393836a2f90008fd17c0">Strawberry Shortcake and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KartoonChannel!.us" site_id="60fb040d4795a6000762fe8f">Kartoon Channel!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb040d4795a6000762fe8f">Kartoon Channel!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="pocket.watchGame-On.us" site_id="5dae0a40e8ee0d000975e99b">pocket.watch Game-On</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dae0a40e8ee0d000975e99b">pocket.watch Game-On</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RyanandFriends.us" site_id="5fb584b7613a31000789de5a">Ryan and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fb584b7613a31000789de5a">Ryan and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ForeverKids.us" site_id="56171fafada51f8004c4b40f">Forever Kids</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="56171fafada51f8004c4b40f">Forever Kids</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GarfieldandFriends.us" site_id="60faf9ddfcc1f200070a5932">Garfield and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60faf9ddfcc1f200070a5932">Garfield and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Grande-ish.us" site_id="60fafef7c2440500071266e0">Grande-ish</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fafef7c2440500071266e0">Grande-ish</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NoParentsAllowed.us" site_id="5db0ae5af8797b00095c0794">No Parents Allowed</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5db0ae5af8797b00095c0794">No Parents Allowed</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AnimeAllDay.us" site_id="5812b7d3249444e05d09cc49">Anime All Day</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812b7d3249444e05d09cc49">Anime All Day</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crunchyroll.us" site_id="65652f7fc0fc88000883537a">Crunchyroll</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65652f7fc0fc88000883537a">Crunchyroll</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SailorMoon.us" site_id="637e55347427a40007fac703">Sailor Moon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="637e55347427a40007fac703">Sailor Moon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OnePiece.us" site_id="5f7790b3ed0c88000720b241">One Piece</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7790b3ed0c88000720b241">One Piece</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Naruto.us" site_id="5da0c85bd2c9c10009370984">Naruto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5da0c85bd2c9c10009370984">Naruto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yu-Gi-Oh!.us" site_id="5f4ec10ed9636f00089b8c89">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4ec10ed9636f00089b8c89">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Lupinthe3rd.us" site_id="60f74ba51c82ac000776c669">Lupin the 3rd</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f74ba51c82ac000776c669">Lupin the 3rd</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CinePremiere.us" site_id="5cf968040ab7d8f181e6a68b">Cine Premiere</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf968040ab7d8f181e6a68b">Cine Premiere</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV007enespañol.us" site_id="5d93b58e7ea6f9918873886f">Pluto TV 007 en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d93b58e7ea6f9918873886f">Pluto TV 007 en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cineenespañol.us" site_id="5cf96b1c4f1ca3f0629f4bf0">Cine en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96b1c4f1ca3f0629f4bf0">Cine en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CineClásico.us" site_id="64b9671cdac71b0008f371df">Cine Clásico</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64b9671cdac71b0008f371df">Cine Clásico</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PelisyPopcorn.us" site_id="60fb2f47c133270007327375">Pelis y Popcorn</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb2f47c133270007327375">Pelis y Popcorn</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cineadrenalina.us" site_id="5d8d164d92e97a5e107638d2">Cine adrenalina</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d164d92e97a5e107638d2">Cine adrenalina</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cineterror.us" site_id="5d8d180092e97a5e107638d3">Cine terror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d180092e97a5e107638d3">Cine terror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cine¡¡jaja!!.us" site_id="5f513564e4622a0007c578c0">Cine ¡¡jaja!!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f513564e4622a0007c578c0">Cine ¡¡jaja!!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CineXOXO.us" site_id="5f5136317aedfb0007016f93">Cine XOXO</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f5136317aedfb0007016f93">Cine XOXO</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cinenavideño.us" site_id="6334a4d7ae975100073994a2">Cine navideño</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a4d7ae975100073994a2">Cine navideño</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hallmarkenespañol.us" site_id="6532e7b290a74c00084a3bb6">Hallmark en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e7b290a74c00084a3bb6">Hallmark en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Telemundotelenovelasclásicas.us" site_id="5cf96cc422df39f1a338d165">Telemundo telenovelas clásicas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96cc422df39f1a338d165">Telemundo telenovelas clásicas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVNovelas.us" site_id="5cf96c0222df39f1a338d163">Pluto TV Novelas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96c0222df39f1a338d163">Pluto TV Novelas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Novelasconlaabuela.us" site_id="5e84dbf4a838b60007ffbba1">Novelas con la abuela</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84dbf4a838b60007ffbba1">Novelas con la abuela</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Amantesdelromance.us" site_id="5e84db2db3851800077c871e">Amantes del romance</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84db2db3851800077c871e">Amantes del romance</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Corazónturco.us" site_id="61b3e21d56fee300087e4cba">Corazón turco</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61b3e21d56fee300087e4cba">Corazón turco</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Badassnovelas.us" site_id="5e84dc59026b9b000766f9a2">Badass novelas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84dc59026b9b000766f9a2">Badass novelas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Entrenosotras.us" site_id="60492c67f4c48700075b5d37">Entre nosotras</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492c67f4c48700075b5d37">Entre nosotras</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TuWarner.us" site_id="6732497f3a61d400087a53b0">TuWarner</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6732497f3a61d400087a53b0">TuWarner</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SeriesconÑ.us" site_id="60fb3087fbbc120007fc46be">Series con Ñ</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb3087fbbc120007fc46be">Series con Ñ</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSenespañol.us" site_id="668c5cb4f01dbe0008dd4082">CBS en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668c5cb4f01dbe0008dd4082">CBS en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSIenEspañol.us" site_id="604928d54a4f730007ff76bc">CSI en Español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="604928d54a4f730007ff76bc">CSI en Español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:Miamienespañol.us" site_id="632b5950b515b000079e6b81">CSI: Miami en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="632b5950b515b000079e6b81">CSI: Miami en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:NYenespañol.us" site_id="632b606e12a67b0007c9e371">CSI: NY en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="632b606e12a67b0007c9e371">CSI: NY en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWalkingDeadenespañol.us" site_id="5e82bb378601b80007b4bd78">The Walking Dead en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e82bb378601b80007b4bd78">The Walking Dead en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AMCenespañol.us" site_id="62fa81ccd1a7e90007c1ada0">AMC en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fa81ccd1a7e90007c1ada0">AMC en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Spike¡extremo!.us" site_id="5d8d11baeb31c5a43b77bf59">Spike ¡extremo!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d11baeb31c5a43b77bf59">Spike ¡extremo!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Mundoparanormal.us" site_id="60492a9bbca75b0007b1bfd5">Mundo paranormal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492a9bbca75b0007b1bfd5">Mundo paranormal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AcapulcoShore.us" site_id="60c25ec6da6d6600074233a8">Acapulco Shore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60c25ec6da6d6600074233a8">Acapulco Shore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVenespañol.us" site_id="5cf96d351652631e36d4331f">MTV en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96d351652631e36d4331f">MTV en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LaFamiliadelBarrio.us" site_id="668c566d08d5490008075948">La Familia del Barrio</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668c566d08d5490008075948">La Familia del Barrio</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralenespañol.us" site_id="5cf96dad1652631e36d43320">Comedy Central en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96dad1652631e36d43320">Comedy Central en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EstrellaTV.us" site_id="5cf0622da00ca1e2f6fac712">EstrellaTV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf0622da00ca1e2f6fac712">EstrellaTV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CasosdelaDra.Polo.us" site_id="60d393e5579a420007ee553c">Casos de la Dra. Polo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d393e5579a420007ee553c">Casos de la Dra. Polo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Noseyescándalos.us" site_id="60492ee6375a3900079a158c">Nosey escándalos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492ee6375a3900079a158c">Nosey escándalos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Bodas+.us" site_id="673249215534bb0008c8a012">Bodas+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249215534bb0008c8a012">Bodas+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SonyCanalEscapePerfecto.us" site_id="605e479d5b8229000763e697">Sony Canal Escape Perfecto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="605e479d5b8229000763e697">Sony Canal Escape Perfecto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hell'sKitchenenespañol.us" site_id="60492b2794116800073e32dc">Hell's Kitchen en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492b2794116800073e32dc">Hell's Kitchen en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Foodies.us" site_id="5d8d0fbaa8742fa3093899da">Foodies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d0fbaa8742fa3093899da">Foodies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Mundoviajero.us" site_id="60511efd71ec430007f50d97">Mundo viajero</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60511efd71ec430007f50d97">Mundo viajero</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VidasExtremas.us" site_id="673249afc7626f0008c7205d">Vidas Extremas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249afc7626f0008c7205d">Vidas Extremas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ConstruccionesAsombrosas.us" site_id="673249433a61d400087a51ed">Construcciones Asombrosas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249433a61d400087a51ed">Construcciones Asombrosas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Mundogeek.us" site_id="6051201a0aa8a70007c24a2a">Mundo geek</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6051201a0aa8a70007c24a2a">Mundo geek</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TuDiscovery.us" site_id="673249ccc7626f0008c72076">TuDiscovery</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249ccc7626f0008c72076">TuDiscovery</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SaladeEmergencias:HistoriasInéditas.us" site_id="66ba53cda4ee2700083fac09">Sala de Emergencias: Historias Inéditas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ba53cda4ee2700083fac09">Sala de Emergencias: Historias Inéditas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ExpedientesSobrenaturales.us" site_id="6732495dc7626f0008c71e7d">Expedientes Sobrenaturales</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6732495dc7626f0008c71e7d">Expedientes Sobrenaturales</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crimen.us" site_id="6732499ce40c4a0008bb9894">Crimen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6732499ce40c4a0008bb9894">Crimen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crímenesimperfectos.us" site_id="5e94cd036cc69d0007e8a1ba">Crímenes imperfectos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e94cd036cc69d0007e8a1ba">Crímenes imperfectos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Misteriossinresolver.us" site_id="5f4d882d5233170007ee880e">Misterios sin resolver</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d882d5233170007ee880e">Misterios sin resolver</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Investiga.us" site_id="5cf96b8f4f1ca3f0629f4bf1">Investiga</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96b8f4f1ca3f0629f4bf1">Investiga</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TelemundoNoticiasCalifornia.us" site_id="65790feacbd0d60008fac87a">Telemundo Noticias California</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65790feacbd0d60008fac87a">Telemundo Noticias California</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNXPRESS.us" site_id="673248f9030a2c0008033af8">CNN XPRESS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673248f9030a2c0008033af8">CNN XPRESS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EstrellaNews.us" site_id="60492e6d7f3f560007ab0f62">Estrella News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492e6d7f3f560007ab0f62">Estrella News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWeatherChannelEnEspañol.us" site_id="627ae4fcf001df00074d6e5b">The Weather Channel En Español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="627ae4fcf001df00074d6e5b">The Weather Channel En Español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Euronews.us" site_id="60492dcf1c9b6a00089f41df">Euronews</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492dcf1c9b6a00089f41df">Euronews</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXDeportes.us" site_id="63d0269d60bc8f000890facc">FOX Deportes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63d0269d60bc8f000890facc">FOX Deportes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="beINSPORTSXTRAenespañol.us" site_id="60492fdd9989d30007ccd30a">beIN SPORTS XTRA en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492fdd9989d30007ccd30a">beIN SPORTS XTRA en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LuchaLibreAAA.us" site_id="5c01df1759ee03633e7b272c">Lucha Libre AAA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c01df1759ee03633e7b272c">Lucha Libre AAA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoRegionalMexicano.us" site_id="64dab5fe35425100080e2991">Vevo Regional Mexicano</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64dab5fe35425100080e2991">Vevo Regional Mexicano</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoÍconosLatinos.us" site_id="64d161c93c785e0008df575e">Vevo Íconos Latinos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d161c93c785e0008df575e">Vevo Íconos Latinos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoHoliday.us" site_id="6334a3ffdc283500076acf92">Vevo Holiday</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a3ffdc283500076acf92">Vevo Holiday</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo'70s.us" site_id="5f32f26bcd8aea00071240e5">Vevo '70s</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f32f26bcd8aea00071240e5">Vevo '70s</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo'80s.us" site_id="5fd7b8bf927e090007685853">Vevo '80s</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fd7b8bf927e090007685853">Vevo '80s</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo'90s.us" site_id="5fd7bb1f86d94a000796e2c2">Vevo '90s</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fd7bb1f86d94a000796e2c2">Vevo '90s</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo2K.us" site_id="5fd7bca3e0a4ee0007a38e8c">Vevo 2K</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fd7bca3e0a4ee0007a38e8c">Vevo 2K</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CMTEqualPlay.us" site_id="5f68f53eb1e5800007390bf8">CMT Equal Play</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f68f53eb1e5800007390bf8">CMT Equal Play</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XITEClassicCountry.us" site_id="623b92a2ccefed0007b1db48">XITE Classic Country</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="623b92a2ccefed0007b1db48">XITE Classic Country</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoCountry.us" site_id="5da0d75e84830900098a1ea0">Vevo Country</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5da0d75e84830900098a1ea0">Vevo Country</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yo!MTV.us" site_id="5d14fc31252d35decbc4080b">Yo! MTV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fc31252d35decbc4080b">Yo! MTV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoTrueSchoolHip-Hop.us" site_id="61d4c2817a823d00070ba53e">Vevo True School Hip-Hop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61d4c2817a823d00070ba53e">Vevo True School Hip-Hop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoR&amp;B.us" site_id="5da0d83f66c9700009b96d0e">Vevo R&amp;B</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5da0d83f66c9700009b96d0e">Vevo R&amp;B</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoRetroRock.us" site_id="61d4b38226b8a50007fe03a6">Vevo Retro Rock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61d4b38226b8a50007fe03a6">Vevo Retro Rock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XITERockxMetal.us" site_id="623a1b5188ecdc0007c9ef5a">XITE Rock x Metal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="623a1b5188ecdc0007c9ef5a">XITE Rock x Metal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoPop.us" site_id="5d93b635b43dd1a399b39eee">Vevo Pop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d93b635b43dd1a399b39eee">Vevo Pop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVSpankin'New.us" site_id="5d14fdb8ca91eedee1633117">MTV Spankin' New</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fdb8ca91eedee1633117">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVBiggestPop.us" site_id="5d14fd1a252d35decbc4080c">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fd1a252d35decbc4080c">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVFlowLatino.us" site_id="5d3609cd6a6c78d7672f2a81">MTV Flow Latino</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d3609cd6a6c78d7672f2a81">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XITEGospel.us" site_id="623b93628e6ded0007337d4d">XITE Gospel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="623b93628e6ded0007337d4d">XITE Gospel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Classica.us" site_id="5f779951372da90007fd45e8">Classica</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f779951372da90007fd45e8">Classica</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsBaltimore.us" site_id="60f75919718aed0007250d7a">CBS News Baltimore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f75919718aed0007250d7a">CBS News Baltimore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsBayArea.us" site_id="5eb1afb21486df0007abc57c">CBS News Bay Area</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1afb21486df0007abc57c">CBS News Bay Area</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsBoston.us" site_id="5eb1af2ad345340008fccd1e">CBS News Boston</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1af2ad345340008fccd1e">CBS News Boston</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsChicago.us" site_id="5eb1aeb2fd4b8a00076c2047">CBS News Chicago</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1aeb2fd4b8a00076c2047">CBS News Chicago</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsColorado.us" site_id="5eb1b12146cba40007aa7e5d">CBS News Colorado</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b12146cba40007aa7e5d">CBS News Colorado</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsDetroit.us" site_id="634f2610d5023700078f7dee">CBS News Detroit</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634f2610d5023700078f7dee">CBS News Detroit</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsLosAngeles.us" site_id="5dc481cda1d430000948a1b4">CBS News Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc481cda1d430000948a1b4">CBS News Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOX11LosAngeles.us" site_id="667f2c7b22acab0008b7072b">FOX 11 Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667f2c7b22acab0008b7072b">FOX 11 Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NBCLosAngelesNews.us" site_id="65790cda6e4f6a0008768764">NBC Los Angeles News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65790cda6e4f6a0008768764">NBC Los Angeles News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsMiami.us" site_id="60fb299b79498900070b29e0">CBS News Miami</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb299b79498900070b29e0">CBS News Miami</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsMinnesota.us" site_id="5eb1b0bf2240d8000732a09c">CBS News Minnesota</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b0bf2240d8000732a09c">CBS News Minnesota</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsNewYork.us" site_id="5dc48170e280c80009a861ab">CBS News New York</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc48170e280c80009a861ab">CBS News New York</channel>
<channel site="pluto.tv" lang="en" xmltv_id="News12NewYork.us" site_id="5fff49cfb5cd4f0007c2b0dc">News 12 New York</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fff49cfb5cd4f0007c2b0dc">News 12 New York</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsPhiladelphia.us" site_id="5eb1b05ea168cc000767ba67">CBS News Philadelphia</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b05ea168cc000767ba67">CBS News Philadelphia</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsPittsburgh.us" site_id="5eb1b17aa5277e00083f6521">CBS News Pittsburgh</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b17aa5277e00083f6521">CBS News Pittsburgh</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsSacramento.us" site_id="60cb6df2b2ad610008cd5bea">CBS News Sacramento</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60cb6df2b2ad610008cd5bea">CBS News Sacramento</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KIROSeattle.us" site_id="632b619c8d2a6c0007ff534e">KIRO Seattle</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="632b619c8d2a6c0007ff534e">KIRO Seattle</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsTexas.us" site_id="5eceb0d4065c240007688ec6">CBS News Texas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eceb0d4065c240007688ec6">CBS News Texas</channel>
</channels> </channels>

View file

@ -1,188 +1,188 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="es" xmltv_id="DescubriendoPlutoTV.ar" site_id="5e793a7cfbdf780007f7eb75">Descubriendo Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e793a7cfbdf780007f7eb75">Descubriendo Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineEstelar.ar" site_id="5dcde437229eff00091b6c30">Pluto TV Cine Estelar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde437229eff00091b6c30">Pluto TV Cine Estelar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineAcción.ar" site_id="5dcb62e63d4d8f0009f36881">Pluto TV Cine Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcb62e63d4d8f0009f36881">Pluto TV Cine Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="EstrellasdeAcción.ar" site_id="5e972a21ad709d00074195ba">Estrellas de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e972a21ad709d00074195ba">Estrellas de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAdrenalinaFreezone.ar" site_id="61b793ccf571b80007b7a610">Pluto TV Adrenalina Freezone</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61b793ccf571b80007b7a610">Pluto TV Adrenalina Freezone</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineComedia.ar" site_id="5dcdde78f080d900098550e4">Pluto TV Cine Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcdde78f080d900098550e4">Pluto TV Cine Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineDrama.ar" site_id="5dcddfcb229eff00091b6bdf">Pluto TV Cine Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddfcb229eff00091b6bdf">Pluto TV Cine Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineRomance.ar" site_id="5dd7ea2aeab5230009986735">Pluto TV Cine Romance</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd7ea2aeab5230009986735">Pluto TV Cine Romance</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineSuspenso.ar" site_id="5ddc4e8bcbb9010009b4e84f">Pluto TV Cine Suspenso</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddc4e8bcbb9010009b4e84f">Pluto TV Cine Suspenso</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineCrimen.ar" site_id="624af40c004f8000079b784d">Pluto TV Cine Crimen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="624af40c004f8000079b784d">Pluto TV Cine Crimen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineTerror.ar" site_id="5dcddf1ed95e740009fef7ab">Pluto TV Cine Terror</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddf1ed95e740009fef7ab">Pluto TV Cine Terror</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSci-Fi.ar" site_id="5f2817d3d7573a00080f9175">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f2817d3d7573a00080f9175">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Runtime.ar" site_id="62c5d80dc6de440007e033eb">Runtime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62c5d80dc6de440007e033eb">Runtime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNuestroCine.ar" site_id="5defde6d6c07b50009cf0757">Pluto TV Nuestro Cine</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5defde6d6c07b50009cf0757">Pluto TV Nuestro Cine</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVALaMexicana.ar" site_id="5dfcde52d28b09000a42d7a2">Pluto TV A La Mexicana</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dfcde52d28b09000a42d7a2">Pluto TV A La Mexicana</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineClásico.ar" site_id="609059dc63be6e0007b4eca6">Pluto TV Cine Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609059dc63be6e0007b4eca6">Pluto TV Cine Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineFamilia.ar" site_id="5dd6ddb30a1d8a000908ed4c">Pluto TV Cine Familia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ddb30a1d8a000908ed4c">Pluto TV Cine Familia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineNavidad.ar" site_id="5dd6ed41526c77000941411c">Pluto TV Cine Navidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ed41526c77000941411c">Pluto TV Cine Navidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LucesNavideñas.ar" site_id="5f8a0e7a9ab0370008b177f2">Luces Navideñas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f8a0e7a9ab0370008b177f2">Luces Navideñas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ChimeneaNavideña.ar" site_id="5f8a0f421418bd0007e14548">Chimenea Navideña</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f8a0f421418bd0007e14548">Chimenea Navideña</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVMúsicaNavideña.ar" site_id="66e1e05a15d2c60008e4b2db">MTV Música Navideña</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66e1e05a15d2c60008e4b2db">MTV Música Navideña</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeCrimen.ar" site_id="655f62ff954b020008c91ec6">Pluto TV Series de Crimen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f62ff954b020008c91ec6">Pluto TV Series de Crimen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CSI:Miami.ar" site_id="63eb9255c111bc0008fe6ec4">CSI: Miami</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb9255c111bc0008fe6ec4">CSI: Miami</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NCIS.ar" site_id="63eb947c4e83e70008ab877b">NCIS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb947c4e83e70008ab877b">NCIS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeAcción.ar" site_id="6479ff1c17f5e10008ad2797">Pluto TV Series de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6479ff1c17f5e10008ad2797">Pluto TV Series de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="RookieBlue:PolicíasNovatos.ar" site_id="64ff270f30ab3300084e259c">Rookie Blue: Policías Novatos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ff270f30ab3300084e259c">Rookie Blue: Policías Novatos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="InfiernoSobreRuedas.ar" site_id="64ff26233efb5100082eeb2e">Infierno Sobre Ruedas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ff26233efb5100082eeb2e">Infierno Sobre Ruedas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeSci-Fi.ar" site_id="65662f8a2c46f300088a84cc">Pluto TV Series de Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65662f8a2c46f300088a84cc">Pluto TV Series de Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ZNation.ar" site_id="66b3af1c3a4ad200081c7d03">Z Nation</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b3af1c3a4ad200081c7d03">Z Nation</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeAventura.ar" site_id="65662c1357fe4a00086b3eb1">Pluto TV Series de Aventura</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65662c1357fe4a00086b3eb1">Pluto TV Series de Aventura</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeries.ar" site_id="5dcde1317578340009b751d0">Pluto TV Series</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde1317578340009b751d0">Pluto TV Series</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeComedia.ar" site_id="655f626d57fe4a00085c7c3e">Pluto TV Series de Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f626d57fe4a00085c7c3e">Pluto TV Series de Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeDrama.ar" site_id="655f636d954b020008c93299">Pluto TV Series de Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f636d954b020008c93299">Pluto TV Series de Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Younger.ar" site_id="619d56d9fa3070000709e3f7">Younger</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d56d9fa3070000709e3f7">Younger</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDramasCoreanos.ar" site_id="6185a9a88b2ce30007de5128">Pluto TV Dramas Coreanos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6185a9a88b2ce30007de5128">Pluto TV Dramas Coreanos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDramasCoreanosTeen.ar" site_id="6661d5424b10960008599fa3">Pluto TV Dramas Coreanos Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6661d5424b10960008599fa3">Pluto TV Dramas Coreanos Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ViveKanalDDrama.ar" site_id="639751f81a36b400072b8f5a">Vive Kanal D Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="639751f81a36b400072b8f5a">Vive Kanal D Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVEspaña.ar" site_id="5ffe17e3d765170007c3a4fe">Pluto TV España</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ffe17e3d765170007c3a4fe">Pluto TV España</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesLatinas.ar" site_id="5dd837642c6e9300098ad484">Pluto TV Series Latinas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd837642c6e9300098ad484">Pluto TV Series Latinas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AlFondoHaySitio.ar" site_id="66aa6e03fe11e500086038ed">Al Fondo Hay Sitio</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66aa6e03fe11e500086038ed">Al Fondo Hay Sitio</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesRetro.ar" site_id="5de802659167b10009e7deba">Pluto TV Series Retro</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de802659167b10009e7deba">Pluto TV Series Retro</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Hechizada.ar" site_id="631fb6be21b7440007b9f606">Hechizada</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="631fb6be21b7440007b9f606">Hechizada</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MacGyver.ar" site_id="63eb95baa99571000898a078">MacGyver</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb95baa99571000898a078">MacGyver</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Baywatch.ar" site_id="66a26a7846762a0008258d4e">Baywatch</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a26a7846762a0008258d4e">Baywatch</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosTresChiflados.ar" site_id="5f85f1dc1418bd0007e11eb9">Los Tres Chiflados</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85f1dc1418bd0007e11eb9">Los Tres Chiflados</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVRetroCartoons.ar" site_id="60142258a54aeb0007751c15">Pluto TV Retro Cartoons</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60142258a54aeb0007751c15">Pluto TV Retro Cartoons</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelas.ar" site_id="5dcde0cc2efd2700090b7ff4">Pluto TV Novelas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde0cc2efd2700090b7ff4">Pluto TV Novelas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeMexico.ar" site_id="6474a7958e3c0a0008b97cae">Pluto TV Novelas de Mexico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a7958e3c0a0008b97cae">Pluto TV Novelas de Mexico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Corazón.ar" site_id="646ccdd0939a5900088a1980">Corazón</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646ccdd0939a5900088a1980">Corazón</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeColombia.ar" site_id="6474a7e7f77b6100080a89e7">Pluto TV Novelas de Colombia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a7e7f77b6100080a89e7">Pluto TV Novelas de Colombia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SinTetasNoHayParaíso.ar" site_id="604bdf4e6d0abc0007ba77ad">Sin Tetas No Hay Paraíso</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="604bdf4e6d0abc0007ba77ad">Sin Tetas No Hay Paraíso</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LaSelección.ar" site_id="63211ba9cad976000794f988">La Selección</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63211ba9cad976000794f988">La Selección</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeArgentina.ar" site_id="6474a8c64f5ba50008683603">Pluto TV Novelas de Argentina</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a8c64f5ba50008683603">Pluto TV Novelas de Argentina</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeVenezuela.ar" site_id="6474a86917f5e100089a0c1c">Pluto TV Novelas de Venezuela</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a86917f5e100089a0c1c">Pluto TV Novelas de Venezuela</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVReality.ar" site_id="5dcde197f6591d0009839e04">Pluto TV Reality</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde197f6591d0009839e04">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVDrag.ar" site_id="64510d3ad3fdde00080951f2">MTV Drag</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64510d3ad3fdde00080951f2">MTV Drag</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVPlutoTV.ar" site_id="5fab088b3279760007d4e4fd">MTV Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fab088b3279760007d4e4fd">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVReality.ar" site_id="5de91b7ea86ee60009d89e75">MTV Reality</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de91b7ea86ee60009d89e75">MTV Reality</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVShore.ar" site_id="61a52615cbef2500072876e2">MTV Shore</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61a52615cbef2500072876e2">MTV Shore</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVConMiEx.ar" site_id="638693db857364000781b471">MTV Con Mi Ex</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="638693db857364000781b471">MTV Con Mi Ex</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRidiculousness.ar" site_id="5e98a911c881310007d7aae2">MTV Ridiculousness</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e98a911c881310007d7aae2">MTV Ridiculousness</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVTeenMom.ar" site_id="620fd9f4afb9a80007a9c6d5">MTV Teen Mom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620fd9f4afb9a80007a9c6d5">MTV Teen Mom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVCatfish.ar" site_id="625461ef01f27a0007976ad1">MTV Catfish</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="625461ef01f27a0007976ad1">MTV Catfish</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCompetencias.ar" site_id="5dd6d935d000120009bc1132">Pluto TV Competencias</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6d935d000120009bc1132">Pluto TV Competencias</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IronChef.ar" site_id="615b9855c6b58b000724477f">Iron Chef</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="615b9855c6b58b000724477f">Iron Chef</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MasterChef.ar" site_id="5e3ddbd27091820009f86dd9">MasterChef</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e3ddbd27091820009f86dd9">MasterChef</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MasterChefJunior.ar" site_id="64bed7005dc16600089b84e9">MasterChef Junior</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64bed7005dc16600089b84e9">MasterChef Junior</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HellsKitchen.ar" site_id="6095ad97351eb0000754c1e6">Hells Kitchen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6095ad97351eb0000754c1e6">Hells Kitchen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MinutoParaGanar.ar" site_id="5e46e64dc73db400094b5f0b">Minuto Para Ganar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e46e64dc73db400094b5f0b">Minuto Para Ganar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Boom.ar" site_id="6099600015e88c0007ecda25">Boom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6099600015e88c0007ecda25">Boom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="WipeOut.ar" site_id="5ed6828192e8b3000743ef61">Wipe Out</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ed6828192e8b3000743ef61">Wipe Out</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DesafíoSuperHumanos.ar" site_id="6495af324c014a000842e923">Desafío Super Humanos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6495af324c014a000842e923">Desafío Super Humanos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNaturaleza.ar" site_id="5dd85eac039bba0009e86d1d">Pluto TV Naturaleza</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd85eac039bba0009e86d1d">Pluto TV Naturaleza</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PaisajesporStingray.ar" site_id="5f4fed840a2764000720d966">Paisajes por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4fed840a2764000720d966">Paisajes por Stingray</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnimales.ar" site_id="5dd834c66fe2ca0009303b8d">Pluto TV Animales</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd834c66fe2ca0009303b8d">Pluto TV Animales</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElEncantadordePerros.ar" site_id="61099f2b40d0640007fc5aa2">El Encantador de Perros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61099f2b40d0640007fc5aa2">El Encantador de Perros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAventura.ar" site_id="5ddc266f80e3550009136843">Pluto TV Aventura</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddc266f80e3550009136843">Pluto TV Aventura</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IcePilots.ar" site_id="62154548a2be360007cb02f0">Ice Pilots</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62154548a2be360007cb02f0">Ice Pilots</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVVelocidad.ar" site_id="5dd6dc7480e3550009133d4a">Pluto TV Velocidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6dc7480e3550009133d4a">Pluto TV Velocidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ObsesiónporlosAutos.ar" site_id="64025592953da40008bf9238">Obsesión por los Autos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64025592953da40008bf9238">Obsesión por los Autos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MiCocheClásico.ar" site_id="656e2536fbc15b00084ae29d">Mi Coche Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656e2536fbc15b00084ae29d">Mi Coche Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MotorvisionTV.ar" site_id="60e5ea9a9bb4200008376f76">Motorvision TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60e5ea9a9bb4200008376f76">Motorvision TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVVidaReal.ar" site_id="5df265697ec3510009df1ef0">Pluto TV Vida Real</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5df265697ec3510009df1ef0">Pluto TV Vida Real</channel>
<channel site="pluto.tv" lang="es" xmltv_id="COPS.ar" site_id="6419ab7c9189ce000865a469">COPS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6419ab7c9189ce000865a469">COPS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Dogelcazarrecompensas.ar" site_id="5f9992c685a2a80007fa414a">Dog el cazarrecompensas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9992c685a2a80007fa414a">Dog el cazarrecompensas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Empeñosalobestia.ar" site_id="5f23102d5e239d00074b092a">Empeños a lo bestia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f23102d5e239d00074b092a">Empeños a lo bestia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMiObsesiónFavorita.ar" site_id="6109ab25b84d6a0007504886">Pluto TV Mi Obsesión Favorita</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6109ab25b84d6a0007504886">Pluto TV Mi Obsesión Favorita</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MisteriosMedicos.ar" site_id="5f230e416b68ff00075b0139">Misterios Medicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f230e416b68ff00075b0139">Misterios Medicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMisterios.ar" site_id="5dcde2f53449c50009b2b4dc">Pluto TV Misterios</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde2f53449c50009b2b4dc">Pluto TV Misterios</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HistoriasdeUltratumba.ar" site_id="5f4d3696d938c900072679fd">Historias de Ultratumba</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4d3696d938c900072679fd">Historias de Ultratumba</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosExtraterrestres.ar" site_id="645d1abbe1979c0008779d5a">Archivos Extraterrestres</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645d1abbe1979c0008779d5a">Archivos Extraterrestres</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SmithsonianChannelPlutoTV.ar" site_id="63a084934734f30007457b2c">Smithsonian Channel Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63a084934734f30007457b2c">Smithsonian Channel Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHistoria.ar" site_id="5de5758e1a30dc00094fcd6c">Pluto TV Historia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de5758e1a30dc00094fcd6c">Pluto TV Historia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCiencia.ar" site_id="5dd8364ea1d6780009929902">Pluto TV Ciencia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd8364ea1d6780009929902">Pluto TV Ciencia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVInvestiga.ar" site_id="5dcde27ffae9520009c0c75a">Pluto TV Investiga</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde27ffae9520009c0c75a">Pluto TV Investiga</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CazadordeHomicidas.ar" site_id="6109a9f5531b840007a4a187">Cazador de Homicidas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6109a9f5531b840007a4a187">Cazador de Homicidas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosarchivosdelFBI.ar" site_id="5e67d41b93312100076f3fca">Los archivos del FBI</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e67d41b93312100076f3fca">Los archivos del FBI</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosForenses.ar" site_id="5efb8c19b2678b000780d032">Archivos Forenses</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5efb8c19b2678b000780d032">Archivos Forenses</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TheNewDetectives.ar" site_id="5ea71d48af1d0b0007d837f4">The New Detectives</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ea71d48af1d0b0007d837f4">The New Detectives</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MisteriossinResolver.ar" site_id="5f610042272f68000867685b">Misterios sin Resolver</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f610042272f68000867685b">Misterios sin Resolver</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CBSNews.ar" site_id="62310d5a5dc9550007c6f580">CBS News</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62310d5a5dc9550007c6f580">CBS News</channel>
<channel site="pluto.tv" lang="es" xmltv_id="EuronewsEspañol.ar" site_id="619d59b7cbef25000728221c">Euronews Español</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d59b7cbef25000728221c">Euronews Español</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TeleFórmula.ar" site_id="63d2c140c111bc0008cb890b">TeleFórmula</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63d2c140c111bc0008cb890b">TeleFórmula</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MilenioTelevisión.ar" site_id="652e922db4b047000825f975">Milenio Televisión</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="652e922db4b047000825f975">Milenio Televisión</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDeportes.ar" site_id="5dcde07af1c85b0009b18651">Pluto TV Deportes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde07af1c85b0009b18651">Pluto TV Deportes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaDeportesNetwork.ar" site_id="6582f002a620e3000813b329">Azteca Deportes Network</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6582f002a620e3000813b329">Azteca Deportes Network</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ClaroSports.ar" site_id="6320d80a66666000086712d7">Claro Sports</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6320d80a66666000086712d7">Claro Sports</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ITVDeportes.ar" site_id="63f7e3f9dff38e00082a57af">ITV Deportes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63f7e3f9dff38e00082a57af">ITV Deportes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVPeleas.ar" site_id="5e98b0447665f200078caded">Pluto TV Peleas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e98b0447665f200078caded">Pluto TV Peleas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LuchaLibreAAA.ar" site_id="5f99a772c54853000797bf18">Lucha Libre AAA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f99a772c54853000797bf18">Lucha Libre AAA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DAZNCombat.ar" site_id="64df7a9a44fe100009b6ac5a">DAZN Combat</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64df7a9a44fe100009b6ac5a">DAZN Combat</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PFLMMA.ar" site_id="64f6163a30ab3300083d870e">PFL MMA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64f6163a30ab3300083d870e">PFL MMA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DAZNWomen'sFootball.ar" site_id="64b02bbd7d93410008fdae60">DAZN Women's Football</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64b02bbd7d93410008fdae60">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FIFA+.ar" site_id="66997d18a1b69e00082ee85f">FIFA+</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66997d18a1b69e00082ee85f">FIFA+</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónFelicesFiestas.ar" site_id="671125ad5534bb00088b00c4">South Park: Colección Felices Fiestas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="671125ad5534bb00088b00c4">South Park: Colección Felices Fiestas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónCartman.ar" site_id="65df731cec9fda0008b7aa8d">South Park: Colección Cartman</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df731cec9fda0008b7aa8d">South Park: Colección Cartman</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónKenny.ar" site_id="65df7272ec9fda0008b7a970">South Park: Colección Kenny</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df7272ec9fda0008b7a970">South Park: Colección Kenny</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónKyle.ar" site_id="65df73520d4561000817c29b">South Park: Colección Kyle</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df73520d4561000817c29b">South Park: Colección Kyle</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónStan.ar" site_id="65df72db18036500081a8292">South Park: Colección Stan</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df72db18036500081a8292">South Park: Colección Stan</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ComedyCentralSouthPark.ar" site_id="609ae5cd48d3200007b0a98e">Comedy Central South Park</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609ae5cd48d3200007b0a98e">Comedy Central South Park</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Daria.ar" site_id="62d0895ebe7a970008785244">Daria</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62d0895ebe7a970008785244">Daria</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LaFamiliadelBarrio.ar" site_id="62d08af527ce19000731eaa0">La Familia del Barrio</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62d08af527ce19000731eaa0">La Familia del Barrio</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHumor.ar" site_id="5e8397936791b30007ebb5a7">Pluto TV Humor</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e8397936791b30007ebb5a7">Pluto TV Humor</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ComedyCentralPlutoTV.ar" site_id="5ffcc21a432945000762d06b">Comedy Central Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ffcc21a432945000762d06b">Comedy Central Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FailArmy.ar" site_id="5ebaccf1734aaf0007142c86">FailArmy</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebaccf1734aaf0007142c86">FailArmy</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ThePetCollective.ar" site_id="5ebacbcae43a6d000787b88e">The Pet Collective</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebacbcae43a6d000787b88e">The Pet Collective</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PRIDEtv.ar" site_id="6643b8c42eafd40008daab8b">PRIDEtv</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6643b8c42eafd40008daab8b">PRIDEtv</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Teatrix.ar" site_id="63ceb6ff60bc8f00088dc625">Teatrix</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63ceb6ff60bc8f00088dc625">Teatrix</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TelefePlutoTV.ar" site_id="613237a1c9e0db0007a91350">Telefe Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="613237a1c9e0db0007a91350">Telefe Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Chiquititas.ar" site_id="620e67a63b5e370007e06bb2">Chiquititas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620e67a63b5e370007e06bb2">Chiquititas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="RincóndeLuz.ar" site_id="63f6294449839300085c4bd2">Rincón de Luz</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63f6294449839300085c4bd2">Rincón de Luz</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SusanaGiménez.ar" site_id="6132429ec9e0db0007a91425">Susana Giménez</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6132429ec9e0db0007a91425">Susana Giménez</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TelefeHits.ar" site_id="5de91cf02fc07c0009910465">Telefe Hits</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de91cf02fc07c0009910465">Telefe Hits</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaInternacional.ar" site_id="646cce4d1593940008a33f09">Azteca Internacional</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646cce4d1593940008a33f09">Azteca Internacional</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Canal6CdMX.ar" site_id="652e91fd6208700008dcaf7b">Canal 6 CdMX</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="652e91fd6208700008dcaf7b">Canal 6 CdMX</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVViajes.ar" site_id="5dcddfbdb7cf0e0009ae09ea">Pluto TV Viajes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddfbdb7cf0e0009ae09ea">Pluto TV Viajes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHogar.ar" site_id="5dd6ab8056beb000091fc6b6">Pluto TV Hogar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ab8056beb000091fc6b6">Pluto TV Hogar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Homeful.ar" site_id="64fb1f6e6625510008c00848">Homeful</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64fb1f6e6625510008c00848">Homeful</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCocina.ar" site_id="5dcde0657444a40009cd2422">Pluto TV Cocina</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde0657444a40009cd2422">Pluto TV Cocina</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVRecetas.ar" site_id="609062295c2b8f0007199e7a">Pluto TV Recetas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609062295c2b8f0007199e7a">Pluto TV Recetas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tastemade.ar" site_id="5f998c1fc54853000797bacd">Tastemade</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f998c1fc54853000797bacd">Tastemade</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnime.ar" site_id="5dcde17bf6591d0009839e02">Pluto TV Anime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde17bf6591d0009839e02">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAniméAcción.ar" site_id="5e6a4d875d7ccf0007cc2cf1">Pluto TV Animé Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e6a4d875d7ccf0007cc2cf1">Pluto TV Animé Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Naruto.ar" site_id="5ee92e72fb286e0007285fec">Naruto</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ee92e72fb286e0007285fec">Naruto</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NarutoShippuden.ar" site_id="64c92fea3c3344000869e8a9">Naruto Shippuden</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64c92fea3c3344000869e8a9">Naruto Shippuden</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Boruto:NarutoNextGenerations.ar" site_id="656f37f257fe4a000884dfee">Boruto: Naruto Next Generations</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656f37f257fe4a000884dfee">Boruto: Naruto Next Generations</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HunterxHunter.ar" site_id="65d916a2f7f0af0008b6540d">Hunter x Hunter</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65d916a2f7f0af0008b6540d">Hunter x Hunter</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DeathNote.ar" site_id="626c2ed933a2890007e91422">Death Note</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="626c2ed933a2890007e91422">Death Note</channel>
<channel site="pluto.tv" lang="es" xmltv_id="JoJosBizarreAdventure.ar" site_id="66c790f780a0af0008583aa4">JoJos Bizarre Adventure</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c790f780a0af0008583aa4">JoJos Bizarre Adventure</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yu-Gi-Oh.ar" site_id="5fceaab478f2af00080ff51f">Yu-Gi-Oh</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fceaab478f2af00080ff51f">Yu-Gi-Oh</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CaptainTsubasa.ar" site_id="64666345f3f5b1000882bfb4">Captain Tsubasa</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64666345f3f5b1000882bfb4">Captain Tsubasa</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Inuyasha.ar" site_id="66b26665d512590008c507b7">Inuyasha</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b26665d512590008c507b7">Inuyasha</channel>
<channel site="pluto.tv" lang="es" xmltv_id="OnePiece.ar" site_id="5ff4b9ccf938f8000779eb99">One Piece</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff4b9ccf938f8000779eb99">One Piece</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tokusato.ar" site_id="5ff608e60e2996000768c366">Tokusato</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff608e60e2996000768c366">Tokusato</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVE-Sports.ar" site_id="5ff3934600d4c7000733ff49">Pluto TV E-Sports</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff3934600d4c7000733ff49">Pluto TV E-Sports</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickTeen.ar" site_id="5fab09a8749b1a00077d35d2">Nick Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fab09a8749b1a00077d35d2">Nick Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeoniCarly.ar" site_id="620ff0a01f9e8700076c6f9d">Nickelodeon iCarly</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620ff0a01f9e8700076c6f9d">Nickelodeon iCarly</channel>
<channel site="pluto.tv" lang="es" xmltv_id="KenanyKel.ar" site_id="5fcea93ffcf94500071c4b2f">Kenan y Kel</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fcea93ffcf94500071c4b2f">Kenan y Kel</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTeen.ar" site_id="5dd6de52b9914200091f047a">Pluto TV Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6de52b9914200091f047a">Pluto TV Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PAWPatrolPatrulladeCachorros.ar" site_id="6495c6ad115d060008bf6b52">PAW Patrol Patrulla de Cachorros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6495c6ad115d060008bf6b52">PAW Patrol Patrulla de Cachorros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickJr.Club.ar" site_id="5ddd7cb2cbb9010009b4fe32">Nick Jr. Club</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddd7cb2cbb9010009b4fe32">Nick Jr. Club</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Dora,LaExploradora.ar" site_id="656e28a2954b020008ed133a">Dora, La Exploradora</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656e28a2954b020008ed133a">Dora, La Exploradora</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasPistasdeBlue.ar" site_id="5f9996533c9de3000759ccb5">Las Pistas de Blue</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9996533c9de3000759ccb5">Las Pistas de Blue</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BabySharkTV.ar" site_id="619d5e6a093e7c0007489211">Baby Shark TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d5e6a093e7c0007489211">Baby Shark TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Babyfirst.ar" site_id="5ebac49ce4dc8b00078b23bc">Babyfirst</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebac49ce4dc8b00078b23bc">Babyfirst</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVJunior.ar" site_id="5dcde2ac4bc6c500094ab45b">Pluto TV Junior</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde2ac4bc6c500094ab45b">Pluto TV Junior</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Barney.ar" site_id="5f29ada4bdaebd000708d49d">Barney</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f29ada4bdaebd000708d49d">Barney</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElReinoInfantil.ar" site_id="5f4d3d06fb60d8000781fce8">El Reino Infantil</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4d3d06fb60d8000781fce8">El Reino Infantil</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonClásico.ar" site_id="5ddd7c348520b40009c347e2">Nickelodeon Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddd7c348520b40009c347e2">Nickelodeon Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HeyArnold!.ar" site_id="66c79221b1a34600087e264d">Hey Arnold!</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c79221b1a34600087e264d">Hey Arnold!</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Rugrats.ar" site_id="5ea7215005d66d0007e8128a">Rugrats</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ea7215005d66d0007e8128a">Rugrats</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonRocketPower.ar" site_id="6202ab549654c800076ee13f">Nickelodeon Rocket Power</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6202ab549654c800076ee13f">Nickelodeon Rocket Power</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonPlutoTV.ar" site_id="645952687cb4b100084ed52e">Nickelodeon Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645952687cb4b100084ed52e">Nickelodeon Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BobEsponjaPantalonesCuadrados.ar" site_id="6254598f5083f800076d8563">Bob Esponja Pantalones Cuadrados</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6254598f5083f800076d8563">Bob Esponja Pantalones Cuadrados</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosPadrinosMágicos.ar" site_id="6322099c822bbc00074857db">Los Padrinos Mágicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6322099c822bbc00074857db">Los Padrinos Mágicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasTortugasNinja.ar" site_id="63dd5d7a4e83e700088fbca8">Las Tortugas Ninja</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63dd5d7a4e83e700088fbca8">Las Tortugas Ninja</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVKids.ar" site_id="5dd6dae8ce788b0009eaf77b">Pluto TV Kids</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6dae8ce788b0009eaf77b">Pluto TV Kids</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVBiggestPop.ar" site_id="6047fabfce6e8e00070bcc9f">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6047fabfce6e8e00070bcc9f">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVClassic.ar" site_id="66a11a21a79dea0008aa90ca">MTV Classic</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a11a21a79dea0008aa90ca">MTV Classic</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRocks.ar" site_id="66a01b52a4ee27000808ea36">MTV Rocks</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a01b52a4ee27000808ea36">MTV Rocks</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVSpankin'New.ar" site_id="6047fd723b5bd00007de7092">MTV Spankin' New</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6047fd723b5bd00007de7092">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVFlowLatino.ar" site_id="62b218fc511d4b00070ddc0c">MTV Flow Latino</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62b218fc511d4b00070ddc0c">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yo!MTV.ar" site_id="66a01adf46762a00081ee3dc">Yo! MTV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a01adf46762a00081ee3dc">Yo! MTV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ConciertosporStingray.ar" site_id="5f85ca40eda1b10007b967cd">Conciertos por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85ca40eda1b10007b967cd">Conciertos por Stingray</channel>
<channel site="pluto.tv" lang="es" xmltv_id="KaraokeporStingray.ar" site_id="5f85cf621d6d2200079f1de0">Karaoke por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85cf621d6d2200079f1de0">Karaoke por Stingray</channel>
</channels> </channels>

View file

@ -1,170 +1,170 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="pt" xmltv_id="ConhecendoaPlutoTV.br" site_id="5fa97a8a75cc210007c9041d">Conhecendo a Pluto TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5fa97a8a75cc210007c9041d">Conhecendo a Pluto TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineSucessos.br" site_id="5f120e94a5714d00074576a1">Pluto TV Cine Sucessos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f120e94a5714d00074576a1">Pluto TV Cine Sucessos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVFilmesAção.br" site_id="5f120f41b7d403000783a6d6">Pluto TV Filmes Ação</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f120f41b7d403000783a6d6">Pluto TV Filmes Ação</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineTerror.br" site_id="5f12111c9e6c2c00078ef3bb">Pluto TV Cine Terror</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f12111c9e6c2c00078ef3bb">Pluto TV Cine Terror</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="FilmesSuspense.br" site_id="5f171d3442a0500007362f22">Filmes Suspense</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f171d3442a0500007362f22">Filmes Suspense</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVFicçãoCientífica.br" site_id="5fa15ad6367e170007cdd098">Pluto TV Ficção Científica</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5fa15ad6367e170007cdd098">Pluto TV Ficção Científica</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineCrime.br" site_id="6479ff764f5ba5000878dfe2">Pluto TV Cine Crime</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6479ff764f5ba5000878dfe2">Pluto TV Cine Crime</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineComédia.br" site_id="5f12101f0b12f00007844c7c">Pluto TV Cine Comédia</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f12101f0b12f00007844c7c">Pluto TV Cine Comédia</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineComédiaRomântica.br" site_id="62545ed3dab4380007582f7c">Pluto TV Cine Comédia Romântica</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62545ed3dab4380007582f7c">Pluto TV Cine Comédia Romântica</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineRomance.br" site_id="5f171f988ab9780007fa95ea">Pluto TV Cine Romance</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f171f988ab9780007fa95ea">Pluto TV Cine Romance</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineDrama.br" site_id="5f1210d14ae1f80007bafb1d">Pluto TV Cine Drama</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1210d14ae1f80007bafb1d">Pluto TV Cine Drama</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVBangBang.br" site_id="663b9dc7cb3ea10008f1a0ce">Pluto TV Bang Bang</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="663b9dc7cb3ea10008f1a0ce">Pluto TV Bang Bang</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineClássicos.br" site_id="5fa1612a669ba0000702017b">Pluto TV Cine Clássicos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5fa1612a669ba0000702017b">Pluto TV Cine Clássicos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVTerrorTrash.br" site_id="66aa67493a4ad2000806d91b">Pluto TV Terror Trash</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66aa67493a4ad2000806d91b">Pluto TV Terror Trash</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVAdrenalinaFreezone.br" site_id="61b790b985706b00072cb797">Pluto TV Adrenalina Freezone</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61b790b985706b00072cb797">Pluto TV Adrenalina Freezone</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVFilmesAventura.br" site_id="66c79a4262e5510008ff68a5">Pluto TV Filmes Aventura</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66c79a4262e5510008ff68a5">Pluto TV Filmes Aventura</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineFamília.br" site_id="5f171f032cd22e0007f17f3d">Pluto TV Cine Família</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f171f032cd22e0007f17f3d">Pluto TV Cine Família</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineInspiração.br" site_id="5fa991b1f09e020007e78626">Pluto TV Cine Inspiração</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5fa991b1f09e020007e78626">Pluto TV Cine Inspiração</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVFilmesNacionais.br" site_id="5f5a545d0dbf7f0007c09408">Pluto TV Filmes Nacionais</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f5a545d0dbf7f0007c09408">Pluto TV Filmes Nacionais</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVNetmovies.br" site_id="663b9de4f999220008230fa8">Pluto TV Netmovies</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="663b9de4f999220008230fa8">Pluto TV Netmovies</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Runtime.br" site_id="62c5d32e2c48f9000715b6e9">Runtime</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62c5d32e2c48f9000715b6e9">Runtime</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="FilmelierTV.br" site_id="633dcebd80386500074a2461">Filmelier TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="633dcebd80386500074a2461">Filmelier TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineNatal.br" site_id="5f8a11ce2a4559000782a583">Pluto TV Cine Natal</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f8a11ce2a4559000782a583">Pluto TV Cine Natal</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ClimadeNatal.br" site_id="5f4fc5aeca824d000783d321">Clima de Natal</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f4fc5aeca824d000783d321">Clima de Natal</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MúsicasdeNatal.br" site_id="5f8a12659ab0370008b177f4">Músicas de Natal</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f8a12659ab0370008b177f4">Músicas de Natal</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVMúsicasdeNatal.br" site_id="66e1e2d515d2c60008e4b690">MTV Músicas de Natal</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66e1e2d515d2c60008e4b690">MTV Músicas de Natal</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVSériesCriminais.br" site_id="6474ab5cdc7a760008745008">Pluto TV Séries Criminais</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6474ab5cdc7a760008745008">Pluto TV Séries Criminais</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="CSI:Miami.br" site_id="63eb9c5351f5d000085e8d7e">CSI: Miami</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63eb9c5351f5d000085e8d7e">CSI: Miami</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NCIS.br" site_id="63eb9fdda995710008991c54">NCIS</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63eb9fdda995710008991c54">NCIS</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVSériesAção.br" site_id="6474ab1da51cb80008bfb5f4">Pluto TV Séries Ação</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6474ab1da51cb80008bfb5f4">Pluto TV Séries Ação</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="RookieBlue.br" site_id="64ff2d8c6625510008c5a512">Rookie Blue</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64ff2d8c6625510008c5a512">Rookie Blue</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="InfernosobreRodas.br" site_id="64ff2c773efb5100082efb73">Inferno sobre Rodas</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64ff2c773efb5100082efb73">Inferno sobre Rodas</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVSériesSci-Fi.br" site_id="63d2ba2f60bc8f0008981a0e">Pluto TV Séries Sci-Fi</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63d2ba2f60bc8f0008981a0e">Pluto TV Séries Sci-Fi</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ZNation.br" site_id="66b3af48d2d50d00083d6936">Z Nation</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66b3af48d2d50d00083d6936">Z Nation</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVSériesDrama.br" site_id="65f060d84e01740008d7421f">Pluto TV Séries Drama</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65f060d84e01740008d7421f">Pluto TV Séries Drama</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVSériesComédia.br" site_id="655e5bc94261ca000810cb17">Pluto TV Séries Comédia</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="655e5bc94261ca000810cb17">Pluto TV Séries Comédia</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="BETPlutoTV.br" site_id="5ff768b6a4c8b80008498610">BET Pluto TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5ff768b6a4c8b80008498610">BET Pluto TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="BETBeingMaryJane.br" site_id="60a8126a0ac3970007f850fe">BET Being Mary Jane</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="60a8126a0ac3970007f850fe">BET Being Mary Jane</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Younger.br" site_id="613fd0043ffa39000736bb2b">Younger</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="613fd0043ffa39000736bb2b">Younger</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVRetrô.br" site_id="5f1212ad1728050007a523b8">Pluto TV Retrô</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1212ad1728050007a523b8">Pluto TV Retrô</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="AFeiticeira.br" site_id="631fa8dd7f25240007099a40">A Feiticeira</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="631fa8dd7f25240007099a40">A Feiticeira</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="DiffrentStrokesArnold.br" site_id="61f1d27a189ed10007b7393e">Diffrent Strokes Arnold</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61f1d27a189ed10007b7393e">Diffrent Strokes Arnold</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MacGyver.br" site_id="63eb9dc84e83e70008abea92">MacGyver</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63eb9dc84e83e70008abea92">MacGyver</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OHomemqueveiodoCéu.br" site_id="62052d3b4eeb740007fbe125">O Homem que veio do Céu</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62052d3b4eeb740007fbe125">O Homem que veio do Céu</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVDesenhosClássicos.br" site_id="655e5c4d2c46f3000877a54b">Pluto TV Desenhos Clássicos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="655e5c4d2c46f3000877a54b">Pluto TV Desenhos Clássicos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVNovelas.br" site_id="5f512365abe1f50007d3ff56">Pluto TV Novelas</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f512365abe1f50007d3ff56">Pluto TV Novelas</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVDrag.br" site_id="645111f1d8436e00081bb2bd">MTV Drag</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="645111f1d8436e00081bb2bd">MTV Drag</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVPlutoTV.br" site_id="5f1212fb81e85c00077ae9ef">MTV Pluto TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1212fb81e85c00077ae9ef">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVShore.br" site_id="625463563b8ddc0007134aeb">MTV Shore</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="625463563b8ddc0007134aeb">MTV Shore</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVComoEx.br" site_id="61a528267e1b8b0007357920">MTV Com o Ex</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61a528267e1b8b0007357920">MTV Com o Ex</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVJovenseMães.br" site_id="620fdc7d8a36fc000710e3ba">MTV Jovens e Mães</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="620fdc7d8a36fc000710e3ba">MTV Jovens e Mães</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVCatfish.br" site_id="626c2a3502d84a0007cec817">MTV Catfish</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="626c2a3502d84a0007cec817">MTV Catfish</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVAreyoutheOne?.br" site_id="5f6108d8cc331900075e98e4">MTV Are you the One?</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f6108d8cc331900075e98e4">MTV Are you the One?</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVJustTattooofUs.br" site_id="63988b61c8d285000798a22a">MTV Just Tattoo of Us</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63988b61c8d285000798a22a">MTV Just Tattoo of Us</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MasterChef.br" site_id="6077045b6031bd00078de127">MasterChef</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6077045b6031bd00078de127">MasterChef</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SonyOneSharkTankBrasil.br" site_id="6647c0b91050b60008390de4">Sony One Shark Tank Brasil</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6647c0b91050b60008390de4">Sony One Shark Tank Brasil</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVNatureza.br" site_id="5f1213ba0ecebc00070e170f">Pluto TV Natureza</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1213ba0ecebc00070e170f">Pluto TV Natureza</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVPaisagensporStingray.br" site_id="604a8dedbca75b0007b1c753">Pluto TV Paisagens por Stingray</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="604a8dedbca75b0007b1c753">Pluto TV Paisagens por Stingray</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVAnimais.br" site_id="6474aa984cfc2c0008883a92">Pluto TV Animais</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6474aa984cfc2c0008883a92">Pluto TV Animais</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OEncantadordeCães.br" site_id="61099df8cee03b00074b2ecf">O Encantador de Cães</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61099df8cee03b00074b2ecf">O Encantador de Cães</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVTurbo.br" site_id="6014761dfb91870008ea6463">Pluto TV Turbo</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6014761dfb91870008ea6463">Pluto TV Turbo</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCuriosidade.br" site_id="6474aadc8e3c0a0008b98493">Pluto TV Curiosidade</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6474aadc8e3c0a0008b98493">Pluto TV Curiosidade</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVVidaReal.br" site_id="5f32d4d9ec194100070c7449">Pluto TV Vida Real</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f32d4d9ec194100070c7449">Pluto TV Vida Real</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVNegócioFechado.br" site_id="64ad7394798def00087b2bfe">Pluto TV Negócio Fechado</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64ad7394798def00087b2bfe">Pluto TV Negócio Fechado</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVMinhaObsessãoFavorita.br" site_id="61843f5e491af10007f7eefa">Pluto TV Minha Obsessão Favorita</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61843f5e491af10007f7eefa">Pluto TV Minha Obsessão Favorita</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="AcumuladoresObsessivos.br" site_id="656e2a4b4261ca00083aa99e">Acumuladores Obsessivos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="656e2a4b4261ca00083aa99e">Acumuladores Obsessivos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Pronto-socorro:HistóriasDeEmergência.br" site_id="61bb72a7bf8c520007a8fd27">Pronto-socorro: Histórias De Emergência</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61bb72a7bf8c520007a8fd27">Pronto-socorro: Histórias De Emergência</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVMistérios.br" site_id="5fac52f142044f00078e2a51">Pluto TV Mistérios</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5fac52f142044f00078e2a51">Pluto TV Mistérios</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Assombrações.br" site_id="620d1512c7986a0007220213">Assombrações</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="620d1512c7986a0007220213">Assombrações</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="EstadoParanormal.br" site_id="656e2a81954b020008ed17a4">Estado Paranormal</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="656e2a81954b020008ed17a4">Estado Paranormal</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="CaçadoresdeÓvnis.br" site_id="656e2a10954b020008ed167c">Caçadores de Óvnis</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="656e2a10954b020008ed167c">Caçadores de Óvnis</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVQuebrandooTabu.br" site_id="62cd9e5a5c38c00007f5669a">Pluto TV Quebrando o Tabu</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62cd9e5a5c38c00007f5669a">Pluto TV Quebrando o Tabu</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SmithsonianChannelPlutoTV.br" site_id="6298bd10d88ef000073f16b7">Smithsonian Channel Pluto TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6298bd10d88ef000073f16b7">Smithsonian Channel Pluto TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVDocumentários.br" site_id="5f1ef1a8cec6be00072a7ac9">Pluto TV Documentários</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1ef1a8cec6be00072a7ac9">Pluto TV Documentários</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVInvestigação.br" site_id="5f32cf37c9ff2b00082adbc8">Pluto TV Investigação</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f32cf37c9ff2b00082adbc8">Pluto TV Investigação</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OsArquivosdoFBI.br" site_id="620d12a82e8ac50007c269c3">Os Arquivos do FBI</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="620d12a82e8ac50007c269c3">Os Arquivos do FBI</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="DetetivesMédicos.br" site_id="638df93ae2f2a3000737c168">Detetives Médicos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="638df93ae2f2a3000737c168">Detetives Médicos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MistériossemSolução.br" site_id="62b5c5a064163d0007b2efe6">Mistérios sem Solução</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62b5c5a064163d0007b2efe6">Mistérios sem Solução</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="CBSNews.br" site_id="62310f66d5888f0007534342">CBS News</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62310f66d5888f0007534342">CBS News</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="BM&amp;CNews.br" site_id="666c9c60a7efd40008f552f0">BM&amp;C News</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="666c9c60a7efd40008f552f0">BM&amp;C News</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="EuronewsPortuguês.br" site_id="619e6614c9d9650007a2b171">Euronews Português</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="619e6614c9d9650007a2b171">Euronews Português</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVRecordNews.br" site_id="6102e04e9ab1db0007a980a1">Pluto TV Record News</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6102e04e9ab1db0007a980a1">Pluto TV Record News</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="JovemPanNEWS.br" site_id="6317ba014d4d040007227f72">Jovem Pan NEWS</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6317ba014d4d040007227f72">Jovem Pan NEWS</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NEWBrasil.br" site_id="645a99282858cb0008ea8378">NEW Brasil</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="645a99282858cb0008ea8378">NEW Brasil</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVEsportes.br" site_id="5f32d2db0af67400077f29c4">Pluto TV Esportes</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f32d2db0af67400077f29c4">Pluto TV Esportes</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="FIFA+.br" site_id="66997e8d3a4ad20008e50be9">FIFA+</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66997e8d3a4ad20008e50be9">FIFA+</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="RealmadridTV.br" site_id="63dac28760bc8f0008a7654b">Realmadrid TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63dac28760bc8f0008a7654b">Realmadrid TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="DAZNWomen'sFootball.br" site_id="64b02be14ea480000831ec78">DAZN Women's Football</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64b02be14ea480000831ec78">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MAVTVBrasil.br" site_id="65a6818c7bdc8d0008457b21">MAVTV Brasil</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65a6818c7bdc8d0008457b21">MAVTV Brasil</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SFTCombat.br" site_id="6660b636cb3ea10008429c6a">SFT Combat</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6660b636cb3ea10008429c6a">SFT Combat</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="DAZNCombat.br" site_id="64df7ab4dfa32400083c517b">DAZN Combat</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64df7ab4dfa32400083c517b">DAZN Combat</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PFLMMA.br" site_id="64f6180130ab3300083d896b">PFL MMA</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64f6180130ab3300083d896b">PFL MMA</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="BilliardTV.br" site_id="664f766741af640008e59cc9">Billiard TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="664f766741af640008e59cc9">Billiard TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="WorldPokerTour.br" site_id="63eba66da8b2270008436b10">World Poker Tour</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63eba66da8b2270008436b10">World Poker Tour</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SouthPark:ColeçãodeNatal.br" site_id="671125d27d5da50008d6cdaf">South Park: Coleção de Natal</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="671125d27d5da50008d6cdaf">South Park: Coleção de Natal</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SouthPark:ColeçãoCartman.br" site_id="65df71008b24c80008f04281">South Park: Coleção Cartman</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65df71008b24c80008f04281">South Park: Coleção Cartman</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SouthPark:ColeçãoKenny.br" site_id="65df704366eec8000898e32f">South Park: Coleção Kenny</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65df704366eec8000898e32f">South Park: Coleção Kenny</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SouthPark:ColeçãoKyle.br" site_id="65df713dec9fda0008b7a81d">South Park: Coleção Kyle</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65df713dec9fda0008b7a81d">South Park: Coleção Kyle</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SouthPark:ColeçãoStan.br" site_id="65df70b0f7f0af0008c3b316">South Park: Coleção Stan</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65df70b0f7f0af0008c3b316">South Park: Coleção Stan</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ComedyCentralSouthPark.br" site_id="609ae66b359b270007869ff1">Comedy Central South Park</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="609ae66b359b270007869ff1">Comedy Central South Park</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVComédia.br" site_id="6001f3018502100007f528ac">Pluto TV Comédia</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6001f3018502100007f528ac">Pluto TV Comédia</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ComedyCentralPlutoTV.br" site_id="5f357e91b18f0b00073583d2">Comedy Central Pluto TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f357e91b18f0b00073583d2">Comedy Central Pluto TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PortadosFundos.br" site_id="5f36f2346ede750007332d11">Porta dos Fundos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f36f2346ede750007332d11">Porta dos Fundos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="FailArmy.br" site_id="5f5141c1605ddf000748eb1b">FailArmy</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f5141c1605ddf000748eb1b">FailArmy</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ThePetCollective.br" site_id="5f515ebac01c0f00080e8439">The Pet Collective</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f515ebac01c0f00080e8439">The Pet Collective</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="TVCultura.br" site_id="62e010e6cd663f0007e57dc8">TV Cultura</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62e010e6cd663f0007e57dc8">TV Cultura</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="RedeTV!.br" site_id="6048fc47a44e540007745d2b">RedeTV!</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6048fc47a44e540007745d2b">RedeTV!</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SalonLine.br" site_id="66a7d0e0cd0d310008448610">Salon Line</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66a7d0e0cd0d310008448610">Salon Line</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVViagens.br" site_id="5f32d432d612e50007e56133">Pluto TV Viagens</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f32d432d612e50007e56133">Pluto TV Viagens</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCozinha.br" site_id="5f1ef23020a5ac0007e5e8ea">Pluto TV Cozinha</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1ef23020a5ac0007e5e8ea">Pluto TV Cozinha</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVKFOOD.br" site_id="633ee9ba83c08f00076b60a6">Pluto TV KFOOD</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="633ee9ba83c08f00076b60a6">Pluto TV KFOOD</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Tastemade.br" site_id="5fd1419a3b4f4b000773ba85">Tastemade</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5fd1419a3b4f4b000773ba85">Tastemade</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="DiaTV.br" site_id="662156805a31f70013dba21c">DiaTV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="662156805a31f70013dba21c">DiaTV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="CultneTV.br" site_id="66296e755a402e00086a2c47">Cultne TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66296e755a402e00086a2c47">Cultne TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVAnime.br" site_id="5f12136385bccc00070142ed">Pluto TV Anime</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f12136385bccc00070142ed">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVAnimeAção.br" site_id="604b79c558393100078faeef">Pluto TV Anime Ação</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="604b79c558393100078faeef">Pluto TV Anime Ação</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Naruto.br" site_id="5f6df5a173d7340007c559f7">Naruto</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f6df5a173d7340007c559f7">Naruto</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NarutoShippuden.br" site_id="64c92f965580090008084968">Naruto Shippuden</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64c92f965580090008084968">Naruto Shippuden</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Boruto:NarutoNextGenerations.br" site_id="656f389c3944b60008e5bdab">Boruto: Naruto Next Generations</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="656f389c3944b60008e5bdab">Boruto: Naruto Next Generations</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="HunterxHunter.br" site_id="65d9167818036500080e8780">Hunter x Hunter</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="65d9167818036500080e8780">Hunter x Hunter</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="DeathNote.br" site_id="625464a945b6a200079257d1">Death Note</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="625464a945b6a200079257d1">Death Note</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="JoJosBizarreAdventure.br" site_id="66c7982f6838ee00085f0d24">JoJos Bizarre Adventure</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66c7982f6838ee00085f0d24">JoJos Bizarre Adventure</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="SuperOnze.br" site_id="63988c2750108d00072e2686">Super Onze</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63988c2750108d00072e2686">Super Onze</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Yu-Gi-Oh.br" site_id="63988a50be012600070f5db3">Yu-Gi-Oh</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63988a50be012600070f5db3">Yu-Gi-Oh</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="CaptainTsubasa.br" site_id="646663b01593940008990a57">Captain Tsubasa</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="646663b01593940008990a57">Captain Tsubasa</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Beyblade.br" site_id="633dc392e0282400071b0d39">Beyblade</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="633dc392e0282400071b0d39">Beyblade</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Inuyasha.br" site_id="66b26681d2d50d00083abe8b">Inuyasha</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66b26681d2d50d00083abe8b">Inuyasha</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OnePiece.br" site_id="624b1c8d4321e200073ee421">One Piece</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="624b1c8d4321e200073ee421">One Piece</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Tokusato.br" site_id="5ff609de50ab210008025c1b">Tokusato</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5ff609de50ab210008025c1b">Tokusato</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVGeekeTech.br" site_id="605cc4de7ff3c50007be0f65">Pluto TV Geek e Tech</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="605cc4de7ff3c50007be0f65">Pluto TV Geek e Tech</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ManualdoMundo.br" site_id="664df5221dc48600087592b1">Manual do Mundo</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="664df5221dc48600087592b1">Manual do Mundo</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVGamingporUbisoft.br" site_id="64c815e8a1c6130008fef928">Pluto TV Gaming por Ubisoft</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64c815e8a1c6130008fef928">Pluto TV Gaming por Ubisoft</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NickTeen.br" site_id="60f5fabf0721880007cd50e3">Nick Teen</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="60f5fabf0721880007cd50e3">Nick Teen</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NickelodeoniCarly.br" site_id="620ff46e0a576e0007dc2f89">Nickelodeon iCarly</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="620ff46e0a576e0007dc2f89">Nickelodeon iCarly</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Kenan&amp;Kel.br" site_id="5ffcc5130fd98c0007f2e216">Kenan &amp; Kel</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5ffcc5130fd98c0007f2e216">Kenan &amp; Kel</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="ClubedoTerror.br" site_id="64e501eec630a900088ed0f8">Clube do Terror</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64e501eec630a900088ed0f8">Clube do Terror</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PAWPatrolPatrulhaCanina.br" site_id="6495c7ad115d060008bf6df0">PAW Patrol Patrulha Canina</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6495c7ad115d060008bf6df0">PAW Patrol Patrulha Canina</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NickJr.Club.br" site_id="5f121460b73ac6000719fbaf">Nick Jr. Club</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f121460b73ac6000719fbaf">Nick Jr. Club</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Dora,AAventureira.br" site_id="656e28dd57fe4a0008819c3d">Dora, A Aventureira</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="656e28dd57fe4a0008819c3d">Dora, A Aventureira</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="BabySharkTV.br" site_id="63da6bcd60bc8f0008a5d364">Baby Shark TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63da6bcd60bc8f0008a5d364">Baby Shark TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Babyfirst.br" site_id="5f4fb4cf605ddf000748e16f">Babyfirst</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f4fb4cf605ddf000748e16f">Babyfirst</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVJunior.br" site_id="5f12141b146d760007934ea7">Pluto TV Junior</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f12141b146d760007934ea7">Pluto TV Junior</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Teletubbies.br" site_id="64e50055286f6b000838c067">Teletubbies</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="64e50055286f6b000838c067">Teletubbies</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Cocoricó.br" site_id="62d969fd8451a30007f0fd94">Cocoricó</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62d969fd8451a30007f0fd94">Cocoricó</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OReinoInfantil.br" site_id="5f5c216df68f920007888315">O Reino Infantil</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f5c216df68f920007888315">O Reino Infantil</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NickelodeonClássico.br" site_id="5f12151794c1800007a8ae63">Nickelodeon Clássico</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f12151794c1800007a8ae63">Nickelodeon Clássico</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="HeyArnold!.br" site_id="66b4e477d512590008ca6849">Hey Arnold!</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66b4e477d512590008ca6849">Hey Arnold!</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Rugrats.br" site_id="61f2c6969fcc3800076ef8af">Rugrats</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="61f2c6969fcc3800076ef8af">Rugrats</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NickelodeonRocketPower.br" site_id="6202a7fcfb1b100008811f54">Nickelodeon Rocket Power</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6202a7fcfb1b100008811f54">Nickelodeon Rocket Power</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="NickelodeonPlutoTV.br" site_id="645951c0e94c38000802d2cb">Nickelodeon Pluto TV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="645951c0e94c38000802d2cb">Nickelodeon Pluto TV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="BobEsponjaCalçaQuadrada.br" site_id="62545c0b002f4b0007688b61">Bob Esponja Calça Quadrada</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62545c0b002f4b0007688b61">Bob Esponja Calça Quadrada</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OsPadrinhosMágicos.br" site_id="63221e41af69b500076f84e7">Os Padrinhos Mágicos</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63221e41af69b500076f84e7">Os Padrinhos Mágicos</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="AsTartarugasNinja.br" site_id="63dd5c904e83e700088fb68a">As Tartarugas Ninja</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63dd5c904e83e700088fb68a">As Tartarugas Ninja</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVKids.br" site_id="5f1214a637c6fd00079c652f">Pluto TV Kids</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f1214a637c6fd00079c652f">Pluto TV Kids</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVKidsClub.br" site_id="66c8cae7fed35b0008580ec0">Pluto TV Kids Club</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66c8cae7fed35b0008580ec0">Pluto TV Kids Club</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="OggyeasBaratasTontas.br" site_id="63221bafdc6e110007b50270">Oggy e as Baratas Tontas</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63221bafdc6e110007b50270">Oggy e as Baratas Tontas</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Moranguinho.br" site_id="63eba189c111bc0008ff59c5">Moranguinho</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="63eba189c111bc0008ff59c5">Moranguinho</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="TurmadaMônica.br" site_id="5f997e44949bc70007a6941e">Turma da Mônica</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="5f997e44949bc70007a6941e">Turma da Mônica</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVCineminha.br" site_id="66c8ca1280a0af00085b5b83">Pluto TV Cineminha</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66c8ca1280a0af00085b5b83">Pluto TV Cineminha</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVBiggestPop.br" site_id="6047fbdbbb776a0007e7f2ff">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6047fbdbbb776a0007e7f2ff">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVClassic.br" site_id="66a01dcb8561260008b0a41d">MTV Classic</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66a01dcb8561260008b0a41d">MTV Classic</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVRocks.br" site_id="66a01e07d2d50d0008100d6a">MTV Rocks</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66a01e07d2d50d0008100d6a">MTV Rocks</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVSpankin'New.br" site_id="6047ff2e5e61cf000784e4da">MTV Spankin' New</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="6047ff2e5e61cf000784e4da">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="MTVFlowLatino.br" site_id="62b219eed88ef00007403c2c">MTV Flow Latino</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="62b219eed88ef00007403c2c">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="Yo!MTV.br" site_id="66a01d84fe11e500084aefc1">Yo! MTV</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="66a01d84fe11e500084aefc1">Yo! MTV</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVShowsporStingray.br" site_id="604b91e0692f770007d9f33f">Pluto TV Shows por Stingray</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="604b91e0692f770007d9f33f">Pluto TV Shows por Stingray</channel>
<channel site="pluto.tv" lang="pt" xmltv_id="PlutoTVKaraokêporStingray.br" site_id="604b99d633a72b00078e05ad">Pluto TV Karaokê por Stingray</channel> <channel site="pluto.tv" lang="pt" xmltv_id="" site_id="604b99d633a72b00078e05ad">Pluto TV Karaokê por Stingray</channel>
</channels> </channels>

View file

@ -1,250 +1,250 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAdventCalendar.ca" site_id="6712256349c4060008e9e0f0">Pluto TV Advent Calendar</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6712256349c4060008e9e0f0">Pluto TV Advent Calendar</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Christmas365.ca" site_id="62fb6d4308f5ec0007453c09">Christmas 365</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb6d4308f5ec0007453c09">Christmas 365</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreChristmas365.ca" site_id="654a47364d6d8f00084e93da">More Christmas 365</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654a47364d6d8f00084e93da">More Christmas 365</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheGreatChristmasLightFight.ca" site_id="66fabb00d8eb45000862415c">The Great Christmas Light Fight</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66fabb00d8eb45000862415c">The Great Christmas Light Fight</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVXmas.ca" site_id="6541004f67bd1a0008606f61">MTV Xmas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6541004f67bd1a0008606f61">MTV Xmas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StingrayHolidayscapes.ca" site_id="6728c70fc7626f0008b27f52">Stingray Holidayscapes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6728c70fc7626f0008b27f52">Stingray Holidayscapes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FestiveFireplace.ca" site_id="63565e744d02930007bf2818">Festive Fireplace</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63565e744d02930007bf2818">Festive Fireplace</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CracklingFireplace.ca" site_id="63565d76232dd10007bba40c">Crackling Fireplace</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63565d76232dd10007bba40c">Crackling Fireplace</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHibernationMovies.ca" site_id="66fe4f71b2ffb100080baae3">Pluto TV Hibernation Movies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66fe4f71b2ffb100080baae3">Pluto TV Hibernation Movies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVComedyMovies.ca" site_id="62ea3d24b8e02600071fa296">Pluto TV Comedy Movies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea3d24b8e02600071fa296">Pluto TV Comedy Movies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVActionMovies.ca" site_id="62ea3c2e4823db00072788ed">Pluto TV Action Movies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea3c2e4823db00072788ed">Pluto TV Action Movies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVDramaMovies.ca" site_id="62bdb0bcd707b9000739d2e5">Pluto TV Drama Movies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb0bcd707b9000739d2e5">Pluto TV Drama Movies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MovieSpherebyLionsgate.ca" site_id="64a3d96f060e830008af6745">MovieSphere by Lionsgate</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64a3d96f060e830008af6745">MovieSphere by Lionsgate</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ShadesofBlack.ca" site_id="63920159db0dea0007dd9932">Shades of Black</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63920159db0dea0007dd9932">Shades of Black</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Romance365.ca" site_id="62fb6cd97b90e60007bc318a">Romance 365</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb6cd97b90e60007bc318a">Romance 365</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoClassicMovieWesterns.ca" site_id="66dad50215d2c60008d7afbd">Pluto Classic Movie Westerns</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66dad50215d2c60008d7afbd">Pluto Classic Movie Westerns</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Thrillers365.ca" site_id="62fb6da41afad500077e9178">Thrillers 365</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb6da41afad500077e9178">Thrillers 365</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHorror.ca" site_id="62ea3f8a38acc80007072d26">Pluto TV Horror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea3f8a38acc80007072d26">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Who'stheBoss.ca" site_id="64b52ec24ea4800008370651">Who's the Boss</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64b52ec24ea4800008370651">Who's the Boss</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Frasier.ca" site_id="62f4f90e39183b000769f12b">Frasier</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f4f90e39183b000769f12b">Frasier</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cheers.ca" site_id="62bdb7f0db2eb30007376d4d">Cheers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb7f0db2eb30007376d4d">Cheers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KingofQueens.ca" site_id="62f4f414c2ba130007f8b24e">King of Queens</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f4f414c2ba130007f8b24e">King of Queens</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheConners.ca" site_id="66e2a94d167a8b000813485d">The Conners</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e2a94d167a8b000813485d">The Conners</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVComedy.ca" site_id="62e92178946c8000079a3160">Pluto TV Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92178946c8000079a3160">Pluto TV Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MorePlutoTVComedy.ca" site_id="62e91c3add66e00007eeb24c">More Pluto TV Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91c3add66e00007eeb24c">More Pluto TV Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Married...withChildren.ca" site_id="66bb3212fe11e5000883ea6b">Married... with Children</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66bb3212fe11e5000883ea6b">Married... with Children</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AngerManagement.ca" site_id="65cf8bdaa25d5e00081e1e5d">Anger Management</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65cf8bdaa25d5e00081e1e5d">Anger Management</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AreWeThereYet?.ca" site_id="65cf8b9328730900087c5324">Are We There Yet?</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65cf8b9328730900087c5324">Are We There Yet?</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheRedGreenChannel.ca" site_id="63565a6de3d057000783bb1c">The Red Green Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63565a6de3d057000783bb1c">The Red Green Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FailArmy.ca" site_id="62bdb5500c21270007218ce1">FailArmy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb5500c21270007218ce1">FailArmy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVRidiculousness.ca" site_id="64f9cccf110545000837912e">MTV Ridiculousness</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f9cccf110545000837912e">MTV Ridiculousness</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentral.ca" site_id="64f8a408bd341e000818fcda">Comedy Central</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f8a408bd341e000818fcda">Comedy Central</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralStand-Up.ca" site_id="64f8a9ccd661bb00081bd93a">Comedy Central Stand-Up</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f8a9ccd661bb00081bd93a">Comedy Central Stand-Up</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralAnimation.ca" site_id="64f8a949f5b5e4000862467c">Comedy Central Animation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f8a949f5b5e4000862467c">Comedy Central Animation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark.ca" site_id="62bdb1c5e25122000798ac79">South Park</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb1c5e25122000798ac79">South Park</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark:HolidayCollection.ca" site_id="66fced13a07d1a0008e80fc2">South Park: Holiday Collection</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66fced13a07d1a0008e80fc2">South Park: Holiday Collection</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark:CartmanCollection.ca" site_id="65df4934f7f0af0008c32545">South Park: Cartman Collection</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65df4934f7f0af0008c32545">South Park: Cartman Collection</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark:KennyCollection.ca" site_id="65df47f428730900089f83ac">South Park: Kenny Collection</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65df47f428730900089f83ac">South Park: Kenny Collection</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark:KyleCollection.ca" site_id="65df49b30d45610008172c5b">South Park: Kyle Collection</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65df49b30d45610008172c5b">South Park: Kyle Collection</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark:StanCollection.ca" site_id="65df48ba28730900089f8480">South Park: Stan Collection</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65df48ba28730900089f8480">South Park: Stan Collection</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthParkEnFrançais.ca" site_id="62bdb919d36cbd0007e6ab8a">South Park En Français</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb919d36cbd0007e6ab8a">South Park En Français</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Three'sCompany.ca" site_id="64ca723a2bc49300081a8966">Three's Company</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64ca723a2bc49300081a8966">Three's Company</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Taxi.ca" site_id="62e9186f8b685d000773cf58">Taxi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e9186f8b685d000773cf58">Taxi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVClassicTVFamilies.ca" site_id="62e91af00c43540007f2bb43">Pluto TV Classic TV Families</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91af00c43540007f2bb43">Pluto TV Classic TV Families</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheLoveBoat.ca" site_id="62e91563ce7ce300076f917e">The Love Boat</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91563ce7ce300076f917e">The Love Boat</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HappyDays.ca" site_id="62e917b5e354cf0007b97a67">Happy Days</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e917b5e354cf0007b97a67">Happy Days</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheBeverlyHillbillies.ca" site_id="6565fefdc917a50008485cc6">The Beverly Hillbillies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565fefdc917a50008485cc6">The Beverly Hillbillies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAndyGriffithShow.ca" site_id="62e9145ec07f2a00070e68dc">The Andy Griffith Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e9145ec07f2a00070e68dc">The Andy Griffith Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheDickVanDykeShow.ca" site_id="62e91384210bec0007ba714c">The Dick Van Dyke Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91384210bec0007ba714c">The Dick Van Dyke Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ILoveLucy.ca" site_id="63a2f1dda0d69700078b7cba">I Love Lucy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63a2f1dda0d69700078b7cba">I Love Lucy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheCarolBurnettShow.ca" site_id="62e91c8933682c000754fc45">The Carol Burnett Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91c8933682c000754fc45">The Carol Burnett Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JohnnyCarsonTV.ca" site_id="64ddcf8e9c1e390008349fc8">Johnny Carson TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64ddcf8e9c1e390008349fc8">Johnny Carson TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheEdSullivanShow.ca" site_id="62e91da1f07afa0007ffccfc">The Ed Sullivan Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91da1f07afa0007ffccfc">The Ed Sullivan Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Matlock.ca" site_id="63da365f60bc8f0008a50f44">Matlock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63da365f60bc8f0008a50f44">Matlock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PerryMason.ca" site_id="63e20bd160bc8f0008b4c949">Perry Mason</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63e20bd160bc8f0008b4c949">Perry Mason</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRetroCrimeDrama.ca" site_id="630f1e6073bd1800082107f0">Pluto TV Retro Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="630f1e6073bd1800082107f0">Pluto TV Retro Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MissionImpossible.ca" site_id="62ea43aa0c43540007f2db96">Mission Impossible</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea43aa0c43540007f2db96">Mission Impossible</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Gunsmoke.ca" site_id="62e916affb29c60007211c8a">Gunsmoke</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e916affb29c60007211c8a">Gunsmoke</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Rawhide.ca" site_id="65660223635c3c00086c2578">Rawhide</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65660223635c3c00086c2578">Rawhide</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Lifeamp;LegendofWyattEarp.ca" site_id="62b97c5f0d8c8e0007cf48b9">Life amp; Legend of Wyatt Earp</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62b97c5f0d8c8e0007cf48b9">Life amp; Legend of Wyatt Earp</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVWesterns.ca" site_id="62bdacc96a3751000811842d">Pluto TV Westerns</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdacc96a3751000811842d">Pluto TV Westerns</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WalkerTexasRanger.ca" site_id="635659445b4c4700076d2ad1">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="635659445b4c4700076d2ad1">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI.ca" site_id="62e9224f41d5e100076db2b6">CSI</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e9224f41d5e100076db2b6">CSI</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:Miami.ca" site_id="63f4e0e63fde020007835cbe">CSI: Miami</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63f4e0e63fde020007835cbe">CSI: Miami</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:NY.ca" site_id="63f4e11c7533d80008a1d5f0">CSI: NY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63f4e11c7533d80008a1d5f0">CSI: NY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NCIS.ca" site_id="62f4f5de1c100100075665ef">NCIS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f4f5de1c100100075665ef">NCIS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NCIS:LosAngeles.ca" site_id="66a106c8a79dea0008aa5ef3">NCIS: Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66a106c8a79dea0008aa5ef3">NCIS: Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreNCIS.ca" site_id="62e949f0cec1e60007f03314">More NCIS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e949f0cec1e60007f03314">More NCIS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JAG.ca" site_id="66a105f4a79dea0008aa5e0f">JAG</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66a105f4a79dea0008aa5e0f">JAG</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HawaiiFive-0.ca" site_id="655f2977635c3c00085ce819">Hawaii Five-0</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="655f2977635c3c00085ce819">Hawaii Five-0</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NashBridges.ca" site_id="666021cccb3ea10008406866">Nash Bridges</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666021cccb3ea10008406866">Nash Bridges</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV80'sAction.ca" site_id="66d717c6abec540008ba7eb5">Pluto TV 80's Action</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66d717c6abec540008ba7eb5">Pluto TV 80's Action</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCrimeDrama.ca" site_id="62e92708a7ce600007b2676a">Pluto TV Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92708a7ce600007b2676a">Pluto TV Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DiagnosisMurder.ca" site_id="65fd548f29adfd00089c662c">Diagnosis Murder</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65fd548f29adfd00089c662c">Diagnosis Murder</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MidsomerMurders.ca" site_id="62e92447ea1e2a000735ed33">Midsomer Murders</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92447ea1e2a000735ed33">Midsomer Murders</channel>
<channel site="pluto.tv" lang="en" xmltv_id="48Hours.ca" site_id="62e925bc68d18a00077bb990">48 Hours</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e925bc68d18a00077bb990">48 Hours</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TotalCrime.ca" site_id="62e93b8eb8e02600071f8b1d">Total Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e93b8eb8e02600071f8b1d">Total Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTrueCrime.ca" site_id="62e9289f8d467f0007fbc701">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e9289f8d467f0007fbc701">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crimeamp;Justice.ca" site_id="6601948129adfd0008a1c0ba">Crime amp; Justice</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6601948129adfd0008a1c0ba">Crime amp; Justice</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ForensicFiles.ca" site_id="62e92392a3e6270007f562e8">Forensic Files</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92392a3e6270007f562e8">Forensic Files</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UnsolvedMysteries.ca" site_id="62e924f2be69bc0007b7d53d">Unsolved Mysteries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e924f2be69bc0007b7d53d">Unsolved Mysteries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FBIFiles.ca" site_id="62bdaa32a1b2fd00076693e8">FBI Files</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdaa32a1b2fd00076693e8">FBI Files</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Aftershock.ca" site_id="63e36b374e83e70008987c58">Aftershock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63e36b374e83e70008987c58">Aftershock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheNewDetectives.ca" site_id="62bdabbc5611f2000761ca30">The New Detectives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdabbc5611f2000761ca30">The New Detectives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CrimeFiles.ca" site_id="655f2ce5954b020008c8352d">Crime Files</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="655f2ce5954b020008c8352d">Crime Files</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BustedattheBorder.ca" site_id="62fb9c4539183b00076a3875">Busted at the Border</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb9c4539183b00076a3875">Busted at the Border</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CarChase.ca" site_id="65b384020cb1a1000880dee9">Car Chase</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65b384020cb1a1000880dee9">Car Chase</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrek:TheOriginalSeries.ca" site_id="66601e338ea5560008f7820e">Star Trek: The Original Series</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66601e338ea5560008f7820e">Star Trek: The Original Series</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrek:TheNextGeneration.ca" site_id="66601d838ce3110008a9d7bf">Star Trek: The Next Generation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66601d838ce3110008a9d7bf">Star Trek: The Next Generation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoctorWhoClassic.ca" site_id="62bdad934d73d50007a82472">Doctor Who Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdad934d73d50007a82472">Doctor Who Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSci-fi.ca" site_id="66166cb1307fa30008f275e7">Pluto TV Sci-fi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66166cb1307fa30008f275e7">Pluto TV Sci-fi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NonstopSci-fi.ca" site_id="65cf90df0d45610008f3dbe0">Nonstop Sci-fi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65cf90df0d45610008f3dbe0">Nonstop Sci-fi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HauntTV.ca" site_id="63934c218ef524000757b122">HauntTV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63934c218ef524000757b122">HauntTV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GhostHunters.ca" site_id="65cf8ace332fec00081e7ea2">Ghost Hunters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65cf8ace332fec00081e7ea2">Ghost Hunters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVParanormal.ca" site_id="62e92a58f3e4290007290c96">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92a58f3e4290007290c96">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Baywatch.ca" site_id="62bdae69a47b6c00076af298">Baywatch</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdae69a47b6c00076af298">Baywatch</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Nashville.ca" site_id="65cf8d7428730900087c5907">Nashville</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65cf8d7428730900087c5907">Nashville</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dynasty.ca" site_id="62e919ca865c590007ecd0bd">Dynasty</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e919ca865c590007ecd0bd">Dynasty</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTrulyCanadian.ca" site_id="6479c171536e0c0008942590">Pluto TV Truly Canadian</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6479c171536e0c0008942590">Pluto TV Truly Canadian</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NonstopDrama.ca" site_id="62fb9ade112ca70007d8441d">Nonstop Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb9ade112ca70007d8441d">Nonstop Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DocMartin.ca" site_id="62e922f6675f71000736db3b">Doc Martin</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e922f6675f71000736db3b">Doc Martin</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVReality.ca" site_id="64f89fcfd661bb00081ba45c">MTV Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f89fcfd661bb00081ba45c">MTV Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVDating.ca" site_id="64f8a0c230ab3300084369b8">MTV Dating</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f8a0c230ab3300084369b8">MTV Dating</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Catfish.ca" site_id="64f8a2a23a0d700008a6ed7b">Catfish</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f8a2a23a0d700008a6ed7b">Catfish</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DogTheBountyHunter.ca" site_id="6540fee72cf13100085d5a18">Dog The Bounty Hunter</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6540fee72cf13100085d5a18">Dog The Bounty Hunter</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DanceMoms.ca" site_id="6540fec1770cf1000866b65b">Dance Moms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6540fec1770cf1000866b65b">Dance Moms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cheaters.ca" site_id="6582f7d612d5ee00089a663d">Cheaters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6582f7d612d5ee00089a663d">Cheaters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BarRescue.ca" site_id="655f2ee6c0fc88000877d26c">Bar Rescue</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="655f2ee6c0fc88000877d26c">Bar Rescue</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AmericanPickers.ca" site_id="6408ae8f9b39550008caf94f">American Pickers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6408ae8f9b39550008caf94f">American Pickers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AxMen.ca" site_id="6540fe4bbdf3cf0008aa2cdd">Ax Men</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6540fe4bbdf3cf0008aa2cdd">Ax Men</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DuckDynasty.ca" site_id="6540fe6fbfbaec0008a583ae">Duck Dynasty</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6540fe6fbfbaec0008a583ae">Duck Dynasty</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BondiRescue.ca" site_id="66166989635c7500084105a2">Bondi Rescue</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66166989635c7500084105a2">Bondi Rescue</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopGear.ca" site_id="638e10220aa6a6000726979f">Top Gear</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="638e10220aa6a6000726979f">Top Gear</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RiverMonsters.ca" site_id="65367e914f123d000877d021">River Monsters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65367e914f123d000877d021">River Monsters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheChallenge.ca" site_id="64f8a22a3efb510008245df0">The Challenge</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64f8a22a3efb510008245df0">The Challenge</channel>
<channel site="pluto.tv" lang="en" xmltv_id="InkMaster.ca" site_id="655f2d713944b60008bc7e90">Ink Master</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="655f2d713944b60008bc7e90">Ink Master</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BigBrotherCanada.ca" site_id="655f30c19d5ac4000816e9b3">Big Brother Canada</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="655f30c19d5ac4000816e9b3">Big Brother Canada</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GordonRamsay'sHell'sKitchen.ca" site_id="62ea45010d0611000839868c">Gordon Ramsay's Hell's Kitchen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea45010d0611000839868c">Gordon Ramsay's Hell's Kitchen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="IronChef.ca" site_id="6582f8dadfed030008e5a93d">Iron Chef</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6582f8dadfed030008e5a93d">Iron Chef</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KitchenBattles.ca" site_id="62fb66c867976d0007647e54">Kitchen Battles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb66c867976d0007647e54">Kitchen Battles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NonstopChop.ca" site_id="62fb675fc9f6da0007b36888">Nonstop Chop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb675fc9f6da0007b36888">Nonstop Chop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Wipeout.ca" site_id="62e92a6f087606000767eae2">Wipeout</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92a6f087606000767eae2">Wipeout</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NinjaWarrior.ca" site_id="66d7152b167a8b0008fd3569">Ninja Warrior</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66d7152b167a8b0008fd3569">Ninja Warrior</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FearFactor.ca" site_id="63482674df87730007656044">Fear Factor</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63482674df87730007656044">Fear Factor</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePriceisRight:TheBarkerEra.ca" site_id="64c220e15dc1660008a79c96">The Price is Right: The Barker Era</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c220e15dc1660008a79c96">The Price is Right: The Barker Era</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePriceisRight.ca" site_id="64c2214c2a7f2200089a0c4b">The Price is Right</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c2214c2a7f2200089a0c4b">The Price is Right</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyFeudClassic.ca" site_id="64c2222fb0cf5c0008288c4f">Family Feud Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c2222fb0cf5c0008288c4f">Family Feud Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Let'sMakeadeal.ca" site_id="64c2201a2a7f2200089a0af2">Let's Make a deal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c2201a2a7f2200089a0af2">Let's Make a deal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DealornoDeal.ca" site_id="62e92951c2db99000787c00d">Deal or no Deal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92951c2db99000787c00d">Deal or no Deal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SupermarketSweep.ca" site_id="62e92b66f24d2800087777ec">Supermarket Sweep</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92b66f24d2800087777ec">Supermarket Sweep</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GameTVGo.ca" site_id="6639e6edf9992200081e2855">GameTVGo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6639e6edf9992200081e2855">GameTVGo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GameShowCentral.ca" site_id="62e90e8cb05d2b0007f10a61">Game Show Central</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e90e8cb05d2b0007f10a61">Game Show Central</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheGrahamNortonShow.ca" site_id="66166ce7aec96800080f6bd3">The Graham Norton Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66166ce7aec96800080f6bd3">The Graham Norton Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HotOnes.ca" site_id="65a803b607e03a0008925118">Hot Ones</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a803b607e03a0008925118">Hot Ones</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OutTVProud.ca" site_id="6368e15a51e9560007c592ed">Out TV Proud</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6368e15a51e9560007c592ed">Out TV Proud</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DesiPlayTV.ca" site_id="63c7c122808b7400075c070f">Desi Play TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63c7c122808b7400075c070f">Desi Play TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AsianCrush.ca" site_id="65e9ceb98145cb00084d64bc">Asian Crush</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65e9ceb98145cb00084d64bc">Asian Crush</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TVBPearlDrama.ca" site_id="666815a2eab8140008016adc">TVB Pearl Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666815a2eab8140008016adc">TVB Pearl Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVDocumentaries.ca" site_id="63f87df87533d80008ab9b4c">Pluto TV Documentaries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63f87df87533d80008ab9b4c">Pluto TV Documentaries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NFB.ca" site_id="668662cb74f5ec0008123403">NFB</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668662cb74f5ec0008123403">NFB</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BeyondHistory.ca" site_id="62fb9844db5a4a0007ebc2a3">Beyond History</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb9844db5a4a0007ebc2a3">Beyond History</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Declassified.ca" site_id="62bdaf9cf1bdc500073a8bcb">Declassified</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdaf9cf1bdc500073a8bcb">Declassified</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTalkTV.ca" site_id="65e9dcd81803650008303d00">StarTalk TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65e9dcd81803650008303d00">StarTalk TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ModernMarvels.ca" site_id="6540ff2d770cf1000866b90a">Modern Marvels</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6540ff2d770cf1000866b90a">Modern Marvels</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MassiveMakers.ca" site_id="66166ccaaec96800080f6b59">Massive Makers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66166ccaaec96800080f6b59">Massive Makers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealDisasterChannel.ca" site_id="64e89cfc9c1e3900084ca663">Real Disaster Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64e89cfc9c1e3900084ca663">Real Disaster Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAdventure.ca" site_id="653bdb0fbdf3cf00089cc395">Pluto TV Adventure</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="653bdb0fbdf3cf00089cc395">Pluto TV Adventure</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BestofTheDrewBarrymoreShow.ca" site_id="6310cbee5a8ad300070fdb7c">Best of The Drew Barrymore Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6310cbee5a8ad300070fdb7c">Best of The Drew Barrymore Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BestofDr.Phil.ca" site_id="666815f24b9fb400083f7e31">Best of Dr. Phil</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666815f24b9fb400083f7e31">Best of Dr. Phil</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJudgeJudyChannel.ca" site_id="62e92e536f28870007fa9b3a">The Judge Judy Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92e536f28870007fa9b3a">The Judge Judy Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Nosey.ca" site_id="62e93d0a80d8d10008a0181e">Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e93d0a80d8d10008a0181e">Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ConfessbyNosey.ca" site_id="638e0f4832494900074481e7">Confess by Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="638e0f4832494900074481e7">Confess by Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheBobRossChannel.ca" site_id="64b82075e4391c0008c3c1fe">The Bob Ross Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64b82075e4391c0008c3c1fe">The Bob Ross Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsNational.ca" site_id="62cbef9ebb857100072fc187">Global News National</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbef9ebb857100072fc187">Global News National</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBCNews.ca" site_id="6536725167bd1a00084481bc">CBC News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6536725167bd1a00084481bc">CBC News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Radio-CanadaINFO.ca" site_id="62cc1e1e0d0611000837dc1d">Radio-Canada INFO</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cc1e1e0d0611000837dc1d">Radio-Canada INFO</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWeatherNetwork.ca" site_id="63da370e2e477400081cf8b6">The Weather Network</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63da370e2e477400081cf8b6">The Weather Network</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNews24/7.ca" site_id="6350fdd266e9ea0007bedec5">CBS News 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6350fdd266e9ea0007bedec5">CBS News 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNFast.ca" site_id="66c45c274f25dd00092739ee">CNN Fast</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66c45c274f25dd00092739ee">CNN Fast</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Reuters.ca" site_id="65bcc9ac33ea8600086883ed">Reuters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65bcc9ac33ea8600086883ed">Reuters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BloombergTV+.ca" site_id="62b976b93279cb000772c6f9">Bloomberg TV+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62b976b93279cb000772c6f9">Bloomberg TV+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsToronto.ca" site_id="62cc00b3b821cf00070f82c3">Global News Toronto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cc00b3b821cf00070f82c3">Global News Toronto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBCNewsToronto.ca" site_id="6536721dbfbaec00088687c0">CBC News Toronto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6536721dbfbaec00088687c0">CBC News Toronto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsBC.ca" site_id="62cbf063257170000724590c">Global News BC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbf063257170000724590c">Global News BC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBCNewsBritishColumbia.ca" site_id="66a8f01914a2bb00084dd86c">CBC News British Columbia</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66a8f01914a2bb00084dd86c">CBC News British Columbia</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsMontreal.ca" site_id="62cbfbd6ad95670007f567af">Global News Montreal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbfbd6ad95670007f567af">Global News Montreal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsCalgary.ca" site_id="62cbf23dcfb48300077f8348">Global News Calgary</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbf23dcfb48300077f8348">Global News Calgary</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsEdmonton.ca" site_id="62cbf2de1fba5f0007e47d9c">Global News Edmonton</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbf2de1fba5f0007e47d9c">Global News Edmonton</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsHalifax.ca" site_id="62cbf398b8e02600071deda5">Global News Halifax</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbf398b8e02600071deda5">Global News Halifax</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsKingston.ca" site_id="62cbf4964446e2000742073e">Global News Kingston</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbf4964446e2000742073e">Global News Kingston</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsLethbridge.ca" site_id="62cbf7439cb58900088dc77b">Global News Lethbridge</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbf7439cb58900088dc77b">Global News Lethbridge</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsOkanagan.ca" site_id="62cbfc572dc3750007a493ce">Global News Okanagan</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbfc572dc3750007a493ce">Global News Okanagan</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsPeterborough.ca" site_id="62cbfcd8c2db990007861e43">Global News Peterborough</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbfcd8c2db990007861e43">Global News Peterborough</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsRegina.ca" site_id="62cbff53ca8f2200080253b5">Global News Regina</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cbff53ca8f2200080253b5">Global News Regina</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsSaskatoon.ca" site_id="62cc00359cb58900088dc840">Global News Saskatoon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cc00359cb58900088dc840">Global News Saskatoon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GlobalNewsWinnipeg.ca" site_id="62cc0120880c890007191016">Global News Winnipeg</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cc0120880c890007191016">Global News Winnipeg</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AntiquesRoadShowUK.ca" site_id="638e10de75c3a30007092693">Antiques Road Show UK</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="638e10de75c3a30007092693">Antiques Road Show UK</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LeaveittoBryan.ca" site_id="62e91b5ca909cb0008114ae4">Leave it to Bryan</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e91b5ca909cb0008114ae4">Leave it to Bryan</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThisOldHouse.ca" site_id="65a8054907e03a0008926323">This Old House</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a8054907e03a0008926323">This Old House</channel>
<channel site="pluto.tv" lang="en" xmltv_id="IncomeProperty.ca" site_id="62e926429cb58900088f951f">Income Property</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e926429cb58900088f951f">Income Property</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RenoRehab.ca" site_id="62fb6057f923fb0007eafb24">Reno Rehab</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb6057f923fb0007eafb24">Reno Rehab</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RenoDuo.ca" site_id="62fb61992443200008c59aef">Reno Duo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb61992443200008c59aef">Reno Duo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FixersandFlippers.ca" site_id="62fb62081afad500077e915e">Fixers and Flippers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb62081afad500077e915e">Fixers and Flippers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomeOutside.ca" site_id="62fb62669f35b8000757204e">Home Outside</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb62669f35b8000757204e">Home Outside</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TinyHouseNation.ca" site_id="6540ff4f7312a40008297b59">Tiny House Nation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6540ff4f7312a40008297b59">Tiny House Nation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Homeful.ca" site_id="62e92967cd663f0007e604fd">Homeful</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92967cd663f0007e604fd">Homeful</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComeDinewithMe.ca" site_id="65367e724f123d000877cfe5">Come Dine with Me</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65367e724f123d000877cfe5">Come Dine with Me</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Taste.ca" site_id="664c9983cb3ea100080fd2c4">Taste</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664c9983cb3ea100080fd2c4">Taste</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SnackableAdventures.ca" site_id="62fb65373297460007ec5aa7">Snackable Adventures</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb65373297460007ec5aa7">Snackable Adventures</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LovePets.ca" site_id="65265dada6c3830008942a0a">Love Pets</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65265dada6c3830008942a0a">Love Pets</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheDogWhispererwithCaesarMillan.ca" site_id="66289716039f940008cf20a2">The Dog Whisperer with Caesar Millan</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66289716039f940008cf20a2">The Dog Whisperer with Caesar Millan</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PetCollective.ca" site_id="62e92b5fca869f00078f0162">Pet Collective</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92b5fca869f00078f0162">Pet Collective</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Naturescape.ca" site_id="64240b7e283aa40008f79f84">Naturescape</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64240b7e283aa40008f79f84">Naturescape</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickJr.PlutoTV.ca" site_id="62bdb75c3afd1200079146a6">Nick Jr. Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb75c3afd1200079146a6">Nick Jr. Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PawPatrol.ca" site_id="62ea3ec626dc1900078e9f26">Paw Patrol</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea3ec626dc1900078e9f26">Paw Patrol</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoraTV.ca" site_id="62e951258a26d40007b3034c">Dora TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e951258a26d40007b3034c">Dora TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Maxamp;Ruby.ca" site_id="62fb6a4feb32e8000708f4d0">Max amp; Ruby</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb6a4feb32e8000708f4d0">Max amp; Ruby</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Arthur.ca" site_id="6482f27c17f5e10008c10ff0">Arthur</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6482f27c17f5e10008c10ff0">Arthur</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MisterRogers'Neighborhood.ca" site_id="6686603ff01dbe0008d636cd">Mister Rogers' Neighborhood</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6686603ff01dbe0008d636cd">Mister Rogers' Neighborhood</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PreschoolPals.ca" site_id="62fb67cbb3af68000702db15">Preschool Pals</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fb67cbb3af68000702db15">Preschool Pals</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Pocket.watchGameOn.ca" site_id="635656ed26e11400077add0f">Pocket.watch Game On</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="635656ed26e11400077add0f">Pocket.watch Game On</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RyanandFriends.ca" site_id="6356584de76adf0007dcec3c">Ryan and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6356584de76adf0007dcec3c">Ryan and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWigglesClassic.ca" site_id="66422cf294d5580008c41bf5">The Wiggles Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66422cf294d5580008c41bf5">The Wiggles Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVKidsMovieClub.ca" site_id="66c45c601e11410009b27011">Pluto TV Kids Movie Club</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66c45c601e11410009b27011">Pluto TV Kids Movie Club</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpongeBobSquarePants.ca" site_id="63f87d057533d80008ab9549">SpongeBob SquarePants</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63f87d057533d80008ab9549">SpongeBob SquarePants</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickToons.ca" site_id="654ca7f92c1d3300086b608c">NickToons</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654ca7f92c1d3300086b608c">NickToons</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickPlutoTV.ca" site_id="62bdb6a83c6e37000726823b">Nick Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb6a83c6e37000726823b">Nick Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TeenageMutantNinjaTurtles.ca" site_id="65a669ab2fac9c000835c443">Teenage Mutant Ninja Turtles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a669ab2fac9c000835c443">Teenage Mutant Ninja Turtles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TotallyTurtles.ca" site_id="62e95265c9fd030007268fb9">Totally Turtles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e95265c9fd030007268fb9">Totally Turtles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Transformers.ca" site_id="63da36dea995710008727d4d">Transformers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63da36dea995710008727d4d">Transformers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Pokémon.ca" site_id="66ebf4a88131f10008b74739">Pokémon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ebf4a88131f10008b74739">Pokémon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRetroKid.ca" site_id="6408b41b83f58900081d91ad">Pluto TV Retro Kid</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6408b41b83f58900081d91ad">Pluto TV Retro Kid</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KidSquad.ca" site_id="62fa6b4eb5e661000741e424">Kid Squad</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fa6b4eb5e661000741e424">Kid Squad</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoraTVenFrançais.ca" site_id="62bdb9baa9dddb0007f39e41">Dora TV en Français</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62bdb9baa9dddb0007f39e41">Dora TV en Français</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Bobl'éponge.ca" site_id="66588931a3865300085ca800">Bob l'éponge</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66588931a3865300085ca800">Bob l'éponge</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TortuesNinjaTV.ca" site_id="62e9566e27ce19000732ec85">Tortues Ninja TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e9566e27ce19000732ec85">Tortues Ninja TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MODUSSuperSeriesDarts.ca" site_id="671645c4529ac900080c9a0b">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="671645c4529ac900080c9a0b">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PGATOUR.ca" site_id="65265b58bbd2d000089ceff5">PGA TOUR</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65265b58bbd2d000089ceff5">PGA TOUR</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DAZNTV.ca" site_id="647f07e74cfc2c0008a2e557">DAZN TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="647f07e74cfc2c0008a2e557">DAZN TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FIFA+.ca" site_id="660c29b5aec9680008f5b4a4">FIFA+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="660c29b5aec9680008f5b4a4">FIFA+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealmadridTV.ca" site_id="65f9ba32f7f0af0008fbcb3d">Realmadrid TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65f9ba32f7f0af0008fbcb3d">Realmadrid TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="beINSPORTSXTRA.ca" site_id="62b97ef310e33f0007eea65f">beIN SPORTS XTRA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62b97ef310e33f0007eea65f">beIN SPORTS XTRA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CricketGold.ca" site_id="664db53eb18d70000800c3fc">Cricket Gold</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664db53eb18d70000800c3fc">Cricket Gold</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AdventureSportsTV.ca" site_id="63c9550df13a9b00078677a7">Adventure Sports TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63c9550df13a9b00078677a7">Adventure Sports TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WorldPokerTour.ca" site_id="62ea4b755e8e770007387b79">World Poker Tour</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea4b755e8e770007387b79">World Poker Tour</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MonsterJam.ca" site_id="65bcc9c8d77d450008b34c6b">Monster Jam</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65bcc9c8d77d450008b34c6b">Monster Jam</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TNAWrestling.ca" site_id="62ea4dadce395f0007086df2">TNA Wrestling</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ea4dadce395f0007086df2">TNA Wrestling</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVonTour!.ca" site_id="65a6509e0c7ff50008ca34ab">MTV on Tour!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a6509e0c7ff50008ca34ab">MTV on Tour!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTV:Bestof.ca" site_id="65a7b3bf07e03a00089148a9">MTV: Best of</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a7b3bf07e03a00089148a9">MTV: Best of</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVSpankinNew.ca" site_id="6541010f770cf1000866be98">MTV Spankin New</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6541010f770cf1000866be98">MTV Spankin New</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVBiggestPop.ca" site_id="65410176770cf1000866bf31">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65410176770cf1000866bf31">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yo!MTV.ca" site_id="654102ed770cf1000866c307">Yo! MTV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654102ed770cf1000866c307">Yo! MTV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVFlowLatino.ca" site_id="6686771cfd9eb200087b658e">MTV Flow Latino</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6686771cfd9eb200087b658e">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVClassic.ca" site_id="654100b4bdf3cf0008aa49c7">MTV Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654100b4bdf3cf0008aa49c7">MTV Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVRocks.ca" site_id="66bb895acd0d31000871e31c">MTV Rocks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66bb895acd0d31000871e31c">MTV Rocks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="QelloConcerts.ca" site_id="64240d3d466225000827412b">Qello Concerts</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64240d3d466225000827412b">Qello Concerts</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MovieMusicbyStingray.ca" site_id="64240d00dbdaaa00085bc5e2">Movie Music by Stingray</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64240d00dbdaaa00085bc5e2">Movie Music by Stingray</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Classica.ca" site_id="64240c3f9189ce00087dd17e">Classica</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64240c3f9189ce00087dd17e">Classica</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Djazz.ca" site_id="64240ccfaa2d690008dc4406">Djazz</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64240ccfaa2d690008dc4406">Djazz</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SailorMoon.ca" site_id="642be30baa2d690008ed2935">Sailor Moon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="642be30baa2d690008ed2935">Sailor Moon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Naruto.ca" site_id="642be2939189ce0008916c21">Naruto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="642be2939189ce0008916c21">Naruto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yu-Gi-Oh!.ca" site_id="63f87c73085b8c0008fc8e95">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63f87c73085b8c0008fc8e95">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RetroCrush.ca" site_id="65e9ced78145cb00084d6598">Retro Crush</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65e9ced78145cb00084d6598">Retro Crush</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Lupinthe3rd.ca" site_id="63b5964d1bdba1000712521f">Lupin the 3rd</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63b5964d1bdba1000712521f">Lupin the 3rd</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AlerteàMalibu.ca" site_id="62e90db65e8e770007382a50">Alerte à Malibu</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e90db65e8e770007382a50">Alerte à Malibu</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoctorWho.ca" site_id="62e92d2e9bc0ab00072e10a3">Doctor Who</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e92d2e9bc0ab00072e10a3">Doctor Who</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesNouveauxDétectives.ca" site_id="62e927821054990007dc8e57">Les Nouveaux Détectives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62e927821054990007dc8e57">Les Nouveaux Détectives</channel>
</channels> </channels>

View file

@ -1,184 +1,184 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="es" xmltv_id="DescubriendoPlutoTV.cl" site_id="5e793a7cfbdf780007f7eb75">Descubriendo Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e793a7cfbdf780007f7eb75">Descubriendo Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineEstelar.cl" site_id="5dcde437229eff00091b6c30">Pluto TV Cine Estelar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde437229eff00091b6c30">Pluto TV Cine Estelar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineAcción.cl" site_id="5dcb62e63d4d8f0009f36881">Pluto TV Cine Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcb62e63d4d8f0009f36881">Pluto TV Cine Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="EstrellasdeAcción.cl" site_id="5e972a21ad709d00074195ba">Estrellas de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e972a21ad709d00074195ba">Estrellas de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAdrenalinaFreezone.cl" site_id="61b793ccf571b80007b7a610">Pluto TV Adrenalina Freezone</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61b793ccf571b80007b7a610">Pluto TV Adrenalina Freezone</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineComedia.cl" site_id="5dcdde78f080d900098550e4">Pluto TV Cine Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcdde78f080d900098550e4">Pluto TV Cine Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineDrama.cl" site_id="5dcddfcb229eff00091b6bdf">Pluto TV Cine Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddfcb229eff00091b6bdf">Pluto TV Cine Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineRomance.cl" site_id="5dd7ea2aeab5230009986735">Pluto TV Cine Romance</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd7ea2aeab5230009986735">Pluto TV Cine Romance</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineSuspenso.cl" site_id="5ddc4e8bcbb9010009b4e84f">Pluto TV Cine Suspenso</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddc4e8bcbb9010009b4e84f">Pluto TV Cine Suspenso</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineCrimen.cl" site_id="624af40c004f8000079b784d">Pluto TV Cine Crimen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="624af40c004f8000079b784d">Pluto TV Cine Crimen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineTerror.cl" site_id="5dcddf1ed95e740009fef7ab">Pluto TV Cine Terror</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddf1ed95e740009fef7ab">Pluto TV Cine Terror</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSci-Fi.cl" site_id="5f2817d3d7573a00080f9175">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f2817d3d7573a00080f9175">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Runtime.cl" site_id="62c5d80dc6de440007e033eb">Runtime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62c5d80dc6de440007e033eb">Runtime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNuestroCine.cl" site_id="5defde6d6c07b50009cf0757">Pluto TV Nuestro Cine</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5defde6d6c07b50009cf0757">Pluto TV Nuestro Cine</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVALaMexicana.cl" site_id="5dfcde52d28b09000a42d7a2">Pluto TV A La Mexicana</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dfcde52d28b09000a42d7a2">Pluto TV A La Mexicana</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineClásico.cl" site_id="609059dc63be6e0007b4eca6">Pluto TV Cine Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609059dc63be6e0007b4eca6">Pluto TV Cine Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineFamilia.cl" site_id="5dd6ddb30a1d8a000908ed4c">Pluto TV Cine Familia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ddb30a1d8a000908ed4c">Pluto TV Cine Familia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineNavidad.cl" site_id="5dd6ed41526c77000941411c">Pluto TV Cine Navidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ed41526c77000941411c">Pluto TV Cine Navidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LucesNavideñas.cl" site_id="5f8a0e7a9ab0370008b177f2">Luces Navideñas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f8a0e7a9ab0370008b177f2">Luces Navideñas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ChimeneaNavideña.cl" site_id="5f8a0f421418bd0007e14548">Chimenea Navideña</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f8a0f421418bd0007e14548">Chimenea Navideña</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVMúsicaNavideña.cl" site_id="66e1e05a15d2c60008e4b2db">MTV Música Navideña</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66e1e05a15d2c60008e4b2db">MTV Música Navideña</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeCrimen.cl" site_id="655f62ff954b020008c91ec6">Pluto TV Series de Crimen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f62ff954b020008c91ec6">Pluto TV Series de Crimen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CSI:Miami.cl" site_id="63eb9255c111bc0008fe6ec4">CSI: Miami</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb9255c111bc0008fe6ec4">CSI: Miami</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NCIS.cl" site_id="63eb947c4e83e70008ab877b">NCIS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb947c4e83e70008ab877b">NCIS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeAcción.cl" site_id="6479ff1c17f5e10008ad2797">Pluto TV Series de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6479ff1c17f5e10008ad2797">Pluto TV Series de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="RookieBlue:PolicíasNovatos.cl" site_id="64ff270f30ab3300084e259c">Rookie Blue: Policías Novatos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ff270f30ab3300084e259c">Rookie Blue: Policías Novatos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="InfiernoSobreRuedas.cl" site_id="64ff26233efb5100082eeb2e">Infierno Sobre Ruedas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ff26233efb5100082eeb2e">Infierno Sobre Ruedas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeSci-Fi.cl" site_id="65662f8a2c46f300088a84cc">Pluto TV Series de Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65662f8a2c46f300088a84cc">Pluto TV Series de Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ZNation.cl" site_id="66b3af1c3a4ad200081c7d03">Z Nation</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b3af1c3a4ad200081c7d03">Z Nation</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeAventura.cl" site_id="65662c1357fe4a00086b3eb1">Pluto TV Series de Aventura</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65662c1357fe4a00086b3eb1">Pluto TV Series de Aventura</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeries.cl" site_id="5dcde1317578340009b751d0">Pluto TV Series</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde1317578340009b751d0">Pluto TV Series</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeComedia.cl" site_id="655f626d57fe4a00085c7c3e">Pluto TV Series de Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f626d57fe4a00085c7c3e">Pluto TV Series de Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeDrama.cl" site_id="655f636d954b020008c93299">Pluto TV Series de Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f636d954b020008c93299">Pluto TV Series de Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Younger.cl" site_id="619d56d9fa3070000709e3f7">Younger</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d56d9fa3070000709e3f7">Younger</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDramasCoreanos.cl" site_id="6185a9a88b2ce30007de5128">Pluto TV Dramas Coreanos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6185a9a88b2ce30007de5128">Pluto TV Dramas Coreanos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDramasCoreanosTeen.cl" site_id="6661d5424b10960008599fa3">Pluto TV Dramas Coreanos Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6661d5424b10960008599fa3">Pluto TV Dramas Coreanos Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ViveKanalDDrama.cl" site_id="639751f81a36b400072b8f5a">Vive Kanal D Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="639751f81a36b400072b8f5a">Vive Kanal D Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVEspaña.cl" site_id="5ffe17e3d765170007c3a4fe">Pluto TV España</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ffe17e3d765170007c3a4fe">Pluto TV España</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesLatinas.cl" site_id="5dd837642c6e9300098ad484">Pluto TV Series Latinas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd837642c6e9300098ad484">Pluto TV Series Latinas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AlFondoHaySitio.cl" site_id="66aa6e03fe11e500086038ed">Al Fondo Hay Sitio</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66aa6e03fe11e500086038ed">Al Fondo Hay Sitio</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesRetro.cl" site_id="5de802659167b10009e7deba">Pluto TV Series Retro</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de802659167b10009e7deba">Pluto TV Series Retro</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Hechizada.cl" site_id="631fb6be21b7440007b9f606">Hechizada</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="631fb6be21b7440007b9f606">Hechizada</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MacGyver.cl" site_id="63eb95baa99571000898a078">MacGyver</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb95baa99571000898a078">MacGyver</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Baywatch.cl" site_id="66a26a7846762a0008258d4e">Baywatch</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a26a7846762a0008258d4e">Baywatch</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosTresChiflados.cl" site_id="5f85f1dc1418bd0007e11eb9">Los Tres Chiflados</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85f1dc1418bd0007e11eb9">Los Tres Chiflados</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVRetroCartoons.cl" site_id="60142258a54aeb0007751c15">Pluto TV Retro Cartoons</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60142258a54aeb0007751c15">Pluto TV Retro Cartoons</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelas.cl" site_id="5dcde0cc2efd2700090b7ff4">Pluto TV Novelas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde0cc2efd2700090b7ff4">Pluto TV Novelas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeMexico.cl" site_id="6474a7958e3c0a0008b97cae">Pluto TV Novelas de Mexico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a7958e3c0a0008b97cae">Pluto TV Novelas de Mexico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Corazón.cl" site_id="646ccdd0939a5900088a1980">Corazón</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646ccdd0939a5900088a1980">Corazón</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeColombia.cl" site_id="6474a7e7f77b6100080a89e7">Pluto TV Novelas de Colombia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a7e7f77b6100080a89e7">Pluto TV Novelas de Colombia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SinTetasNoHayParaíso.cl" site_id="604bdf4e6d0abc0007ba77ad">Sin Tetas No Hay Paraíso</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="604bdf4e6d0abc0007ba77ad">Sin Tetas No Hay Paraíso</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LaSelección.cl" site_id="63211ba9cad976000794f988">La Selección</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63211ba9cad976000794f988">La Selección</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeVenezuela.cl" site_id="6474a86917f5e100089a0c1c">Pluto TV Novelas de Venezuela</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a86917f5e100089a0c1c">Pluto TV Novelas de Venezuela</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVReality.cl" site_id="5dcde197f6591d0009839e04">Pluto TV Reality</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde197f6591d0009839e04">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVDrag.cl" site_id="64510d3ad3fdde00080951f2">MTV Drag</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64510d3ad3fdde00080951f2">MTV Drag</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVPlutoTV.cl" site_id="5fab088b3279760007d4e4fd">MTV Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fab088b3279760007d4e4fd">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVReality.cl" site_id="5de91b7ea86ee60009d89e75">MTV Reality</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de91b7ea86ee60009d89e75">MTV Reality</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVShore.cl" site_id="61a52615cbef2500072876e2">MTV Shore</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61a52615cbef2500072876e2">MTV Shore</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVConMiEx.cl" site_id="638693db857364000781b471">MTV Con Mi Ex</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="638693db857364000781b471">MTV Con Mi Ex</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRidiculousness.cl" site_id="5e98a911c881310007d7aae2">MTV Ridiculousness</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e98a911c881310007d7aae2">MTV Ridiculousness</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVTeenMom.cl" site_id="620fd9f4afb9a80007a9c6d5">MTV Teen Mom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620fd9f4afb9a80007a9c6d5">MTV Teen Mom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVCatfish.cl" site_id="625461ef01f27a0007976ad1">MTV Catfish</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="625461ef01f27a0007976ad1">MTV Catfish</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCompetencias.cl" site_id="5dd6d935d000120009bc1132">Pluto TV Competencias</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6d935d000120009bc1132">Pluto TV Competencias</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IronChef.cl" site_id="615b9855c6b58b000724477f">Iron Chef</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="615b9855c6b58b000724477f">Iron Chef</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MasterChef.cl" site_id="5e3ddbd27091820009f86dd9">MasterChef</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e3ddbd27091820009f86dd9">MasterChef</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MasterChefJunior.cl" site_id="64bed7005dc16600089b84e9">MasterChef Junior</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64bed7005dc16600089b84e9">MasterChef Junior</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HellsKitchen.cl" site_id="6095ad97351eb0000754c1e6">Hells Kitchen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6095ad97351eb0000754c1e6">Hells Kitchen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MinutoParaGanar.cl" site_id="5e46e64dc73db400094b5f0b">Minuto Para Ganar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e46e64dc73db400094b5f0b">Minuto Para Ganar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Boom.cl" site_id="6099600015e88c0007ecda25">Boom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6099600015e88c0007ecda25">Boom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="WipeOut.cl" site_id="5ed6828192e8b3000743ef61">Wipe Out</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ed6828192e8b3000743ef61">Wipe Out</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DesafíoSuperHumanos.cl" site_id="6495af324c014a000842e923">Desafío Super Humanos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6495af324c014a000842e923">Desafío Super Humanos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNaturaleza.cl" site_id="5dd85eac039bba0009e86d1d">Pluto TV Naturaleza</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd85eac039bba0009e86d1d">Pluto TV Naturaleza</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PaisajesporStingray.cl" site_id="5f4fed840a2764000720d966">Paisajes por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4fed840a2764000720d966">Paisajes por Stingray</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnimales.cl" site_id="5dd834c66fe2ca0009303b8d">Pluto TV Animales</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd834c66fe2ca0009303b8d">Pluto TV Animales</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElEncantadordePerros.cl" site_id="61099f2b40d0640007fc5aa2">El Encantador de Perros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61099f2b40d0640007fc5aa2">El Encantador de Perros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAventura.cl" site_id="5ddc266f80e3550009136843">Pluto TV Aventura</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddc266f80e3550009136843">Pluto TV Aventura</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IcePilots.cl" site_id="62154548a2be360007cb02f0">Ice Pilots</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62154548a2be360007cb02f0">Ice Pilots</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVVelocidad.cl" site_id="5dd6dc7480e3550009133d4a">Pluto TV Velocidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6dc7480e3550009133d4a">Pluto TV Velocidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ObsesiónporlosAutos.cl" site_id="64025592953da40008bf9238">Obsesión por los Autos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64025592953da40008bf9238">Obsesión por los Autos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MiCocheClásico.cl" site_id="656e2536fbc15b00084ae29d">Mi Coche Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656e2536fbc15b00084ae29d">Mi Coche Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MotorvisionTV.cl" site_id="60e5ea9a9bb4200008376f76">Motorvision TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60e5ea9a9bb4200008376f76">Motorvision TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVVidaReal.cl" site_id="5df265697ec3510009df1ef0">Pluto TV Vida Real</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5df265697ec3510009df1ef0">Pluto TV Vida Real</channel>
<channel site="pluto.tv" lang="es" xmltv_id="COPS.cl" site_id="6419ab7c9189ce000865a469">COPS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6419ab7c9189ce000865a469">COPS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Dogelcazarrecompensas.cl" site_id="5f9992c685a2a80007fa414a">Dog el cazarrecompensas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9992c685a2a80007fa414a">Dog el cazarrecompensas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Empeñosalobestia.cl" site_id="5f23102d5e239d00074b092a">Empeños a lo bestia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f23102d5e239d00074b092a">Empeños a lo bestia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMiObsesiónFavorita.cl" site_id="6109ab25b84d6a0007504886">Pluto TV Mi Obsesión Favorita</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6109ab25b84d6a0007504886">Pluto TV Mi Obsesión Favorita</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MisteriosMedicos.cl" site_id="5f230e416b68ff00075b0139">Misterios Medicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f230e416b68ff00075b0139">Misterios Medicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMisterios.cl" site_id="5dcde2f53449c50009b2b4dc">Pluto TV Misterios</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde2f53449c50009b2b4dc">Pluto TV Misterios</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HistoriasdeUltratumba.cl" site_id="5f4d3696d938c900072679fd">Historias de Ultratumba</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4d3696d938c900072679fd">Historias de Ultratumba</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosExtraterrestres.cl" site_id="645d1abbe1979c0008779d5a">Archivos Extraterrestres</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645d1abbe1979c0008779d5a">Archivos Extraterrestres</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SmithsonianChannelPlutoTV.cl" site_id="63a084934734f30007457b2c">Smithsonian Channel Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63a084934734f30007457b2c">Smithsonian Channel Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHistoria.cl" site_id="5de5758e1a30dc00094fcd6c">Pluto TV Historia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de5758e1a30dc00094fcd6c">Pluto TV Historia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCiencia.cl" site_id="5dd8364ea1d6780009929902">Pluto TV Ciencia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd8364ea1d6780009929902">Pluto TV Ciencia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVInvestiga.cl" site_id="5dcde27ffae9520009c0c75a">Pluto TV Investiga</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde27ffae9520009c0c75a">Pluto TV Investiga</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CazadordeHomicidas.cl" site_id="6109a9f5531b840007a4a187">Cazador de Homicidas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6109a9f5531b840007a4a187">Cazador de Homicidas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosarchivosdelFBI.cl" site_id="5e67d41b93312100076f3fca">Los archivos del FBI</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e67d41b93312100076f3fca">Los archivos del FBI</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosForenses.cl" site_id="5efb8c19b2678b000780d032">Archivos Forenses</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5efb8c19b2678b000780d032">Archivos Forenses</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TheNewDetectives.cl" site_id="5ea71d48af1d0b0007d837f4">The New Detectives</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ea71d48af1d0b0007d837f4">The New Detectives</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MisteriossinResolver.cl" site_id="5f610042272f68000867685b">Misterios sin Resolver</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f610042272f68000867685b">Misterios sin Resolver</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CBSNews.cl" site_id="62310d5a5dc9550007c6f580">CBS News</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62310d5a5dc9550007c6f580">CBS News</channel>
<channel site="pluto.tv" lang="es" xmltv_id="EuronewsEspañol.cl" site_id="619d59b7cbef25000728221c">Euronews Español</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d59b7cbef25000728221c">Euronews Español</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TeleFórmula.cl" site_id="63d2c140c111bc0008cb890b">TeleFórmula</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63d2c140c111bc0008cb890b">TeleFórmula</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MilenioTelevisión.cl" site_id="652e922db4b047000825f975">Milenio Televisión</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="652e922db4b047000825f975">Milenio Televisión</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaDeportesNetwork.cl" site_id="6582f002a620e3000813b329">Azteca Deportes Network</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6582f002a620e3000813b329">Azteca Deportes Network</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ClaroSports.cl" site_id="6320d80a66666000086712d7">Claro Sports</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6320d80a66666000086712d7">Claro Sports</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ChilevisionDeportes.cl" site_id="638df6f8b63cf100075ccfa1">Chilevision Deportes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="638df6f8b63cf100075ccfa1">Chilevision Deportes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ITVDeportes.cl" site_id="63f7e3f9dff38e00082a57af">ITV Deportes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63f7e3f9dff38e00082a57af">ITV Deportes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVPeleas.cl" site_id="5e98b0447665f200078caded">Pluto TV Peleas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e98b0447665f200078caded">Pluto TV Peleas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LuchaLibreAAA.cl" site_id="5f99a772c54853000797bf18">Lucha Libre AAA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f99a772c54853000797bf18">Lucha Libre AAA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DAZNCombat.cl" site_id="64df7a9a44fe100009b6ac5a">DAZN Combat</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64df7a9a44fe100009b6ac5a">DAZN Combat</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PFLMMA.cl" site_id="64f6163a30ab3300083d870e">PFL MMA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64f6163a30ab3300083d870e">PFL MMA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DAZNWomen'sFootball.cl" site_id="64b02bbd7d93410008fdae60">DAZN Women's Football</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64b02bbd7d93410008fdae60">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FIFA+.cl" site_id="66997d18a1b69e00082ee85f">FIFA+</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66997d18a1b69e00082ee85f">FIFA+</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónFelicesFiestas.cl" site_id="671125ad5534bb00088b00c4">South Park: Colección Felices Fiestas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="671125ad5534bb00088b00c4">South Park: Colección Felices Fiestas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónCartman.cl" site_id="65df731cec9fda0008b7aa8d">South Park: Colección Cartman</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df731cec9fda0008b7aa8d">South Park: Colección Cartman</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónKenny.cl" site_id="65df7272ec9fda0008b7a970">South Park: Colección Kenny</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df7272ec9fda0008b7a970">South Park: Colección Kenny</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónKyle.cl" site_id="65df73520d4561000817c29b">South Park: Colección Kyle</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df73520d4561000817c29b">South Park: Colección Kyle</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónStan.cl" site_id="65df72db18036500081a8292">South Park: Colección Stan</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df72db18036500081a8292">South Park: Colección Stan</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ComedyCentralSouthPark.cl" site_id="609ae5cd48d3200007b0a98e">Comedy Central South Park</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609ae5cd48d3200007b0a98e">Comedy Central South Park</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Daria.cl" site_id="62d0895ebe7a970008785244">Daria</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62d0895ebe7a970008785244">Daria</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LaFamiliadelBarrio.cl" site_id="62d08af527ce19000731eaa0">La Familia del Barrio</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62d08af527ce19000731eaa0">La Familia del Barrio</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHumor.cl" site_id="5e8397936791b30007ebb5a7">Pluto TV Humor</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e8397936791b30007ebb5a7">Pluto TV Humor</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ComedyCentralPlutoTV.cl" site_id="5ffcc21a432945000762d06b">Comedy Central Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ffcc21a432945000762d06b">Comedy Central Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FailArmy.cl" site_id="5ebaccf1734aaf0007142c86">FailArmy</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebaccf1734aaf0007142c86">FailArmy</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ThePetCollective.cl" site_id="5ebacbcae43a6d000787b88e">The Pet Collective</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebacbcae43a6d000787b88e">The Pet Collective</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PRIDEtv.cl" site_id="6643b8c42eafd40008daab8b">PRIDEtv</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6643b8c42eafd40008daab8b">PRIDEtv</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Teatrix.cl" site_id="63ceb6ff60bc8f00088dc625">Teatrix</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63ceb6ff60bc8f00088dc625">Teatrix</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TelefeHits.cl" site_id="5de91cf02fc07c0009910465">Telefe Hits</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de91cf02fc07c0009910465">Telefe Hits</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ChilevisionContigo.cl" site_id="62aa5740a47b6c000769f407">Chilevision Contigo</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62aa5740a47b6c000769f407">Chilevision Contigo</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaInternacional.cl" site_id="646cce4d1593940008a33f09">Azteca Internacional</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646cce4d1593940008a33f09">Azteca Internacional</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Canal6CdMX.cl" site_id="652e91fd6208700008dcaf7b">Canal 6 CdMX</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="652e91fd6208700008dcaf7b">Canal 6 CdMX</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVViajes.cl" site_id="5dcddfbdb7cf0e0009ae09ea">Pluto TV Viajes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddfbdb7cf0e0009ae09ea">Pluto TV Viajes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHogar.cl" site_id="5dd6ab8056beb000091fc6b6">Pluto TV Hogar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ab8056beb000091fc6b6">Pluto TV Hogar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Homeful.cl" site_id="64fb1f6e6625510008c00848">Homeful</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64fb1f6e6625510008c00848">Homeful</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCocina.cl" site_id="5dcde0657444a40009cd2422">Pluto TV Cocina</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde0657444a40009cd2422">Pluto TV Cocina</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVRecetas.cl" site_id="609062295c2b8f0007199e7a">Pluto TV Recetas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609062295c2b8f0007199e7a">Pluto TV Recetas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tastemade.cl" site_id="5f998c1fc54853000797bacd">Tastemade</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f998c1fc54853000797bacd">Tastemade</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnime.cl" site_id="5dcde17bf6591d0009839e02">Pluto TV Anime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde17bf6591d0009839e02">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAniméAcción.cl" site_id="5e6a4d875d7ccf0007cc2cf1">Pluto TV Animé Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e6a4d875d7ccf0007cc2cf1">Pluto TV Animé Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Naruto.cl" site_id="5ee92e72fb286e0007285fec">Naruto</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ee92e72fb286e0007285fec">Naruto</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NarutoShippuden.cl" site_id="64c92fea3c3344000869e8a9">Naruto Shippuden</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64c92fea3c3344000869e8a9">Naruto Shippuden</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Boruto:NarutoNextGenerations.cl" site_id="656f37f257fe4a000884dfee">Boruto: Naruto Next Generations</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656f37f257fe4a000884dfee">Boruto: Naruto Next Generations</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HunterxHunter.cl" site_id="65d916a2f7f0af0008b6540d">Hunter x Hunter</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65d916a2f7f0af0008b6540d">Hunter x Hunter</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DeathNote.cl" site_id="626c2ed933a2890007e91422">Death Note</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="626c2ed933a2890007e91422">Death Note</channel>
<channel site="pluto.tv" lang="es" xmltv_id="JoJosBizarreAdventure.cl" site_id="66c790f780a0af0008583aa4">JoJos Bizarre Adventure</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c790f780a0af0008583aa4">JoJos Bizarre Adventure</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yu-Gi-Oh.cl" site_id="5fceaab478f2af00080ff51f">Yu-Gi-Oh</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fceaab478f2af00080ff51f">Yu-Gi-Oh</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CaptainTsubasa.cl" site_id="64666345f3f5b1000882bfb4">Captain Tsubasa</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64666345f3f5b1000882bfb4">Captain Tsubasa</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Inuyasha.cl" site_id="66b26665d512590008c507b7">Inuyasha</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b26665d512590008c507b7">Inuyasha</channel>
<channel site="pluto.tv" lang="es" xmltv_id="OnePiece.cl" site_id="5ff4b9ccf938f8000779eb99">One Piece</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff4b9ccf938f8000779eb99">One Piece</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tokusato.cl" site_id="5ff608e60e2996000768c366">Tokusato</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff608e60e2996000768c366">Tokusato</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVE-Sports.cl" site_id="5ff3934600d4c7000733ff49">Pluto TV E-Sports</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff3934600d4c7000733ff49">Pluto TV E-Sports</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickTeen.cl" site_id="5fab09a8749b1a00077d35d2">Nick Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fab09a8749b1a00077d35d2">Nick Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeoniCarly.cl" site_id="620ff0a01f9e8700076c6f9d">Nickelodeon iCarly</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620ff0a01f9e8700076c6f9d">Nickelodeon iCarly</channel>
<channel site="pluto.tv" lang="es" xmltv_id="KenanyKel.cl" site_id="5fcea93ffcf94500071c4b2f">Kenan y Kel</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fcea93ffcf94500071c4b2f">Kenan y Kel</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTeen.cl" site_id="5dd6de52b9914200091f047a">Pluto TV Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6de52b9914200091f047a">Pluto TV Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PAWPatrolPatrulladeCachorros.cl" site_id="6495c6ad115d060008bf6b52">PAW Patrol Patrulla de Cachorros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6495c6ad115d060008bf6b52">PAW Patrol Patrulla de Cachorros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickJr.Club.cl" site_id="5ddd7cb2cbb9010009b4fe32">Nick Jr. Club</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddd7cb2cbb9010009b4fe32">Nick Jr. Club</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Dora,LaExploradora.cl" site_id="656e28a2954b020008ed133a">Dora, La Exploradora</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656e28a2954b020008ed133a">Dora, La Exploradora</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasPistasdeBlue.cl" site_id="5f9996533c9de3000759ccb5">Las Pistas de Blue</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9996533c9de3000759ccb5">Las Pistas de Blue</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BabySharkTV.cl" site_id="619d5e6a093e7c0007489211">Baby Shark TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d5e6a093e7c0007489211">Baby Shark TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Babyfirst.cl" site_id="5ebac49ce4dc8b00078b23bc">Babyfirst</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebac49ce4dc8b00078b23bc">Babyfirst</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVJunior.cl" site_id="5dcde2ac4bc6c500094ab45b">Pluto TV Junior</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde2ac4bc6c500094ab45b">Pluto TV Junior</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Barney.cl" site_id="5f29ada4bdaebd000708d49d">Barney</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f29ada4bdaebd000708d49d">Barney</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElReinoInfantil.cl" site_id="5f4d3d06fb60d8000781fce8">El Reino Infantil</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4d3d06fb60d8000781fce8">El Reino Infantil</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonClásico.cl" site_id="5ddd7c348520b40009c347e2">Nickelodeon Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddd7c348520b40009c347e2">Nickelodeon Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HeyArnold!.cl" site_id="66c79221b1a34600087e264d">Hey Arnold!</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c79221b1a34600087e264d">Hey Arnold!</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Rugrats.cl" site_id="5ea7215005d66d0007e8128a">Rugrats</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ea7215005d66d0007e8128a">Rugrats</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonRocketPower.cl" site_id="6202ab549654c800076ee13f">Nickelodeon Rocket Power</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6202ab549654c800076ee13f">Nickelodeon Rocket Power</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonPlutoTV.cl" site_id="645952687cb4b100084ed52e">Nickelodeon Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645952687cb4b100084ed52e">Nickelodeon Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BobEsponjaPantalonesCuadrados.cl" site_id="6254598f5083f800076d8563">Bob Esponja Pantalones Cuadrados</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6254598f5083f800076d8563">Bob Esponja Pantalones Cuadrados</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosPadrinosMágicos.cl" site_id="6322099c822bbc00074857db">Los Padrinos Mágicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6322099c822bbc00074857db">Los Padrinos Mágicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasTortugasNinja.cl" site_id="63dd5d7a4e83e700088fbca8">Las Tortugas Ninja</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63dd5d7a4e83e700088fbca8">Las Tortugas Ninja</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVKids.cl" site_id="5dd6dae8ce788b0009eaf77b">Pluto TV Kids</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6dae8ce788b0009eaf77b">Pluto TV Kids</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVBiggestPop.cl" site_id="6047fabfce6e8e00070bcc9f">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6047fabfce6e8e00070bcc9f">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVClassic.cl" site_id="66a11a21a79dea0008aa90ca">MTV Classic</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a11a21a79dea0008aa90ca">MTV Classic</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRocks.cl" site_id="66a01b52a4ee27000808ea36">MTV Rocks</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a01b52a4ee27000808ea36">MTV Rocks</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVSpankin'New.cl" site_id="6047fd723b5bd00007de7092">MTV Spankin' New</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6047fd723b5bd00007de7092">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVFlowLatino.cl" site_id="62b218fc511d4b00070ddc0c">MTV Flow Latino</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62b218fc511d4b00070ddc0c">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yo!MTV.cl" site_id="66a01adf46762a00081ee3dc">Yo! MTV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a01adf46762a00081ee3dc">Yo! MTV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ConciertosporStingray.cl" site_id="5f85ca40eda1b10007b967cd">Conciertos por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85ca40eda1b10007b967cd">Conciertos por Stingray</channel>
<channel site="pluto.tv" lang="es" xmltv_id="KaraokeporStingray.cl" site_id="5f85cf621d6d2200079f1de0">Karaoke por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85cf621d6d2200079f1de0">Karaoke por Stingray</channel>
</channels> </channels>

View file

@ -1,225 +1,225 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVMistletoe.de" site_id="5d767a76367b89cf0032550d">Pluto TV Mistletoe</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d767a76367b89cf0032550d">Pluto TV Mistletoe</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVChristmas.de" site_id="5dc29179c928a600093a7747">Pluto TV Christmas</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dc29179c928a600093a7747">Pluto TV Christmas</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVFireplace.de" site_id="5be1c0d81843b56328bc3fba">Pluto TV Fireplace</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5be1c0d81843b56328bc3fba">Pluto TV Fireplace</channel>
<channel site="pluto.tv" lang="de" xmltv_id="NickChristmas.de" site_id="5f982a3579d7c00007b54d30">Nick Christmas</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f982a3579d7c00007b54d30">Nick Christmas</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVChristmasSongs.de" site_id="5ce40f8aa43c46795e36e8a5">MTV Christmas Songs</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ce40f8aa43c46795e36e8a5">MTV Christmas Songs</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DieNanny.de" site_id="66c6fc06489bab0008b6f9da">Die Nanny</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66c6fc06489bab0008b6f9da">Die Nanny</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AngerManagement.de" site_id="655ca57e4261ca00080b3a04">Anger Management</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="655ca57e4261ca00080b3a04">Anger Management</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Sabrina-Totalverhext!.de" site_id="622f40c901d4b70007ad7609">Sabrina - Total verhext!</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="622f40c901d4b70007ad7609">Sabrina - Total verhext!</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Schitt'screek.de" site_id="65a67d7d33ea86000831a21d">Schitt's creek</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65a67d7d33ea86000831a21d">Schitt's creek</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Frasier.de" site_id="62cebf042ffc6d0007c4e59a">Frasier</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62cebf042ffc6d0007c4e59a">Frasier</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Becker.de" site_id="630348a54c48ce00077eb6c7">Becker</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="630348a54c48ce00077eb6c7">Becker</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AllehassenChris.de" site_id="622f6e1e2792150007e0b2ff">Alle hassen Chris</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="622f6e1e2792150007e0b2ff">Alle hassen Chris</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Cheers.de" site_id="611e7f224676bf00076a4d8d">Cheers</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="611e7f224676bf00076a4d8d">Cheers</channel>
<channel site="pluto.tv" lang="de" xmltv_id="RulesofEngagement.de" site_id="64be635a40962900080aaca5">Rules of Engagement</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64be635a40962900080aaca5">Rules of Engagement</channel>
<channel site="pluto.tv" lang="de" xmltv_id="ChaosCity.de" site_id="60afbad343e3840007164348">Chaos City</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="60afbad343e3840007164348">Chaos City</channel>
<channel site="pluto.tv" lang="de" xmltv_id="WingsDieÜberflieger.de" site_id="65b38e310d9ab400082bdec2">Wings Die Überflieger</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65b38e310d9ab400082bdec2">Wings Die Überflieger</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVSitcoms.de" site_id="5d767ab2b456c8cf265ce921">Pluto TV Sitcoms</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d767ab2b456c8cf265ce921">Pluto TV Sitcoms</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Familienbande.de" site_id="634fe3a21eac3c00076a03f8">Familienbande</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="634fe3a21eac3c00076a03f8">Familienbande</channel>
<channel site="pluto.tv" lang="de" xmltv_id="ComedyCentralSouthPark.de" site_id="60c716084d842c00085f6e64">Comedy Central South Park</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="60c716084d842c00085f6e64">Comedy Central South Park</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SouthPark:KennyCollection.de" site_id="646b1404ee6a2f00082b5d66">South Park: Kenny Collection</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="646b1404ee6a2f00082b5d66">South Park: Kenny Collection</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SouthPark:StanCollection.de" site_id="646b1438e94c3800082a8cff">South Park: Stan Collection</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="646b1438e94c3800082a8cff">South Park: Stan Collection</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SouthPark:CartmanCollection.de" site_id="646b14747cb4b1000875724d">South Park: Cartman Collection</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="646b14747cb4b1000875724d">South Park: Cartman Collection</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SouthPark:ButtersCollection.de" site_id="646b14a0e94c3800082a8d3a">South Park: Butters Collection</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="646b14a0e94c3800082a8d3a">South Park: Butters Collection</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SouthPark:KyleCollection.de" site_id="646b14d0e1979c0008915a09">South Park: Kyle Collection</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="646b14d0e1979c0008915a09">South Park: Kyle Collection</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SouthPark:OriginalVersion.de" site_id="646b150a15939400089e2702">South Park: Original Version</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="646b150a15939400089e2702">South Park: Original Version</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DAZNDartsxPlutoTV.de" site_id="64b67f0424ade50008a3be17">DAZN Darts x Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64b67f0424ade50008a3be17">DAZN Darts x Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MODUSSuperSeriesDarts.de" site_id="66337e6ba0a74e000889563b">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66337e6ba0a74e000889563b">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DAZNHandballxPlutoTV.de" site_id="6683f7fe36a2f9000804940c">DAZN Handball x Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6683f7fe36a2f9000804940c">DAZN Handball x Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TheIconLeague.de" site_id="66b0c84646762a000840e2e2">The Icon League</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66b0c84646762a000840e2e2">The Icon League</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DAZNHeldinnenxPlutoTV.de" site_id="64afe50c5dc16600087f3227">DAZN Heldinnen x Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64afe50c5dc16600087f3227">DAZN Heldinnen x Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BorussiaDortmundTV.de" site_id="66337ea1307fa300082c28a0">Borussia Dortmund TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66337ea1307fa300082c28a0">Borussia Dortmund TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Scooore.de" site_id="660e97bce8fba8000853d43f">Scooore</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="660e97bce8fba8000853d43f">Scooore</channel>
<channel site="pluto.tv" lang="de" xmltv_id="FIFA+.de" site_id="660bfc032433010008def35a">FIFA+</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="660bfc032433010008def35a">FIFA+</channel>
<channel site="pluto.tv" lang="de" xmltv_id="RealmadridTV.de" site_id="65f9b2dc0d45610008505eac">Realmadrid TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65f9b2dc0d45610008505eac">Realmadrid TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="WorldPokerTour.de" site_id="5ad9b7aae738977e2c312132">World Poker Tour</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ad9b7aae738977e2c312132">World Poker Tour</channel>
<channel site="pluto.tv" lang="de" xmltv_id="EuropeanLeagueofFootball.de" site_id="667c0111fc3a4600087283c2">European League of Football</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="667c0111fc3a4600087283c2">European League of Football</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BellatorMMA.de" site_id="63ecbedda9957100089ca486">Bellator MMA</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="63ecbedda9957100089ca486">Bellator MMA</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BilliardTV.de" site_id="65df0cff66eec8000897b3a4">Billiard TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65df0cff66eec8000897b3a4">Billiard TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SquashTV.de" site_id="66a7afaa46762a00082cbe55">Squash TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66a7afaa46762a00082cbe55">Squash TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Andromeda.de" site_id="663a163f8ea5560008a3f234">Andromeda</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="663a163f8ea5560008a3f234">Andromeda</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVStarTrek.de" site_id="6152ee71bf99590007893a11">Pluto TV Star Trek</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6152ee71bf99590007893a11">Pluto TV Star Trek</channel>
<channel site="pluto.tv" lang="de" xmltv_id="RoboCop.de" site_id="6628e513cee0d90008639b46">RoboCop</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6628e513cee0d90008639b46">RoboCop</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVSci-Fi.de" site_id="60ed498c4248a400077c0b9d">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="60ed498c4248a400077c0b9d">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DarkMatter.de" site_id="5e843d849109b700075d5ada">Dark Matter</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e843d849109b700075d5ada">Dark Matter</channel>
<channel site="pluto.tv" lang="de" xmltv_id="EinEngelaufErden.de" site_id="622f487722d9d400075f74dd">Ein Engel auf Erden</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="622f487722d9d400075f74dd">Ein Engel auf Erden</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TheTwilightZone.de" site_id="64c8dd94e4391c0008eb4742">The Twilight Zone</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64c8dd94e4391c0008eb4742">The Twilight Zone</channel>
<channel site="pluto.tv" lang="de" xmltv_id="HausmeisterKrause.de" site_id="622f6faf65be650007f57aab">Hausmeister Krause</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="622f6faf65be650007f57aab">Hausmeister Krause</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Axel!.de" site_id="667d63d236a2f90008f72269">Axel!</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="667d63d236a2f90008f72269">Axel!</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Ladykracher.de" site_id="667d3534ca74680008696051">Ladykracher</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="667d3534ca74680008696051">Ladykracher</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Dittsche.de" site_id="61fbfa1a9e38ec0007a395b7">Dittsche</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="61fbfa1a9e38ec0007a395b7">Dittsche</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Stand-upComedy.de" site_id="663e09b341af640008c1b68c">Stand-up Comedy</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="663e09b341af640008c1b68c">Stand-up Comedy</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVDeutscheSitcoms.de" site_id="6672f49f61a39900089db68e">Pluto TV Deutsche Sitcoms</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6672f49f61a39900089db68e">Pluto TV Deutsche Sitcoms</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BIGBROTHERCLASSIC.de" site_id="663e09e4b18d700008e48dcf">BIG BROTHER CLASSIC</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="663e09e4b18d700008e48dcf">BIG BROTHER CLASSIC</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CCMadeinGermany.de" site_id="5d4948418101147596fd6c5a">CC Made in Germany</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d4948418101147596fd6c5a">CC Made in Germany</channel>
<channel site="pluto.tv" lang="de" xmltv_id="FreitagNachtNews.de" site_id="64be64070e086a0009d7b028">Freitag Nacht News</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64be64070e086a0009d7b028">Freitag Nacht News</channel>
<channel site="pluto.tv" lang="de" xmltv_id="STARSINGEFAHR.de" site_id="663e0972cb3ea10008f6c868">STARS IN GEFAHR</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="663e0972cb3ea10008f6c868">STARS IN GEFAHR</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVSpace.de" site_id="61409f8d6feb30000766b675">Pluto TV Space</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="61409f8d6feb30000766b675">Pluto TV Space</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVAnimals.de" site_id="5d767ae7b456c8cf265ce922">Pluto TV Animals</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d767ae7b456c8cf265ce922">Pluto TV Animals</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TerraMaterWILD.de" site_id="65b923f90cb1a100088a03ab">Terra Mater WILD</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65b923f90cb1a100088a03ab">Terra Mater WILD</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVHistory.de" site_id="5d767b1c126c65d0a307355f">Pluto TV History</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d767b1c126c65d0a307355f">Pluto TV History</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVNature.de" site_id="5be1c3f9851dd5632e2c91b2">Pluto TV Nature</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5be1c3f9851dd5632e2c91b2">Pluto TV Nature</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SPIEGELTVKonflikte.de" site_id="65b9268fc798e800085add89">SPIEGEL TV Konflikte</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65b9268fc798e800085add89">SPIEGEL TV Konflikte</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SPIEGELTV.de" site_id="6576c20fb3801200084786c9">SPIEGEL TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6576c20fb3801200084786c9">SPIEGEL TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVExplore.de" site_id="5ad9b8551b95267e225e59c1">Pluto TV Explore</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ad9b8551b95267e225e59c1">Pluto TV Explore</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MarcoPoloTV.de" site_id="65004cf398020f00084ca8bc">Marco Polo TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65004cf398020f00084ca8bc">Marco Polo TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BBCTravel.de" site_id="60e4519e6873180007d3cddb">BBC Travel</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="60e4519e6873180007d3cddb">BBC Travel</channel>
<channel site="pluto.tv" lang="de" xmltv_id="N24Doku.de" site_id="60080e8a4bf36000076a81b1">N24 Doku</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="60080e8a4bf36000076a81b1">N24 Doku</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVScience.de" site_id="5d767b4889bca2ce7b73ef2e">Pluto TV Science</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d767b4889bca2ce7b73ef2e">Pluto TV Science</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVDocumentaries.de" site_id="5db048f9447d6c0009b8f29d">Pluto TV Documentaries</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5db048f9447d6c0009b8f29d">Pluto TV Documentaries</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MoviepilotTVmitPlutoTV.de" site_id="65a67d572fac9c000835eb3a">Moviepilot TV mit Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65a67d572fac9c000835eb3a">Moviepilot TV mit Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVheißeNächte.de" site_id="64526a145a0cd50008632bfa">Pluto TV heiße Nächte</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64526a145a0cd50008632bfa">Pluto TV heiße Nächte</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVHorror.de" site_id="62f4f4b88157cf00075c22db">Pluto TV Horror</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62f4f4b88157cf00075c22db">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVKultfilme.de" site_id="5dde47b63585b500099f74ec">Pluto TV Kultfilme</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dde47b63585b500099f74ec">Pluto TV Kultfilme</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVMovies.de" site_id="5c5c3b948002db3c3e0b262e">Pluto TV Movies</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5c5c3b948002db3c3e0b262e">Pluto TV Movies</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Filmgold.de" site_id="6305ca798bd95300072d2f93">Filmgold</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6305ca798bd95300072d2f93">Filmgold</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVDeutschesKino.de" site_id="630e00c065cfc10007c6e06b">Pluto TV Deutsches Kino</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="630e00c065cfc10007c6e06b">Pluto TV Deutsches Kino</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVRomance.de" site_id="5dc287ce3086a20009f5024c">Pluto TV Romance</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dc287ce3086a20009f5024c">Pluto TV Romance</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVKnallhart.de" site_id="65004605110545000842035d">Pluto TV Knallhart</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65004605110545000842035d">Pluto TV Knallhart</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVB-HorrorFilme.de" site_id="66b22d6814a2bb0008645c38">Pluto TV B-Horror Filme</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66b22d6814a2bb0008645c38">Pluto TV B-Horror Filme</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVCamp.de" site_id="661801e871e8c30008a73f7b">Pluto TV Camp</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="661801e871e8c30008a73f7b">Pluto TV Camp</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MOVIEDOME.de" site_id="615c1e5ce3039400070a0547">MOVIEDOME</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="615c1e5ce3039400070a0547">MOVIEDOME</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVSharks.de" site_id="669526d232e25300084bb47b">Pluto TV Sharks</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="669526d232e25300084bb47b">Pluto TV Sharks</channel>
<channel site="pluto.tv" lang="de" xmltv_id="McLeodsTöchter.de" site_id="66c6fcfc6838ee00085beb1a">McLeods Töchter</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66c6fcfc6838ee00085beb1a">McLeods Töchter</channel>
<channel site="pluto.tv" lang="de" xmltv_id="EinehimmlischeFamilie.de" site_id="66a244d5cd0d3100083b1e47">Eine himmlische Familie</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66a244d5cd0d3100083b1e47">Eine himmlische Familie</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Awkward.de" site_id="62bc1784120ba80007935aaa">Awkward</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62bc1784120ba80007935aaa">Awkward</channel>
<channel site="pluto.tv" lang="de" xmltv_id="NurseJackie.de" site_id="65a67c7a07e03a00088de834">Nurse Jackie</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65a67c7a07e03a00088de834">Nurse Jackie</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVSerie.de" site_id="5dc190f7bfed110009d934c3">Pluto TV Serie</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dc190f7bfed110009d934c3">Pluto TV Serie</channel>
<channel site="pluto.tv" lang="de" xmltv_id="RedShoeDiaries.de" site_id="645a0ddfe1979c00086d83ff">Red Shoe Diaries</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="645a0ddfe1979c00086d83ff">Red Shoe Diaries</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVSerie.de" site_id="609536871db47700075a04bf">MTV Serie</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="609536871db47700075a04bf">MTV Serie</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PRIDEtv.de" site_id="65ef002b4e01740008d2d5c1">PRIDEtv</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65ef002b4e01740008d2d5c1">PRIDEtv</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTV#1.de" site_id="640f4f4083f589000828a544">Pluto TV #1</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="640f4f4083f589000828a544">Pluto TV #1</channel>
<channel site="pluto.tv" lang="de" xmltv_id="WickedTuna.de" site_id="65253d66c52b3600083d8dd2">Wicked Tuna</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65253d66c52b3600083d8dd2">Wicked Tuna</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Fluss-Monster.de" site_id="62a0b2aff4cf470007e47e29">Fluss-Monster</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62a0b2aff4cf470007e47e29">Fluss-Monster</channel>
<channel site="pluto.tv" lang="de" xmltv_id="StorageWars:Canada.de" site_id="5ede464e7be0030007c58b73">Storage Wars: Canada</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ede464e7be0030007c58b73">Storage Wars: Canada</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AuctionHunters.de" site_id="5ede45d077746000072be0fe">Auction Hunters</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ede45d077746000072be0fe">Auction Hunters</channel>
<channel site="pluto.tv" lang="de" xmltv_id="IcePilots.de" site_id="5ce40f42ba7f7f5ea9518fe1">Ice Pilots</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ce40f42ba7f7f5ea9518fe1">Ice Pilots</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Just.fishing.de" site_id="61b33085897b9d000702b72e">Just.fishing</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="61b33085897b9d000702b72e">Just.fishing</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CoastGuard.de" site_id="64eddd96abcba80008d03b74">Coast Guard</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64eddd96abcba80008d03b74">Coast Guard</channel>
<channel site="pluto.tv" lang="de" xmltv_id="KultKrimi.de" site_id="5cb5cfe5caf83414128f209e">KultKrimi</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5cb5cfe5caf83414128f209e">KultKrimi</channel>
<channel site="pluto.tv" lang="de" xmltv_id="KultKrimi:Derrick.de" site_id="65dde5848145cb00083277f6">KultKrimi: Derrick</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65dde5848145cb00083277f6">KultKrimi: Derrick</channel>
<channel site="pluto.tv" lang="de" xmltv_id="KultKrimi:DerAlte.de" site_id="65dde5ef28730900089af7cf">KultKrimi: Der Alte</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65dde5ef28730900089af7cf">KultKrimi: Der Alte</channel>
<channel site="pluto.tv" lang="de" xmltv_id="KultKrimi:DerKommissar.de" site_id="65dde626ec9fda0008b3dc89">KultKrimi: Der Kommissar</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65dde626ec9fda0008b3dc89">KultKrimi: Der Kommissar</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVPolizeiserien.de" site_id="64be64445dc166000899ce75">Pluto TV Polizeiserien</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64be64445dc166000899ce75">Pluto TV Polizeiserien</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AufAchse.de" site_id="61fbf91afb1b10000880dd08">Auf Achse</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="61fbf91afb1b10000880dd08">Auf Achse</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Walker,TexasRanger&amp;DerSentinel.de" site_id="66a7858ca4ee27000816ea2a">Walker, Texas Ranger &amp; Der Sentinel</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66a7858ca4ee27000816ea2a">Walker, Texas Ranger &amp; Der Sentinel</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Viper.de" site_id="642ad6a5aa2d690008ea6d96">Viper</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="642ad6a5aa2d690008ea6d96">Viper</channel>
<channel site="pluto.tv" lang="de" xmltv_id="ZNation.de" site_id="66b2358146762a0008470c77">Z Nation</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66b2358146762a0008470c77">Z Nation</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PensacolaFlügelausStahl.de" site_id="655ca4b94261ca00080b38d2">Pensacola Flügel aus Stahl</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="655ca4b94261ca00080b38d2">Pensacola Flügel aus Stahl</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MissionImpossible.de" site_id="634fe5afece2e60007c9d8b8">Mission Impossible</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="634fe5afece2e60007c9d8b8">Mission Impossible</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Baywatch.de" site_id="65819e62b228b70008570e9f">Baywatch</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65819e62b228b70008570e9f">Baywatch</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Scorpion.de" site_id="66c6fb43489bab0008b6f7cd">Scorpion</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66c6fb43489bab0008b6f7cd">Scorpion</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CSI:Cyber.de" site_id="664c8c100120f40008b845e5">CSI: Cyber</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="664c8c100120f40008b845e5">CSI: Cyber</channel>
<channel site="pluto.tv" lang="de" xmltv_id="RepublicofDoyle.de" site_id="651e951fb43b640008bfe697">Republic of Doyle</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="651e951fb43b640008bfe697">Republic of Doyle</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PerryMason.de" site_id="64eddc3485efec00085b0369">Perry Mason</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64eddc3485efec00085b0369">Perry Mason</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVCrime.de" site_id="5e7b6c60fd20c50007910bf5">Pluto TV Crime</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e7b6c60fd20c50007910bf5">Pluto TV Crime</channel>
<channel site="pluto.tv" lang="de" xmltv_id="HawaiiFünf-Null.de" site_id="6349259d1d90320007fcb1d9">Hawaii Fünf-Null</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6349259d1d90320007fcb1d9">Hawaii Fünf-Null</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PacificBlue.de" site_id="642ad5bd283aa40008064568">Pacific Blue</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="642ad5bd283aa40008064568">Pacific Blue</channel>
<channel site="pluto.tv" lang="de" xmltv_id="RauchendeColts.de" site_id="638f2bc7bc363100072f02dd">Rauchende Colts</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="638f2bc7bc363100072f02dd">Rauchende Colts</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVWestern.de" site_id="630dd3b2605f140007e002f5">Pluto TV Western</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="630dd3b2605f140007e002f5">Pluto TV Western</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVliebtJohnWayne.de" site_id="65ef0f9d2873090008be19df">Pluto TV liebt John Wayne</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65ef0f9d2873090008be19df">Pluto TV liebt John Wayne</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Rawhide-TausendMeilenStaub.de" site_id="638f2983dcd9100008c2374d">Rawhide - Tausend Meilen Staub</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="638f2983dcd9100008c2374d">Rawhide - Tausend Meilen Staub</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Fury.de" site_id="6270ea4345f5bc0007823048">Fury</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6270ea4345f5bc0007823048">Fury</channel>
<channel site="pluto.tv" lang="de" xmltv_id="F.B.I.Files.de" site_id="64eddce19001910008df22b8">F.B.I. Files</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64eddce19001910008df22b8">F.B.I. Files</channel>
<channel site="pluto.tv" lang="de" xmltv_id="HomicideHunter.de" site_id="66b1f97414a2bb000863915f">Homicide Hunter</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66b1f97414a2bb000863915f">Homicide Hunter</channel>
<channel site="pluto.tv" lang="de" xmltv_id="HourstoKillZeitachsedesTodes.de" site_id="656064e74261ca00081812a9">Hours to Kill Zeitachse des Todes</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="656064e74261ca00081812a9">Hours to Kill Zeitachse des Todes</channel>
<channel site="pluto.tv" lang="de" xmltv_id="UnentdecktMörderunteruns.de" site_id="650adc3198020f000862eed4">Unentdeckt Mörder unter uns</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="650adc3198020f000862eed4">Unentdeckt Mörder unter uns</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Täterjagd.de" site_id="642abea1283aa4000805bb5b">Täterjagd</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="642abea1283aa4000805bb5b">Täterjagd</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVTrueCrime.de" site_id="615333098185f00008715a56">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="615333098185f00008715a56">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="de" xmltv_id="48Hours.de" site_id="651432fa98020f000878b407">48 Hours</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="651432fa98020f000878b407">48 Hours</channel>
<channel site="pluto.tv" lang="de" xmltv_id="LoveBoat.de" site_id="655ca3d1fbc15b00081f1186">Love Boat</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="655ca3d1fbc15b00081f1186">Love Boat</channel>
<channel site="pluto.tv" lang="de" xmltv_id="ReichundSchön.de" site_id="634fe45d5c0beb0007cd7571">Reich und Schön</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="634fe45d5c0beb0007cd7571">Reich und Schön</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DerDenver-Clan.de" site_id="62cebd7302478b00073a6b71">Der Denver-Clan</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62cebd7302478b00073a6b71">Der Denver-Clan</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DieSchöneunddasBiest.de" site_id="65ae47337bdc8d000853f1fd">Die Schöne und das Biest</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65ae47337bdc8d000853f1fd">Die Schöne und das Biest</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DasHausamEatonPlace.de" site_id="63905e85da3fda00080232e4">Das Haus am Eaton Place</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="63905e85da3fda00080232e4">Das Haus am Eaton Place</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MelrosePlace.de" site_id="64be745340962900080b55e7">Melrose Place</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64be745340962900080b55e7">Melrose Place</channel>
<channel site="pluto.tv" lang="de" xmltv_id="90210.de" site_id="65a67dd13af63d0008257f17">90210</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65a67dd13af63d0008257f17">90210</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BeverlyHills90210.de" site_id="60afb576053df900076fa2f0">Beverly Hills 90210</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="60afb576053df900076fa2f0">Beverly Hills 90210</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TopGearChallenge.de" site_id="66a10384d5125900089dfd04">Top Gear Challenge</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66a10384d5125900089dfd04">Top Gear Challenge</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TopGear.de" site_id="64c109735dc1660008a4a2dc">Top Gear</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="64c109735dc1660008a4a2dc">Top Gear</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BlochErklärt.de" site_id="654a2c1ff9cc82000867dada">Bloch Erklärt</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="654a2c1ff9cc82000867dada">Bloch Erklärt</channel>
<channel site="pluto.tv" lang="de" xmltv_id="GARAGENGOLD.de" site_id="654a2bfeab05240008a12881">GARAGENGOLD</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="654a2bfeab05240008a12881">GARAGENGOLD</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AutoMotorSport.de" site_id="5f760c3d41aa2d0007bfde19">Auto Motor Sport</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f760c3d41aa2d0007bfde19">Auto Motor Sport</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Motorvision.de" site_id="6093f2ae4dd5ab0007d1ff9d">Motorvision</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6093f2ae4dd5ab0007d1ff9d">Motorvision</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Naruto.de" site_id="65d5fc39a25d5e00082895c4">Naruto</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65d5fc39a25d5e00082895c4">Naruto</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Yu-Gi-Oh!.de" site_id="642d4493aa2d690008f0a03f">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="642d4493aa2d690008f0a03f">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AKIBAPASSTVAnime:Sport.de" site_id="659e598ab9adc4000843c574">AKIBA PASS TV Anime: Sport</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="659e598ab9adc4000843c574">AKIBA PASS TV Anime: Sport</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AssassinationClassroom.de" site_id="65a7d99f4a10d800086083a9">Assassination Classroom</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65a7d99f4a10d800086083a9">Assassination Classroom</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVAnime.de" site_id="608181d420fc8500075f612a">Pluto TV Anime</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="608181d420fc8500075f612a">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVRetroToons.de" site_id="5e1c669094e0e80009b22ab8">Pluto TV Retro Toons</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e1c669094e0e80009b22ab8">Pluto TV Retro Toons</channel>
<channel site="pluto.tv" lang="de" xmltv_id="X-Factor:DasUnfassbare.de" site_id="642d7e029189ce0008958af5">X-Factor: Das Unfassbare</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="642d7e029189ce0008958af5">X-Factor: Das Unfassbare</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVParanormal.de" site_id="5f98487036af340008da1e37">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f98487036af340008da1e37">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVMystery.de" site_id="617aad99b68ef100072608cd">Pluto TV Mystery</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="617aad99b68ef100072608cd">Pluto TV Mystery</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVCatfishTVShow.de" site_id="5db6a697d5f34a000934cd13">MTV Catfish TV Show</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5db6a697d5f34a000934cd13">MTV Catfish TV Show</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVTheShores.de" site_id="5caf32c2a5068259a32320fc">MTV The Shores</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5caf32c2a5068259a32320fc">MTV The Shores</channel>
<channel site="pluto.tv" lang="de" xmltv_id="GermanyShore.de" site_id="6447dea7e94c380008dba94c">Germany Shore</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6447dea7e94c380008dba94c">Germany Shore</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVTeenMom.de" site_id="5cffcf5686dfe15595fb3f56">MTV Teen Mom</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5cffcf5686dfe15595fb3f56">MTV Teen Mom</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVPlutoTV.de" site_id="5caf325764025859afdd6c4d">MTV Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5caf325764025859afdd6c4d">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVTheHills.de" site_id="5d00e86bf0bac55fe7f75736">MTV The Hills</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d00e86bf0bac55fe7f75736">MTV The Hills</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Takeshi'sCastle.de" site_id="6054a9f4bc8a5f000771504c">Takeshi's Castle</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6054a9f4bc8a5f000771504c">Takeshi's Castle</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CCPlutoTV.de" site_id="5d4947590ba40f75dc29c26b">CC Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d4947590ba40f75dc29c26b">CC Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVRidiculousness.de" site_id="5f9847fd513250000728a9a5">MTV Ridiculousness</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f9847fd513250000728a9a5">MTV Ridiculousness</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Hell'sKitchen.de" site_id="644257fe7cb4b100081ed874">Hell's Kitchen</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="644257fe7cb4b100081ed874">Hell's Kitchen</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVFood.de" site_id="5dc280c9aa218c0009724b4b">Pluto TV Food</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dc280c9aa218c0009724b4b">Pluto TV Food</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVHome.de" site_id="5eb96303f5bb020008e7e44f">Pluto TV Home</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5eb96303f5bb020008e7e44f">Pluto TV Home</channel>
<channel site="pluto.tv" lang="de" xmltv_id="EATGREENTV.de" site_id="655ca352c917a5000830e8b1">EAT GREEN TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="655ca352c917a5000830e8b1">EAT GREEN TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="LandlustTV.de" site_id="6639f8f4f9992200081e80e8">Landlust TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6639f8f4f9992200081e80e8">Landlust TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Herzfrequenz.de" site_id="6694ccaba3c41d0008d0e636">Herzfrequenz</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6694ccaba3c41d0008d0e636">Herzfrequenz</channel>
<channel site="pluto.tv" lang="de" xmltv_id="HannaFolgedeinemHerzen.de" site_id="6694cd23a3c41d0008d0e6e2">Hanna Folge deinem Herzen</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6694cd23a3c41d0008d0e6e2">Hanna Folge deinem Herzen</channel>
<channel site="pluto.tv" lang="de" xmltv_id="AlisaFolgedeinemHerzen.de" site_id="6694cd7c2e4b5d0008a87edc">Alisa Folge deinem Herzen</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6694cd7c2e4b5d0008a87edc">Alisa Folge deinem Herzen</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Serienklassiker.de" site_id="6690fdce2e4b5d0008a5ce0c">Serienklassiker</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6690fdce2e4b5d0008a5ce0c">Serienklassiker</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PraxisBülowbogen.de" site_id="6254240a8256cb00079a9bf1">Praxis Bülowbogen</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6254240a8256cb00079a9bf1">Praxis Bülowbogen</channel>
<channel site="pluto.tv" lang="de" xmltv_id="FamilieDr.Kleist.de" site_id="65819f14b9adc4000813ee39">Familie Dr. Kleist</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65819f14b9adc4000813ee39">Familie Dr. Kleist</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TelenovelaZDF.de" site_id="5cb5d043a461406ffe3fb2de">Telenovela ZDF</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5cb5d043a461406ffe3fb2de">Telenovela ZDF</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SonictheHedgehog.de" site_id="5dc02ece31f6050009de4b39">Sonic the Hedgehog</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dc02ece31f6050009de4b39">Sonic the Hedgehog</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Ned'sDeclassifiedSchoolSurvivalGuide.de" site_id="66a20bcd46762a000823ee2e">Ned's Declassified School Survival Guide</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66a20bcd46762a000823ee2e">Ned's Declassified School Survival Guide</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BigTimeRush.de" site_id="663385cd06839f0008e00e93">Big Time Rush</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="663385cd06839f0008e00e93">Big Time Rush</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Drake&amp;Josh.de" site_id="65a67c494a10d800085cab06">Drake &amp; Josh</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="65a67c494a10d800085cab06">Drake &amp; Josh</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Zoey101.de" site_id="63c69e6c4207be0007f73c22">Zoey 101</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="63c69e6c4207be0007f73c22">Zoey 101</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DieThundermans.de" site_id="6447df8cd3fdde0008f1f627">Die Thundermans</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6447df8cd3fdde0008f1f627">Die Thundermans</channel>
<channel site="pluto.tv" lang="de" xmltv_id="GameShakers.de" site_id="6447de0f5a0cd5000849cc95">Game Shakers</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6447de0f5a0cd5000849cc95">Game Shakers</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SchoolofRock.de" site_id="63d91013a8b22700081388b4">School of Rock</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="63d91013a8b22700081388b4">School of Rock</channel>
<channel site="pluto.tv" lang="de" xmltv_id="iCarly.de" site_id="5e8b580a233dc90007f0cb9d">iCarly</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b580a233dc90007f0cb9d">iCarly</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Clarissa.de" site_id="62bc1957e4da730007195dc3">Clarissa</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62bc1957e4da730007195dc3">Clarissa</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Victorious.de" site_id="5e8b5e43f294f8000793c3d7">Victorious</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b5e43f294f8000793c3d7">Victorious</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Sam&amp;Cat.de" site_id="5e8b5ba20af628000707cee3">Sam &amp; Cat</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b5ba20af628000707cee3">Sam &amp; Cat</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Emma,einfachmagisch!.de" site_id="5f4796368174910007756454">Emma, einfach magisch!</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f4796368174910007756454">Emma, einfach magisch!</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TeenNick.de" site_id="5f0d668b872e4400073acc68">Teen Nick</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f0d668b872e4400073acc68">Teen Nick</channel>
<channel site="pluto.tv" lang="de" xmltv_id="WillkommenbeidenLouds.de" site_id="627d2d1d05e09f00073ccdff">Willkommen bei den Louds</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="627d2d1d05e09f00073ccdff">Willkommen bei den Louds</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Avatar.de" site_id="600adbdf8c554e00072125c9">Avatar</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="600adbdf8c554e00072125c9">Avatar</channel>
<channel site="pluto.tv" lang="de" xmltv_id="NickSpace.de" site_id="619b82cc70a9ba00074429e2">Nick Space</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="619b82cc70a9ba00074429e2">Nick Space</channel>
<channel site="pluto.tv" lang="de" xmltv_id="NickPlutoTV.de" site_id="5ede448d3d50590007a4419e">Nick Pluto TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5ede448d3d50590007a4419e">Nick Pluto TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BubbleGuppies.de" site_id="5e8b5a4bb7da5c0007e5c9e9">Bubble Guppies</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b5a4bb7da5c0007e5c9e9">Bubble Guppies</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BlazeunddieMonstermaschinen.de" site_id="5e8b60419becf60008c841fd">Blaze und die Monstermaschinen</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b60419becf60008c841fd">Blaze und die Monstermaschinen</channel>
<channel site="pluto.tv" lang="de" xmltv_id="DoraTV.de" site_id="5e43c344b54fe800093552f4">Dora TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e43c344b54fe800093552f4">Dora TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Blue'sClues.de" site_id="5e8b564ff59d130007363823">Blue's Clues</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b564ff59d130007363823">Blue's Clues</channel>
<channel site="pluto.tv" lang="de" xmltv_id="InspectorGadget.de" site_id="5dbc2d1ce10f0b0009e6cf9e">Inspector Gadget</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dbc2d1ce10f0b0009e6cf9e">Inspector Gadget</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SimsalabimSabrina.de" site_id="5dbc327d0451770009ed7577">Simsalabim Sabrina</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5dbc327d0451770009ed7577">Simsalabim Sabrina</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TransformersTV.de" site_id="643683519b32b400094e0a40">Transformers TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="643683519b32b400094e0a40">Transformers TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="BeybladeBurst.de" site_id="5e8b551ddcd25500072c4dad">Beyblade Burst</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5e8b551ddcd25500072c4dad">Beyblade Burst</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TeenageMutantNinjaTurtles.de" site_id="655ca6d35812e80008883cdd">Teenage Mutant Ninja Turtles</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="655ca6d35812e80008883cdd">Teenage Mutant Ninja Turtles</channel>
<channel site="pluto.tv" lang="de" xmltv_id="TotallyTurtles.de" site_id="5d6792bd6be2998ad0ccce30">Totally Turtles</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d6792bd6be2998ad0ccce30">Totally Turtles</channel>
<channel site="pluto.tv" lang="de" xmltv_id="NickUkraine.de" site_id="622882350f6aad0008c76e77">Nick Ukraine</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="622882350f6aad0008c76e77">Nick Ukraine</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SpongeBobSchwammkopf.de" site_id="5d00e8adaab96b5635b2a005">SpongeBob Schwammkopf</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5d00e8adaab96b5635b2a005">SpongeBob Schwammkopf</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SpongeBobinItaliano.de" site_id="66794444efa2a10008ca1b16">SpongeBob in Italiano</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66794444efa2a10008ca1b16">SpongeBob in Italiano</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SüngerBobKarePantolon.de" site_id="667943a322acab00089fbd58">Sünger Bob Kare Pantolon</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="667943a322acab00089fbd58">Sünger Bob Kare Pantolon</channel>
<channel site="pluto.tv" lang="de" xmltv_id="SpongeBobOV.de" site_id="667944cb63a5f20008df6ad4">SpongeBob OV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="667944cb63a5f20008df6ad4">SpongeBob OV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVRocks.de" site_id="6697c440a4ee270008f9095f">MTV Rocks</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6697c440a4ee270008f9095f">MTV Rocks</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVClassic.de" site_id="6697672f3a4ad20008deff80">MTV Classic</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6697672f3a4ad20008deff80">MTV Classic</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVUnplugged.de" site_id="5f98471110cca20007d39f76">MTV Unplugged</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="5f98471110cca20007d39f76">MTV Unplugged</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVMusic.de" site_id="6245d15062cd1f00070a2338">MTV Music</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6245d15062cd1f00070a2338">MTV Music</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVBiggestPop.de" site_id="652e766f3fd33c0008161257">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="652e766f3fd33c0008161257">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVBrandneu.de" site_id="634fe16981d8f50007198161">MTV Brandneu</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="634fe16981d8f50007198161">MTV Brandneu</channel>
<channel site="pluto.tv" lang="de" xmltv_id="MTVFlowLatino.de" site_id="660e97e6635c7500082aaa4d">MTV Flow Latino</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="660e97e6635c7500082aaa4d">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Yo!MTV.de" site_id="652e7649b4b0470008259aaa">Yo! MTV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="652e7649b4b0470008259aaa">Yo! MTV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="GoldstarTV.de" site_id="6192396135f3910007fc5fc7">Goldstar TV</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6192396135f3910007fc5fc7">Goldstar TV</channel>
<channel site="pluto.tv" lang="de" xmltv_id="Euronews.de" site_id="6639d7d4b18d700008da5316">Euronews</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="6639d7d4b18d700008da5316">Euronews</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CBSNews24/7.de" site_id="62441d6ded1827000763dcda">CBS News 24/7</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="62441d6ded1827000763dcda">CBS News 24/7</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CNNi.de" site_id="66c45b1803e3b20008d8c200">CNNi</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66c45b1803e3b20008d8c200">CNNi</channel>
<channel site="pluto.tv" lang="de" xmltv_id="CNNFast.de" site_id="66337e365a402e00087eccaf">CNN Fast</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66337e365a402e00087eccaf">CNN Fast</channel>
<channel site="pluto.tv" lang="de" xmltv_id="PlutoTVDizikolik.de" site_id="650b064ad1f20c000856a5a4">Pluto TV Dizikolik</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="650b064ad1f20c000856a5a4">Pluto TV Dizikolik</channel>
<channel site="pluto.tv" lang="de" xmltv_id="YüksekSosyeteHighSociety.de" site_id="66338ce79e68c20008b7e00f">Yüksek Sosyete High Society</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66338ce79e68c20008b7e00f">Yüksek Sosyete High Society</channel>
<channel site="pluto.tv" lang="de" xmltv_id="ÇilekKokusuStrawberrySmell.de" site_id="66338e3e23e24f000847f4ae">Çilek Kokusu Strawberry Smell</channel> <channel site="pluto.tv" lang="de" xmltv_id="" site_id="66338e3e23e24f000847f4ae">Çilek Kokusu Strawberry Smell</channel>
</channels> </channels>

View file

@ -1,231 +1,231 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="da" xmltv_id="NonStopKungFu.dk" site_id="6728d2be529ac9000830dc15">NonStop Kung Fu</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6728d2be529ac9000830dc15">NonStop Kung Fu</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVJohnWayne.dk" site_id="655ca7aa635c3c000855d655">Pluto TV John Wayne</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="655ca7aa635c3c000855d655">Pluto TV John Wayne</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MODUSSuperSeriesDarts.dk" site_id="671656a37d5da50008de6514">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="671656a37d5da50008de6514">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JerseyShoreFamilyVacation.dk" site_id="6728c831c7626f0008b28127">Jersey Shore Family Vacation</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6728c831c7626f0008b28127">Jersey Shore Family Vacation</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RetakeE-sportLive.dk" site_id="66fd1338ec9d6d00081e0443">Retake E-sport Live</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66fd1338ec9d6d00081e0443">Retake E-sport Live</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RedShoeDiaries.dk" site_id="66a0fd93d2d50d000811184d">Red Shoe Diaries</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66a0fd93d2d50d000811184d">Red Shoe Diaries</channel>
<channel site="pluto.tv" lang="da" xmltv_id="CarolineintheCity.dk" site_id="66a7aa44cd0d31000843942b">Caroline in the City</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66a7aa44cd0d31000843942b">Caroline in the City</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Frasiersbedstegæstestjerner.dk" site_id="6708f022565d3a0008a552f3">Frasiers bedste gæstestjerner</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6708f022565d3a0008a552f3">Frasiers bedste gæstestjerner</channel>
<channel site="pluto.tv" lang="da" xmltv_id="AndersensJulehemmelighed.dk" site_id="6525426e81f942000833d131">Andersens Julehemmelighed</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6525426e81f942000833d131">Andersens Julehemmelighed</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MasterchefJul.dk" site_id="62bed8cc511d4b00070eaecb">Masterchef Jul</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62bed8cc511d4b00070eaecb">Masterchef Jul</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Frasiersherligehøjtider.dk" site_id="6708f068a07d1a000800b403">Frasiers herlige højtider</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6708f068a07d1a000800b403">Frasiers herlige højtider</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark:HolidayCollection.dk" site_id="66fcedd95049580008d17ddf">South Park: Holiday Collection</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66fcedd95049580008d17ddf">South Park: Holiday Collection</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheGreatChristmasLightFight.dk" site_id="664f11148ea5560008ce4a3a">The Great Christmas Light Fight</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="664f11148ea5560008ce4a3a">The Great Christmas Light Fight</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVChristmasSongs.dk" site_id="635a98d9455246000802468c">MTV Christmas Songs</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="635a98d9455246000802468c">MTV Christmas Songs</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVPejs.dk" site_id="671f4f8cdaad7f00086c4371">Pluto TV Pejs</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="671f4f8cdaad7f00086c4371">Pluto TV Pejs</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Julehvalpe.dk" site_id="66dea5f2f0f1750008562629">Julehvalpe</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66dea5f2f0f1750008562629">Julehvalpe</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MerryChristmasfromViafree.dk" site_id="63048147b09fd60007847a08">Merry Christmas from Viafree</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63048147b09fd60007847a08">Merry Christmas from Viafree</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark:KennyCollection.dk" site_id="65d879bd0d4561000805d190">South Park: Kenny Collection</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65d879bd0d4561000805d190">South Park: Kenny Collection</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark:StanCollection.dk" site_id="65d879e266eec8000887e91b">South Park: Stan Collection</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65d879e266eec8000887e91b">South Park: Stan Collection</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark:CartmanCollection.dk" site_id="65d87a058145cb0008265c2e">South Park: Cartman Collection</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65d87a058145cb0008265c2e">South Park: Cartman Collection</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark:KyleCollection.dk" site_id="65d87a908145cb0008265c6d">South Park: Kyle Collection</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65d87a908145cb0008265c6d">South Park: Kyle Collection</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark:ButtersCollection.dk" site_id="65d87a66ec9fda0008a5ac11">South Park: Butters Collection</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65d87a66ec9fda0008a5ac11">South Park: Butters Collection</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SouthPark.dk" site_id="61c098df897b9d00070375c8">South Park</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c098df897b9d00070375c8">South Park</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TopGearRoadTrips.dk" site_id="660d63f094db140008fe0f1c">Top Gear Road Trips</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d63f094db140008fe0f1c">Top Gear Road Trips</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TopGear.dk" site_id="620234d766314700075cac86">Top Gear</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="620234d766314700075cac86">Top Gear</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TopGearChallenge.dk" site_id="660d6414635c750008289036">Top Gear Challenge</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d6414635c750008289036">Top Gear Challenge</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ParadiseHotel.dk" site_id="61c19af83fae0a00078c8918">Paradise Hotel</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c19af83fae0a00078c8918">Paradise Hotel</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ParadiseHotel:Underlagnerne.dk" site_id="662b71658dd8160008fc3abf">Paradise Hotel: Under lagnerne</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="662b71658dd8160008fc3abf">Paradise Hotel: Under lagnerne</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Paradise.dk" site_id="629e095e511d4b00070c9f44">Paradise</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="629e095e511d4b00070c9f44">Paradise</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Luksusfælden.dk" site_id="61c19b7785706b00072d421a">Luksusfælden</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c19b7785706b00072d421a">Luksusfælden</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RobinsonEkspeditionen.dk" site_id="63a42df60cc44a0007dd47f8">Robinson Ekspeditionen</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63a42df60cc44a0007dd47f8">Robinson Ekspeditionen</channel>
<channel site="pluto.tv" lang="da" xmltv_id="LangtfraBryggen.dk" site_id="654a3fe6986ad20008a42add">Langt fra Bryggen</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a3fe6986ad20008a42add">Langt fra Bryggen</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Forsidefruer.dk" site_id="61c19dcefbb4b50007d242e1">Forsidefruer</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c19dcefbb4b50007d242e1">Forsidefruer</channel>
<channel site="pluto.tv" lang="da" xmltv_id="FamilienfraBryggen.dk" site_id="61c19c8c9863900007acaa57">Familien fra Bryggen</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c19c8c9863900007acaa57">Familien fra Bryggen</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Mitplastikmareridt.dk" site_id="643814ef479f6400086ff043">Mit plastikmareridt</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="643814ef479f6400086ff043">Mit plastikmareridt</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Forlækkertillove.dk" site_id="6272511cb389bb0007b30b09">For lækker til love</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6272511cb389bb0007b30b09">For lækker til love</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Allexclusive.dk" site_id="6577224bb3801200084865d6">All exclusive</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6577224bb3801200084865d6">All exclusive</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Pixel.tv.dk" site_id="62790dc1c733e8000733ba4d">Pixel.tv</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62790dc1c733e8000733ba4d">Pixel.tv</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PåTur.dk" site_id="65649791954b020008d09565">På Tur</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65649791954b020008d09565">På Tur</channel>
<channel site="pluto.tv" lang="da" xmltv_id="WorldofLoveIsland.dk" site_id="6440f8ba939a5900082bddc8">World of Love Island</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6440f8ba939a5900082bddc8">World of Love Island</channel>
<channel site="pluto.tv" lang="da" xmltv_id="AuctionHunters.dk" site_id="62da73c4ec46c000070f4cb1">Auction Hunters</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62da73c4ec46c000070f4cb1">Auction Hunters</channel>
<channel site="pluto.tv" lang="da" xmltv_id="America'sNextTopModel.dk" site_id="6464cc595a0cd500088c7749">America's Next Top Model</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6464cc595a0cd500088c7749">America's Next Top Model</channel>
<channel site="pluto.tv" lang="da" xmltv_id="CarChase.dk" site_id="65a93b0607e03a000895abda">Car Chase</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65a93b0607e03a000895abda">Car Chase</channel>
<channel site="pluto.tv" lang="da" xmltv_id="IceRoadTruckers.dk" site_id="633560bfa693390008b99cf0">Ice Road Truckers</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="633560bfa693390008b99cf0">Ice Road Truckers</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheOnlyWayisEssex.dk" site_id="62bd9ade70f09a000714a16b">The Only Way is Essex</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62bd9ade70f09a000714a16b">The Only Way is Essex</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Cheaters.dk" site_id="651e719b575f660008d2e629">Cheaters</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="651e719b575f660008d2e629">Cheaters</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DallasCowboysCheerleaders.dk" site_id="64e87c6b28cec700088ceb55">Dallas Cowboys Cheerleaders</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="64e87c6b28cec700088ceb55">Dallas Cowboys Cheerleaders</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DogTheBountyHunter.dk" site_id="65787fb36e4f6a0008740127">Dog The Bounty Hunter</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65787fb36e4f6a0008740127">Dog The Bounty Hunter</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JadeFever.dk" site_id="660d6ade0cd4630008f4a127">Jade Fever</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d6ade0cd4630008f4a127">Jade Fever</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DuckDynasty.dk" site_id="65787e8232c1b300089a8482">Duck Dynasty</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65787e8232c1b300089a8482">Duck Dynasty</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BondiRescue.dk" site_id="660d66be7bcd8600087cfee5">Bondi Rescue</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d66be7bcd8600087cfee5">Bondi Rescue</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DanceMoms.dk" site_id="65787eefcbd0d60008f85b3f">Dance Moms</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65787eefcbd0d60008f85b3f">Dance Moms</channel>
<channel site="pluto.tv" lang="da" xmltv_id="CelebReality.dk" site_id="65788076b228b7000843fc9a">Celeb Reality</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65788076b228b7000843fc9a">Celeb Reality</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JudgeJudy.dk" site_id="6380c36389eccc000858c50f">Judge Judy</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6380c36389eccc000858c50f">Judge Judy</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BestofMTV.dk" site_id="632aff5e44111b00076ad9b1">Best of MTV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="632aff5e44111b00076ad9b1">Best of MTV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Catfish.dk" site_id="6177fe76691b2e000702c7fc">Catfish</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6177fe76691b2e000702c7fc">Catfish</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TeenMom.dk" site_id="61c092157e1b8b0007372a35">Teen Mom</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c092157e1b8b0007372a35">Teen Mom</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Ridiculousness.dk" site_id="62cd9641393d8400076f34db">Ridiculousness</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62cd9641393d8400076f34db">Ridiculousness</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JerseyShore.dk" site_id="6442508e5a0cd500083edd3c">Jersey Shore</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6442508e5a0cd500083edd3c">Jersey Shore</channel>
<channel site="pluto.tv" lang="da" xmltv_id="GeordieShore.dk" site_id="6442512cee6a2f0008d3351f">Geordie Shore</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6442512cee6a2f0008d3351f">Geordie Shore</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PimpMyRide.dk" site_id="61c091343bf4940007803e03">Pimp My Ride</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c091343bf4940007803e03">Pimp My Ride</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JustTattooofUs.dk" site_id="61c092d95d85c00007cd63c2">Just Tattoo of Us</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c092d95d85c00007cd63c2">Just Tattoo of Us</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ExOnTheBeach.dk" site_id="61c0909b872c650008ed42e4">Ex On The Beach</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0909b872c650008ed42e4">Ex On The Beach</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheHills.dk" site_id="61c09039ebd75200072587f9">The Hills</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09039ebd75200072587f9">The Hills</channel>
<channel site="pluto.tv" lang="da" xmltv_id="AreYouTheOne?.dk" site_id="61c091c39863900007ac9e8f">Are You The One?</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c091c39863900007ac9e8f">Are You The One?</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MasterChefDanmarksstørstemadtalenter.dk" site_id="61c19edbf535220007075c4e">MasterChef Danmarks største madtalenter</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c19edbf535220007075c4e">MasterChef Danmarks største madtalenter</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Medknivenforstruben.dk" site_id="63e3b33e8795f300087e6a46">Med kniven for struben</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63e3b33e8795f300087e6a46">Med kniven for struben</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Boligkøbiblinde.dk" site_id="63c6a27a4faf1c0007b48f7b">Boligkøb i blinde</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63c6a27a4faf1c0007b48f7b">Boligkøb i blinde</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Skønneombygninger.dk" site_id="61c19d329b8260000744331b">Skønne ombygninger</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c19d329b8260000744331b">Skønne ombygninger</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TilMiddagHos.dk" site_id="61c1a05ef30f5d0007e562f3">Til Middag Hos</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c1a05ef30f5d0007e562f3">Til Middag Hos</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Koch'enpåtoppen.dk" site_id="660d667519ca71000849a1e1">Koch'en på toppen</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d667519ca71000849a1e1">Koch'en på toppen</channel>
<channel site="pluto.tv" lang="da" xmltv_id="VindiSejlene.dk" site_id="66289e74307fa3000813c778">Vind i Sejlene</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66289e74307fa3000813c778">Vind i Sejlene</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ProjectRunway.dk" site_id="627254d6ba35210007e5d4ca">Project Runway</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="627254d6ba35210007e5d4ca">Project Runway</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Hundehviskeren.dk" site_id="6501af923a0d700008b71b53">Hundehviskeren</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6501af923a0d700008b71b53">Hundehviskeren</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Hell'sKitchen.dk" site_id="61c194ff6f23a7000780073a">Hell's Kitchen</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c194ff6f23a7000780073a">Hell's Kitchen</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ComeDinewithMe.dk" site_id="65d7239066eec8000881e293">Come Dine with Me</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65d7239066eec8000881e293">Come Dine with Me</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TareqTaylor'sNordicCookery.dk" site_id="63c96203636b7e0007d35090">Tareq Taylor's Nordic Cookery</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63c96203636b7e0007d35090">Tareq Taylor's Nordic Cookery</channel>
<channel site="pluto.tv" lang="da" xmltv_id="EscapetotheCountry.dk" site_id="66d712fdabec540008ba66cd">Escape to the Country</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66d712fdabec540008ba66cd">Escape to the Country</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TattooFixers.dk" site_id="62bd9d70c23b400008af5a8f">Tattoo Fixers</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62bd9d70c23b400008af5a8f">Tattoo Fixers</channel>
<channel site="pluto.tv" lang="da" xmltv_id="HeksenefraWarrenManor.dk" site_id="66290b088dd8160008f5df04">Heksene fra Warren Manor</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66290b088dd8160008f5df04">Heksene fra Warren Manor</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Baywatch.dk" site_id="664c8ff88ea5560008c6f014">Baywatch</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="664c8ff88ea5560008c6f014">Baywatch</channel>
<channel site="pluto.tv" lang="da" xmltv_id="CSI.dk" site_id="6525419dc52b3600083db9c3">CSI</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6525419dc52b3600083db9c3">CSI</channel>
<channel site="pluto.tv" lang="da" xmltv_id="NCIS.dk" site_id="6319ec31c62c3f00075c90b1">NCIS</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6319ec31c62c3f00075c90b1">NCIS</channel>
<channel site="pluto.tv" lang="da" xmltv_id="NCIS:LosAngeles.dk" site_id="66fbf4d3d7de140008d41f5b">NCIS: Los Angeles</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66fbf4d3d7de140008d41f5b">NCIS: Los Angeles</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Numbers.dk" site_id="62bebb3a67307900077a7f9d">Numbers</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62bebb3a67307900077a7f9d">Numbers</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Scorpion.dk" site_id="63a1caefc8d285000799e8af">Scorpion</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63a1caefc8d285000799e8af">Scorpion</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Wildfire.dk" site_id="62b9b63d3bbe9000073c0a2d">Wildfire</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62b9b63d3bbe9000073c0a2d">Wildfire</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MelrosePlace.dk" site_id="62a0ae0e4e47a30007fe21bb">Melrose Place</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62a0ae0e4e47a30007fe21bb">Melrose Place</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DesiPlayTV.dk" site_id="65fac3ea8b24c8000827b430">Desi Play TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65fac3ea8b24c8000827b430">Desi Play TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BET.dk" site_id="61c1939b8929e40007ff6382">BET</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c1939b8929e40007ff6382">BET</channel>
<channel site="pluto.tv" lang="da" xmltv_id="WalkerTexasRanger.dk" site_id="62a0aefc7c5f9f00075b4e24">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62a0aefc7c5f9f00075b4e24">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Matlock.dk" site_id="66290a779e68c20008a18cf3">Matlock</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66290a779e68c20008a18cf3">Matlock</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DiagnosisMurder.dk" site_id="668bf7dd74f5ec000817e6d1">Diagnosis Murder</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="668bf7dd74f5ec000817e6d1">Diagnosis Murder</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Becker.dk" site_id="672e157d7d5da5000812872d">Becker</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="672e157d7d5da5000812872d">Becker</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MissionImpossible.dk" site_id="6478a9e4f77b61000817034b">Mission Impossible</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6478a9e4f77b61000817034b">Mission Impossible</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JAG.dk" site_id="654a4ab92c1d330008657ae5">JAG</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a4ab92c1d330008657ae5">JAG</channel>
<channel site="pluto.tv" lang="da" xmltv_id="HappyDays.dk" site_id="654a4e29ab05240008a18625">Happy Days</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a4e29ab05240008a18625">Happy Days</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Wings.dk" site_id="654a4d76f9cc820008686a5a">Wings</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a4d76f9cc820008686a5a">Wings</channel>
<channel site="pluto.tv" lang="da" xmltv_id="LoveBoat.dk" site_id="654a4cc3f91d250008ac11f6">Love Boat</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a4cc3f91d250008ac11f6">Love Boat</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BeautyandtheBeast.dk" site_id="6512ec7a2ce8e40008bdb433">Beauty and the Beast</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6512ec7a2ce8e40008bdb433">Beauty and the Beast</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVTrueCrime.dk" site_id="61c097ec8bb1830008e3f962">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c097ec8bb1830008e3f962">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="da" xmltv_id="COPS.dk" site_id="6400bc50953da40008b94668">COPS</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6400bc50953da40008b94668">COPS</channel>
<channel site="pluto.tv" lang="da" xmltv_id="48Hours.dk" site_id="6346937a46f9a2000889073d">48 Hours</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6346937a46f9a2000889073d">48 Hours</channel>
<channel site="pluto.tv" lang="da" xmltv_id="CrimeSceneSolvers.dk" site_id="6426a821a3ade7000800031c">Crime Scene Solvers</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6426a821a3ade7000800031c">Crime Scene Solvers</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ForensicFiles.dk" site_id="6181241c1a35d50007874c27">Forensic Files</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6181241c1a35d50007874c27">Forensic Files</channel>
<channel site="pluto.tv" lang="da" xmltv_id="FBIFiles.dk" site_id="61814659533163000748aa04">FBI Files</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61814659533163000748aa04">FBI Files</channel>
<channel site="pluto.tv" lang="da" xmltv_id="HomicideHunter.dk" site_id="619e21b213ef6b0007d8c17a">Homicide Hunter</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="619e21b213ef6b0007d8c17a">Homicide Hunter</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheNewDetectives.dk" site_id="618147d2a814250007b42916">The New Detectives</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="618147d2a814250007b42916">The New Detectives</channel>
<channel site="pluto.tv" lang="da" xmltv_id="OntheCase.dk" site_id="62cd971cec90c20007081050">On the Case</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62cd971cec90c20007081050">On the Case</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVFilm.dk" site_id="61c09515fbb4b50007d221f5">Pluto TV Film</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09515fbb4b50007d221f5">Pluto TV Film</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVAction.dk" site_id="61c095861782bd000780e0ba">Pluto TV Action</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c095861782bd000780e0ba">Pluto TV Action</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVHumor.dk" site_id="61c0974945b45d0007aaa5ac">Pluto TV Humor</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0974945b45d0007aaa5ac">Pluto TV Humor</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVHorror.dk" site_id="63a1c9790cc44a0007dc8857">Pluto TV Horror</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63a1c9790cc44a0007dc8857">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVKultfilm.dk" site_id="63dbe7ed51f5d000083e9499">Pluto TV Kultfilm</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63dbe7ed51f5d000083e9499">Pluto TV Kultfilm</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVRomantik.dk" site_id="63a1c954d3897300079fcb12">Pluto TV Romantik</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63a1c954d3897300079fcb12">Pluto TV Romantik</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVSpænding.dk" site_id="61c0965bface1f0007c67206">Pluto TV Spænding</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0965bface1f0007c67206">Pluto TV Spænding</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVBud&amp;Terence.dk" site_id="65b915b1dc10a40008d53797">Pluto TV Bud &amp; Terence</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65b915b1dc10a40008d53797">Pluto TV Bud &amp; Terence</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVHajfilm.dk" site_id="6670422f64aca60008c51045">Pluto TV Hajfilm</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6670422f64aca60008c51045">Pluto TV Hajfilm</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ViafreeMovies.dk" site_id="62bebc3459624e00078209c3">Viafree Movies</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62bebc3459624e00078209c3">Viafree Movies</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BeavisandButt-Head.dk" site_id="6486e8984cfc2c0008b6844e">Beavis and Butt-Head</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6486e8984cfc2c0008b6844e">Beavis and Butt-Head</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BroadCity.dk" site_id="65cba73611ced700082123bc">Broad City</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65cba73611ced700082123bc">Broad City</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Chappelle'sShow.dk" site_id="65e976ad0d456100082d9b74">Chappelle's Show</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65e976ad0d456100082d9b74">Chappelle's Show</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Reno911.dk" site_id="65e9766eec9fda0008cb418a">Reno 911</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65e9766eec9fda0008cb418a">Reno 911</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Tosh.0.dk" site_id="65e977042873090008b48be9">Tosh.0</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65e977042873090008b48be9">Tosh.0</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Key&amp;Peele.dk" site_id="65cba715dc10a40008034917">Key &amp; Peele</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65cba715dc10a40008034917">Key &amp; Peele</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ComedyCentralRoast.dk" site_id="6641fd41b18d700008e7e2b8">Comedy Central Roast</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6641fd41b18d700008e7e2b8">Comedy Central Roast</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ComedyCentral.dk" site_id="61c0989431084d0007eab12d">Comedy Central</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0989431084d0007eab12d">Comedy Central</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Awkward.dk" site_id="61c0925c738ecd000882450a">Awkward</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0925c738ecd000882450a">Awkward</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Zoey101.dk" site_id="6458e687f3f5b100085fdcb3">Zoey 101</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6458e687f3f5b100085fdcb3">Zoey 101</channel>
<channel site="pluto.tv" lang="da" xmltv_id="FailArmy.dk" site_id="6177f6bf7693550007531275">FailArmy</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6177f6bf7693550007531275">FailArmy</channel>
<channel site="pluto.tv" lang="da" xmltv_id="JustforLaughs.dk" site_id="6177fd9812fe0c000726f9eb">Just for Laughs</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6177fd9812fe0c000726f9eb">Just for Laughs</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheDailyShow.dk" site_id="65c096d23ba51e0008305a75">The Daily Show</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65c096d23ba51e0008305a75">The Daily Show</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DengulesofamedAllanSindberg.dk" site_id="66b22714d512590008c3d573">Den gule sofa med Allan Sindberg</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66b22714d512590008c3d573">Den gule sofa med Allan Sindberg</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DetseneshowmedChristianFuhlendorff.dk" site_id="660d6bc10cd4630008f4a25a">Det sene show med Christian Fuhlendorff</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d6bc10cd4630008f4a25a">Det sene show med Christian Fuhlendorff</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Breinholts.dk" site_id="660d6c0094db140008fe2f74">Breinholts</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d6c0094db140008fe2f74">Breinholts</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Nosey.dk" site_id="619e1ef4f42ad90007e00a21">Nosey</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="619e1ef4f42ad90007e00a21">Nosey</channel>
<channel site="pluto.tv" lang="da" xmltv_id="HotOnes.dk" site_id="655ca7405812e80008883d4e">Hot Ones</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="655ca7405812e80008883d4e">Hot Ones</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BestofTheDrewBarrymoreShow.dk" site_id="62beb692cda2b10007d5fd76">Best of The Drew Barrymore Show</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62beb692cda2b10007d5fd76">Best of The Drew Barrymore Show</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVStarTrek.dk" site_id="61c1979dfa307000070bbe4d">Pluto TV Star Trek</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c1979dfa307000070bbe4d">Pluto TV Star Trek</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVSci-Fi.dk" site_id="61f9598588f86000078ee7d6">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61f9598588f86000078ee7d6">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Andromeda.dk" site_id="6177fb39b68ef1000725e59e">Andromeda</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6177fb39b68ef1000725e59e">Andromeda</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVAlienInvasion.dk" site_id="650999b86a841400083bd1ab">Pluto TV Alien Invasion</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="650999b86a841400083bd1ab">Pluto TV Alien Invasion</channel>
<channel site="pluto.tv" lang="da" xmltv_id="UnsolvedMysteries.dk" site_id="61813fbfa19d830007b456c2">Unsolved Mysteries</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61813fbfa19d830007b456c2">Unsolved Mysteries</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheTwilightZone.dk" site_id="6512ec9f3a0d700008db4f0c">The Twilight Zone</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6512ec9f3a0d700008db4f0c">The Twilight Zone</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TalesfromtheDarkside.dk" site_id="65143052a1217e0009308b5e">Tales from the Darkside</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65143052a1217e0009308b5e">Tales from the Darkside</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVParanormal.dk" site_id="62b30beb81f89900071fc7b9">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62b30beb81f89900071fc7b9">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="da" xmltv_id="GhostDimension.dk" site_id="619e1bb3e9af5a0007f235ad">Ghost Dimension</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="619e1bb3e9af5a0007f235ad">Ghost Dimension</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVDokumentar.dk" site_id="62b30b0060a9ca0007d628b4">Pluto TV Dokumentar</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62b30b0060a9ca0007d628b4">Pluto TV Dokumentar</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVSpace.dk" site_id="61b86c6ef30f5d0007e4c6d1">Pluto TV Space</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61b86c6ef30f5d0007e4c6d1">Pluto TV Space</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ISurvived.dk" site_id="657881c46e4f6a00087414c2">I Survived</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="657881c46e4f6a00087414c2">I Survived</channel>
<channel site="pluto.tv" lang="da" xmltv_id="LovethePlanet.dk" site_id="65c243143ef47d00084c90a9">Love the Planet</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65c243143ef47d00084c90a9">Love the Planet</channel>
<channel site="pluto.tv" lang="da" xmltv_id="ModernMarvels.dk" site_id="6578812b12d5ee000884c5c6">Modern Marvels</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6578812b12d5ee000884c5c6">Modern Marvels</channel>
<channel site="pluto.tv" lang="da" xmltv_id="IcePilots.dk" site_id="62cd97fb9f8154000727516c">Ice Pilots</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62cd97fb9f8154000727516c">Ice Pilots</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Survivorman.dk" site_id="65ba4f23c798e800085f8627">Survivorman</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65ba4f23c798e800085f8627">Survivorman</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RiverMonsters.dk" site_id="662a271c06839f0008ccf733">River Monsters</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="662a271c06839f0008ccf733">River Monsters</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SmithsonianChannelSelects.dk" site_id="61fb988e032c0100077d5252">Smithsonian Channel Selects</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61fb988e032c0100077d5252">Smithsonian Channel Selects</channel>
<channel site="pluto.tv" lang="da" xmltv_id="NatureTime.dk" site_id="61eeb4a701020c00075676ef">Nature Time</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61eeb4a701020c00075676ef">Nature Time</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVSport.dk" site_id="6357f3de3643ba0007bc0b50">Pluto TV Sport</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6357f3de3643ba0007bc0b50">Pluto TV Sport</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PFLMMA.dk" site_id="65b8f959eb87e30008333201">PFL MMA</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65b8f959eb87e30008333201">PFL MMA</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RealmadridTV.dk" site_id="660d714719ca71000849cc1f">Realmadrid TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660d714719ca71000849cc1f">Realmadrid TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MedianoTV.dk" site_id="66952e1ed512590008867b5a">Mediano TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66952e1ed512590008867b5a">Mediano TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="3point.dk.dk" site_id="65b915780cb1a1000889b837">3point.dk</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65b915780cb1a1000889b837">3point.dk</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Kickin'it.dk" site_id="659fbb566e4f6a0008b868e6">Kickin'it</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="659fbb566e4f6a0008b868e6">Kickin'it</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DAZNCombat.dk" site_id="64805922536e0c0008a1a1e6">DAZN Combat</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="64805922536e0c0008a1a1e6">DAZN Combat</channel>
<channel site="pluto.tv" lang="da" xmltv_id="KvartiBold.dk" site_id="657c0954dfed030008d82ea1">Kvart i Bold</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="657c0954dfed030008d82ea1">Kvart i Bold</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DAZNWomen'sFootball.dk" site_id="64a282dfaab9ce0008cff18e">DAZN Women's Football</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="64a282dfaab9ce0008cff18e">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="da" xmltv_id="FIFA+.dk" site_id="660bfc7b2433010008def3e3">FIFA+</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="660bfc7b2433010008def3e3">FIFA+</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BET25LIVE.dk" site_id="6405d444d200410008009419">BET25 LIVE</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6405d444d200410008009419">BET25 LIVE</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BellatorMMA.dk" site_id="62792f34f3aa05000728841e">Bellator MMA</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62792f34f3aa05000728841e">Bellator MMA</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PGATOUR.dk" site_id="66c870112630fc0008137ae2">PGA TOUR</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66c870112630fc0008137ae2">PGA TOUR</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TritonPoker.dk" site_id="668e5f2bcd0d3100080f6952">Triton Poker</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="668e5f2bcd0d3100080f6952">Triton Poker</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RobotWarsbyMECH+.dk" site_id="64ff1fa5bd341e000823a497">Robot Wars by MECH+</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="64ff1fa5bd341e000823a497">Robot Wars by MECH+</channel>
<channel site="pluto.tv" lang="da" xmltv_id="IMPACTWrestling.dk" site_id="63d8dcefda71180008829bcd">IMPACT Wrestling</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63d8dcefda71180008829bcd">IMPACT Wrestling</channel>
<channel site="pluto.tv" lang="da" xmltv_id="WomenofWrestling.dk" site_id="66a0fe3bd2d50d00081118e9">Women of Wrestling</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66a0fe3bd2d50d00081118e9">Women of Wrestling</channel>
<channel site="pluto.tv" lang="da" xmltv_id="GloryKickboxing.dk" site_id="65e9b6498b24c8000806b982">Glory Kickboxing</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65e9b6498b24c8000806b982">Glory Kickboxing</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MonsterJam.dk" site_id="65c33fd4dc10a40008f26af8">Monster Jam</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65c33fd4dc10a40008f26af8">Monster Jam</channel>
<channel site="pluto.tv" lang="da" xmltv_id="UnbeatenSports.dk" site_id="639b549d69e63c0007854fa0">Unbeaten Sports</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="639b549d69e63c0007854fa0">Unbeaten Sports</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BilliardTV.dk" site_id="65df112b66eec8000897b965">Billiard TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65df112b66eec8000897b965">Billiard TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PadeltimeTV.dk" site_id="65c2424eec452d0008987459">Padeltime TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65c2424eec452d0008987459">Padeltime TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="WorldPokerTour.dk" site_id="6177f8fdef21ab0007332b53">World Poker Tour</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6177f8fdef21ab0007332b53">World Poker Tour</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Wired2fishTV.dk" site_id="668543e48768aa0008fee18e">Wired2fish TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="668543e48768aa0008fee18e">Wired2fish TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVFishing.dk" site_id="619e1874e0d3a7000729a036">Pluto TV Fishing</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="619e1874e0d3a7000729a036">Pluto TV Fishing</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVClassic.dk" site_id="6329ceeac55af500083077e3">MTV Classic</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6329ceeac55af500083077e3">MTV Classic</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVBiggestPop.dk" site_id="6697952e85612600089f4862">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6697952e85612600089f4862">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Dansktoppen.dk" site_id="654a4e9d83595c0008183f5e">Dansktoppen</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a4e9d83595c0008183f5e">Dansktoppen</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVMovieHits.dk" site_id="6331a4df44111b00076b15f7">MTV Movie Hits</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6331a4df44111b00076b15f7">MTV Movie Hits</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVRocks.dk" site_id="638f2baf818a0c00072aa079">MTV Rocks</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="638f2baf818a0c00072aa079">MTV Rocks</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVLoveMusic.dk" site_id="62beb7a0f9db450007a123c5">MTV Love Music</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62beb7a0f9db450007a123c5">MTV Love Music</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVonTour!.dk" site_id="65ba492b0cb1a100088d2960">MTV on Tour!</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65ba492b0cb1a100088d2960">MTV on Tour!</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVSpankin'New.dk" site_id="6697943ffe11e500083a4695">MTV Spankin' New</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6697943ffe11e500083a4695">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVUnplugged.dk" site_id="61c09489197fe600073c0570">MTV Unplugged</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09489197fe600073c0570">MTV Unplugged</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Yo!MTV.dk" site_id="669795b73a4ad20008df87ca">Yo! MTV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="669795b73a4ad20008df87ca">Yo! MTV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="MTVFlowLatino.dk" site_id="66979648a1b69e00082923e0">MTV Flow Latino</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66979648a1b69e00082923e0">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="da" xmltv_id="CBSNews24/7.dk" site_id="61e82af27027f9000753c6e4">CBS News 24/7</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61e82af27027f9000753c6e4">CBS News 24/7</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Reuters.dk" site_id="65c119083af63d0008640382">Reuters</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65c119083af63d0008640382">Reuters</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BloombergTV+.dk" site_id="61de991729cd4a00079f812b">Bloomberg TV+</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61de991729cd4a00079f812b">Bloomberg TV+</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Euronews.dk" site_id="61de96114757070008d33cae">Euronews</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61de96114757070008d33cae">Euronews</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Avatar.dk" site_id="61c09b48d6d97900076e91c5">Avatar</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09b48d6d97900076e91c5">Avatar</channel>
<channel site="pluto.tv" lang="da" xmltv_id="InazumaEleven.dk" site_id="646cc5dfee6a2f000830943e">Inazuma Eleven</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="646cc5dfee6a2f000830943e">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Yu-Gi-Oh!.dk" site_id="642af9a19189ce00088f44ab">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="642af9a19189ce00088f44ab">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Julesjovforbørn.dk" site_id="63204b531e0d4d00076a4177">Julesjov for børn</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63204b531e0d4d00076a4177">Julesjov for børn</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Detstoreeksperiment.dk" site_id="6548f55cf9cc820008658c2d">Det store eksperiment</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6548f55cf9cc820008658c2d">Det store eksperiment</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SvampeBobFirkant.dk" site_id="61c09ac98a80a4000703f992">SvampeBob Firkant</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09ac98a80a4000703f992">SvampeBob Firkant</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Victorious.dk" site_id="652d1eb9b4b047000820f5bb">Victorious</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="652d1eb9b4b047000820f5bb">Victorious</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SchoolofRock.dk" site_id="6620f860420da900080b361f">School of Rock</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6620f860420da900080b361f">School of Rock</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PawPatrol.dk" site_id="61c0b6cffb9ae40007d099fe">Paw Patrol</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0b6cffb9ae40007d099fe">Paw Patrol</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVforbørn.dk" site_id="61c09938e0d3a700072b68b1">Pluto TV for børn</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09938e0d3a700072b68b1">Pluto TV for børn</channel>
<channel site="pluto.tv" lang="da" xmltv_id="PlutoTVfordemindste.dk" site_id="61c09a78bd194c0008decc28">Pluto TV for de mindste</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c09a78bd194c0008decc28">Pluto TV for de mindste</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Højshus.dk" site_id="63048243edb70a0007e5b49e">Højs hus</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63048243edb70a0007e5b49e">Højs hus</channel>
<channel site="pluto.tv" lang="da" xmltv_id="iCarly.dk" site_id="61c0b9aab7facb0007913908">iCarly</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0b9aab7facb0007913908">iCarly</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Sam&amp;Cat.dk" site_id="65c5f1cd11ced7000817e5c7">Sam &amp; Cat</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="65c5f1cd11ced7000817e5c7">Sam &amp; Cat</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BigTimeRush.dk" site_id="6537aa8b7312a4000810811c">Big Time Rush</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6537aa8b7312a4000810811c">Big Time Rush</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BlazeogMonstermaskinerne.dk" site_id="61c0b7f1f5bb3e00072e8561">Blaze og Monstermaskinerne</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0b7f1f5bb3e00072e8561">Blaze og Monstermaskinerne</channel>
<channel site="pluto.tv" lang="da" xmltv_id="BubbleGuppies.dk" site_id="64885c128e3c0a0008eb46dd">Bubble Guppies</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="64885c128e3c0a0008eb46dd">Bubble Guppies</channel>
<channel site="pluto.tv" lang="da" xmltv_id="DoraTV.dk" site_id="61c0b878f571b80007b84786">Dora TV</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0b878f571b80007b84786">Dora TV</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TotallyTurtles.dk" site_id="61c0bbd95df1da0007bed5a0">Totally Turtles</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61c0bbd95df1da0007bed5a0">Totally Turtles</channel>
<channel site="pluto.tv" lang="da" xmltv_id="NickUkraine.dk" site_id="61e6ad0826ce8a0007fde40d">Nick Ukraine</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61e6ad0826ce8a0007fde40d">Nick Ukraine</channel>
<channel site="pluto.tv" lang="da" xmltv_id="HenryDanger.dk" site_id="6177fc90a3580d000896787c">Henry Danger</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6177fc90a3580d000896787c">Henry Danger</channel>
<channel site="pluto.tv" lang="da" xmltv_id="FamilienThunderman.dk" site_id="61e0608a2a0b2700078687e2">Familien Thunderman</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="61e0608a2a0b2700078687e2">Familien Thunderman</channel>
<channel site="pluto.tv" lang="da" xmltv_id="TheNanny.dk" site_id="6391cef9edb23c0008598cee">The Nanny</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6391cef9edb23c0008598cee">The Nanny</channel>
<channel site="pluto.tv" lang="da" xmltv_id="FamilyTies.dk" site_id="654a4a3ef91d250008ac089b">Family Ties</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="654a4a3ef91d250008ac089b">Family Ties</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Taxi.dk" site_id="66b229b0d2d50d00083990b2">Taxi</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="66b229b0d2d50d00083990b2">Taxi</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SamsBar.dk" site_id="63e3b2cba99571000887a6ce">Sams Bar</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63e3b2cba99571000887a6ce">Sams Bar</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SabrinatheTeenageWitch.dk" site_id="6512ecf63a0d700008db506a">Sabrina the Teenage Witch</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6512ecf63a0d700008db506a">Sabrina the Teenage Witch</channel>
<channel site="pluto.tv" lang="da" xmltv_id="SpinCity.dk" site_id="63e3b25bc111bc0008ef4b94">Spin City</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63e3b25bc111bc0008ef4b94">Spin City</channel>
<channel site="pluto.tv" lang="da" xmltv_id="RulesofEngagement.dk" site_id="62beba5931c6de00079ed9cc">Rules of Engagement</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="62beba5931c6de00079ed9cc">Rules of Engagement</channel>
<channel site="pluto.tv" lang="da" xmltv_id="EverybodyHatesChris.dk" site_id="63a1cab19ab2df0007bf1c8b">Everybody Hates Chris</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="63a1cab19ab2df0007bf1c8b">Everybody Hates Chris</channel>
<channel site="pluto.tv" lang="da" xmltv_id="Frasier.dk" site_id="6400c095498393000878a634">Frasier</channel> <channel site="pluto.tv" lang="da" xmltv_id="" site_id="6400c095498393000878a634">Frasier</channel>
</channels> </channels>

View file

@ -1,147 +1,147 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="es" xmltv_id="Cherif.es" site_id="66d71c656b63480008cf0427">Cherif</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66d71c656b63480008cf0427">Cherif</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Síquieroesevestido.es" site_id="6578836cdfed030008ce5bdb">Sí quiero ese vestido</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6578836cdfed030008ce5bdb">Sí quiero ese vestido</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosmisteriosdeMurdoch.es" site_id="6682bd9b8768aa0008f25be5">Los misterios de Murdoch</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6682bd9b8768aa0008f25be5">Los misterios de Murdoch</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineNavideño.es" site_id="5f984b18dfe75800070e8645">Pluto TV Cine Navideño</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f984b18dfe75800070e8645">Pluto TV Cine Navideño</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DoctorWhoChristmas.es" site_id="650af01da1217e00091a90ce">Doctor Who Christmas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="650af01da1217e00091a90ce">Doctor Who Christmas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVHitsNavidad.es" site_id="5f984fdc470d460007a67094">MTV Hits Navidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f984fdc470d460007a67094">MTV Hits Navidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVKidsNavidad.es" site_id="5f984ba0c54853000797a5e6">Pluto TV Kids Navidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f984ba0c54853000797a5e6">Pluto TV Kids Navidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVChimenea.es" site_id="5fb40dd679cb120007306640">Pluto TV Chimenea</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fb40dd679cb120007306640">Pluto TV Chimenea</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BlueBloods.es" site_id="65786a1ccbd0d60008f7e2a9">Blue Bloods</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65786a1ccbd0d60008f7e2a9">Blue Bloods</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Embrujadas.es" site_id="657868a7a620e30008fdbfeb">Embrujadas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="657868a7a620e30008fdbfeb">Embrujadas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Medium.es" site_id="6578808014fbe400086e21bc">Medium</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6578808014fbe400086e21bc">Medium</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AlertaCobra.es" site_id="664c76d68ea5560008c6c7a4">Alerta Cobra</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="664c76d68ea5560008c6c7a4">Alerta Cobra</channel>
<channel site="pluto.tv" lang="es" xmltv_id="WalkerTexasRanger.es" site_id="65786e2c32c1b300089a4d21">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65786e2c32c1b300089a4d21">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Losvigilantesdelaplaya.es" site_id="664c76520120f40008b81db9">Los vigilantes de la playa</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="664c76520120f40008b81db9">Los vigilantes de la playa</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SensacióndeVivir(90210).es" site_id="6245c2a5eec07b0007249fc8">Sensación de Vivir (90210)</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6245c2a5eec07b0007249fc8">Sensación de Vivir (90210)</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MelrosePlace.es" site_id="6245c03922d9d4000760d205">Melrose Place</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6245c03922d9d4000760d205">Melrose Place</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CalltheMidwife.es" site_id="65dded6966eec80008947157">Call the Midwife</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65dded6966eec80008947157">Call the Midwife</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTelenovelasClásicas.es" site_id="662a69daa0a74e00087a1c72">Pluto TV Telenovelas Clásicas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="662a69daa0a74e00087a1c72">Pluto TV Telenovelas Clásicas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTelenovelas.es" site_id="60b4c06717da110007ee1af6">Pluto TV Telenovelas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60b4c06717da110007ee1af6">Pluto TV Telenovelas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasTurcas.es" site_id="65006530f5b5e400086f28b9">Pluto TV Novelas Turcas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65006530f5b5e400086f28b9">Pluto TV Novelas Turcas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVK-Drama.es" site_id="6475bfec536e0c0008858e9f">Pluto TV K-Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6475bfec536e0c0008858e9f">Pluto TV K-Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BBCDrama.es" site_id="60dafb9a0df1ba000758d37b">BBC Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60dafb9a0df1ba000758d37b">BBC Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeries.es" site_id="5f1ac8f49205650007bc15f1">Pluto TV Series</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac8f49205650007bc15f1">Pluto TV Series</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesComedia.es" site_id="5f9853138d19af0007104a8d">Pluto TV Series Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9853138d19af0007104a8d">Pluto TV Series Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Lasreglasdeljuego.es" site_id="5f1acb4eebe0f0000767b40f">Las reglas del juego</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acb4eebe0f0000767b40f">Las reglas del juego</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVStarTrek.es" site_id="619b7db4872c650008eb8b6a">Pluto TV Star Trek</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619b7db4872c650008eb8b6a">Pluto TV Star Trek</channel>
<channel site="pluto.tv" lang="es" xmltv_id="StarTrek:TheNextGeneration.es" site_id="65786b94cbd0d60008f7e4d9">Star Trek: The Next Generation</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65786b94cbd0d60008f7e4d9">Star Trek: The Next Generation</channel>
<channel site="pluto.tv" lang="es" xmltv_id="StarTrek:Voyager.es" site_id="65787f2eb228b7000843fa5c">Star Trek: Voyager</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65787f2eb228b7000843fa5c">Star Trek: Voyager</channel>
<channel site="pluto.tv" lang="es" xmltv_id="StarTrek:DeepSpaceNine.es" site_id="65787ed36e4f6a000873ff40">Star Trek: Deep Space Nine</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65787ed36e4f6a000873ff40">Star Trek: Deep Space Nine</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DoctorWho.es" site_id="60d3574e97f10800078455de">Doctor Who</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60d3574e97f10800078455de">Doctor Who</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Primeval.es" site_id="65dded9a0d456100081417ae">Primeval</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65dded9a0d456100081417ae">Primeval</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Andrómeda.es" site_id="5f1acc3e061597000768d4ea">Andrómeda</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acc3e061597000768d4ea">Andrómeda</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesSci-Fi.es" site_id="65ddec1ef7f0af0008be4b65">Pluto TV Series Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65ddec1ef7f0af0008be4b65">Pluto TV Series Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineEstelar.es" site_id="5f1ac1f1b66c76000790ef27">Pluto TV Cine Estelar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac1f1b66c76000790ef27">Pluto TV Cine Estelar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineAcción.es" site_id="5f1ac2591dd8880007bb7d6d">Pluto TV Cine Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac2591dd8880007bb7d6d">Pluto TV Cine Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNochesdeAcción.es" site_id="65f8123025e21c0013fadeb0">Pluto TV Noches de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65f8123025e21c0013fadeb0">Pluto TV Noches de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHorror.es" site_id="6267d4d1fb694f0007a6af0e">Pluto TV Horror</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6267d4d1fb694f0007a6af0e">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVZombies.es" site_id="65786888b228b7000843ad9a">Pluto TV Zombies</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65786888b228b7000843ad9a">Pluto TV Zombies</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVGore&amp;Slasher.es" site_id="66b0dfa1d512590008bfa7fd">Pluto TV Gore &amp; Slasher</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b0dfa1d512590008bfa7fd">Pluto TV Gore &amp; Slasher</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSci-Fi.es" site_id="5f6a38eaa5b68b0007a00e7a">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f6a38eaa5b68b0007a00e7a">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineComedia.es" site_id="5f1ac8099c49f600076579b2">Pluto TV Cine Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac8099c49f600076579b2">Pluto TV Cine Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVComediasRománticas.es" site_id="655b5d865812e80008843bd1">Pluto TV Comedias Románticas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655b5d865812e80008843bd1">Pluto TV Comedias Románticas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVWestern.es" site_id="6385e82900ab2e000768a058">Pluto TV Western</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6385e82900ab2e000768a058">Pluto TV Western</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineRomántico.es" site_id="5f1ac9a2d3611d0007a844bb">Pluto TV Cine Romántico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac9a2d3611d0007a844bb">Pluto TV Cine Romántico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVThrillers.es" site_id="5f1ac8a87cd38d000745d7cf">Pluto TV Thrillers</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac8a87cd38d000745d7cf">Pluto TV Thrillers</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVPsycho.es" site_id="65ce480a78df2200131c597b">Pluto TV Psycho</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65ce480a78df2200131c597b">Pluto TV Psycho</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineDrama.es" site_id="5f1ac947dcd00d0007937c08">Pluto TV Cine Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ac947dcd00d0007937c08">Pluto TV Cine Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCinedeautor.es" site_id="60cc807324d60a0007708dc8">Pluto TV Cine de autor</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60cc807324d60a0007708dc8">Pluto TV Cine de autor</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineClásico.es" site_id="61373bb45168fe000773eecd">Pluto TV Cine Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61373bb45168fe000773eecd">Pluto TV Cine Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Runtime.es" site_id="6086d3f420fc8500075f8dbf">Runtime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6086d3f420fc8500075f8dbf">Runtime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCatástrofes.es" site_id="645a309c5a0cd5000873f609">Pluto TV Catástrofes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645a309c5a0cd5000873f609">Pluto TV Catástrofes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosForenses.es" site_id="5f984f4a09e92d0007d74647">Archivos Forenses</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f984f4a09e92d0007d74647">Archivos Forenses</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Crimen&amp;Historia.es" site_id="64ddcbb14c5ed80008fad416">Crimen &amp; Historia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ddcbb14c5ed80008fad416">Crimen &amp; Historia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Losnuevosdetectives.es" site_id="5f1acba0d1f6340007db8843">Los nuevos detectives</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acba0d1f6340007db8843">Los nuevos detectives</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosarchivosdelFBI.es" site_id="5f1acbed25948a0007ffbe65">Los archivos del FBI</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acbed25948a0007ffbe65">Los archivos del FBI</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVParanormal.es" site_id="612ce5214bb5790007ad3016">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="612ce5214bb5790007ad3016">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVInvasiónAlien.es" site_id="654a35ce346f420008d5c36e">Pluto TV Invasión Alien</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="654a35ce346f420008d5c36e">Pluto TV Invasión Alien</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTrueCrime.es" site_id="64a3f200f238ce0008d47247">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64a3f200f238ce0008d47247">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CazadordeHomicidas.es" site_id="60ed5fb9c4716d0007d180c5">Cazador de Homicidas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60ed5fb9c4716d0007d180c5">Cazador de Homicidas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElDetectiveEndeavour.es" site_id="619b9f16b8fee4000832d447">El Detective Endeavour</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619b9f16b8fee4000832d447">El Detective Endeavour</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriescriminales.es" site_id="65cf6ab58145cb0008129ca8">Pluto TV Series criminales</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65cf6ab58145cb0008129ca8">Pluto TV Series criminales</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AsesinatosdeMidsomer.es" site_id="5f1aca8310a30e00074fab92">Asesinatos de Midsomer</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1aca8310a30e00074fab92">Asesinatos de Midsomer</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Poirot&amp;MissMarple.es" site_id="6304f530440dc90007f514d3">Poirot &amp; Miss Marple</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6304f530440dc90007f514d3">Poirot &amp; Miss Marple</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Cazasubastas.es" site_id="6335a6b6e6f7a600076e589e">Cazasubastas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6335a6b6e6f7a600076e589e">Cazasubastas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Empeñosalobestia.es" site_id="60218baa464ef900073168c1">Empeños a lo bestia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60218baa464ef900073168c1">Empeños a lo bestia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LafiebredelJade.es" site_id="65254e8d81f9420008342cee">La fiebre del Jade</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65254e8d81f9420008342cee">La fiebre del Jade</channel>
<channel site="pluto.tv" lang="es" xmltv_id="COPS.es" site_id="6554bd45aa9ffb00088e5589">COPS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6554bd45aa9ffb00088e5589">COPS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVExtremo.es" site_id="65a6884c07e03a00088e0d6e">Pluto TV Extremo</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65a6884c07e03a00088e0d6e">Pluto TV Extremo</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FailArmy.es" site_id="5f1abf5fafb5ee0007d4d0ca">FailArmy</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1abf5fafb5ee0007d4d0ca">FailArmy</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Wipeout.es" site_id="604f8125c6669b00077f7699">Wipeout</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="604f8125c6669b00077f7699">Wipeout</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CarChase.es" site_id="65b3b6da4a10d800087d31ef">Car Chase</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65b3b6da4a10d800087d31ef">Car Chase</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IcePilots.es" site_id="61b9edc4a4ca6100070bb407">Ice Pilots</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61b9edc4a4ca6100070bb407">Ice Pilots</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Elencantadordeperros.es" site_id="60e45687313c5f0007bc8e94">El encantador de perros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60e45687313c5f0007bc8e94">El encantador de perros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElComisario.es" site_id="60c343007bcabe0007242aa6">El Comisario</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60c343007bcabe0007242aa6">El Comisario</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVComediamadeinSpain.es" site_id="5f1abce155a03d0007718834">Pluto TV Comedia made in Spain</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1abce155a03d0007718834">Pluto TV Comedia made in Spain</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Anaylos7.es" site_id="5f1acce7f17797000718f9be">Ana y los 7</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acce7f17797000718f9be">Ana y los 7</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Alsalirdeclase.es" site_id="65b91e530d9ab40008340d8d">Al salir de clase</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65b91e530d9ab40008340d8d">Al salir de clase</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CurroJiménez.es" site_id="5f1acd36779de70007a680d1">Curro Jiménez</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acd36779de70007a680d1">Curro Jiménez</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Vayasemanita.es" site_id="5f28009b150b2500077766b8">Vaya semanita</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f28009b150b2500077766b8">Vaya semanita</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Ciudadanosporelmundo.es" site_id="622f42b831233300078658cc">Ciudadanos por el mundo</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="622f42b831233300078658cc">Ciudadanos por el mundo</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Enelpuntodemira.es" site_id="61922be835f3910007fc58f6">En el punto de mira</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61922be835f3910007fc58f6">En el punto de mira</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCocina.es" site_id="5f1acdaa8ba90f0007d5e760">Pluto TV Cocina</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1acdaa8ba90f0007d5e760">Pluto TV Cocina</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHistoria.es" site_id="61cd7b49543066000713b620">Pluto TV Historia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61cd7b49543066000713b620">Pluto TV Historia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDiseño.es" site_id="64db2e0835425100080f2f5a">Pluto TV Diseño</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64db2e0835425100080f2f5a">Pluto TV Diseño</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Homeful.es" site_id="65786abdb3801200084c593a">Homeful</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65786abdb3801200084c593a">Homeful</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PRIDEtv.es" site_id="65eeffc50d4561000836f191">PRIDEtv</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65eeffc50d4561000836f191">PRIDEtv</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NatureTime.es" site_id="60dd6b1da79e4d0007309455">Nature Time</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60dd6b1da79e4d0007309455">Nature Time</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnimales.es" site_id="600ae6a78d801e0007117d21">Pluto TV Animales</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="600ae6a78d801e0007117d21">Pluto TV Animales</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TopGear.es" site_id="60d356a534f63f000850cdd7">Top Gear</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60d356a534f63f000850cdd7">Top Gear</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FIFA+.es" site_id="660c29f80cd4630008f1547c">FIFA+</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="660c29f80cd4630008f1547c">FIFA+</channel>
<channel site="pluto.tv" lang="es" xmltv_id="RealmadridTV.es" site_id="65f96cd34e01740008ef1c97">Realmadrid TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65f96cd34e01740008ef1c97">Realmadrid TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MODUSSuperSeriesDarts.es" site_id="67164414e40c4a00087f450d">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="67164414e40c4a00087f450d">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMotor.es" site_id="6080345ebb49b90007ce0baf">Pluto TV Motor</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6080345ebb49b90007ce0baf">Pluto TV Motor</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tuning.es" site_id="6076c74daa05ac0007d0eb07">Tuning</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6076c74daa05ac0007d0eb07">Tuning</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MonsterJam.es" site_id="65c347ae3a116800078c93c5">Monster Jam</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65c347ae3a116800078c93c5">Monster Jam</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PFLMMA.es" site_id="654a5f7d4d6d8f00084ecaac">PFL MMA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="654a5f7d4d6d8f00084ecaac">PFL MMA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BilliardTV.es" site_id="65df339028730900089ed64b">Billiard TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df339028730900089ed64b">Billiard TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TritonPoker.es" site_id="66275d2d039f940008cc47b4">Triton Poker</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66275d2d039f940008cc47b4">Triton Poker</channel>
<channel site="pluto.tv" lang="es" xmltv_id="WorldPokerTour.es" site_id="6080381ab7c9ea00074ec64c">World Poker Tour</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6080381ab7c9ea00074ec64c">World Poker Tour</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVVergüenzaajena.es" site_id="63eb9495a8b227000841bf64">MTV Vergüenza ajena</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb9495a8b227000841bf64">MTV Vergüenza ajena</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVCatfishTVShow.es" site_id="5f1ab3c7778230000735cf41">MTV Catfish TV Show</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1ab3c7778230000735cf41">MTV Catfish TV Show</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVOriginals.es" site_id="5f1aadf373bed3000794d1d7">MTV Originals</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1aadf373bed3000794d1d7">MTV Originals</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVJerseys.es" site_id="62ac3d7dc23b400008ae5b5a">MTV Jerseys</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62ac3d7dc23b400008ae5b5a">MTV Jerseys</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRealities.es" site_id="6130d8dc943001000708548d">MTV Realities</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6130d8dc943001000708548d">MTV Realities</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVEmbarazadaalos16.es" site_id="5f98537a5a4341000733aefe">MTV Embarazada a los 16</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f98537a5a4341000733aefe">MTV Embarazada a los 16</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVTeenMom.es" site_id="604f81a49ef73300070e554f">MTV Teen Mom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="604f81a49ef73300070e554f">MTV Teen Mom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVGeordies.es" site_id="627d3176d7dfa500077042f1">MTV Geordies</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="627d3176d7dfa500077042f1">MTV Geordies</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark.es" site_id="628751bb7154a40007168843">South Park</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="628751bb7154a40007168843">South Park</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthParkVersiónOriginal.es" site_id="63d7a8e5a9957100086bfc23">South Park Versión Original</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63d7a8e5a9957100086bfc23">South Park Versión Original</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DetectiveConan.es" site_id="629a066860ef810008267b70">Detective Conan</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="629a066860ef810008267b70">Detective Conan</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yu-Gi-Oh!.es" site_id="63eb96754e83e70008ab8941">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb96754e83e70008ab8941">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="es" xmltv_id="InazumaEleven.es" site_id="632c6df43d2bc5000751f621">Inazuma Eleven</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="632c6df43d2bc5000751f621">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnime.es" site_id="608035b8d8705f0007260287">Pluto TV Anime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="608035b8d8705f0007260287">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasTortugasNinja.es" site_id="61373f1a12dd9f00077dcd6f">Las Tortugas Ninja</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61373f1a12dd9f00077dcd6f">Las Tortugas Ninja</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Avatar.es" site_id="61373c865ed5810007173fbc">Avatar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61373c865ed5810007173fbc">Avatar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Beyblade.es" site_id="664c8afe3d173b00080eef5c">Beyblade</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="664c8afe3d173b00080eef5c">Beyblade</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Euronews.es" site_id="60d3583ef310610007fb02b1">Euronews</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60d3583ef310610007fb02b1">Euronews</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CBSNews24/7.es" site_id="6231ede1be5b460007f91bc1">CBS News 24/7</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6231ede1be5b460007f91bc1">CBS News 24/7</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CNNFast.es" site_id="66c45c0de7f5e80008b82005">CNN Fast</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c45c0de7f5e80008b82005">CNN Fast</channel>
<channel site="pluto.tv" lang="es" xmltv_id="VH1Classics.es" site_id="6076cd1df8576d0007c82193">VH1 Classics</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6076cd1df8576d0007c82193">VH1 Classics</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRock.es" site_id="65786d29dfed030008ce2fa7">MTV Rock</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65786d29dfed030008ce2fa7">MTV Rock</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVMusicMadeinSpain.es" site_id="60a26a056d55b30007918d5a">MTV Music Made in Spain</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60a26a056d55b30007918d5a">MTV Music Made in Spain</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVBiggestPop.es" site_id="668677f7fd9eb200087b673a">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="668677f7fd9eb200087b673a">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVNewMusic.es" site_id="668677b774f5ec0008124f33">MTV New Music</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="668677b774f5ec0008124f33">MTV New Music</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yo!MTV.es" site_id="668678bc0642e500080f90c6">Yo! MTV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="668678bc0642e500080f90c6">Yo! MTV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVPartyMusic.es" site_id="61ea759737679900078ff559">MTV Party Music</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61ea759737679900078ff559">MTV Party Music</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVFlowLatino.es" site_id="6686796619311200085310a0">MTV Flow Latino</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6686796619311200085310a0">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVReggaeton.es" site_id="65787eab32c1b300089a84d7">MTV Reggaeton</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65787eab32c1b300089a84d7">MTV Reggaeton</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BobEsponja.es" site_id="5f1aca0b4e448e00075e7c5e">Bob Esponja</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1aca0b4e448e00075e7c5e">Bob Esponja</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Lospadrinosmágicos.es" site_id="6304f626d1a0ac00083a05c5">Los padrinos mágicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6304f626d1a0ac00083a05c5">Los padrinos mágicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Rugrats.es" site_id="610c09219fc0430007a3fce6">Rugrats</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="610c09219fc0430007a3fce6">Rugrats</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Éraseunavez....es" site_id="63c69c87808b740007599fe1">Érase una vez...</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63c69c87808b740007599fe1">Érase una vez...</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HeidiyMarco.es" site_id="66a0f64dd5125900089dec28">Heidi y Marco</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a0f64dd5125900089dec28">Heidi y Marco</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVToonsClásico.es" site_id="609e7e423e9173000706a681">Pluto TV Toons Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609e7e423e9173000706a681">Pluto TV Toons Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DoralaExploradora.es" site_id="624466b26ab25e0007dd7cfb">Dora la Exploradora</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="624466b26ab25e0007dd7cfb">Dora la Exploradora</channel>
<channel site="pluto.tv" lang="es" xmltv_id="WinxClub.es" site_id="62568a94ed1f380007b0211f">Winx Club</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62568a94ed1f380007b0211f">Winx Club</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVKidsUkraine.es" site_id="6228b6a38717420007375848">Pluto TV Kids Ukraine</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6228b6a38717420007375848">Pluto TV Kids Ukraine</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElReinoInfantil.es" site_id="6523f672a6c38300088cb807">El Reino Infantil</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6523f672a6c38300088cb807">El Reino Infantil</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVKids.es" site_id="5f1aab1d29b39600073e243f">Pluto TV Kids</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1aab1d29b39600073e243f">Pluto TV Kids</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTeen.es" site_id="63eb944dc111bc0008fe7021">Pluto TV Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb944dc111bc0008fe7021">Pluto TV Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BigTimeRush.es" site_id="5f1aa7aab66c76000790ee7e">Big Time Rush</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f1aa7aab66c76000790ee7e">Big Time Rush</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Zoey101.es" site_id="6511a53f473a54000854e2ee">Zoey 101</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6511a53f473a54000854e2ee">Zoey 101</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Victorious.es" site_id="6511a5d8d1f20c000864b951">Victorious</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6511a5d8d1f20c000864b951">Victorious</channel>
<channel site="pluto.tv" lang="es" xmltv_id="iCarly.es" site_id="6181404ef48321000797bc41">iCarly</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6181404ef48321000797bc41">iCarly</channel>
</channels> </channels>

View file

@ -1,149 +1,149 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="fr" xmltv_id="Diane,femmeflic.fr" site_id="6671b26836a2f90008d9333c">Diane, femme flic</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6671b26836a2f90008d9333c">Diane, femme flic</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="BlueBloods.fr" site_id="66f55a9a747bfa0008521859">Blue Bloods</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55a9a747bfa0008521859">Blue Bloods</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesMarseillais.fr" site_id="66f55d565e4a6e0008c2b9d2">Les Marseillais</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55d565e4a6e0008c2b9d2">Les Marseillais</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesReinesduShopping.fr" site_id="66f55c55940963000810bb14">Les Reines du Shopping</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55c55940963000810bb14">Les Reines du Shopping</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="ZoneInterdite.fr" site_id="66f55cf2483d460008f68746">Zone Interdite</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55cf2483d460008f68746">Zone Interdite</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Turbo.fr" site_id="66f55c3955567d0008ef9b68">Turbo</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55c3955567d0008ef9b68">Turbo</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="EnquêtesCriminelles.fr" site_id="66f55d0b5e4a6e0008c2b920">Enquêtes Criminelles</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55d0b5e4a6e0008c2b920">Enquêtes Criminelles</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="IncroyablesTransformations.fr" site_id="66f55d205e4a6e0008c2b92b">Incroyables Transformations</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66f55d205e4a6e0008c2b92b">Incroyables Transformations</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesAnges.fr" site_id="66b228d4cd0d3100085d27b7">Les Anges</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66b228d4cd0d3100085d27b7">Les Anges</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVFeudeCheminée.fr" site_id="60db451c706fe50007fdda13">Pluto TV Feu de Cheminée</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60db451c706fe50007fdda13">Pluto TV Feu de Cheminée</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="MODUSSuperSeriesDarts.fr" site_id="671643fc5534bb00089187ad">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="671643fc5534bb00089187ad">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="AlerteCobra.fr" site_id="62f3e4bc08f5ec000744f552">Alerte Cobra</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3e4bc08f5ec000744f552">Alerte Cobra</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Starsky&amp;Hutch.fr" site_id="6304979e62d51c000722df46">Starsky &amp; Hutch</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6304979e62d51c000722df46">Starsky &amp; Hutch</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="WalkerTexasRanger.fr" site_id="60afa749ac7f3200078adb40">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60afa749ac7f3200078adb40">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="MacGyver.fr" site_id="6245ccd0c6cdb800074632e4">MacGyver</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6245ccd0c6cdb800074632e4">MacGyver</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="DoctorWho.fr" site_id="60d359c98f262f00070c364e">Doctor Who</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60d359c98f262f00070c364e">Doctor Who</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="AlerteàMalibu.fr" site_id="60afaa535580be0007ac9ee4">Alerte à Malibu</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60afaa535580be0007ac9ee4">Alerte à Malibu</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="JAG.fr" site_id="65ccd26060eb870008db95fc">JAG</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65ccd26060eb870008db95fc">JAG</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="MelrosePlace.fr" site_id="6245ceece1977a00079e2fbd">Melrose Place</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6245ceece1977a00079e2fbd">Melrose Place</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVPolar.fr" site_id="5f8ed4dbf6bb0800071ffbcb">Pluto TV Polar</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed4dbf6bb0800071ffbcb">Pluto TV Polar</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTV90'sClassics.fr" site_id="66b4990746762a00084c2f78">Pluto TV 90's Classics</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66b4990746762a00084c2f78">Pluto TV 90's Classics</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTV2010'sClassics.fr" site_id="66b498bc14a2bb00086965bc">Pluto TV 2010's Classics</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66b498bc14a2bb00086965bc">Pluto TV 2010's Classics</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVSériesFantastiques.fr" site_id="625ec7a1c853fd00073b38fd">Pluto TV Séries Fantastiques</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="625ec7a1c853fd00073b38fd">Pluto TV Séries Fantastiques</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVSeries.fr" site_id="5f8ed2d1c34c2300073bf02c">Pluto TV Series</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed2d1c34c2300073bf02c">Pluto TV Series</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="BBCDrama.fr" site_id="60d35a74c63c3c0008df6a90">BBC Drama</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60d35a74c63c3c0008df6a90">BBC Drama</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Amour,GloireetBeauté.fr" site_id="61533b6334ba9b000763d7b1">Amour, Gloire et Beauté</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="61533b6334ba9b000763d7b1">Amour, Gloire et Beauté</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVTelenovela.fr" site_id="5f914f9dccb4de0007df8bc4">Pluto TV Telenovela</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f914f9dccb4de0007df8bc4">Pluto TV Telenovela</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlusBelleLaVie.fr" site_id="5f8ed5fba4ffb8000764ea01">Plus Belle La Vie</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed5fba4ffb8000764ea01">Plus Belle La Vie</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlusBellelaVie2.fr" site_id="662a6309307fa30008196b4e">Plus Belle la Vie 2</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="662a6309307fa30008196b4e">Plus Belle la Vie 2</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Ungars,unefille.fr" site_id="62f3ece7b09fd6000783bfb9">Un gars, une fille</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3ece7b09fd6000783bfb9">Un gars, une fille</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Lesfillesd'àcôté.fr" site_id="60549d97cd7b090007c73314">Les filles d'à côté</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60549d97cd7b090007c73314">Les filles d'à côté</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Hélèneetlesgarçons.fr" site_id="604f8de01b479400078fb1e7">Hélène et les garçons</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="604f8de01b479400078fb1e7">Hélène et les garçons</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesCordier.fr" site_id="5f8ed80fa09f120007c8daa5">Les Cordier</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed80fa09f120007c8daa5">Les Cordier</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LouisLaBrocante.fr" site_id="5f8ed6d569d2d4000864a976">Louis La Brocante</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed6d569d2d4000864a976">Louis La Brocante</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="UnVillageFrançais.fr" site_id="6304f2e2eb10450007298023">Un Village Français</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6304f2e2eb10450007298023">Un Village Français</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="INA70.fr" site_id="639b54404cfdf7000729b3c1">INA 70</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="639b54404cfdf7000729b3c1">INA 70</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="GénérationSitcoms.fr" site_id="60afb203ec391c00070ea1bf">Génération Sitcoms</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60afb203ec391c00070ea1bf">Génération Sitcoms</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="InstantSaga.fr" site_id="60549e98061b5f000776866a">Instant Saga</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60549e98061b5f000776866a">Instant Saga</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Lemiracledel'amour.fr" site_id="60549c238c3f21000753d3e0">Le miracle de l'amour</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60549c238c3f21000753d3e0">Le miracle de l'amour</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesAnnéesfac.fr" site_id="60afae68a7fc50000737186d">Les Années fac</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60afae68a7fc50000737186d">Les Années fac</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CoeurOcéan.fr" site_id="62f3dd1c2f29ce0007e18596">Coeur Océan</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3dd1c2f29ce0007e18596">Coeur Océan</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVFrenchCollection.fr" site_id="62f3e0522443200008c567d7">Pluto TV French Collection</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3e0522443200008c567d7">Pluto TV French Collection</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVStarTrek.fr" site_id="61f93af0b253440007c54ad8">Pluto TV Star Trek</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="61f93af0b253440007c54ad8">Pluto TV Star Trek</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVAction.fr" site_id="5f8ed1ff5c39700007e2204a">Pluto TV Action</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed1ff5c39700007e2204a">Pluto TV Action</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVThrillers.fr" site_id="60c3472a51a2050008dad272">Pluto TV Thrillers</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60c3472a51a2050008dad272">Pluto TV Thrillers</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVHorreur.fr" site_id="66e1978babec540008ce41ac">Pluto TV Horreur</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66e1978babec540008ce41ac">Pluto TV Horreur</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVSci-Fi.fr" site_id="60c34592c911890007f29a73">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60c34592c911890007f29a73">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVCinéd'Asie.fr" site_id="62f3e2d000418d00070f7dbc">Pluto TV Ciné d'Asie</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3e2d000418d00070f7dbc">Pluto TV Ciné d'Asie</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVCiné.fr" site_id="5f8ed0f17564a300082b676a">Pluto TV Ciné</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed0f17564a300082b676a">Pluto TV Ciné</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVWestern.fr" site_id="65cca3e2ec452d0008af3a65">Pluto TV Western</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65cca3e2ec452d0008af3a65">Pluto TV Western</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVCinéRétro.fr" site_id="5f8ed168f72fcd0007e56269">Pluto TV Ciné Rétro</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed168f72fcd0007e56269">Pluto TV Ciné Rétro</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVCatastrophe.fr" site_id="65a69ef53af63d000825e0ee">Pluto TV Catastrophe</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65a69ef53af63d000825e0ee">Pluto TV Catastrophe</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="WildSideTV.fr" site_id="60b4d6c806ad2a00073b3108">Wild Side TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60b4d6c806ad2a00073b3108">Wild Side TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TheAsylum.fr" site_id="5f8ece1a89d79800072510e6">The Asylum</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ece1a89d79800072510e6">The Asylum</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVRomance.fr" site_id="60812fc8539963000707d1e1">Pluto TV Romance</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60812fc8539963000707d1e1">Pluto TV Romance</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TêtuTV.fr" site_id="615c4bdfdd585f000732a22b">Têtu TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="615c4bdfdd585f000732a22b">Têtu TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="FamilyClub.fr" site_id="64c9260ac0222700089ee62b">Family Club</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64c9260ac0222700089ee62b">Family Club</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TéléfilmsdeNoëlbyPlutoTV.fr" site_id="65251c3a9c7aeb00083741c9">Téléfilms de Noël by Pluto TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65251c3a9c7aeb00083741c9">Téléfilms de Noël by Pluto TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Faitesentrerl'accusé.fr" site_id="662a622b5e2370000800f392">Faites entrer l'accusé</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="662a622b5e2370000800f392">Faites entrer l'accusé</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVParanormal.fr" site_id="5f8ed9461b35690007a0bc3a">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed9461b35690007a0bc3a">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="MostHaunted.fr" site_id="66d722d31878f200081c2c64">Most Haunted</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66d722d31878f200081c2c64">Most Haunted</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="DossiersFBI.fr" site_id="5f8edad922b10b000753bc37">Dossiers FBI</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8edad922b10b000753bc37">Dossiers FBI</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesNouveauxDetectives.fr" site_id="5f8edb6df1ebb800072edf10">Les Nouveaux Detectives</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8edb6df1ebb800072edf10">Les Nouveaux Detectives</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Homicide.fr" site_id="63921a3d00c96100082a3cb4">Homicide</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="63921a3d00c96100082a3cb4">Homicide</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="EnquêtesdeChoc.fr" site_id="63921a1bf76e7d0007c998a6">Enquêtes de Choc</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="63921a1bf76e7d0007c998a6">Enquêtes de Choc</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVInvestigation.fr" site_id="5f914f4b36d67d0007a91a04">Pluto TV Investigation</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f914f4b36d67d0007a91a04">Pluto TV Investigation</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="SouthPark.fr" site_id="618e34ac4a270700077b1f32">South Park</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="618e34ac4a270700077b1f32">South Park</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="OnePiece.fr" site_id="6380c94947c72b0007ee9a13">One Piece</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6380c94947c72b0007ee9a13">One Piece</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Yu-Gi-Oh!.fr" site_id="6130d9c712c2b000070abb50">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6130d9c712c2b000070abb50">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Olive&amp;Tom.fr" site_id="662a63275a402e00086bc8a5">Olive &amp; Tom</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="662a63275a402e00086bc8a5">Olive &amp; Tom</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Daria.fr" site_id="6683b680efa2a10008e8a393">Daria</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6683b680efa2a10008e8a393">Daria</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="InazumaEleven.fr" site_id="611e75226b7f420007c3f319">Inazuma Eleven</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e75226b7f420007c3f319">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVRetroToons.fr" site_id="611e6a9b4bb5790007a6f0f8">Pluto TV Retro Toons</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e6a9b4bb5790007a6f0f8">Pluto TV Retro Toons</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TopGear.fr" site_id="64c1093824ade50008bd117f">Top Gear</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64c1093824ade50008bd117f">Top Gear</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="C'estpassorcier.fr" site_id="63b579961bdba100071214cb">C'est pas sorcier</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="63b579961bdba100071214cb">C'est pas sorcier</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Touteunehistoire.fr" site_id="62f3e6aebcdda4000754fa47">Toute une histoire</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3e6aebcdda4000754fa47">Toute une histoire</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Adjugé,vendu!.fr" site_id="64bab8ba5dc1660008969b5a">Adjugé, vendu !</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64bab8ba5dc1660008969b5a">Adjugé, vendu !</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesZ'amours.fr" site_id="652d0b756208700008d758ad">Les Z'amours</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="652d0b756208700008d758ad">Les Z'amours</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Quiveutgagnerdesmillions?.fr" site_id="652d0b9ceb72580008a4ea5b">Qui veut gagner des millions?</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="652d0b9ceb72580008a4ea5b">Qui veut gagner des millions?</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Y'aquelavéritéquicompte.fr" site_id="612e044c970e6f00083bcf3b">Y'a que la vérité qui compte</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="612e044c970e6f00083bcf3b">Y'a que la vérité qui compte</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVHistoire.fr" site_id="611e771e2f5f180007002224">Pluto TV Histoire</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e771e2f5f180007002224">Pluto TV Histoire</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVAnimaux.fr" site_id="60925a44f0350600075a1fdc">Pluto TV Animaux</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60925a44f0350600075a1fdc">Pluto TV Animaux</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="EchappéesBelles&amp;Co.fr" site_id="63b578b524f0cf00072f2a52">Echappées Belles &amp; Co</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="63b578b524f0cf00072f2a52">Echappées Belles &amp; Co</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="NatureTime.fr" site_id="61fc0df14159c40007250432">Nature Time</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="61fc0df14159c40007250432">Nature Time</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVAventure.fr" site_id="611e7811eb9daf000764cbfd">Pluto TV Aventure</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e7811eb9daf000764cbfd">Pluto TV Aventure</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVCuisine.fr" site_id="5f8ed48146ba9e00078424b6">Pluto TV Cuisine</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed48146ba9e00078424b6">Pluto TV Cuisine</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="WellbeingTV.fr" site_id="62f21f7e0f61420008273b9e">Wellbeing TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f21f7e0f61420008273b9e">Wellbeing TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVInside.fr" site_id="5f8ed3892ed7bb000741a1d2">Pluto TV Inside</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed3892ed7bb000741a1d2">Pluto TV Inside</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CATFISHTV.fr" site_id="5f8eb66537867f0007146953">CATFISH TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8eb66537867f0007146953">CATFISH TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="JustTattooofUs.fr" site_id="6304f20c941c5d00089634e7">Just Tattoo of Us</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6304f20c941c5d00089634e7">Just Tattoo of Us</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVReality.fr" site_id="6092544e7639460007d4835e">Pluto TV Reality</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6092544e7639460007d4835e">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="MTVCLASSICS.fr" site_id="5f92b56a367e170007cd43f4">MTV CLASSICS</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f92b56a367e170007cd43f4">MTV CLASSICS</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TeenMom.fr" site_id="62f3f05505e621000783df2f">Teen Mom</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="62f3f05505e621000783df2f">Teen Mom</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="AreYouTheOne?.fr" site_id="6192416c06d23b0007379766">Are You The One?</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6192416c06d23b0007379766">Are You The One?</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CRIBS:MAISONSDESTAR.fr" site_id="602cf8963b4bc90007454541">CRIBS : MAISONS DE STAR</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="602cf8963b4bc90007454541">CRIBS : MAISONS DE STAR</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="JustepourRire.fr" site_id="60afa1508284e60007163c08">Juste pour Rire</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60afa1508284e60007163c08">Juste pour Rire</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="FailArmy.fr" site_id="5f8ecd9169d2d4000864a974">FailArmy</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecd9169d2d4000864a974">FailArmy</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Ridiculousness.fr" site_id="5f8eb8a8b2619a000710605c">Ridiculousness</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8eb8a8b2619a000710605c">Ridiculousness</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVComédie.fr" site_id="5f8eb91bb9b9e7000817e67f">Pluto TV Comédie</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8eb91bb9b9e7000817e67f">Pluto TV Comédie</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="ThePetCollective.fr" site_id="5f8ecd336d64c9000754cdf1">The Pet Collective</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecd336d64c9000754cdf1">The Pet Collective</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Bobl'éponge.fr" site_id="5ffc8c345822750007e167de">Bob l'éponge</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5ffc8c345822750007e167de">Bob l'éponge</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVSuperKids.fr" site_id="652557d93fd33c000802f995">Pluto TV Super Kids</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="652557d93fd33c000802f995">Pluto TV Super Kids</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Avatar.fr" site_id="60b4c17a81e29300071d3a39">Avatar</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60b4c17a81e29300071d3a39">Avatar</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TortuesNinjaTV.fr" site_id="5f8ecc1b37867f00071469e9">Tortues Ninja TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecc1b37867f00071469e9">Tortues Ninja TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Beyblade.fr" site_id="664c8ba33d173b00080ef0c8">Beyblade</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="664c8ba33d173b00080ef0c8">Beyblade</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="iCarlyTV.fr" site_id="5f8ecc7aa44d9c00081fca29">iCarly TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecc7aa44d9c00081fca29">iCarly TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Victorious.fr" site_id="64bab8830e086a0009d44273">Victorious</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64bab8830e086a0009d44273">Victorious</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVKidsSéries.fr" site_id="5f8eb99ff17815000784a3b0">Pluto TV Kids Séries</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8eb99ff17815000784a3b0">Pluto TV Kids Séries</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="DigimonAdventure.fr" site_id="617bae1d69bca3000729561e">Digimon Adventure</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="617bae1d69bca3000729561e">Digimon Adventure</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Degrassi.fr" site_id="611e71322f5f180007001dde">Degrassi</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e71322f5f180007001dde">Degrassi</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVKidsClassics.fr" site_id="654a58dbf9cc82000868f0fb">Pluto TV Kids Classics</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="654a58dbf9cc82000868f0fb">Pluto TV Kids Classics</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVKidsAnimation.fr" site_id="5f8eba14a4ffb8000764e950">Pluto TV Kids Animation</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8eba14a4ffb8000764e950">Pluto TV Kids Animation</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="LesRazmoket.fr" site_id="619cee9d5dc3ed0007d845c8">Les Razmoket</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="619cee9d5dc3ed0007d845c8">Les Razmoket</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Sabrina,lasérieanimée.fr" site_id="611e78c4954f250007ef7b84">Sabrina, la série animée</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e78c4954f250007ef7b84">Sabrina, la série animée</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVKidsGaming.fr" site_id="611e6ddc7fcd580007d1eb5f">Pluto TV Kids Gaming</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e6ddc7fcd580007d1eb5f">Pluto TV Kids Gaming</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="AngelaAnaconda.fr" site_id="611e73687fcd580007d1f052">Angela Anaconda</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="611e73687fcd580007d1f052">Angela Anaconda</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="DoraTV.fr" site_id="5f8ecb9524419b0007365a1c">Dora TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecb9524419b0007365a1c">Dora TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CharlotteauxFraises.fr" site_id="60dc6937b450ad0007377e48">Charlotte aux Fraises</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60dc6937b450ad0007377e48">Charlotte aux Fraises</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="BubbleGuppies.fr" site_id="618e3c1106d23b0007366723">Bubble Guppies</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="618e3c1106d23b0007366723">Bubble Guppies</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVJunior.fr" site_id="5f8ecb336537e8000764a17f">Pluto TV Junior</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecb336537e8000764a17f">Pluto TV Junior</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVKidsUkraine.fr" site_id="6228b86dbb834e0007b75019">Pluto TV Kids Ukraine</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6228b86dbb834e0007b75019">Pluto TV Kids Ukraine</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="GamingTV.fr" site_id="5f8eccd81062c300078a11df">Gaming TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8eccd81062c300078a11df">Gaming TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Allociné.fr" site_id="6618e3037bcd8600089b62a8">Allociné</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6618e3037bcd8600089b62a8">Allociné</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CarChase.fr" site_id="65bd05483a11680007813560">Car Chase</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65bd05483a11680007813560">Car Chase</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="RobotWarsbyMECH+.fr" site_id="64ff1ce298020f000849ff20">Robot Wars by MECH+</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64ff1ce298020f000849ff20">Robot Wars by MECH+</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="BETCLASSICSPlutoTV.fr" site_id="5f92b5ba040eaa0007074d0a">BET CLASSICS Pluto TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f92b5ba040eaa0007074d0a">BET CLASSICS Pluto TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="BilliardTV.fr" site_id="65ccd0483a11680007a137d2">Billiard TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65ccd0483a11680007a137d2">Billiard TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="DAZNCombat.fr" site_id="64d626ac9b414d000820e2fc">DAZN Combat</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64d626ac9b414d000820e2fc">DAZN Combat</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PFLMMA.fr" site_id="654a620d53fc9700083b2e21">PFL MMA</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="654a620d53fc9700083b2e21">PFL MMA</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="FIFA+.fr" site_id="660c2a2d2433010008df7e92">FIFA+</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="660c2a2d2433010008df7e92">FIFA+</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="RealmadridTV.fr" site_id="65f96c0c2873090008d356d1">Realmadrid TV</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65f96c0c2873090008d356d1">Realmadrid TV</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="WPT.fr" site_id="5f8ecfb9db6c180007a6d1b0">WPT</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ecfb9db6c180007a6d1b0">WPT</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="TritonPoker.fr" site_id="66275c7d039f940008cc4760">Triton Poker</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66275c7d039f940008cc4760">Triton Poker</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVMotor.fr" site_id="618d4ea306d23b0007356080">Pluto TV Motor</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="618d4ea306d23b0007356080">Pluto TV Motor</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVSports.fr" site_id="6081310e48d3200007afaf3b">Pluto TV Sports</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6081310e48d3200007afaf3b">Pluto TV Sports</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVExtrême.fr" site_id="5f8ed327f9e9b0000761141e">Pluto TV Extrême</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="5f8ed327f9e9b0000761141e">Pluto TV Extrême</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="MonsterJam.fr" site_id="655e053efbc15b00082277de">Monster Jam</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="655e053efbc15b00082277de">Monster Jam</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVClassicHip-Hop.fr" site_id="625e79fe9b586d000785e330">Pluto TV Classic Hip-Hop</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="625e79fe9b586d000785e330">Pluto TV Classic Hip-Hop</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVRap.fr" site_id="65d4be214e01740008991d3b">Pluto TV Rap</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="65d4be214e01740008991d3b">Pluto TV Rap</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="VH1+Rock.fr" site_id="6447d08f2858cb0008b9957c">VH1+ Rock</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6447d08f2858cb0008b9957c">VH1+ Rock</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="PlutoTVLoveSongs.fr" site_id="619b80acac5329000740c022">Pluto TV Love Songs</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="619b80acac5329000740c022">Pluto TV Love Songs</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="RotanaM+.fr" site_id="64c926b44e3f020008e19112">Rotana M+</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="64c926b44e3f020008e19112">Rotana M+</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="VH1+Classics.fr" site_id="667d3794ca746800086962c7">VH1+ Classics</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="667d3794ca746800086962c7">VH1+ Classics</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CNNFast.fr" site_id="66c45b36a72e7b0008a2b291">CNN Fast</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="66c45b36a72e7b0008a2b291">CNN Fast</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="CBSNews24/7.fr" site_id="6231ec93779a9d00079ba8e2">CBS News 24/7</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="6231ec93779a9d00079ba8e2">CBS News 24/7</channel>
<channel site="pluto.tv" lang="fr" xmltv_id="Euronews.fr" site_id="60d35bcaf1ff4a00078af0a6">Euronews</channel> <channel site="pluto.tv" lang="fr" xmltv_id="" site_id="60d35bcaf1ff4a00078af0a6">Euronews</channel>
</channels> </channels>

View file

@ -1,130 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVChristmas.it" site_id="612e05b885183d0007958101">Pluto TV Christmas</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="612e05b885183d0007958101">Pluto TV Christmas</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFireplace.it" site_id="612ce23f51cce000078eeed5">Pluto TV Fireplace</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="612ce23f51cce000078eeed5">Pluto TV Fireplace</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!Natale.it" site_id="612ce0ead825b300078b7082">Super! Natale</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="612ce0ead825b300078b7082">Super! Natale</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Carabinieri.it" site_id="66a0eea88561260008b1c5d0">Carabinieri</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66a0eea88561260008b1c5d0">Carabinieri</channel>
<channel site="pluto.tv" lang="it" xmltv_id="IJefferson.it" site_id="62442f28afe626000747f195">I Jefferson</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62442f28afe626000747f195">I Jefferson</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Baywatch.it" site_id="660fc6630cd4630008fae92f">Baywatch</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="660fc6630cd4630008fae92f">Baywatch</channel>
<channel site="pluto.tv" lang="it" xmltv_id="SettimoCielo.it" site_id="6245d3792792150007e20634">Settimo Cielo</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6245d3792792150007e20634">Settimo Cielo</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVSerie.it" site_id="60b9ff2722bfa400072676ef">Pluto TV Serie</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60b9ff2722bfa400072676ef">Pluto TV Serie</channel>
<channel site="pluto.tv" lang="it" xmltv_id="LesorelleMcLeod.it" site_id="60a2837f8154ab0007c4dcdf">Le sorelle McLeod</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60a2837f8154ab0007c4dcdf">Le sorelle McLeod</channel>
<channel site="pluto.tv" lang="it" xmltv_id="BBCDrama.it" site_id="62e7fa5ab5062e0007dcf97d">BBC Drama</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62e7fa5ab5062e0007dcf97d">BBC Drama</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Maidiresì.it" site_id="6349279ed5023700078f2bc2">Mai dire sì</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6349279ed5023700078f2bc2">Mai dire sì</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Scorpion.it" site_id="65cb750311ced700082066b5">Scorpion</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb750311ced700082066b5">Scorpion</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Medium.it" site_id="65cb71d711ced70008205ec0">Medium</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb71d711ced70008205ec0">Medium</channel>
<channel site="pluto.tv" lang="it" xmltv_id="NUMB3RS.it" site_id="65a67ace0d9ab400080b8f6f">NUMB3RS</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65a67ace0d9ab400080b8f6f">NUMB3RS</channel>
<channel site="pluto.tv" lang="it" xmltv_id="SquadraSpecialeCobra11.it" site_id="625e6cc905e09f00073addee">Squadra Speciale Cobra 11</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="625e6cc905e09f00073addee">Squadra Speciale Cobra 11</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Cherif.it" site_id="66a8c7aefe11e500085b1587">Cherif</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66a8c7aefe11e500085b1587">Cherif</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Tandem.it" site_id="66a8c8b3d2d50d000821fc4c">Tandem</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66a8c8b3d2d50d000821fc4c">Tandem</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TrueJustice.it" site_id="654c955683595c00081d9d87">True Justice</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="654c955683595c00081d9d87">True Justice</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Autostopperilcielo.it" site_id="638f286445264d00084ec6dc">Autostop per il cielo</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="638f286445264d00084ec6dc">Autostop per il cielo</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVCrime.it" site_id="608aa777b907770007e5d05d">Pluto TV Crime</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa777b907770007e5d05d">Pluto TV Crime</channel>
<channel site="pluto.tv" lang="it" xmltv_id="ConsulenzeIllegali.it" site_id="60b9dc99521a1400079bdfba">Consulenze Illegali</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60b9dc99521a1400079bdfba">Consulenze Illegali</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TwinPeaks.it" site_id="65cb72b833ea860008860418">Twin Peaks</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb72b833ea860008860418">Twin Peaks</channel>
<channel site="pluto.tv" lang="it" xmltv_id="CinCin.it" site_id="65cb78b83a116800079e2e35">Cin Cin</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb78b83a116800079e2e35">Cin Cin</channel>
<channel site="pluto.tv" lang="it" xmltv_id="LoveBoat.it" site_id="65cb76723a116800079e1fc3">Love Boat</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb76723a116800079e1fc3">Love Boat</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Dynasty.it" site_id="65cb76ea11ced70008206b66">Dynasty</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb76ea11ced70008206b66">Dynasty</channel>
<channel site="pluto.tv" lang="it" xmltv_id="MissionImpossible.it" site_id="65cb77853ba51e00084cba02">Mission Impossible</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb77853ba51e00084cba02">Mission Impossible</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Renegade.it" site_id="634926e4b51d2d00077819a2">Renegade</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="634926e4b51d2d00077819a2">Renegade</channel>
<channel site="pluto.tv" lang="it" xmltv_id="MacGyver.it" site_id="6245d4511358320007029cdf">MacGyver</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6245d4511358320007029cdf">MacGyver</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFilm.it" site_id="608aa17fb9f4490007e6419a">Pluto TV Film</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa17fb9f4490007e6419a">Pluto TV Film</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFilmAzione.it" site_id="608aa20a2e7f270007c4878d">Pluto TV Film Azione</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa20a2e7f270007c4878d">Pluto TV Film Azione</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFilmThriller.it" site_id="608aa5e995132a00075f7005">Pluto TV Film Thriller</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa5e995132a00075f7005">Pluto TV Film Thriller</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFilmRomantici.it" site_id="608aa4a4cc92820007b663af">Pluto TV Film Romantici</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa4a4cc92820007b663af">Pluto TV Film Romantici</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFilmCommedia.it" site_id="608aa512d67fd900072323db">Pluto TV Film Commedia</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa512d67fd900072323db">Pluto TV Film Commedia</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVFilmClassici.it" site_id="608aa3c446d73500075f0e24">Pluto TV Film Classici</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa3c446d73500075f0e24">Pluto TV Film Classici</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVWestern.it" site_id="62e7fb67478a5b0007e6c50c">Pluto TV Western</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62e7fb67478a5b0007e6c50c">Pluto TV Western</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVTotò.it" site_id="65253f9881f942000833ccd5">Pluto TV Totò</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65253f9881f942000833ccd5">Pluto TV Totò</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVEros.it" site_id="66335489307fa300082bd6e4">Pluto TV Eros</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66335489307fa300082bd6e4">Pluto TV Eros</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVCinemaItaliano.it" site_id="608aa7d8359b270007861489">Pluto TV Cinema Italiano</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa7d8359b270007861489">Pluto TV Cinema Italiano</channel>
<channel site="pluto.tv" lang="it" xmltv_id="DuriaMorire.it" site_id="65f865a62873090008d06382">Duri a Morire</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65f865a62873090008d06382">Duri a Morire</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVHorror.it" site_id="61c09e3ac210ed0007606620">Pluto TV Horror</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="61c09e3ac210ed0007606620">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="it" xmltv_id="HorrorClub.it" site_id="66c35c0c92b1af0008c8e83a">Horror Club</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66c35c0c92b1af0008c8e83a">Horror Club</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVZombie.it" site_id="663354f3cd43940008602115">Pluto TV Zombie</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="663354f3cd43940008602115">Pluto TV Zombie</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVVampiri.it" site_id="6633551323e24f00084744aa">Pluto TV Vampiri</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6633551323e24f00084744aa">Pluto TV Vampiri</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVParanormal.it" site_id="66c70033b1a34600087bb09a">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66c70033b1a34600087bb09a">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="it" xmltv_id="StarTrek:TheOriginalSeries.it" site_id="6581a09edfed030008e12b39">Star Trek: The Original Series</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6581a09edfed030008e12b39">Star Trek: The Original Series</channel>
<channel site="pluto.tv" lang="it" xmltv_id="StarTrek:Voyager.it" site_id="65cb73d33ba51e00084cabad">Star Trek: Voyager</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb73d33ba51e00084cabad">Star Trek: Voyager</channel>
<channel site="pluto.tv" lang="it" xmltv_id="StarTrek:TheNextGeneration.it" site_id="65cb75c2d77d450008cf80ee">Star Trek: The Next Generation</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb75c2d77d450008cf80ee">Star Trek: The Next Generation</channel>
<channel site="pluto.tv" lang="it" xmltv_id="StarTrek:DeepSpaceNine.it" site_id="65cb783b3af63d00087bedda">Star Trek: Deep Space Nine</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65cb783b3af63d00087bedda">Star Trek: Deep Space Nine</channel>
<channel site="pluto.tv" lang="it" xmltv_id="DoctorWho.it" site_id="62e7f8db27ce19000732d1aa">Doctor Who</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62e7f8db27ce19000732d1aa">Doctor Who</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TheAsylum.it" site_id="62e8d5369e48940007fc1dc1">The Asylum</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62e8d5369e48940007fc1dc1">The Asylum</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVSci-Fi.it" site_id="61728bb9ee3773000840c1fa">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="61728bb9ee3773000840c1fa">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="it" xmltv_id="MutantX.it" site_id="60802c209a26320007c92ad5">Mutant X</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60802c209a26320007c92ad5">Mutant X</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Andromeda.it" site_id="60802d37ee238e0007c94e64">Andromeda</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60802d37ee238e0007c94e64">Andromeda</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Sanctuary.it" site_id="63eb57d6c111bc0008fe2658">Sanctuary</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="63eb57d6c111bc0008fe2658">Sanctuary</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVTrueCrime.it" site_id="66d9ab4bf0f17500084e9b7e">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66d9ab4bf0f17500084e9b7e">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="it" xmltv_id="ForensicFiles.it" site_id="64ec5cf50f73a800081310a5">Forensic Files</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="64ec5cf50f73a800081310a5">Forensic Files</channel>
<channel site="pluto.tv" lang="it" xmltv_id="StorieCriminali.it" site_id="66177d18c8311c0008d077d0">Storie Criminali</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66177d18c8311c0008d077d0">Storie Criminali</channel>
<channel site="pluto.tv" lang="it" xmltv_id="IlBancodeiPugni.it" site_id="60e4507a06171800072339a3">Il Banco dei Pugni</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60e4507a06171800072339a3">Il Banco dei Pugni</channel>
<channel site="pluto.tv" lang="it" xmltv_id="AffareFatto.it" site_id="64ec5c6644fe100009d114ae">Affare Fatto</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="64ec5c6644fe100009d114ae">Affare Fatto</channel>
<channel site="pluto.tv" lang="it" xmltv_id="IlTestimone.it" site_id="61fbd3f0733df400076c9a2d">Il Testimone</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="61fbd3f0733df400076c9a2d">Il Testimone</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PRIDEtv.it" site_id="656d86e957fe4a00087e0e94">PRIDEtv</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="656d86e957fe4a00087e0e94">PRIDEtv</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Catfish.it" site_id="6093f9ed2c75660007322bb7">Catfish</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6093f9ed2c75660007322bb7">Catfish</channel>
<channel site="pluto.tv" lang="it" xmltv_id="GeordieShore.it" site_id="619263ee9541940007d20d60">Geordie Shore</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="619263ee9541940007d20d60">Geordie Shore</channel>
<channel site="pluto.tv" lang="it" xmltv_id="ExOnTheBeach.it" site_id="60940ebad67fd900072382db">Ex On The Beach</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60940ebad67fd900072382db">Ex On The Beach</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVReality.it" site_id="61925f874b1ec000075e700a">Pluto TV Reality</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="61925f874b1ec000075e700a">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="it" xmltv_id="16AnnieIncinta.it" site_id="60940a07d88ba90007b9cb71">16 Anni e Incinta</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60940a07d88ba90007b9cb71">16 Anni e Incinta</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TeenMom.it" site_id="62e7fc8c0d061100083946a9">Teen Mom</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62e7fc8c0d061100083946a9">Teen Mom</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TopGear.it" site_id="64c109a4798def0008a6e03e">Top Gear</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="64c109a4798def0008a6e03e">Top Gear</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PimpMyRide.it" site_id="636a4eaf77279a0007f14861">Pimp My Ride</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="636a4eaf77279a0007f14861">Pimp My Ride</channel>
<channel site="pluto.tv" lang="it" xmltv_id="FIFA+.it" site_id="660bfc4424e1d000085b5f93">FIFA+</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="660bfc4424e1d000085b5f93">FIFA+</channel>
<channel site="pluto.tv" lang="it" xmltv_id="WorldPokerTour.it" site_id="608016e446d73500075ea7e0">World Poker Tour</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608016e446d73500075ea7e0">World Poker Tour</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TritonPoker.it" site_id="6616a51124e1d00008761a7e">Triton Poker</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6616a51124e1d00008761a7e">Triton Poker</channel>
<channel site="pluto.tv" lang="it" xmltv_id="BilliardTV.it" site_id="65df0b428b24c80008eec0b6">Billiard TV</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65df0b428b24c80008eec0b6">Billiard TV</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TheBoatShow.it" site_id="63eb58aa60bc8f0008caa8f8">The Boat Show</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="63eb58aa60bc8f0008caa8f8">The Boat Show</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVSport.it" site_id="608030eff4b6f70007e1684c">Pluto TV Sport</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608030eff4b6f70007e1684c">Pluto TV Sport</channel>
<channel site="pluto.tv" lang="it" xmltv_id="RealmadridTV.it" site_id="65f955ff18036500084e88fc">Realmadrid TV</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65f955ff18036500084e88fc">Realmadrid TV</channel>
<channel site="pluto.tv" lang="it" xmltv_id="CarChase.it" site_id="65a939fad77d450008863835">Car Chase</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65a939fad77d450008863835">Car Chase</channel>
<channel site="pluto.tv" lang="it" xmltv_id="MonsterJam.it" site_id="65bce7f1d77d450008b3a430">Monster Jam</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65bce7f1d77d450008b3a430">Monster Jam</channel>
<channel site="pluto.tv" lang="it" xmltv_id="RobotWarsbyMECH+.it" site_id="651581ba6a84140008593586">Robot Wars by MECH+</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="651581ba6a84140008593586">Robot Wars by MECH+</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PFLMMA.it" site_id="654a299cab05240008a12639">PFL MMA</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="654a299cab05240008a12639">PFL MMA</channel>
<channel site="pluto.tv" lang="it" xmltv_id="MODUSSuperSeriesDarts.it" site_id="671655b2daad7f00085d202d">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="671655b2daad7f00085d202d">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="it" xmltv_id="SouthPark.it" site_id="62bc1f502b70e3000706298e">South Park</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62bc1f502b70e3000706298e">South Park</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Isolitiidioti.it" site_id="6602acadb2abe500081cf28a">I soliti idioti</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6602acadb2abe500081cf28a">I soliti idioti</channel>
<channel site="pluto.tv" lang="it" xmltv_id="LOL:-).it" site_id="65d7211d0d45610008ffcf92">LOL:-)</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65d7211d0d45610008ffcf92">LOL:-)</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVScherzierisate.it" site_id="609404b0a8ec810007d8de9d">Pluto TV Scherzi e risate</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="609404b0a8ec810007d8de9d">Pluto TV Scherzi e risate</channel>
<channel site="pluto.tv" lang="it" xmltv_id="FailArmy.it" site_id="608014d19a26320007c92ab6">FailArmy</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608014d19a26320007c92ab6">FailArmy</channel>
<channel site="pluto.tv" lang="it" xmltv_id="JustforLaughs.it" site_id="6093f48c95132a00075fd859">Just for Laughs</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6093f48c95132a00075fd859">Just for Laughs</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PeopleareAwesome.it" site_id="608017cbe375e400070cc981">People are Awesome</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608017cbe375e400070cc981">People are Awesome</channel>
<channel site="pluto.tv" lang="it" xmltv_id="ThePetCollective.it" site_id="60801317a0ccef00072aaf75">The Pet Collective</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60801317a0ccef00072aaf75">The Pet Collective</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!SpongeBob.it" site_id="6093f9281db477000759fce0">Super! SpongeBob</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6093f9281db477000759fce0">Super! SpongeBob</channel>
<channel site="pluto.tv" lang="it" xmltv_id="DueFantagenitori.it" site_id="62b57a6752a0060008bc65cd">Due Fantagenitori</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62b57a6752a0060008bc65cd">Due Fantagenitori</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Yu-Gi-Oh!.it" site_id="63eb82e24e83e70008ab735f">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="63eb82e24e83e70008ab735f">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVAnime.it" site_id="65b90daed77d450008a43345">Pluto TV Anime</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65b90daed77d450008a43345">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Avatar.it" site_id="624da1cd2af90c0007c13205">Avatar</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="624da1cd2af90c0007c13205">Avatar</channel>
<channel site="pluto.tv" lang="it" xmltv_id="InazumaEleven.it" site_id="612375086abc84000738fc03">Inazuma Eleven</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="612375086abc84000738fc03">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="it" xmltv_id="TeenageMutantNinjaTurtles.it" site_id="62619405c733e8000732d1fe">Teenage Mutant Ninja Turtles</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62619405c733e8000732d1fe">Teenage Mutant Ninja Turtles</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Gormiti.it" site_id="66a8c64814a2bb00084d09d6">Gormiti</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66a8c64814a2bb00084d09d6">Gormiti</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVKidsUkraine.it" site_id="622a2d8da9d8210007d918c2">Pluto TV Kids Ukraine</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="622a2d8da9d8210007d918c2">Pluto TV Kids Ukraine</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!Star.it" site_id="6093f6f8351eb0000754afb8">Super! Star</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6093f6f8351eb0000754afb8">Super! Star</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!iCarly.it" site_id="609401db8cf51c00084b592e">Super! iCarly</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="609401db8cf51c00084b592e">Super! iCarly</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!Victorious.it" site_id="63c012504faf1c0007abfa93">Super! Victorious</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="63c012504faf1c0007abfa93">Super! Victorious</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!Zoey101.it" site_id="6304ed62410a4c00083c0291">Super! Zoey 101</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6304ed62410a4c00083c0291">Super! Zoey 101</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!BigTimeRush.it" site_id="666174c9f999220008769012">Super! Big Time Rush</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="666174c9f999220008769012">Super! Big Time Rush</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Super!Pop.it" site_id="6093f7b5bb49b90007cecaad">Super! Pop</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6093f7b5bb49b90007cecaad">Super! Pop</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Hell'sKitchen.it" site_id="664f0ddbf78a8500092dcffa">Hell's Kitchen</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="664f0ddbf78a8500092dcffa">Hell's Kitchen</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVCucina.it" site_id="608aa718a8ec810007d87fee">Pluto TV Cucina</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa718a8ec810007d87fee">Pluto TV Cucina</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVRealLife.it" site_id="60801976f92a750007a0699c">Pluto TV Real Life</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60801976f92a750007a0699c">Pluto TV Real Life</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVViaggi.it" site_id="63c923944207be0007fd0887">Pluto TV Viaggi</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="63c923944207be0007fd0887">Pluto TV Viaggi</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVASMR.it" site_id="66867b9919311200085313d9">Pluto TV ASMR</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66867b9919311200085313d9">Pluto TV ASMR</channel>
<channel site="pluto.tv" lang="it" xmltv_id="CasePazzesche.it" site_id="626bb07a58b8dd0007e9f36e">Case Pazzesche</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="626bb07a58b8dd0007e9f36e">Case Pazzesche</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVDocumentari.it" site_id="608aa8a5709d6b0007b132fe">Pluto TV Documentari</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="608aa8a5709d6b0007b132fe">Pluto TV Documentari</channel>
<channel site="pluto.tv" lang="it" xmltv_id="ExtremeMakeoverHomeEdition.it" site_id="6661739641af6400080cd8f1">Extreme Makeover Home Edition</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6661739641af6400080cd8f1">Extreme Makeover Home Edition</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVStoria.it" site_id="65253fdf3fd33c00080214a3">Pluto TV Storia</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65253fdf3fd33c00080214a3">Pluto TV Storia</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Naturescape.it" site_id="610a9ebe8c2ac2000734776e">Naturescape</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="610a9ebe8c2ac2000734776e">Naturescape</channel>
<channel site="pluto.tv" lang="it" xmltv_id="PlutoTVNatura.it" site_id="60802b37709d6b0007b0c549">Pluto TV Natura</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="60802b37709d6b0007b0c549">Pluto TV Natura</channel>
<channel site="pluto.tv" lang="it" xmltv_id="HouseofDocs.it" site_id="6536608b4f123d000876b78b">House of Docs</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6536608b4f123d000876b78b">House of Docs</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Levitedeglialtri.it" site_id="653660b4295b840008a70ba3">Le vite degli altri</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="653660b4295b840008a70ba3">Le vite degli altri</channel>
<channel site="pluto.tv" lang="it" xmltv_id="Euronews.it" site_id="61b86ea479a4390007c6d5fc">Euronews</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="61b86ea479a4390007c6d5fc">Euronews</channel>
<channel site="pluto.tv" lang="it" xmltv_id="CBSNews24/7.it" site_id="6231ec4b62cd1f0007093c7b">CBS News 24/7</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6231ec4b62cd1f0007093c7b">CBS News 24/7</channel>
<channel site="pluto.tv" lang="it" xmltv_id="CNNFast.it" site_id="66c45ba803e3b20008d8c294">CNN Fast</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66c45ba803e3b20008d8c294">CNN Fast</channel>
<channel site="pluto.tv" lang="it" xmltv_id="DesiPlayTV.it" site_id="66c3139c21a4740008466116">Desi Play TV</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="66c3139c21a4740008466116">Desi Play TV</channel>
<channel site="pluto.tv" lang="it" xmltv_id="VH1+MusicLegends.it" site_id="62e8cc10ca869f00078efca8">VH1+ Music Legends</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="62e8cc10ca869f00078efca8">VH1+ Music Legends</channel>
<channel site="pluto.tv" lang="it" xmltv_id="VH1+Backto90's.it" site_id="6552085aab05240008b05f6c">VH1+ Back to 90's</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6552085aab05240008b05f6c">VH1+ Back to 90's</channel>
<channel site="pluto.tv" lang="it" xmltv_id="VH1+Rock!.it" site_id="636a4173e34fd50007534542">VH1+ Rock!</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="636a4173e34fd50007534542">VH1+ Rock!</channel>
<channel site="pluto.tv" lang="it" xmltv_id="VH1+Dance.it" site_id="65e5d9d2ec9fda0008c35f91">VH1+ Dance</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="65e5d9d2ec9fda0008c35f91">VH1+ Dance</channel>
<channel site="pluto.tv" lang="it" xmltv_id="VH1+Classici.it" site_id="6690f892d51259000880d1c4">VH1+ Classici</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="6690f892d51259000880d1c4">VH1+ Classici</channel>
<channel site="pluto.tv" lang="it" xmltv_id="VH1+CanzoniItaliane.it" site_id="63724270c7c2360007b170e8">VH1+ Canzoni Italiane</channel> <channel site="pluto.tv" lang="it" xmltv_id="" site_id="63724270c7c2360007b170e8">VH1+ Canzoni Italiane</channel>
</channels> </channels>

View file

@ -1,187 +1,187 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="es" xmltv_id="DescubriendoPlutoTV.mx" site_id="5e793a7cfbdf780007f7eb75">Descubriendo Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e793a7cfbdf780007f7eb75">Descubriendo Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineEstelar.mx" site_id="5dcde437229eff00091b6c30">Pluto TV Cine Estelar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde437229eff00091b6c30">Pluto TV Cine Estelar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineAccion.mx" site_id="5dcb62e63d4d8f0009f36881">Pluto TV Cine Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcb62e63d4d8f0009f36881">Pluto TV Cine Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="EstrellasdeAccion.mx" site_id="5e972a21ad709d00074195ba">Estrellas de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e972a21ad709d00074195ba">Estrellas de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAdrenalinaFreezone.mx" site_id="61b793ccf571b80007b7a610">Pluto TV Adrenalina Freezone</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61b793ccf571b80007b7a610">Pluto TV Adrenalina Freezone</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineComedia.mx" site_id="5dcdde78f080d900098550e4">Pluto TV Cine Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcdde78f080d900098550e4">Pluto TV Cine Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineDrama.mx" site_id="5dcddfcb229eff00091b6bdf">Pluto TV Cine Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddfcb229eff00091b6bdf">Pluto TV Cine Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineRomance.mx" site_id="5dd7ea2aeab5230009986735">Pluto TV Cine Romance</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd7ea2aeab5230009986735">Pluto TV Cine Romance</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineSuspenso.mx" site_id="5ddc4e8bcbb9010009b4e84f">Pluto TV Cine Suspenso</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddc4e8bcbb9010009b4e84f">Pluto TV Cine Suspenso</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineCrimen.mx" site_id="624af40c004f8000079b784d">Pluto TV Cine Crimen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="624af40c004f8000079b784d">Pluto TV Cine Crimen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineTerror.mx" site_id="5dcddf1ed95e740009fef7ab">Pluto TV Cine Terror</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddf1ed95e740009fef7ab">Pluto TV Cine Terror</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSci-Fi.mx" site_id="5f2817d3d7573a00080f9175">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f2817d3d7573a00080f9175">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Runtime.mx" site_id="62c5d80dc6de440007e033eb">Runtime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62c5d80dc6de440007e033eb">Runtime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNuestroCine.mx" site_id="5defde6d6c07b50009cf0757">Pluto TV Nuestro Cine</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5defde6d6c07b50009cf0757">Pluto TV Nuestro Cine</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVALaMexicana.mx" site_id="5dfcde52d28b09000a42d7a2">Pluto TV A La Mexicana</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dfcde52d28b09000a42d7a2">Pluto TV A La Mexicana</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineClasico.mx" site_id="609059dc63be6e0007b4eca6">Pluto TV Cine Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609059dc63be6e0007b4eca6">Pluto TV Cine Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineFamilia.mx" site_id="5dd6ddb30a1d8a000908ed4c">Pluto TV Cine Familia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ddb30a1d8a000908ed4c">Pluto TV Cine Familia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCineNavidad.mx" site_id="5dd6ed41526c77000941411c">Pluto TV Cine Navidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ed41526c77000941411c">Pluto TV Cine Navidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LucesNavideñas.mx" site_id="5f8a0e7a9ab0370008b177f2">Luces Navideñas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f8a0e7a9ab0370008b177f2">Luces Navideñas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ChimeneaNavidena.mx" site_id="5f8a0f421418bd0007e14548">Chimenea Navideña</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f8a0f421418bd0007e14548">Chimenea Navideña</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVMúsicaNavidena.mx" site_id="66e1e05a15d2c60008e4b2db">MTV Música Navideña</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66e1e05a15d2c60008e4b2db">MTV Música Navideña</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeCrimen.mx" site_id="655f62ff954b020008c91ec6">Pluto TV Series de Crimen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f62ff954b020008c91ec6">Pluto TV Series de Crimen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CSI:Miami.mx" site_id="63eb9255c111bc0008fe6ec4">CSI: Miami</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb9255c111bc0008fe6ec4">CSI: Miami</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NCIS.mx" site_id="63eb947c4e83e70008ab877b">NCIS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb947c4e83e70008ab877b">NCIS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeAcción.mx" site_id="6479ff1c17f5e10008ad2797">Pluto TV Series de Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6479ff1c17f5e10008ad2797">Pluto TV Series de Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="RookieBlue:PolicíasNovatos.mx" site_id="64ff270f30ab3300084e259c">Rookie Blue: Policías Novatos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ff270f30ab3300084e259c">Rookie Blue: Policías Novatos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="InfiernoSobreRuedas.mx" site_id="64ff26233efb5100082eeb2e">Infierno Sobre Ruedas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64ff26233efb5100082eeb2e">Infierno Sobre Ruedas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeSci-Fi.mx" site_id="65662f8a2c46f300088a84cc">Pluto TV Series de Sci-Fi</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65662f8a2c46f300088a84cc">Pluto TV Series de Sci-Fi</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ZNation.mx" site_id="66b3af1c3a4ad200081c7d03">Z Nation</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b3af1c3a4ad200081c7d03">Z Nation</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeAventura.mx" site_id="65662c1357fe4a00086b3eb1">Pluto TV Series de Aventura</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65662c1357fe4a00086b3eb1">Pluto TV Series de Aventura</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeries.mx" site_id="5dcde1317578340009b751d0">Pluto TV Series</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde1317578340009b751d0">Pluto TV Series</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeComedia.mx" site_id="655f626d57fe4a00085c7c3e">Pluto TV Series de Comedia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f626d57fe4a00085c7c3e">Pluto TV Series de Comedia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesdeDrama.mx" site_id="655f636d954b020008c93299">Pluto TV Series de Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="655f636d954b020008c93299">Pluto TV Series de Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Younger.mx" site_id="619d56d9fa3070000709e3f7">Younger</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d56d9fa3070000709e3f7">Younger</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDramasCoreanos.mx" site_id="6185a9a88b2ce30007de5128">Pluto TV Dramas Coreanos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6185a9a88b2ce30007de5128">Pluto TV Dramas Coreanos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDramasCoreanosTeen.mx" site_id="6661d5424b10960008599fa3">Pluto TV Dramas Coreanos Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6661d5424b10960008599fa3">Pluto TV Dramas Coreanos Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ViveKanalDDrama.mx" site_id="639751f81a36b400072b8f5a">Vive Kanal D Drama</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="639751f81a36b400072b8f5a">Vive Kanal D Drama</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVEspaña.mx" site_id="5ffe17e3d765170007c3a4fe">Pluto TV España</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ffe17e3d765170007c3a4fe">Pluto TV España</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesLatinas.mx" site_id="5dd837642c6e9300098ad484">Pluto TV Series Latinas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd837642c6e9300098ad484">Pluto TV Series Latinas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AlFondoHaySitio.mx" site_id="66aa6e03fe11e500086038ed">Al Fondo Hay Sitio</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66aa6e03fe11e500086038ed">Al Fondo Hay Sitio</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVSeriesRetro.mx" site_id="5de802659167b10009e7deba">Pluto TV Series Retro</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de802659167b10009e7deba">Pluto TV Series Retro</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Hechizada.mx" site_id="631fb6be21b7440007b9f606">Hechizada</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="631fb6be21b7440007b9f606">Hechizada</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MacGyver.mx" site_id="63eb95baa99571000898a078">MacGyver</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63eb95baa99571000898a078">MacGyver</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Baywatch.mx" site_id="66a26a7846762a0008258d4e">Baywatch</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a26a7846762a0008258d4e">Baywatch</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosTresChiflados.mx" site_id="5f85f1dc1418bd0007e11eb9">Los Tres Chiflados</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85f1dc1418bd0007e11eb9">Los Tres Chiflados</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVRetroCartoons.mx" site_id="60142258a54aeb0007751c15">Pluto TV Retro Cartoons</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60142258a54aeb0007751c15">Pluto TV Retro Cartoons</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelas.mx" site_id="5dcde0cc2efd2700090b7ff4">Pluto TV Novelas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde0cc2efd2700090b7ff4">Pluto TV Novelas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeMexico.mx" site_id="6474a7958e3c0a0008b97cae">Pluto TV Novelas de Mexico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a7958e3c0a0008b97cae">Pluto TV Novelas de Mexico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Corazón.mx" site_id="646ccdd0939a5900088a1980">Corazón</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646ccdd0939a5900088a1980">Corazón</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeColombia.mx" site_id="6474a7e7f77b6100080a89e7">Pluto TV Novelas de Colombia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a7e7f77b6100080a89e7">Pluto TV Novelas de Colombia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SinTetasNoHayParaíso.mx" site_id="604bdf4e6d0abc0007ba77ad">Sin Tetas No Hay Paraíso</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="604bdf4e6d0abc0007ba77ad">Sin Tetas No Hay Paraíso</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LaSelección.mx" site_id="63211ba9cad976000794f988">La Selección</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63211ba9cad976000794f988">La Selección</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNovelasdeVenezuela.mx" site_id="6474a86917f5e100089a0c1c">Pluto TV Novelas de Venezuela</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6474a86917f5e100089a0c1c">Pluto TV Novelas de Venezuela</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVReality.mx" site_id="5dcde197f6591d0009839e04">Pluto TV Reality</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde197f6591d0009839e04">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVDrag.mx" site_id="64510d3ad3fdde00080951f2">MTV Drag</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64510d3ad3fdde00080951f2">MTV Drag</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVPlutoTV.mx" site_id="5fab088b3279760007d4e4fd">MTV Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fab088b3279760007d4e4fd">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVReality.mx" site_id="5de91b7ea86ee60009d89e75">MTV Reality</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de91b7ea86ee60009d89e75">MTV Reality</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVShore.mx" site_id="61a52615cbef2500072876e2">MTV Shore</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61a52615cbef2500072876e2">MTV Shore</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVConMiEx.mx" site_id="638693db857364000781b471">MTV Con Mi Ex</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="638693db857364000781b471">MTV Con Mi Ex</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRidiculousness.mx" site_id="5e98a911c881310007d7aae2">MTV Ridiculousness</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e98a911c881310007d7aae2">MTV Ridiculousness</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVTeenMom.mx" site_id="620fd9f4afb9a80007a9c6d5">MTV Teen Mom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620fd9f4afb9a80007a9c6d5">MTV Teen Mom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVCatfish.mx" site_id="625461ef01f27a0007976ad1">MTV Catfish</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="625461ef01f27a0007976ad1">MTV Catfish</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCompetencias.mx" site_id="5dd6d935d000120009bc1132">Pluto TV Competencias</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6d935d000120009bc1132">Pluto TV Competencias</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SonyOneSharkTankMéxico.mx" site_id="6647c02422494d000804b13a">Sony One Shark Tank México</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6647c02422494d000804b13a">Sony One Shark Tank México</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IronChef.mx" site_id="615b9855c6b58b000724477f">Iron Chef</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="615b9855c6b58b000724477f">Iron Chef</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MasterChef.mx" site_id="5e3ddbd27091820009f86dd9">MasterChef</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e3ddbd27091820009f86dd9">MasterChef</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MasterChefJunior.mx" site_id="64bed7005dc16600089b84e9">MasterChef Junior</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64bed7005dc16600089b84e9">MasterChef Junior</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HellsKitchen.mx" site_id="6095ad97351eb0000754c1e6">Hells Kitchen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6095ad97351eb0000754c1e6">Hells Kitchen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MinutoParaGanar.mx" site_id="5e46e64dc73db400094b5f0b">Minuto Para Ganar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e46e64dc73db400094b5f0b">Minuto Para Ganar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SonyOneCompetencias.mx" site_id="662bf39756fc840008f25cb9">Sony One Competencias</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="662bf39756fc840008f25cb9">Sony One Competencias</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Boom.mx" site_id="6099600015e88c0007ecda25">Boom</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6099600015e88c0007ecda25">Boom</channel>
<channel site="pluto.tv" lang="es" xmltv_id="WipeOut.mx" site_id="5ed6828192e8b3000743ef61">Wipe Out</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ed6828192e8b3000743ef61">Wipe Out</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DesafíoSuperHumanos.mx" site_id="6495af324c014a000842e923">Desafío Super Humanos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6495af324c014a000842e923">Desafío Super Humanos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVNaturaleza.mx" site_id="5dd85eac039bba0009e86d1d">Pluto TV Naturaleza</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd85eac039bba0009e86d1d">Pluto TV Naturaleza</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PaisajesporStingray.mx" site_id="5f4fed840a2764000720d966">Paisajes por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4fed840a2764000720d966">Paisajes por Stingray</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnimales.mx" site_id="5dd834c66fe2ca0009303b8d">Pluto TV Animales</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd834c66fe2ca0009303b8d">Pluto TV Animales</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElEncantadordePerros.mx" site_id="61099f2b40d0640007fc5aa2">El Encantador de Perros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="61099f2b40d0640007fc5aa2">El Encantador de Perros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAventura.mx" site_id="5ddc266f80e3550009136843">Pluto TV Aventura</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddc266f80e3550009136843">Pluto TV Aventura</channel>
<channel site="pluto.tv" lang="es" xmltv_id="IcePilots.mx" site_id="62154548a2be360007cb02f0">Ice Pilots</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62154548a2be360007cb02f0">Ice Pilots</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVVelocidad.mx" site_id="5dd6dc7480e3550009133d4a">Pluto TV Velocidad</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6dc7480e3550009133d4a">Pluto TV Velocidad</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ObsesiónporlosAutos.mx" site_id="64025592953da40008bf9238">Obsesión por los Autos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64025592953da40008bf9238">Obsesión por los Autos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MiCocheClásico.mx" site_id="656e2536fbc15b00084ae29d">Mi Coche Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656e2536fbc15b00084ae29d">Mi Coche Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MotorvisionTV.mx" site_id="60e5ea9a9bb4200008376f76">Motorvision TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="60e5ea9a9bb4200008376f76">Motorvision TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVVidaReal.mx" site_id="5df265697ec3510009df1ef0">Pluto TV Vida Real</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5df265697ec3510009df1ef0">Pluto TV Vida Real</channel>
<channel site="pluto.tv" lang="es" xmltv_id="COPS.mx" site_id="6419ab7c9189ce000865a469">COPS</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6419ab7c9189ce000865a469">COPS</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Dogelcazarrecompensas.mx" site_id="5f9992c685a2a80007fa414a">Dog el cazarrecompensas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9992c685a2a80007fa414a">Dog el cazarrecompensas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Empeñosalobestia.mx" site_id="5f23102d5e239d00074b092a">Empeños a lo bestia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f23102d5e239d00074b092a">Empeños a lo bestia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMiObsesiónFavorita.mx" site_id="6109ab25b84d6a0007504886">Pluto TV Mi Obsesión Favorita</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6109ab25b84d6a0007504886">Pluto TV Mi Obsesión Favorita</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MisteriosMedicos.mx" site_id="5f230e416b68ff00075b0139">Misterios Medicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f230e416b68ff00075b0139">Misterios Medicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVMisterios.mx" site_id="5dcde2f53449c50009b2b4dc">Pluto TV Misterios</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde2f53449c50009b2b4dc">Pluto TV Misterios</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HistoriasdeUltratumba.mx" site_id="5f4d3696d938c900072679fd">Historias de Ultratumba</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4d3696d938c900072679fd">Historias de Ultratumba</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosExtraterrestres.mx" site_id="645d1abbe1979c0008779d5a">Archivos Extraterrestres</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645d1abbe1979c0008779d5a">Archivos Extraterrestres</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SmithsonianChannelPlutoTV.mx" site_id="63a084934734f30007457b2c">Smithsonian Channel Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63a084934734f30007457b2c">Smithsonian Channel Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHistoria.mx" site_id="5de5758e1a30dc00094fcd6c">Pluto TV Historia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de5758e1a30dc00094fcd6c">Pluto TV Historia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCiencia.mx" site_id="5dd8364ea1d6780009929902">Pluto TV Ciencia</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd8364ea1d6780009929902">Pluto TV Ciencia</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVInvestiga.mx" site_id="5dcde27ffae9520009c0c75a">Pluto TV Investiga</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde27ffae9520009c0c75a">Pluto TV Investiga</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CazadordeHomicidas.mx" site_id="6109a9f5531b840007a4a187">Cazador de Homicidas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6109a9f5531b840007a4a187">Cazador de Homicidas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosarchivosdelFBI.mx" site_id="5e67d41b93312100076f3fca">Los archivos del FBI</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e67d41b93312100076f3fca">Los archivos del FBI</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ArchivosForenses.mx" site_id="5efb8c19b2678b000780d032">Archivos Forenses</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5efb8c19b2678b000780d032">Archivos Forenses</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TheNewDetectives.mx" site_id="5ea71d48af1d0b0007d837f4">The New Detectives</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ea71d48af1d0b0007d837f4">The New Detectives</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MisteriossinResolver.mx" site_id="5f610042272f68000867685b">Misterios sin Resolver</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f610042272f68000867685b">Misterios sin Resolver</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CBSNews.mx" site_id="62310d5a5dc9550007c6f580">CBS News</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62310d5a5dc9550007c6f580">CBS News</channel>
<channel site="pluto.tv" lang="es" xmltv_id="EuronewsEspañol.mx" site_id="619d59b7cbef25000728221c">Euronews Español</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d59b7cbef25000728221c">Euronews Español</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ADN40.mx" site_id="646ccd3681844c000974d6f4">ADN40</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646ccd3681844c000974d6f4">ADN40</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TeleFórmula.mx" site_id="63d2c140c111bc0008cb890b">TeleFórmula</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63d2c140c111bc0008cb890b">TeleFórmula</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MilenioTelevisión.mx" site_id="652e922db4b047000825f975">Milenio Televisión</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="652e922db4b047000825f975">Milenio Televisión</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVDeportes.mx" site_id="5dcde07af1c85b0009b18651">Pluto TV Deportes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde07af1c85b0009b18651">Pluto TV Deportes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaDeportesPremium.mx" site_id="65cf60d166eec80008724e6f">Azteca Deportes Premium</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65cf60d166eec80008724e6f">Azteca Deportes Premium</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ClaroSportsMexico.mx" site_id="6320d2755e54db000783fd87">Claro Sports Mexico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6320d2755e54db000783fd87">Claro Sports Mexico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ITVDeportes.mx" site_id="63f7e3f9dff38e00082a57af">ITV Deportes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63f7e3f9dff38e00082a57af">ITV Deportes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVPeleas.mx" site_id="5e98b0447665f200078caded">Pluto TV Peleas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e98b0447665f200078caded">Pluto TV Peleas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LuchaLibreAAA.mx" site_id="5f99a772c54853000797bf18">Lucha Libre AAA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f99a772c54853000797bf18">Lucha Libre AAA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DAZNCombat.mx" site_id="64df7a9a44fe100009b6ac5a">DAZN Combat</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64df7a9a44fe100009b6ac5a">DAZN Combat</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PFLMMA.mx" site_id="64f6163a30ab3300083d870e">PFL MMA</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64f6163a30ab3300083d870e">PFL MMA</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DAZNWomen'sFootball.mx" site_id="64b02bbd7d93410008fdae60">DAZN Women's Football</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64b02bbd7d93410008fdae60">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FIFA+.mx" site_id="66997d18a1b69e00082ee85f">FIFA+</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66997d18a1b69e00082ee85f">FIFA+</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónFelicesFiestas.mx" site_id="671125ad5534bb00088b00c4">South Park: Colección Felices Fiestas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="671125ad5534bb00088b00c4">South Park: Colección Felices Fiestas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónCartman.mx" site_id="65df731cec9fda0008b7aa8d">South Park: Colección Cartman</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df731cec9fda0008b7aa8d">South Park: Colección Cartman</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónKenny.mx" site_id="65df7272ec9fda0008b7a970">South Park: Colección Kenny</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df7272ec9fda0008b7a970">South Park: Colección Kenny</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónKyle.mx" site_id="65df73520d4561000817c29b">South Park: Colección Kyle</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df73520d4561000817c29b">South Park: Colección Kyle</channel>
<channel site="pluto.tv" lang="es" xmltv_id="SouthPark:ColecciónStan.mx" site_id="65df72db18036500081a8292">South Park: Colección Stan</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65df72db18036500081a8292">South Park: Colección Stan</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ComedyCentralSouthPark.mx" site_id="609ae5cd48d3200007b0a98e">Comedy Central South Park</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609ae5cd48d3200007b0a98e">Comedy Central South Park</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Daria.mx" site_id="62d0895ebe7a970008785244">Daria</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62d0895ebe7a970008785244">Daria</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LaFamiliadelBarrio.mx" site_id="62d08af527ce19000731eaa0">La Familia del Barrio</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62d08af527ce19000731eaa0">La Familia del Barrio</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHumor.mx" site_id="5e8397936791b30007ebb5a7">Pluto TV Humor</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e8397936791b30007ebb5a7">Pluto TV Humor</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ComedyCentralPlutoTV.mx" site_id="5ffcc21a432945000762d06b">Comedy Central Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ffcc21a432945000762d06b">Comedy Central Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="FailArmy.mx" site_id="5ebaccf1734aaf0007142c86">FailArmy</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebaccf1734aaf0007142c86">FailArmy</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ThePetCollective.mx" site_id="5ebacbcae43a6d000787b88e">The Pet Collective</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebacbcae43a6d000787b88e">The Pet Collective</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PRIDEtv.mx" site_id="6643b8c42eafd40008daab8b">PRIDEtv</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6643b8c42eafd40008daab8b">PRIDEtv</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Teatrix.mx" site_id="63ceb6ff60bc8f00088dc625">Teatrix</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63ceb6ff60bc8f00088dc625">Teatrix</channel>
<channel site="pluto.tv" lang="es" xmltv_id="TelefeHits.mx" site_id="5de91cf02fc07c0009910465">Telefe Hits</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5de91cf02fc07c0009910465">Telefe Hits</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaUNO-1hora.mx" site_id="646ccc7a2858cb0008127367">Azteca UNO -1 hora</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646ccc7a2858cb0008127367">Azteca UNO -1 hora</channel>
<channel site="pluto.tv" lang="es" xmltv_id="AztecaInternacional.mx" site_id="646cce4d1593940008a33f09">Azteca Internacional</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="646cce4d1593940008a33f09">Azteca Internacional</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ImagenTV+.mx" site_id="64e35aff6b1fdb0008ea8441">Imagen TV+</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64e35aff6b1fdb0008ea8441">Imagen TV+</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Canal6CdMX.mx" site_id="652e91fd6208700008dcaf7b">Canal 6 CdMX</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="652e91fd6208700008dcaf7b">Canal 6 CdMX</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVViajes.mx" site_id="5dcddfbdb7cf0e0009ae09ea">Pluto TV Viajes</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcddfbdb7cf0e0009ae09ea">Pluto TV Viajes</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVHogar.mx" site_id="5dd6ab8056beb000091fc6b6">Pluto TV Hogar</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6ab8056beb000091fc6b6">Pluto TV Hogar</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVCocina.mx" site_id="5dcde0657444a40009cd2422">Pluto TV Cocina</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde0657444a40009cd2422">Pluto TV Cocina</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVRecetas.mx" site_id="609062295c2b8f0007199e7a">Pluto TV Recetas</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="609062295c2b8f0007199e7a">Pluto TV Recetas</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tastemade.mx" site_id="5f998c1fc54853000797bacd">Tastemade</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f998c1fc54853000797bacd">Tastemade</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAnime.mx" site_id="5dcde17bf6591d0009839e02">Pluto TV Anime</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde17bf6591d0009839e02">Pluto TV Anime</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVAniméAcción.mx" site_id="5e6a4d875d7ccf0007cc2cf1">Pluto TV Animé Acción</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5e6a4d875d7ccf0007cc2cf1">Pluto TV Animé Acción</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Naruto.mx" site_id="5ee92e72fb286e0007285fec">Naruto</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ee92e72fb286e0007285fec">Naruto</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NarutoShippuden.mx" site_id="64c92fea3c3344000869e8a9">Naruto Shippuden</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64c92fea3c3344000869e8a9">Naruto Shippuden</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Boruto:NarutoNextGenerations.mx" site_id="656f37f257fe4a000884dfee">Boruto: Naruto Next Generations</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656f37f257fe4a000884dfee">Boruto: Naruto Next Generations</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HunterxHunter.mx" site_id="65d916a2f7f0af0008b6540d">Hunter x Hunter</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="65d916a2f7f0af0008b6540d">Hunter x Hunter</channel>
<channel site="pluto.tv" lang="es" xmltv_id="DeathNote.mx" site_id="626c2ed933a2890007e91422">Death Note</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="626c2ed933a2890007e91422">Death Note</channel>
<channel site="pluto.tv" lang="es" xmltv_id="JoJosBizarreAdventure.mx" site_id="66c790f780a0af0008583aa4">JoJos Bizarre Adventure</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c790f780a0af0008583aa4">JoJos Bizarre Adventure</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yu-Gi-Oh.mx" site_id="5fceaab478f2af00080ff51f">Yu-Gi-Oh</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fceaab478f2af00080ff51f">Yu-Gi-Oh</channel>
<channel site="pluto.tv" lang="es" xmltv_id="CaptainTsubasa.mx" site_id="64666345f3f5b1000882bfb4">Captain Tsubasa</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="64666345f3f5b1000882bfb4">Captain Tsubasa</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Inuyasha.mx" site_id="66b26665d512590008c507b7">Inuyasha</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66b26665d512590008c507b7">Inuyasha</channel>
<channel site="pluto.tv" lang="es" xmltv_id="OnePiece.mx" site_id="5ff4b9ccf938f8000779eb99">One Piece</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff4b9ccf938f8000779eb99">One Piece</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Tokusato.mx" site_id="5ff608e60e2996000768c366">Tokusato</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff608e60e2996000768c366">Tokusato</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVE-Sports.mx" site_id="5ff3934600d4c7000733ff49">Pluto TV E-Sports</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ff3934600d4c7000733ff49">Pluto TV E-Sports</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickTeen.mx" site_id="5fab09a8749b1a00077d35d2">Nick Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fab09a8749b1a00077d35d2">Nick Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeoniCarly.mx" site_id="620ff0a01f9e8700076c6f9d">Nickelodeon iCarly</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="620ff0a01f9e8700076c6f9d">Nickelodeon iCarly</channel>
<channel site="pluto.tv" lang="es" xmltv_id="KenanyKel.mx" site_id="5fcea93ffcf94500071c4b2f">Kenan y Kel</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5fcea93ffcf94500071c4b2f">Kenan y Kel</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVTeen.mx" site_id="5dd6de52b9914200091f047a">Pluto TV Teen</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6de52b9914200091f047a">Pluto TV Teen</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PAWPatrolPatrulladeCachorros.mx" site_id="6495c6ad115d060008bf6b52">PAW Patrol Patrulla de Cachorros</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6495c6ad115d060008bf6b52">PAW Patrol Patrulla de Cachorros</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickJr.Club.mx" site_id="5ddd7cb2cbb9010009b4fe32">Nick Jr. Club</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddd7cb2cbb9010009b4fe32">Nick Jr. Club</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Dora,LaExploradora.mx" site_id="656e28a2954b020008ed133a">Dora, La Exploradora</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="656e28a2954b020008ed133a">Dora, La Exploradora</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasPistasdeBlue.mx" site_id="5f9996533c9de3000759ccb5">Las Pistas de Blue</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f9996533c9de3000759ccb5">Las Pistas de Blue</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BabySharkTV.mx" site_id="619d5e6a093e7c0007489211">Baby Shark TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="619d5e6a093e7c0007489211">Baby Shark TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Babyfirst.mx" site_id="5ebac49ce4dc8b00078b23bc">Babyfirst</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ebac49ce4dc8b00078b23bc">Babyfirst</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVJunior.mx" site_id="5dcde2ac4bc6c500094ab45b">Pluto TV Junior</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dcde2ac4bc6c500094ab45b">Pluto TV Junior</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Barney.mx" site_id="5f29ada4bdaebd000708d49d">Barney</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f29ada4bdaebd000708d49d">Barney</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ElReinoInfantil.mx" site_id="5f4d3d06fb60d8000781fce8">El Reino Infantil</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f4d3d06fb60d8000781fce8">El Reino Infantil</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonClásico.mx" site_id="5ddd7c348520b40009c347e2">Nickelodeon Clásico</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ddd7c348520b40009c347e2">Nickelodeon Clásico</channel>
<channel site="pluto.tv" lang="es" xmltv_id="HeyArnold!.mx" site_id="66c79221b1a34600087e264d">Hey Arnold!</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66c79221b1a34600087e264d">Hey Arnold!</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Rugrats.mx" site_id="5ea7215005d66d0007e8128a">Rugrats</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5ea7215005d66d0007e8128a">Rugrats</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonRocketPower.mx" site_id="6202ab549654c800076ee13f">Nickelodeon Rocket Power</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6202ab549654c800076ee13f">Nickelodeon Rocket Power</channel>
<channel site="pluto.tv" lang="es" xmltv_id="NickelodeonPlutoTV.mx" site_id="645952687cb4b100084ed52e">Nickelodeon Pluto TV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="645952687cb4b100084ed52e">Nickelodeon Pluto TV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="BobEsponjaPantalonesCuadrados.mx" site_id="6254598f5083f800076d8563">Bob Esponja Pantalones Cuadrados</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6254598f5083f800076d8563">Bob Esponja Pantalones Cuadrados</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LosPadrinosMágicos.mx" site_id="6322099c822bbc00074857db">Los Padrinos Mágicos</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6322099c822bbc00074857db">Los Padrinos Mágicos</channel>
<channel site="pluto.tv" lang="es" xmltv_id="LasTortugasNinja.mx" site_id="63dd5d7a4e83e700088fbca8">Las Tortugas Ninja</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="63dd5d7a4e83e700088fbca8">Las Tortugas Ninja</channel>
<channel site="pluto.tv" lang="es" xmltv_id="PlutoTVKids.mx" site_id="5dd6dae8ce788b0009eaf77b">Pluto TV Kids</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5dd6dae8ce788b0009eaf77b">Pluto TV Kids</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVBiggestPop.mx" site_id="6047fabfce6e8e00070bcc9f">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6047fabfce6e8e00070bcc9f">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVClassic.mx" site_id="66a11a21a79dea0008aa90ca">MTV Classic</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a11a21a79dea0008aa90ca">MTV Classic</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVRocks.mx" site_id="66a01b52a4ee27000808ea36">MTV Rocks</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a01b52a4ee27000808ea36">MTV Rocks</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVSpankin'New.mx" site_id="6047fd723b5bd00007de7092">MTV Spankin' New</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="6047fd723b5bd00007de7092">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="es" xmltv_id="MTVFlowLatino.mx" site_id="62b218fc511d4b00070ddc0c">MTV Flow Latino</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="62b218fc511d4b00070ddc0c">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="es" xmltv_id="Yo!MTV.mx" site_id="66a01adf46762a00081ee3dc">Yo! MTV</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="66a01adf46762a00081ee3dc">Yo! MTV</channel>
<channel site="pluto.tv" lang="es" xmltv_id="ConciertosporStingray.mx" site_id="5f85ca40eda1b10007b967cd">Conciertos por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85ca40eda1b10007b967cd">Conciertos por Stingray</channel>
<channel site="pluto.tv" lang="es" xmltv_id="KaraokeporStingray.mx" site_id="5f85cf621d6d2200079f1de0">Karaoke por Stingray</channel> <channel site="pluto.tv" lang="es" xmltv_id="" site_id="5f85cf621d6d2200079f1de0">Karaoke por Stingray</channel>
</channels> </channels>

View file

@ -1,210 +1,210 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="no" xmltv_id="NonStopKungFu.no" site_id="6728d30cdaad7f000881d979">NonStop Kung Fu</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6728d30cdaad7f000881d979">NonStop Kung Fu</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVJohnWayne.no" site_id="655ca99dfbc15b00081f209c">Pluto TV John Wayne</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="655ca99dfbc15b00081f209c">Pluto TV John Wayne</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MODUSSuperSeriesDarts.no" site_id="671656dfdaad7f00085d2133">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="671656dfdaad7f00085d2133">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JerseyShoreFamilyVacation.no" site_id="6728c87cc7626f0008b28149">Jersey Shore Family Vacation</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6728c87cc7626f0008b28149">Jersey Shore Family Vacation</channel>
<channel site="pluto.tv" lang="no" xmltv_id="CarolineintheCity.no" site_id="66a7aac9d512590008ab2dcb">Caroline in the City</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66a7aac9d512590008ab2dcb">Caroline in the City</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark:HolidayCollection.no" site_id="66fcee104ca31f00080492e0">South Park: Holiday Collection</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66fcee104ca31f00080492e0">South Park: Holiday Collection</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TheGreatChristmasLightFight.no" site_id="664f115ab18d700008058a32">The Great Christmas Light Fight</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="664f115ab18d700008058a32">The Great Christmas Light Fight</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVChristmasSongs.no" site_id="6357e94383c08f00076ce244">MTV Christmas Songs</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6357e94383c08f00076ce244">MTV Christmas Songs</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVPeis.no" site_id="671f4fd9529ac900081c8fd7">Pluto TV Peis</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="671f4fd9529ac900081c8fd7">Pluto TV Peis</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Julevalper.no" site_id="66dea627abec540008c6de26">Julevalper</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66dea627abec540008c6de26">Julevalper</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MerryChristmasfromViafree.no" site_id="63047bd6b0726b000795341d">Merry Christmas from Viafree</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63047bd6b0726b000795341d">Merry Christmas from Viafree</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark:KennyCollection.no" site_id="65d87f53ec9fda0008a5b810">South Park: Kenny Collection</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65d87f53ec9fda0008a5b810">South Park: Kenny Collection</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark:StanCollection.no" site_id="65d87f7a28730900088e7fbf">South Park: Stan Collection</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65d87f7a28730900088e7fbf">South Park: Stan Collection</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark:CartmanCollection.no" site_id="65d87fa0f7f0af0008b2358b">South Park: Cartman Collection</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65d87fa0f7f0af0008b2358b">South Park: Cartman Collection</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark:ButtersCollection.no" site_id="65d87fcb66eec8000887f4aa">South Park: Butters Collection</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65d87fcb66eec8000887f4aa">South Park: Butters Collection</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark:KyleCollection.no" site_id="65d88004ec9fda0008a5b8b3">South Park: Kyle Collection</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65d88004ec9fda0008a5b8b3">South Park: Kyle Collection</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SouthPark.no" site_id="61c1e88cd168ea0007068133">South Park</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e88cd168ea0007068133">South Park</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TopGear.no" site_id="6202357dea93940007d723ca">Top Gear</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6202357dea93940007d723ca">Top Gear</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TopGearChallenge.no" site_id="660d6536aec9680008f8cc8e">Top Gear Challenge</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="660d6536aec9680008f8cc8e">Top Gear Challenge</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TopGearRoadTrips.no" site_id="660d64eac8311c0008b8bbef">Top Gear Road Trips</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="660d64eac8311c0008b8bbef">Top Gear Road Trips</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TheDailyShow.no" site_id="65c0973311ced7000808d255">The Daily Show</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65c0973311ced7000808d255">The Daily Show</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Baywatch.no" site_id="664c90320120f40008b84ce0">Baywatch</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="664c90320120f40008b84ce0">Baywatch</channel>
<channel site="pluto.tv" lang="no" xmltv_id="HotOnes.no" site_id="655ca968c917a5000830f8f5">Hot Ones</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="655ca968c917a5000830f8f5">Hot Ones</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Survivorman.no" site_id="65ba50163af63d0008506285">Survivorman</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65ba50163af63d0008506285">Survivorman</channel>
<channel site="pluto.tv" lang="no" xmltv_id="FangenepåFortet.no" site_id="65cb8bd911ced7000820bff2">Fangene på Fortet</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65cb8bd911ced7000820bff2">Fangene på Fortet</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DesiPlayTV.no" site_id="65fac463332fec00087c44ef">Desi Play TV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65fac463332fec00087c44ef">Desi Play TV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="RobotWarsbyMECH+.no" site_id="651582486625510008f9fbce">Robot Wars by MECH+</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="651582486625510008f9fbce">Robot Wars by MECH+</channel>
<channel site="pluto.tv" lang="no" xmltv_id="AuctionHunters.no" site_id="62da7159ca8f220008032730">Auction Hunters</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62da7159ca8f220008032730">Auction Hunters</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Hundehviskeren.no" site_id="6501ad3a98020f0008503dba">Hundehviskeren</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6501ad3a98020f0008503dba">Hundehviskeren</channel>
<channel site="pluto.tv" lang="no" xmltv_id="CampKulinaris.no" site_id="61c1dce2fb9ae40007d0ac15">Camp Kulinaris</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1dce2fb9ae40007d0ac15">Camp Kulinaris</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BondiRescue.no" site_id="660d67c419ca71000849a4e9">Bondi Rescue</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="660d67c419ca71000849a4e9">Bondi Rescue</channel>
<channel site="pluto.tv" lang="no" xmltv_id="RiverMonsters.no" site_id="662a26f3cd439400084fc8b8">River Monsters</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="662a26f3cd439400084fc8b8">River Monsters</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ParadiseHotel.no" site_id="61c1db901346480007b7c345">Paradise Hotel</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1db901346480007b7c345">Paradise Hotel</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Paradise.no" site_id="629e0a068261390007f13d47">Paradise</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="629e0a068261390007f13d47">Paradise</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Charterfeber.no" site_id="61c1dda0fe470d00080f85b8">Charterfeber</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1dda0fe470d00080f85b8">Charterfeber</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Robinsonekspedisjonen.no" site_id="63a30745d2cfa40007f9816e">Robinsonekspedisjonen</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63a30745d2cfa40007f9816e">Robinsonekspedisjonen</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Forsidefruer.no" site_id="61c1df1cc210ed0007607b9b">Forsidefruer</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1df1cc210ed0007607b9b">Forsidefruer</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Luksusfellen.no" site_id="61c1e060197fe600073c1ffb">Luksusfellen</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e060197fe600073c1ffb">Luksusfellen</channel>
<channel site="pluto.tv" lang="no" xmltv_id="LuksusfellenSverige.no" site_id="61c1e0f1d6d97900076ea16f">Luksusfellen Sverige</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e0f1d6d97900076ea16f">Luksusfellen Sverige</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SvenskeTruckers.no" site_id="645cc855e1979c000875ee47">Svenske Truckers</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="645cc855e1979c000875ee47">Svenske Truckers</channel>
<channel site="pluto.tv" lang="no" xmltv_id="CarChase.no" site_id="65a93b870c7ff50008d1ca47">Car Chase</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65a93b870c7ff50008d1ca47">Car Chase</channel>
<channel site="pluto.tv" lang="no" xmltv_id="IceRoadTruckers.no" site_id="657884cba620e30008fe33e1">Ice Road Truckers</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="657884cba620e30008fe33e1">Ice Road Truckers</channel>
<channel site="pluto.tv" lang="no" xmltv_id="UngaMammor.no" site_id="61c1e1c445b45d0007aad03e">Unga Mammor</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e1c445b45d0007aad03e">Unga Mammor</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DanceMoms.no" site_id="657882efb3801200084caa77">Dance Moms</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="657882efb3801200084caa77">Dance Moms</channel>
<channel site="pluto.tv" lang="no" xmltv_id="WorldofLoveIsland.no" site_id="6440f6e25a0cd500083b1ca4">World of Love Island</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6440f6e25a0cd500083b1ca4">World of Love Island</channel>
<channel site="pluto.tv" lang="no" xmltv_id="America'sNextTopModel.no" site_id="6464cd7c7cb4b100086c71c9">America's Next Top Model</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6464cd7c7cb4b100086c71c9">America's Next Top Model</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Cheaters.no" site_id="651e6607575f660008d2cb7f">Cheaters</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="651e6607575f660008d2cb7f">Cheaters</channel>
<channel site="pluto.tv" lang="no" xmltv_id="IcePilots.no" site_id="62cd9fee6187a70007784cdd">Ice Pilots</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62cd9fee6187a70007784cdd">Ice Pilots</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JudgeJudy.no" site_id="6380c428dd0f47000799907c">Judge Judy</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6380c428dd0f47000799907c">Judge Judy</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Nosey.no" site_id="619e279d45b45d0007a8d839">Nosey</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="619e279d45b45d0007a8d839">Nosey</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SkjønnhetsfellenDanmark.no" site_id="643810f2e8a4aa0008ccf575">Skjønnhetsfellen Danmark</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="643810f2e8a4aa0008ccf575">Skjønnhetsfellen Danmark</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TattooFixers.no" site_id="62bd991fc0ecf10007d2cb18">Tattoo Fixers</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62bd991fc0ecf10007d2cb18">Tattoo Fixers</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TheOnlyWayisEssex.no" site_id="62bd98ab36f6be00077921c7">The Only Way is Essex</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62bd98ab36f6be00077921c7">The Only Way is Essex</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DogTheBountyHunter.no" site_id="65788362cbd0d60008f8729a">Dog The Bounty Hunter</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65788362cbd0d60008f8729a">Dog The Bounty Hunter</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DuckDynasty.no" site_id="657739fcb9adc40008fe02f4">Duck Dynasty</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="657739fcb9adc40008fe02f4">Duck Dynasty</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JadeFever.no" site_id="660d6b00635c75000828aa27">Jade Fever</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="660d6b00635c75000828aa27">Jade Fever</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DallasCowboysCheerleaders.no" site_id="64e77016324d190008291c13">Dallas Cowboys Cheerleaders</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64e77016324d190008291c13">Dallas Cowboys Cheerleaders</channel>
<channel site="pluto.tv" lang="no" xmltv_id="CelebReality.no" site_id="6578843432c1b300089a9a98">Celeb Reality</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6578843432c1b300089a9a98">Celeb Reality</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BestofMTV.no" site_id="632afc466699570007ed1106">Best of MTV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="632afc466699570007ed1106">Best of MTV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Catfish.no" site_id="61781a52a3638a00078fa57e">Catfish</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61781a52a3638a00078fa57e">Catfish</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JerseyShore.no" site_id="64424b21e1979c0008379681">Jersey Shore</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64424b21e1979c0008379681">Jersey Shore</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Ridiculousness.no" site_id="62cd9e0d10bb020007005628">Ridiculousness</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62cd9e0d10bb020007005628">Ridiculousness</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TeenMom.no" site_id="61c1df62b7672a0007b6c9ba">Teen Mom</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1df62b7672a0007b6c9ba">Teen Mom</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PimpMyRide.no" site_id="61c1d6e1f5acaf0007f8381d">Pimp My Ride</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d6e1f5acaf0007f8381d">Pimp My Ride</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TheHills.no" site_id="61c1d56f28e94c0007827bdb">The Hills</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d56f28e94c0007827bdb">The Hills</channel>
<channel site="pluto.tv" lang="no" xmltv_id="GeordieShore.no" site_id="64424a1d5a0cd500083ed27c">Geordie Shore</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64424a1d5a0cd500083ed27c">Geordie Shore</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ExOnTheBeach.no" site_id="61c1d66518447e000717e4c2">Ex On The Beach</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d66518447e000717e4c2">Ex On The Beach</channel>
<channel site="pluto.tv" lang="no" xmltv_id="AreYouTheOne?.no" site_id="61c1db8ed6d97900076ea15c">Are You The One?</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1db8ed6d97900076ea15c">Are You The One?</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JustTattooofUs.no" site_id="61c1ded41aadd80007a2ee2e">Just Tattoo of Us</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1ded41aadd80007a2ee2e">Just Tattoo of Us</channel>
<channel site="pluto.tv" lang="no" xmltv_id="EventyrligOppussing.no" site_id="61c1de93244e500007581d69">Eventyrlig Oppussing</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1de93244e500007581d69">Eventyrlig Oppussing</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ProjectRunway.no" site_id="61814ff322e67b00074a5c43">Project Runway</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61814ff322e67b00074a5c43">Project Runway</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Boligjakten.no" site_id="61c1dc21b9587d0007e3fc15">Boligjakten</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1dc21b9587d0007e3fc15">Boligjakten</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Boligkjøpiblinde.no" site_id="63c6a1c46d126a000760b91c">Boligkjøp i blinde</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63c6a1c46d126a000760b91c">Boligkjøp i blinde</channel>
<channel site="pluto.tv" lang="no" xmltv_id="EscapetotheCountry.no" site_id="66d71485167a8b0008fd3345">Escape to the Country</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66d71485167a8b0008fd3345">Escape to the Country</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BestofTheDrewBarrymoreShow.no" site_id="630478cfdb5a4a0007ec255e">Best of The Drew Barrymore Show</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="630478cfdb5a4a0007ec255e">Best of The Drew Barrymore Show</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Charmed.no" site_id="66290bb423e24f000832ccbf">Charmed</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66290bb423e24f000832ccbf">Charmed</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BeverlyHills90210.no" site_id="62beb2e62bb1570007c40012">Beverly Hills 90210</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62beb2e62bb1570007c40012">Beverly Hills 90210</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MelrosePlace.no" site_id="62a0ada2f1bdc5000738e020">Melrose Place</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62a0ada2f1bdc5000738e020">Melrose Place</channel>
<channel site="pluto.tv" lang="no" xmltv_id="RedShoeDiaries.no" site_id="66a0ff2a46762a000820004f">Red Shoe Diaries</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66a0ff2a46762a000820004f">Red Shoe Diaries</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Wildfire.no" site_id="62beb7d7fbf54600076abc7b">Wildfire</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62beb7d7fbf54600076abc7b">Wildfire</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Matlock.no" site_id="66290b7523e24f000832cc17">Matlock</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66290b7523e24f000832cc17">Matlock</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DiagnosisMurder.no" site_id="668bf91208d5490008065ffd">Diagnosis Murder</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="668bf91208d5490008065ffd">Diagnosis Murder</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BeautyandtheBeast.no" site_id="6512d36ca765070008836eac">Beauty and the Beast</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6512d36ca765070008836eac">Beauty and the Beast</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JAG.no" site_id="654a4fc753fc9700083ae79f">JAG</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="654a4fc753fc9700083ae79f">JAG</channel>
<channel site="pluto.tv" lang="no" xmltv_id="WalkerTexasRanger.no" site_id="62a0ae8b2241f500073e0925">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62a0ae8b2241f500073e0925">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Scorpion.no" site_id="63a1c959d9dd51000825d659">Scorpion</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63a1c959d9dd51000825d659">Scorpion</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Numb3rs.no" site_id="63dbe78051f5d000083e9249">Numb3rs</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63dbe78051f5d000083e9249">Numb3rs</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MissionImpossible.no" site_id="639b4eb4da3fda0008036f6e">Mission Impossible</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="639b4eb4da3fda0008036f6e">Mission Impossible</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DocMartin.no" site_id="62724ae034f5190007b63424">Doc Martin</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62724ae034f5190007b63424">Doc Martin</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BET.no" site_id="61dd5bf8db0b8e00080804ff">BET</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61dd5bf8db0b8e00080804ff">BET</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVTrueCrime.no" site_id="61c1e51354d923000731bf78">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e51354d923000731bf78">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="no" xmltv_id="COPS.no" site_id="6400bdb1219c4c00081751aa">COPS</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6400bdb1219c4c00081751aa">COPS</channel>
<channel site="pluto.tv" lang="no" xmltv_id="CrimeSceneSolvers.no" site_id="6426900ea3ade70008ffcb20">Crime Scene Solvers</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6426900ea3ade70008ffcb20">Crime Scene Solvers</channel>
<channel site="pluto.tv" lang="no" xmltv_id="NordiskkrimfraViaplay.no" site_id="64eca23c9c1e390008524ae6">Nordisk krim fra Viaplay</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64eca23c9c1e390008524ae6">Nordisk krim fra Viaplay</channel>
<channel site="pluto.tv" lang="no" xmltv_id="48Hours.no" site_id="634690323ce5fa0007c621f2">48 Hours</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="634690323ce5fa0007c621f2">48 Hours</channel>
<channel site="pluto.tv" lang="no" xmltv_id="HomicideHunter.no" site_id="619e286e093e7c0007489e6a">Homicide Hunter</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="619e286e093e7c0007489e6a">Homicide Hunter</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ForensicFiles.no" site_id="6181262dc68b92000780fed2">Forensic Files</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6181262dc68b92000780fed2">Forensic Files</channel>
<channel site="pluto.tv" lang="no" xmltv_id="FBIFiles.no" site_id="61815067b9802500076e16e0">FBI Files</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61815067b9802500076e16e0">FBI Files</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TheNewDetectives.no" site_id="6181511c1e13690007b143c2">The New Detectives</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6181511c1e13690007b143c2">The New Detectives</channel>
<channel site="pluto.tv" lang="no" xmltv_id="OntheCase.no" site_id="62cd9f1cda044a00077b8f41">On the Case</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62cd9f1cda044a00077b8f41">On the Case</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVFilm.no" site_id="61c1e1e55deef000075aed0c">Pluto TV Film</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e1e55deef000075aed0c">Pluto TV Film</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVAction.no" site_id="61c1e270489a9c000874d209">Pluto TV Action</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e270489a9c000874d209">Pluto TV Action</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVHorror.no" site_id="63a19cb7847a090007f230d7">Pluto TV Horror</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63a19cb7847a090007f230d7">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVSpenning.no" site_id="61c1e30f738ecd0008825184">Pluto TV Spenning</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e30f738ecd0008825184">Pluto TV Spenning</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVKomedie.no" site_id="61c1e3a679a4390007c78136">Pluto TV Komedie</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e3a679a4390007c78136">Pluto TV Komedie</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVKultfilmer.no" site_id="63dbe80f60bc8f0008aa7c78">Pluto TV Kultfilmer</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63dbe80f60bc8f0008aa7c78">Pluto TV Kultfilmer</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVRomantikk.no" site_id="63a19bb5e6914b000721b5c0">Pluto TV Romantikk</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63a19bb5e6914b000721b5c0">Pluto TV Romantikk</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVBud&amp;Terence.no" site_id="65b916ec3af63d00084c5841">Pluto TV Bud &amp; Terence</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65b916ec3af63d00084c5841">Pluto TV Bud &amp; Terence</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVHaifilmer.no" site_id="6670431722acab00088c0b3c">Pluto TV Haifilmer</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6670431722acab00088c0b3c">Pluto TV Haifilmer</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ViafreeMovies.no" site_id="62beb44e3afd120007915d1b">Viafree Movies</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62beb44e3afd120007915d1b">Viafree Movies</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BeavisandButt-Head.no" site_id="6486e8328e3c0a0008e5686c">Beavis and Butt-Head</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6486e8328e3c0a0008e5686c">Beavis and Butt-Head</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BroadCity.no" site_id="65cba778ec452d0008acbe86">Broad City</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65cba778ec452d0008acbe86">Broad City</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Chappelle'sShow.no" site_id="65e977a618036500082ec972">Chappelle's Show</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65e977a618036500082ec972">Chappelle's Show</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Reno911.no" site_id="65e977874e01740008c9fb4c">Reno 911</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65e977874e01740008c9fb4c">Reno 911</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Tosh.0.no" site_id="65e977c48b24c8000805b9ef">Tosh.0</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65e977c48b24c8000805b9ef">Tosh.0</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Key&amp;Peele.no" site_id="65cba7573ba51e00084d76e1">Key &amp; Peele</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65cba7573ba51e00084d76e1">Key &amp; Peele</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ComedyCentralRoast.no" site_id="6641fddef9992200082c57de">Comedy Central Roast</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6641fddef9992200082c57de">Comedy Central Roast</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ComedyCentral.no" site_id="61c1e7f38413090007c640db">Comedy Central</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e7f38413090007c640db">Comedy Central</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Awkward.no" site_id="61c1ddbd0b90cb0007e20d2f">Awkward</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1ddbd0b90cb0007e20d2f">Awkward</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Zoey101.no" site_id="6458e75f939a5900085f453f">Zoey 101</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6458e75f939a5900085f453f">Zoey 101</channel>
<channel site="pluto.tv" lang="no" xmltv_id="FailArmy.no" site_id="61781077929e930007c194ee">FailArmy</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61781077929e930007c194ee">FailArmy</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JustforLaughs.no" site_id="61781878a3580d0008967df8">Just for Laughs</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61781878a3580d0008967df8">Just for Laughs</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVSci-Fi.no" site_id="61f957e051cca800076f2358">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61f957e051cca800076f2358">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Andromeda.no" site_id="6178156e54712100072d6b2b">Andromeda</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6178156e54712100072d6b2b">Andromeda</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVAlienInvasion.no" site_id="65099a80d1f20c000853605d">Pluto TV Alien Invasion</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65099a80d1f20c000853605d">Pluto TV Alien Invasion</channel>
<channel site="pluto.tv" lang="no" xmltv_id="UnsolvedMysteries.no" site_id="61814f38ac1f2100075c8894">Unsolved Mysteries</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61814f38ac1f2100075c8894">Unsolved Mysteries</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TalesfromtheDarkside.no" site_id="6512d3eb6625510008f21b78">Tales from the Darkside</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6512d3eb6625510008f21b78">Tales from the Darkside</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TheTwilightZone.no" site_id="6512d3a0bdcb19000799cc82">The Twilight Zone</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6512d3a0bdcb19000799cc82">The Twilight Zone</channel>
<channel site="pluto.tv" lang="no" xmltv_id="GhostDimension.no" site_id="619e259fd8b672000729b1d7">Ghost Dimension</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="619e259fd8b672000729b1d7">Ghost Dimension</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVOvernaturlig.no" site_id="61c1e74354d923000731bf7c">Pluto TV Overnaturlig</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e74354d923000731bf7c">Pluto TV Overnaturlig</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVDokumentar.no" site_id="62b1df543afd12000790947d">Pluto TV Dokumentar</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62b1df543afd12000790947d">Pluto TV Dokumentar</channel>
<channel site="pluto.tv" lang="no" xmltv_id="LovethePlanet.no" site_id="65c2435e3ba51e000836b66d">Love the Planet</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65c2435e3ba51e000836b66d">Love the Planet</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ISurvived.no" site_id="6578852bcbd0d60008f876d7">I Survived</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6578852bcbd0d60008f876d7">I Survived</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVSpace.no" site_id="61b877eedb088700083246f8">Pluto TV Space</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61b877eedb088700083246f8">Pluto TV Space</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ModernMarvels.no" site_id="657883cab228b700084414b3">Modern Marvels</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="657883cab228b700084414b3">Modern Marvels</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SmithsonianChannelSelects.no" site_id="61fb98674f7dd00007fdc2ee">Smithsonian Channel Selects</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61fb98674f7dd00007fdc2ee">Smithsonian Channel Selects</channel>
<channel site="pluto.tv" lang="no" xmltv_id="NatureTime.no" site_id="61eeb5c3d740670007da3abb">Nature Time</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61eeb5c3d740670007da3abb">Nature Time</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVSport.no" site_id="6357f33cb51d2d00077927c6">Pluto TV Sport</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6357f33cb51d2d00077927c6">Pluto TV Sport</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PFLMMA.no" site_id="65b8f87ac798e800085a123f">PFL MMA</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65b8f87ac798e800085a123f">PFL MMA</channel>
<channel site="pluto.tv" lang="no" xmltv_id="RealmadridTV.no" site_id="660d71e2aec9680008f8f18a">Realmadrid TV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="660d71e2aec9680008f8f18a">Realmadrid TV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Kickin'it.no" site_id="659fbb9432c1b30008de2ed6">Kickin'it</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="659fbb9432c1b30008de2ed6">Kickin'it</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DAZNWomen'sFootball.no" site_id="64a28340d609b60008ca11a8">DAZN Women's Football</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64a28340d609b60008ca11a8">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="no" xmltv_id="FIFA+.no" site_id="660bfca524e1d000085b6007">FIFA+</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="660bfca524e1d000085b6007">FIFA+</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BellatorMMA.no" site_id="62792d003b8ddc000714f43a">Bellator MMA</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62792d003b8ddc000714f43a">Bellator MMA</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DAZNCombat.no" site_id="648056f0f77b61000828f1ba">DAZN Combat</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="648056f0f77b61000828f1ba">DAZN Combat</channel>
<channel site="pluto.tv" lang="no" xmltv_id="UnbeatenSports.no" site_id="64773837f77b6100081236a8">Unbeaten Sports</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64773837f77b6100081236a8">Unbeaten Sports</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TritonPoker.no" site_id="668e60013a4ad20008c878f4">Triton Poker</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="668e60013a4ad20008c878f4">Triton Poker</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PGATOUR.no" site_id="66c86fff9ba9e800080d8ebe">PGA TOUR</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66c86fff9ba9e800080d8ebe">PGA TOUR</channel>
<channel site="pluto.tv" lang="no" xmltv_id="IMPACTWrestling.no" site_id="63d8dba260bc8f0008a115d9">IMPACT Wrestling</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63d8dba260bc8f0008a115d9">IMPACT Wrestling</channel>
<channel site="pluto.tv" lang="no" xmltv_id="GloryKickboxing.no" site_id="65e9b676332fec00085b300e">Glory Kickboxing</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65e9b676332fec00085b300e">Glory Kickboxing</channel>
<channel site="pluto.tv" lang="no" xmltv_id="WomenofWrestling.no" site_id="66a0ff74d2d50d00081119d7">Women of Wrestling</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66a0ff74d2d50d00081119d7">Women of Wrestling</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PadeltimeTV.no" site_id="65c2428f3ba51e000836b553">Padeltime TV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65c2428f3ba51e000836b553">Padeltime TV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="WorldPokerTour.no" site_id="61781254560f2e00071b78ce">World Poker Tour</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61781254560f2e00071b78ce">World Poker Tour</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BilliardTV.no" site_id="65df1191f7f0af0008c24a32">Billiard TV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65df1191f7f0af0008c24a32">Billiard TV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="JaktärJakt.no" site_id="62e7ba25be69bc0007b77fdc">Jakt är Jakt</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62e7ba25be69bc0007b77fdc">Jakt är Jakt</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Wired2FishTV.no" site_id="668544c7efa2a10008f175f9">Wired2Fish TV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="668544c7efa2a10008f175f9">Wired2Fish TV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVFishing.no" site_id="619e22d81782bd00077f0dbd">Pluto TV Fishing</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="619e22d81782bd00077f0dbd">Pluto TV Fishing</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MonsterJam.no" site_id="65c340383a116800078c8454">Monster Jam</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65c340383a116800078c8454">Monster Jam</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TareqTaylor'sNordicCookery.no" site_id="63c95451d3485c0007734f55">Tareq Taylor's Nordic Cookery</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63c95451d3485c0007734f55">Tareq Taylor's Nordic Cookery</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Hell'sKitchen.no" site_id="62022f7b9fcc3800076f8c26">Hell's Kitchen</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62022f7b9fcc3800076f8c26">Hell's Kitchen</channel>
<channel site="pluto.tv" lang="no" xmltv_id="ComeDinewithMe.no" site_id="65d7243c4e017400089e14a8">Come Dine with Me</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65d7243c4e017400089e14a8">Come Dine with Me</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVBiggestPop.no" site_id="6697978e3a4ad20008df905a">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6697978e3a4ad20008df905a">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVClassic.no" site_id="6329cd8809e10300073236c2">MTV Classic</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6329cd8809e10300073236c2">MTV Classic</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVMovieHits.no" site_id="6331a50a0eba1900080bd911">MTV Movie Hits</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6331a50a0eba1900080bd911">MTV Movie Hits</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVRocks.no" site_id="638f2e06cc9fc2000798c410">MTV Rocks</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="638f2e06cc9fc2000798c410">MTV Rocks</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVLoveMusic.no" site_id="638f2d9aa530b200072ec8ef">MTV Love Music</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="638f2d9aa530b200072ec8ef">MTV Love Music</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVonTour!.no" site_id="65ba4af9dc10a40008d9fcc3">MTV on Tour!</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65ba4af9dc10a40008d9fcc3">MTV on Tour!</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVSpankin'New.no" site_id="6697971dcd0d31000825936b">MTV Spankin' New</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6697971dcd0d31000825936b">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVUnplugged.no" site_id="61c1e14e5df1da0007bee0e3">MTV Unplugged</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e14e5df1da0007bee0e3">MTV Unplugged</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Yo!MTV.no" site_id="669797f1a1b69e0008292a15">Yo! MTV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="669797f1a1b69e0008292a15">Yo! MTV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="MTVFlowLatino.no" site_id="66979867a4ee270008f8be93">MTV Flow Latino</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66979867a4ee270008f8be93">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="no" xmltv_id="CBSNews24/7.no" site_id="6231e909bc960f00075d8e7c">CBS News 24/7</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6231e909bc960f00075d8e7c">CBS News 24/7</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Reuters.no" site_id="65c119a63a11680007879d66">Reuters</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65c119a63a11680007879d66">Reuters</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BloombergTV+.no" site_id="61de8d4b8acf6c0007f1c2f3">Bloomberg TV+</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61de8d4b8acf6c0007f1c2f3">Bloomberg TV+</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Euronews.no" site_id="61de8e502c8e9400077e5de7">Euronews</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61de8e502c8e9400077e5de7">Euronews</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Avatar.no" site_id="61c1d64a8bb1830008e41183">Avatar</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d64a8bb1830008e41183">Avatar</channel>
<channel site="pluto.tv" lang="no" xmltv_id="InazumaEleven.no" site_id="646cc23ae94c3800082f6793">Inazuma Eleven</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="646cc23ae94c3800082f6793">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Yu-Gi-Oh!.no" site_id="642aeeef2912c900080a0a72">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="642aeeef2912c900080a0a72">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Julemoroforbarn.no" site_id="63204c39b81f390007233497">Julemoro for barn</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63204c39b81f390007233497">Julemoro for barn</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Detstoreeksperimentet.no" site_id="6548f5ad056b97000884d5e1">Det store eksperimentet</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6548f5ad056b97000884d5e1">Det store eksperimentet</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SvampeBobFirkant.no" site_id="61c1d59a244e500007581861">SvampeBob Firkant</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d59a244e500007581861">SvampeBob Firkant</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PawPatrol.no" site_id="61c1d759e4ee8d0007bcdb2c">Paw Patrol</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d759e4ee8d0007bcdb2c">Paw Patrol</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Victorious.no" site_id="652d206e6208700008d77aa2">Victorious</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="652d206e6208700008d77aa2">Victorious</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SchoolofRock.no" site_id="6620f8fd5e23700008ecc3ba">School of Rock</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6620f8fd5e23700008ecc3ba">School of Rock</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVBarn.no" site_id="61c1e914bf8c520007a93ff1">Pluto TV Barn</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e914bf8c520007a93ff1">Pluto TV Barn</channel>
<channel site="pluto.tv" lang="no" xmltv_id="PlutoTVFordeminste.no" site_id="61c1d459fbb4b50007d24647">Pluto TV For de minste</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d459fbb4b50007d24647">Pluto TV For de minste</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Bulderhuset.no" site_id="63047ca41c10010007573c3b">Bulderhuset</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63047ca41c10010007573c3b">Bulderhuset</channel>
<channel site="pluto.tv" lang="no" xmltv_id="iCarly.no" site_id="61c1d9b31a9c310008f8ee57">iCarly</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d9b31a9c310008f8ee57">iCarly</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Sam&amp;Cat.no" site_id="65c5f26fd77d450008c60473">Sam &amp; Cat</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="65c5f26fd77d450008c60473">Sam &amp; Cat</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BigTimeRush.no" site_id="6537ab08bdf3cf00088e9645">Big Time Rush</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6537ab08bdf3cf00088e9645">Big Time Rush</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BlazeogMonstermaskinene.no" site_id="61c1d854197fe600073c1fee">Blaze og Monstermaskinene</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d854197fe600073c1fee">Blaze og Monstermaskinene</channel>
<channel site="pluto.tv" lang="no" xmltv_id="BubbleGuppies.no" site_id="64885ab54cfc2c0008bc3c63">Bubble Guppies</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="64885ab54cfc2c0008bc3c63">Bubble Guppies</channel>
<channel site="pluto.tv" lang="no" xmltv_id="DoraTV.no" site_id="61c1d905b8fee40008348a73">Dora TV</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d905b8fee40008348a73">Dora TV</channel>
<channel site="pluto.tv" lang="no" xmltv_id="TotallyTurtles.no" site_id="61c1da718a80a4000704013e">Totally Turtles</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1da718a80a4000704013e">Totally Turtles</channel>
<channel site="pluto.tv" lang="no" xmltv_id="NickUkraine.no" site_id="61c1e433cbc58f0007b8cb10">Nick Ukraine</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1e433cbc58f0007b8cb10">Nick Ukraine</channel>
<channel site="pluto.tv" lang="no" xmltv_id="HenryDanger.no" site_id="61c1d5055d85c00007cd74f7">Henry Danger</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="61c1d5055d85c00007cd74f7">Henry Danger</channel>
<channel site="pluto.tv" lang="no" xmltv_id="FamilienThunderman.no" site_id="6178175dbac12b000750d6e6">Familien Thunderman</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6178175dbac12b000750d6e6">Familien Thunderman</channel>
<channel site="pluto.tv" lang="no" xmltv_id="FamilyTies.no" site_id="654a4f7bf9cc8200086877d5">Family Ties</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="654a4f7bf9cc8200086877d5">Family Ties</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Cheers.no" site_id="63e389dcc111bc0008ee5b8c">Cheers</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63e389dcc111bc0008ee5b8c">Cheers</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Taxi.no" site_id="66b22b748561260008dae057">Taxi</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="66b22b748561260008dae057">Taxi</channel>
<channel site="pluto.tv" lang="no" xmltv_id="LoveBoat.no" site_id="654a4fe9056b9700088804a0">Love Boat</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="654a4fe9056b9700088804a0">Love Boat</channel>
<channel site="pluto.tv" lang="no" xmltv_id="HappyDays.no" site_id="654a508d986ad20008a456a5">Happy Days</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="654a508d986ad20008a456a5">Happy Days</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SabrinatheTeenageWitch.no" site_id="6512d3c96a84140008513ff5">Sabrina the Teenage Witch</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="6512d3c96a84140008513ff5">Sabrina the Teenage Witch</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Wings.no" site_id="654a5034346f420008d6a5ac">Wings</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="654a5034346f420008d6a5ac">Wings</channel>
<channel site="pluto.tv" lang="no" xmltv_id="SpinCity.no" site_id="63e38a974e83e70008990da9">Spin City</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="63e38a974e83e70008990da9">Spin City</channel>
<channel site="pluto.tv" lang="no" xmltv_id="Becker.no" site_id="672e1634e482950008c759a5">Becker</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="672e1634e482950008c759a5">Becker</channel>
<channel site="pluto.tv" lang="no" xmltv_id="RulesofEngagement.no" site_id="62beb3810c21270007219d80">Rules of Engagement</channel> <channel site="pluto.tv" lang="no" xmltv_id="" site_id="62beb3810c21270007219d80">Rules of Engagement</channel>
</channels> </channels>

View file

@ -1,221 +1,221 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="sv" xmltv_id="NonStopKungFu.sv" site_id="6728d33f030a2c0008edf4be">NonStop Kung Fu</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6728d33f030a2c0008edf4be">NonStop Kung Fu</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVJohnWayne.sv" site_id="655caaaac0fc8800086f5d99">Pluto TV John Wayne</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="655caaaac0fc8800086f5d99">Pluto TV John Wayne</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MODUSSuperSeriesDarts.sv" site_id="6716571bc7626f000890c518">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6716571bc7626f000890c518">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JerseyShoreFamilyVacation.sv" site_id="6728c8b45534bb0008b31f35">Jersey Shore Family Vacation</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6728c8b45534bb0008b31f35">Jersey Shore Family Vacation</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="KungenavQueens:Påvift.sv" site_id="670cc67eb2ffb1000823a592">Kungen av Queens: På vift</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="670cc67eb2ffb1000823a592">Kungen av Queens: På vift</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="KungenavQueens:Svärfarspecial.sv" site_id="670cc6a85049580008ecf945">Kungen av Queens: Svärfar special</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="670cc6a85049580008ecf945">Kungen av Queens: Svärfar special</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="RedShoeDiaries.sv" site_id="66a10030d5125900089df569">Red Shoe Diaries</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66a10030d5125900089df569">Red Shoe Diaries</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark:HolidayCollection.sv" site_id="66fcee79565d3a00088ac033">South Park: Holiday Collection</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66fcee79565d3a00088ac033">South Park: Holiday Collection</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TheGreatChristmasLightFight.sv" site_id="664f119d41af640008e38212">The Great Christmas Light Fight</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="664f119d41af640008e38212">The Great Christmas Light Fight</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVChristmasSongs.sv" site_id="6357ea4842e29f0007479673">MTV Christmas Songs</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6357ea4842e29f0007479673">MTV Christmas Songs</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVEldstad.sv" site_id="671f5030c7626f00089ec765">Pluto TV Eldstad</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="671f5030c7626f00089ec765">Pluto TV Eldstad</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Julvalpar.sv" site_id="66dea661e5de9300080ec5cf">Julvalpar</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66dea661e5de9300080ec5cf">Julvalpar</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MerryChristmasfromViafree.sv" site_id="6304854ac6073d0007259fe1">Merry Christmas from Viafree</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6304854ac6073d0007259fe1">Merry Christmas from Viafree</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark:KennyCollection.sv" site_id="65d880cea25d5e0008315b0a">South Park: Kenny Collection</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65d880cea25d5e0008315b0a">South Park: Kenny Collection</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark:StanCollection.sv" site_id="65d881914e01740008a36603">South Park: Stan Collection</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65d881914e01740008a36603">South Park: Stan Collection</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark:CartmanCollection.sv" site_id="65d881b1332fec000833a122">South Park: Cartman Collection</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65d881b1332fec000833a122">South Park: Cartman Collection</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark:KyleCollection.sv" site_id="65d882394e01740008a36768">South Park: Kyle Collection</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65d882394e01740008a36768">South Park: Kyle Collection</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark:ButtersCollection.sv" site_id="65d881d566eec8000887f6bb">South Park: Butters Collection</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65d881d566eec8000887f6bb">South Park: Butters Collection</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SouthPark.sv" site_id="61c0b627e3ed94000793c18a">South Park</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b627e3ed94000793c18a">South Park</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ParadiseHotel.sv" site_id="61c18e1e0cd4cc00076bc4b3">Paradise Hotel</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c18e1e0cd4cc00076bc4b3">Paradise Hotel</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Paradise.sv" site_id="6380c73f76e43f000721f73b">Paradise</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6380c73f76e43f000721f73b">Paradise</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Lyxfällan.sv" site_id="61c18f62f5acaf0007f83135">Lyxfällan</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c18f62f5acaf0007f83135">Lyxfällan</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="LyxfällanDanmark.sv" site_id="61c19165decece0007e9b2f3">Lyxfällan Danmark</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c19165decece0007e9b2f3">Lyxfällan Danmark</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SkönhetsfällanDanmark.sv" site_id="643808dce0789d00084797f6">Skönhetsfällan Danmark</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="643808dce0789d00084797f6">Skönhetsfällan Danmark</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="WorldofLoveIsland.sv" site_id="6440f73ee94c380008ccddc8">World of Love Island</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6440f73ee94c380008ccddc8">World of Love Island</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="UngaMammor.sv" site_id="61c1900995f417000731a002">Unga Mammor</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c1900995f417000731a002">Unga Mammor</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="America'sNextTopModel.sv" site_id="6464cdcaee6a2f000822a7a8">America's Next Top Model</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6464cdcaee6a2f000822a7a8">America's Next Top Model</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="CampKulinaris.sv" site_id="6400bf66dff38e00083f4ee8">Camp Kulinaris</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6400bf66dff38e00083f4ee8">Camp Kulinaris</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TheOnlyWayisEssex.sv" site_id="62bd9b1eeaa5620007ded504">The Only Way is Essex</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62bd9b1eeaa5620007ded504">The Only Way is Essex</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TattooFixers.sv" site_id="62bd9b7b10e33f0007ef0c49">Tattoo Fixers</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62bd9b7b10e33f0007ef0c49">Tattoo Fixers</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JudgeJudy.sv" site_id="6380c4ab81c8d2000790fbf3">Judge Judy</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6380c4ab81c8d2000790fbf3">Judge Judy</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Nosey.sv" site_id="619e4833244e500007564d5a">Nosey</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="619e4833244e500007564d5a">Nosey</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="CarChase.sv" site_id="65a93be02fac9c00083cbac4">Car Chase</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65a93be02fac9c00083cbac4">Car Chase</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Cheaters.sv" site_id="651e67763fd33c0008f07170">Cheaters</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="651e67763fd33c0008f07170">Cheaters</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DallasCowboysCheerleaders.sv" site_id="64e7715c4c5ed800081230e4">Dallas Cowboys Cheerleaders</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64e7715c4c5ed800081230e4">Dallas Cowboys Cheerleaders</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DanceMoms.sv" site_id="65788670b9adc40008025500">Dance Moms</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65788670b9adc40008025500">Dance Moms</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BestofParadiseHotel:Skolveckan.sv" site_id="65e97cd118036500082ed0ce">Best of Paradise Hotel: Skolveckan</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e97cd118036500082ed0ce">Best of Paradise Hotel: Skolveckan</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BestofParadiseHotel:Finalveckan.sv" site_id="65e97d41f7f0af0008da2543">Best of Paradise Hotel: Finalveckan</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e97d41f7f0af0008da2543">Best of Paradise Hotel: Finalveckan</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BestofParadiseHotel:PandorasAsk.sv" site_id="65e97d760d456100082da660">Best of Paradise Hotel: Pandoras Ask</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e97d760d456100082da660">Best of Paradise Hotel: Pandoras Ask</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BestofParadiseHotel:Kyssar&amp;kärlek.sv" site_id="65b1077e0d9ab40008245b20">Best of Paradise Hotel: Kyssar &amp; kärlek</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65b1077e0d9ab40008245b20">Best of Paradise Hotel: Kyssar &amp; kärlek</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="CelebReality.sv" site_id="65788727a620e30008fe4d88">Celeb Reality</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65788727a620e30008fe4d88">Celeb Reality</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="FrusnaVägar.sv" site_id="61c19099bf8c520007a93cff">Frusna Vägar</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c19099bf8c520007a93cff">Frusna Vägar</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SvenskaTruckers.sv" site_id="61f128f68a1dfc00086470af">Svenska Truckers</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61f128f68a1dfc00086470af">Svenska Truckers</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="IceRoadTruckers.sv" site_id="62beb6c0371e6c000775930f">Ice Road Truckers</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62beb6c0371e6c000775930f">Ice Road Truckers</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Högspänning.sv" site_id="6537abf42cf1310008441686">Högspänning</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6537abf42cf1310008441686">Högspänning</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DogTheBountyHunter.sv" site_id="657886bfb9adc40008025554">Dog The Bounty Hunter</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="657886bfb9adc40008025554">Dog The Bounty Hunter</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JadeFever.sv" site_id="660d6b3caec9680008f8debe">Jade Fever</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d6b3caec9680008f8debe">Jade Fever</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DuckDynasty.sv" site_id="65788611a620e30008fe36ff">Duck Dynasty</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65788611a620e30008fe36ff">Duck Dynasty</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="IcePilots.sv" site_id="62cdaef300a4b3000739b1bf">Ice Pilots</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62cdaef300a4b3000739b1bf">Ice Pilots</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BondiRescue.sv" site_id="660d67eec8311c0008b8c3f7">Bondi Rescue</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d67eec8311c0008b8c3f7">Bondi Rescue</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TopGear.sv" site_id="620239894757070008d4812d">Top Gear</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="620239894757070008d4812d">Top Gear</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TopGearChallenge.sv" site_id="660d65b77bcd8600087cfc2f">Top Gear Challenge</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d65b77bcd8600087cfc2f">Top Gear Challenge</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TopGearRoadTrips.sv" site_id="660d659b635c750008289633">Top Gear Road Trips</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d659b635c750008289633">Top Gear Road Trips</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TheDailyShow.sv" site_id="65c0978360eb870008bc9d5b">The Daily Show</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65c0978360eb870008bc9d5b">The Daily Show</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Survivorman.sv" site_id="65ba5086dc10a40008da0c84">Survivorman</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65ba5086dc10a40008da0c84">Survivorman</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVBuskis.sv" site_id="660d5f2a635c75000828855f">Pluto TV Buskis</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d5f2a635c75000828855f">Pluto TV Buskis</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="AntiquesRoadTrip.sv" site_id="6364f6cd308d210007b5eee9">Antiques Road Trip</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6364f6cd308d210007b5eee9">Antiques Road Trip</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="AuctionHunters.sv" site_id="62da7380478a5b0007e610d9">Auction Hunters</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62da7380478a5b0007e610d9">Auction Hunters</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="HotOnes.sv" site_id="655caa815812e80008884322">Hot Ones</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="655caa815812e80008884322">Hot Ones</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DesiPlayTV.sv" site_id="65fac4b766eec80008cfa970">Desi Play TV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65fac4b766eec80008cfa970">Desi Play TV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PRIDEtv.sv" site_id="656d873d9d5ac4000839a88e">PRIDEtv</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="656d873d9d5ac4000839a88e">PRIDEtv</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="RobotWarsbyMECH+.sv" site_id="6512d791d1f20c000867eeaa">Robot Wars by MECH+</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6512d791d1f20c000867eeaa">Robot Wars by MECH+</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BestofMTV.sv" site_id="632afdf820e83e000710ea12">Best of MTV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="632afdf820e83e000710ea12">Best of MTV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Catfish.sv" site_id="61780d4267bf4d00077ddd73">Catfish</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61780d4267bf4d00077ddd73">Catfish</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JerseyShore.sv" site_id="64424c1be94c380008d0a98c">Jersey Shore</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64424c1be94c380008d0a98c">Jersey Shore</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Ridiculousness.sv" site_id="62cda0dfddc1040008fccacc">Ridiculousness</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62cda0dfddc1040008fccacc">Ridiculousness</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TeenMom.sv" site_id="61c09342b3a6230007a45119">Teen Mom</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c09342b3a6230007a45119">Teen Mom</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TheHills.sv" site_id="61c08d7c73bdb800070eef0a">The Hills</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c08d7c73bdb800070eef0a">The Hills</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="GeordieShore.sv" site_id="64424be3e94c380008d0a66d">Geordie Shore</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64424be3e94c380008d0a66d">Geordie Shore</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JustTattooofUs.sv" site_id="61c0aafa91ddd400073b995f">Just Tattoo of Us</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0aafa91ddd400073b995f">Just Tattoo of Us</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PimpMyRide.sv" site_id="61c09a3894aa450007814aea">Pimp My Ride</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c09a3894aa450007814aea">Pimp My Ride</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="AreYouTheOne?.sv" site_id="61c0ac242bb0cf0007015f89">Are You The One?</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0ac242bb0cf0007015f89">Are You The One?</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ExOnTheBeach.sv" site_id="61c09072a09bbe00078f5692">Ex On The Beach</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c09072a09bbe00078f5692">Ex On The Beach</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="StugfixarnaNorge.sv" site_id="61c18ec6ac860c0007684981">Stugfixarna Norge</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c18ec6ac860c0007684981">Stugfixarna Norge</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Hell'sKitchen.sv" site_id="61c1871dac860c0007684974">Hell's Kitchen</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c1871dac860c0007684974">Hell's Kitchen</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ComeDinewithMe.sv" site_id="65d724a9d8adfa00086c8ae9">Come Dine with Me</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65d724a9d8adfa00086c8ae9">Come Dine with Me</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ProjectRunway.sv" site_id="62724c8465731f0007b6cd86">Project Runway</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62724c8465731f0007b6cd86">Project Runway</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="EscapetotheCountry.sv" site_id="66d714d815d2c60008cec6d2">Escape to the Country</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66d714d815d2c60008cec6d2">Escape to the Country</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BuyingBlindDenmark.sv" site_id="63c6a7544faf1c0007b496d7">Buying Blind Denmark</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63c6a7544faf1c0007b496d7">Buying Blind Denmark</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TareqTaylor'sNordicCookery.sv" site_id="63c95491808b740007608a74">Tareq Taylor's Nordic Cookery</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63c95491808b740007608a74">Tareq Taylor's Nordic Cookery</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Mannensomtalarmedhundar.sv" site_id="6501ae4998020f00085040ed">Mannen som talar med hundar</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6501ae4998020f00085040ed">Mannen som talar med hundar</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BestofTheDrewBarrymoreShow.sv" site_id="630483153a21200007f1920f">Best of The Drew Barrymore Show</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="630483153a21200007f1920f">Best of The Drew Barrymore Show</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Förhäxad.sv" site_id="66290c538dd8160008f5e692">Förhäxad</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66290c538dd8160008f5e692">Förhäxad</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BeverlyHills90210.sv" site_id="62beb5903279cb000773500f">Beverly Hills 90210</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62beb5903279cb000773500f">Beverly Hills 90210</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Baywatch.sv" site_id="664c9068f9992200084273ee">Baywatch</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="664c9068f9992200084273ee">Baywatch</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVBrittiskCrime&amp;Drama.sv" site_id="65b91b53dc10a40008d54777">Pluto TV Brittisk Crime &amp; Drama</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65b91b53dc10a40008d54777">Pluto TV Brittisk Crime &amp; Drama</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Numb3rs.sv" site_id="63dbe8a1c111bc0008dec8b8">Numb3rs</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63dbe8a1c111bc0008dec8b8">Numb3rs</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Heimebane.sv" site_id="660d5f8619ca7100084995fd">Heimebane</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d5f8619ca7100084995fd">Heimebane</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Wildfire.sv" site_id="62beb0de371e6c000775930c">Wildfire</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62beb0de371e6c000775930c">Wildfire</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Scorpion.sv" site_id="63a1c9c2847a090007f248da">Scorpion</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63a1c9c2847a090007f248da">Scorpion</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MelrosePlace.sv" site_id="62a0b070d4566c0007a0d1bd">Melrose Place</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62a0b070d4566c0007a0d1bd">Melrose Place</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DocMartin.sv" site_id="62b1e5e77d15410007f798c6">Doc Martin</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62b1e5e77d15410007f798c6">Doc Martin</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BET.sv" site_id="61c187ef1efe1b0007571711">BET</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c187ef1efe1b0007571711">BET</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Matlock.sv" site_id="66290c12801af8000850c1a9">Matlock</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66290c12801af8000850c1a9">Matlock</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="WalkerTexasRanger.sv" site_id="62a0b114a1c8650007e93688">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62a0b114a1c8650007e93688">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DiagnosisMurder.sv" site_id="668bf9be0642e5000815102d">Diagnosis Murder</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="668bf9be0642e5000815102d">Diagnosis Murder</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MissionImpossible.sv" site_id="639b4f14be012600070fe1be">Mission Impossible</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="639b4f14be012600070fe1be">Mission Impossible</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BeautyandtheBeast.sv" site_id="6512d6a0a1217e00092c1214">Beauty and the Beast</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6512d6a0a1217e00092c1214">Beauty and the Beast</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="LoveBoat.sv" site_id="654a517ff91d250008ac2d4a">Love Boat</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="654a517ff91d250008ac2d4a">Love Boat</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="HappyDays.sv" site_id="654a52254d6d8f00084eacfc">Happy Days</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="654a52254d6d8f00084eacfc">Happy Days</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Wings.sv" site_id="654a51d32c1d3300086591a9">Wings</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="654a51d32c1d3300086591a9">Wings</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JAG.sv" site_id="654a515f986ad20008a4593b">JAG</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="654a515f986ad20008a4593b">JAG</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="COPS.sv" site_id="6400be67219c4c00081755d3">COPS</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6400be67219c4c00081755d3">COPS</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="48Hours.sv" site_id="6346935b94aa8c0007c5b7a2">48 Hours</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6346935b94aa8c0007c5b7a2">48 Hours</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TruecrimefrånViaplay.sv" site_id="645cb7857cb4b1000859c57c">True crime från Viaplay</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="645cb7857cb4b1000859c57c">True crime från Viaplay</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVTrueCrime.sv" site_id="61c0b438244e50000758083b">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b438244e50000758083b">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Efterlyst.sv" site_id="646ce0e2e1979c0008983939">Efterlyst</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="646ce0e2e1979c0008983939">Efterlyst</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="CrimeSceneSolvers.sv" site_id="64268f52b065d900085eb42b">Crime Scene Solvers</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64268f52b065d900085eb42b">Crime Scene Solvers</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="HomicideHunter.sv" site_id="619e4a3518d6970008bebc95">Homicide Hunter</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="619e4a3518d6970008bebc95">Homicide Hunter</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ForensicFiles.sv" site_id="618124b2e53c8d00077b37f8">Forensic Files</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="618124b2e53c8d00077b37f8">Forensic Files</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="FBIFiles.sv" site_id="61814b9a9704450007e52316">FBI Files</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61814b9a9704450007e52316">FBI Files</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TheNewDetectives.sv" site_id="61814dd68a368d0007d78c53">The New Detectives</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61814dd68a368d0007d78c53">The New Detectives</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="OntheCase.sv" site_id="62cdad7b5c38c00007f566c2">On the Case</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62cdad7b5c38c00007f566c2">On the Case</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVFilm.sv" site_id="61c0afa0a09bbe00078f8378">Pluto TV Film</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0afa0a09bbe00078f8378">Pluto TV Film</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVAction.sv" site_id="61c0b0688a80a4000703fbcb">Pluto TV Action</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b0688a80a4000703fbcb">Pluto TV Action</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVKomedi.sv" site_id="61c0b36d18447e000717d686">Pluto TV Komedi</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b36d18447e000717d686">Pluto TV Komedi</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVHorror.sv" site_id="63a19e1b9ab2df0007bef7a7">Pluto TV Horror</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63a19e1b9ab2df0007bef7a7">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVKultfilmer.sv" site_id="63dbe8c8a9957100087798a3">Pluto TV Kultfilmer</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63dbe8c8a9957100087798a3">Pluto TV Kultfilmer</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVRomantik.sv" site_id="63a19da6847a090007f230da">Pluto TV Romantik</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63a19da6847a090007f230da">Pluto TV Romantik</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVThrillers.sv" site_id="61c0b1ba3fae0a00078c70f7">Pluto TV Thrillers</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b1ba3fae0a00078c70f7">Pluto TV Thrillers</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVBud&amp;Terence.sv" site_id="65b917720d9ab4000833f323">Pluto TV Bud &amp; Terence</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65b917720d9ab4000833f323">Pluto TV Bud &amp; Terence</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVHajfilmer.sv" site_id="66704379efa2a10008b8121e">Pluto TV Hajfilmer</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66704379efa2a10008b8121e">Pluto TV Hajfilmer</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ViafreeMovies.sv" site_id="62f64ec9eb1045000728cad6">Viafree Movies</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62f64ec9eb1045000728cad6">Viafree Movies</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BeavisandButt-Head.sv" site_id="6486e8b48e3c0a0008e56914">Beavis and Butt-Head</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6486e8b48e3c0a0008e56914">Beavis and Butt-Head</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BroadCity.sv" site_id="65cba7b1ec452d0008acbed8">Broad City</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65cba7b1ec452d0008acbed8">Broad City</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Chappelle'sShow.sv" site_id="65e9783b0d456100082d9e05">Chappelle's Show</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e9783b0d456100082d9e05">Chappelle's Show</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Reno911.sv" site_id="65e9781a2873090008b48d8a">Reno 911</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e9781a2873090008b48d8a">Reno 911</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Key&amp;Peele.sv" site_id="65cba798d77d450008d056e5">Key &amp; Peele</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65cba798d77d450008d056e5">Key &amp; Peele</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Klovn.sv" site_id="65a63ff00d9ab400080b101c">Klovn</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65a63ff00d9ab400080b101c">Klovn</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Tosh.0.sv" site_id="65e97856ec9fda0008cb453c">Tosh.0</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e97856ec9fda0008cb453c">Tosh.0</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ComedyCentralRoast.sv" site_id="6641fe6bb18d700008e7e44b">Comedy Central Roast</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6641fe6bb18d700008e7e44b">Comedy Central Roast</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ComedyCentral.sv" site_id="61c0b550e0d3a700072b6a2a">Comedy Central</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b550e0d3a700072b6a2a">Comedy Central</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Awkward.sv" site_id="61c0a9c4c548b50007e8186a">Awkward</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0a9c4c548b50007e8186a">Awkward</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Zoey101.sv" site_id="6458e7c32858cb0008e22e98">Zoey 101</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6458e7c32858cb0008e22e98">Zoey 101</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="FailArmy.sv" site_id="6178037c35922000072a2ff5">FailArmy</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6178037c35922000072a2ff5">FailArmy</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JustforLaughs.sv" site_id="61780ce4c215ad0007a66ab2">Just for Laughs</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61780ce4c215ad0007a66ab2">Just for Laughs</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVSci-Fi.sv" site_id="61f9597e78607000074f6c2a">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61f9597e78607000074f6c2a">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Andromeda.sv" site_id="617807a1a3a6160007f615e4">Andromeda</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="617807a1a3a6160007f615e4">Andromeda</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVAlienInvasion.sv" site_id="65099b366a841400083bd353">Pluto TV Alien Invasion</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65099b366a841400083bd353">Pluto TV Alien Invasion</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="UnsolvedMysteries.sv" site_id="6181498caf6afc0007de9e72">Unsolved Mysteries</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6181498caf6afc0007de9e72">Unsolved Mysteries</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVParanormal.sv" site_id="62b1e4189f5db20007ff03be">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62b1e4189f5db20007ff03be">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="GhostDimension.sv" site_id="619e4726b9997a00072a4059">Ghost Dimension</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="619e4726b9997a00072a4059">Ghost Dimension</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TalesfromtheDarkside.sv" site_id="651430493a0d700008dedfdf">Tales from the Darkside</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="651430493a0d700008dedfdf">Tales from the Darkside</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TheTwilightZone.sv" site_id="6512d6c92ce8e40008bd5c81">The Twilight Zone</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6512d6c92ce8e40008bd5c81">The Twilight Zone</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVDokumentär.sv" site_id="62b1e2498261390007f25c98">Pluto TV Dokumentär</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62b1e2498261390007f25c98">Pluto TV Dokumentär</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVSpace.sv" site_id="61b87a155deef000075a4579">Pluto TV Space</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61b87a155deef000075a4579">Pluto TV Space</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="LovethePlanet.sv" site_id="65c2439411ced700080dfcad">Love the Planet</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65c2439411ced700080dfcad">Love the Planet</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ISurvived.sv" site_id="657887d9dfed030008ce8aa8">I Survived</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="657887d9dfed030008ce8aa8">I Survived</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="ModernMarvels.sv" site_id="6578878132c1b300089aa005">Modern Marvels</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6578878132c1b300089aa005">Modern Marvels</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SmithsonianChannelSelects.sv" site_id="61fb9907b1b78d000717ed9f">Smithsonian Channel Selects</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61fb9907b1b78d000717ed9f">Smithsonian Channel Selects</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="NatureTime.sv" site_id="61eeb69097a55200074ad04a">Nature Time</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61eeb69097a55200074ad04a">Nature Time</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="RiverMonsters.sv" site_id="662a26cb5a402e00086b2801">River Monsters</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="662a26cb5a402e00086b2801">River Monsters</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVSport.sv" site_id="62cd74e38f6f0d000798cd93">Pluto TV Sport</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62cd74e38f6f0d000798cd93">Pluto TV Sport</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PFLMMA.sv" site_id="65b8f9d4d77d450008a3ef8f">PFL MMA</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65b8f9d4d77d450008a3ef8f">PFL MMA</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DAZNWomen'sFootball.sv" site_id="64a283c6aab9ce0008cff278">DAZN Women's Football</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64a283c6aab9ce0008cff278">DAZN Women's Football</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="FIFA+.sv" site_id="660bfcd07bcd860008796ae8">FIFA+</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660bfcd07bcd860008796ae8">FIFA+</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="RealmadridTV.sv" site_id="660d7232635c75000828c95a">Realmadrid TV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="660d7232635c75000828c95a">Realmadrid TV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BilliardTV.sv" site_id="65df1200f7f0af0008c24a98">Billiard TV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65df1200f7f0af0008c24a98">Billiard TV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DAZNCombat.sv" site_id="64805755536e0c0008a19fa1">DAZN Combat</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64805755536e0c0008a19fa1">DAZN Combat</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Kickin'it.sv" site_id="659fbbc4b9adc4000846c57a">Kickin'it</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="659fbbc4b9adc4000846c57a">Kickin'it</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="UnbeatenSports.sv" site_id="6477387b4f5ba500086f0649">Unbeaten Sports</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6477387b4f5ba500086f0649">Unbeaten Sports</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BellatorMMA.sv" site_id="62792dbd5e237b0007f84642">Bellator MMA</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62792dbd5e237b0007f84642">Bellator MMA</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TritonPoker.sv" site_id="668e60bfa4ee270008e3addf">Triton Poker</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="668e60bfa4ee270008e3addf">Triton Poker</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PGATOUR.sv" site_id="66c86fed85e28d0008f8a9ec">PGA TOUR</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66c86fed85e28d0008f8a9ec">PGA TOUR</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="IMPACTWrestling.sv" site_id="63d8dc918795f3000865ea76">IMPACT Wrestling</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63d8dc918795f3000865ea76">IMPACT Wrestling</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="GloryKickboxing.sv" site_id="65e9b6b58145cb00084d24ee">Glory Kickboxing</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65e9b6b58145cb00084d24ee">Glory Kickboxing</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="WomenofWrestling.sv" site_id="66a1008e46762a0008200274">Women of Wrestling</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66a1008e46762a0008200274">Women of Wrestling</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PadeltimeTV.sv" site_id="65c242c8d77d450008badd8b">Padeltime TV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65c242c8d77d450008badd8b">Padeltime TV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="WorldPokerTour.sv" site_id="617805a67267650007573ffd">World Poker Tour</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="617805a67267650007573ffd">World Poker Tour</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Wired2FishTV.sv" site_id="66854521ca7468000880acfe">Wired2Fish TV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66854521ca7468000880acfe">Wired2Fish TV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVFishing.sv" site_id="619e408b5ec8d400086539fc">Pluto TV Fishing</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="619e408b5ec8d400086539fc">Pluto TV Fishing</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="JaktärJakt.sv" site_id="62e7babea3e6270007f5564a">Jakt är Jakt</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62e7babea3e6270007f5564a">Jakt är Jakt</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MonsterJam.sv" site_id="65c340983ba51e00083988e8">Monster Jam</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65c340983ba51e00083988e8">Monster Jam</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVClassic.sv" site_id="6329cf28ef924b00078a9dc1">MTV Classic</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6329cf28ef924b00078a9dc1">MTV Classic</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVBiggestPop.sv" site_id="669799e0cd0d310008259652">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="669799e0cd0d310008259652">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVRocks.sv" site_id="638f2e8fedb23c000859345e">MTV Rocks</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="638f2e8fedb23c000859345e">MTV Rocks</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVLoveMusic.sv" site_id="638f2e6c7a07960007e52913">MTV Love Music</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="638f2e6c7a07960007e52913">MTV Love Music</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVonTour!.sv" site_id="65ba4b563af63d0008504d4f">MTV on Tour!</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65ba4b563af63d0008504d4f">MTV on Tour!</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVFlowLatino.sv" site_id="66979aacfe11e500083a5c07">MTV Flow Latino</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66979aacfe11e500083a5c07">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVMovieHits.sv" site_id="6331a5f83eb57800074d4a0d">MTV Movie Hits</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6331a5f83eb57800074d4a0d">MTV Movie Hits</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Yo!MTV.sv" site_id="66979a4646762a00080c890d">Yo! MTV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66979a4646762a00080c890d">Yo! MTV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVUnplugged.sv" site_id="61c0aec95deef000075acd09">MTV Unplugged</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0aec95deef000075acd09">MTV Unplugged</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="MTVSpankin'New.sv" site_id="6697996814a2bb00082b5b3a">MTV Spankin' New</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6697996814a2bb00082b5b3a">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="CBSNews24/7.sv" site_id="6231e9b7f6deff00074674f4">CBS News 24/7</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6231e9b7f6deff00074674f4">CBS News 24/7</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Reuters.sv" site_id="65c119dfd77d450008b82b46">Reuters</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65c119dfd77d450008b82b46">Reuters</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BloombergTV+.sv" site_id="61de8fa251cca800076dde41">Bloomberg TV+</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61de8fa251cca800076dde41">Bloomberg TV+</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Euronews.sv" site_id="61de90a47365340007f77c27">Euronews</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61de90a47365340007f77c27">Euronews</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Avatar.sv" site_id="61c180a38bb1830008e402fa">Avatar</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c180a38bb1830008e402fa">Avatar</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="InazumaEleven.sv" site_id="646cc49681844c000974af84">Inazuma Eleven</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="646cc49681844c000974af84">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Yu-Gi-Oh!.sv" site_id="642aedfeb065d900086681ea">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="642aedfeb065d900086681ea">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Julskojförbarn.sv" site_id="63204d625ebc010007bebdf6">Julskoj för barn</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63204d625ebc010007bebdf6">Julskoj för barn</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Detstoraexperimentet.sv" site_id="6548f6092c1d3300086271ea">Det stora experimentet</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6548f6092c1d3300086271ea">Det stora experimentet</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SvampBobFyrkant.sv" site_id="61c0ba0816e2fd00086cb6b1">SvampBob Fyrkant</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0ba0816e2fd00086cb6b1">SvampBob Fyrkant</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Victorious.sv" site_id="652d211b9c7aeb00084a48f4">Victorious</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="652d211b9c7aeb00084a48f4">Victorious</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PawPatrol.sv" site_id="61c181899e0bde0007820035">Paw Patrol</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c181899e0bde0007820035">Paw Patrol</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SchoolofRock.sv" site_id="6620f976307fa300080645c1">School of Rock</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6620f976307fa300080645c1">School of Rock</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVBarn.sv" site_id="61c0b6f028e94c000782684a">Pluto TV Barn</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b6f028e94c000782684a">Pluto TV Barn</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="PlutoTVFördeyngsta.sv" site_id="61c0b7eb8929e40007ff5125">Pluto TV För de yngsta</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c0b7eb8929e40007ff5125">Pluto TV För de yngsta</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Lugnistormen.sv" site_id="630485fcb9884200074f6044">Lugn i stormen</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="630485fcb9884200074f6044">Lugn i stormen</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="iCarly.sv" site_id="61c185049e0bde0007820039">iCarly</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c185049e0bde0007820039">iCarly</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Sam&amp;Cat.sv" site_id="65c5f2ab3ba51e000842511e">Sam &amp; Cat</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="65c5f2ab3ba51e000842511e">Sam &amp; Cat</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BigTimeRush.sv" site_id="6537ab9e90a74c000853b294">Big Time Rush</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6537ab9e90a74c000853b294">Big Time Rush</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Blazeochmonstermaskinerna.sv" site_id="61c183595d85c00007cd713c">Blaze och monstermaskinerna</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c183595d85c00007cd713c">Blaze och monstermaskinerna</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="BubbleGuppies.sv" site_id="63c6aa224faf1c0007b4b45b">Bubble Guppies</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63c6aa224faf1c0007b4b45b">Bubble Guppies</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="DoraTV.sv" site_id="61c18431f5bb3e00072e91bb">Dora TV</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c18431f5bb3e00072e91bb">Dora TV</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="TotallyTurtles.sv" site_id="61c185e36faf920007f04b6e">Totally Turtles</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c185e36faf920007f04b6e">Totally Turtles</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="NickUkraine.sv" site_id="61c18d66d21a6600078cfcd1">Nick Ukraine</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61c18d66d21a6600078cfcd1">Nick Ukraine</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="HenryDanger.sv" site_id="61e064b4fbbcc60007ffbecd">Henry Danger</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61e064b4fbbcc60007ffbecd">Henry Danger</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="FamiljenThunderman.sv" site_id="61780c88a3580d00089679a6">Familjen Thunderman</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="61780c88a3580d00089679a6">Familjen Thunderman</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="KungenAvQueens.sv" site_id="63e38ca4c111bc0008ee6023">Kungen Av Queens</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63e38ca4c111bc0008ee6023">Kungen Av Queens</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Taxi.sv" site_id="66b22c9aa79dea0008cee4a9">Taxi</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66b22c9aa79dea0008cee4a9">Taxi</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="FamilyTies.sv" site_id="654a510d986ad20008a45874">Family Ties</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="654a510d986ad20008a45874">Family Ties</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SabrinatheTeenageWitch.sv" site_id="6512d72b473a540008592be5">Sabrina the Teenage Witch</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="6512d72b473a540008592be5">Sabrina the Teenage Witch</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Skål.sv" site_id="64188b8483f58900083bc954">Skål</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="64188b8483f58900083bc954">Skål</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="SpinCity.sv" site_id="63a1a0a20847960007542b15">Spin City</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="63a1a0a20847960007542b15">Spin City</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="CarolineintheCity.sv" site_id="66a7ab4dcd0d3100084395b4">Caroline in the City</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="66a7ab4dcd0d3100084395b4">Caroline in the City</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="Becker.sv" site_id="672e16f5daad7f0008929a0d">Becker</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="672e16f5daad7f0008929a0d">Becker</channel>
<channel site="pluto.tv" lang="sv" xmltv_id="RulesofEngagement.sv" site_id="62beb5f4121a9500079dff78">Rules of Engagement</channel> <channel site="pluto.tv" lang="sv" xmltv_id="" site_id="62beb5f4121a9500079dff78">Rules of Engagement</channel>
</channels> </channels>

View file

@ -1,149 +1,149 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="en" xmltv_id="Diane,femmeflic.uk" site_id="6671b26836a2f90008d9333c">Diane, femme flic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6671b26836a2f90008d9333c">Diane, femme flic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlueBloods.uk" site_id="66f55a9a747bfa0008521859">Blue Bloods</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55a9a747bfa0008521859">Blue Bloods</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesMarseillais.uk" site_id="66f55d565e4a6e0008c2b9d2">Les Marseillais</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55d565e4a6e0008c2b9d2">Les Marseillais</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesReinesduShopping.uk" site_id="66f55c55940963000810bb14">Les Reines du Shopping</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55c55940963000810bb14">Les Reines du Shopping</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ZoneInterdite.uk" site_id="66f55cf2483d460008f68746">Zone Interdite</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55cf2483d460008f68746">Zone Interdite</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Turbo.uk" site_id="66f55c3955567d0008ef9b68">Turbo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55c3955567d0008ef9b68">Turbo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EnquêtesCriminelles.uk" site_id="66f55d0b5e4a6e0008c2b920">Enquêtes Criminelles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55d0b5e4a6e0008c2b920">Enquêtes Criminelles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="IncroyablesTransformations.uk" site_id="66f55d205e4a6e0008c2b92b">Incroyables Transformations</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66f55d205e4a6e0008c2b92b">Incroyables Transformations</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesAnges.uk" site_id="66b228d4cd0d3100085d27b7">Les Anges</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b228d4cd0d3100085d27b7">Les Anges</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVFeudeCheminée.uk" site_id="60db451c706fe50007fdda13">Pluto TV Feu de Cheminée</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60db451c706fe50007fdda13">Pluto TV Feu de Cheminée</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MODUSSuperSeriesDarts.uk" site_id="671643fc5534bb00089187ad">MODUS Super Series Darts</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="671643fc5534bb00089187ad">MODUS Super Series Darts</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AlerteCobra.uk" site_id="62f3e4bc08f5ec000744f552">Alerte Cobra</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3e4bc08f5ec000744f552">Alerte Cobra</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Starsky&amp;Hutch.uk" site_id="6304979e62d51c000722df46">Starsky &amp; Hutch</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6304979e62d51c000722df46">Starsky &amp; Hutch</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WalkerTexasRanger.uk" site_id="60afa749ac7f3200078adb40">Walker Texas Ranger</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60afa749ac7f3200078adb40">Walker Texas Ranger</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MacGyver.uk" site_id="6245ccd0c6cdb800074632e4">MacGyver</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6245ccd0c6cdb800074632e4">MacGyver</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoctorWho.uk" site_id="60d359c98f262f00070c364e">Doctor Who</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d359c98f262f00070c364e">Doctor Who</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AlerteàMalibu.uk" site_id="60afaa535580be0007ac9ee4">Alerte à Malibu</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60afaa535580be0007ac9ee4">Alerte à Malibu</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JAG.uk" site_id="65ccd26060eb870008db95fc">JAG</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65ccd26060eb870008db95fc">JAG</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MelrosePlace.uk" site_id="6245ceece1977a00079e2fbd">Melrose Place</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6245ceece1977a00079e2fbd">Melrose Place</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVPolar.uk" site_id="5f8ed4dbf6bb0800071ffbcb">Pluto TV Polar</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed4dbf6bb0800071ffbcb">Pluto TV Polar</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV90'sClassics.uk" site_id="66b4990746762a00084c2f78">Pluto TV 90's Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b4990746762a00084c2f78">Pluto TV 90's Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV2010'sClassics.uk" site_id="66b498bc14a2bb00086965bc">Pluto TV 2010's Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b498bc14a2bb00086965bc">Pluto TV 2010's Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSériesFantastiques.uk" site_id="625ec7a1c853fd00073b38fd">Pluto TV Séries Fantastiques</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="625ec7a1c853fd00073b38fd">Pluto TV Séries Fantastiques</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSeries.uk" site_id="5f8ed2d1c34c2300073bf02c">Pluto TV Series</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed2d1c34c2300073bf02c">Pluto TV Series</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCDrama.uk" site_id="60d35a74c63c3c0008df6a90">BBC Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d35a74c63c3c0008df6a90">BBC Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Amour,GloireetBeauté.uk" site_id="61533b6334ba9b000763d7b1">Amour, Gloire et Beauté</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61533b6334ba9b000763d7b1">Amour, Gloire et Beauté</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTelenovela.uk" site_id="5f914f9dccb4de0007df8bc4">Pluto TV Telenovela</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f914f9dccb4de0007df8bc4">Pluto TV Telenovela</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlusBelleLaVie.uk" site_id="5f8ed5fba4ffb8000764ea01">Plus Belle La Vie</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed5fba4ffb8000764ea01">Plus Belle La Vie</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlusBellelaVie2.uk" site_id="662a6309307fa30008196b4e">Plus Belle la Vie 2</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="662a6309307fa30008196b4e">Plus Belle la Vie 2</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Ungars,unefille.uk" site_id="62f3ece7b09fd6000783bfb9">Un gars, une fille</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3ece7b09fd6000783bfb9">Un gars, une fille</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Lesfillesd'àcôté.uk" site_id="60549d97cd7b090007c73314">Les filles d'à côté</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60549d97cd7b090007c73314">Les filles d'à côté</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hélèneetlesgarçons.uk" site_id="604f8de01b479400078fb1e7">Hélène et les garçons</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="604f8de01b479400078fb1e7">Hélène et les garçons</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesCordier.uk" site_id="5f8ed80fa09f120007c8daa5">Les Cordier</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed80fa09f120007c8daa5">Les Cordier</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LouisLaBrocante.uk" site_id="5f8ed6d569d2d4000864a976">Louis La Brocante</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed6d569d2d4000864a976">Louis La Brocante</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UnVillageFrançais.uk" site_id="6304f2e2eb10450007298023">Un Village Français</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6304f2e2eb10450007298023">Un Village Français</channel>
<channel site="pluto.tv" lang="en" xmltv_id="INA70.uk" site_id="639b54404cfdf7000729b3c1">INA 70</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="639b54404cfdf7000729b3c1">INA 70</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GénérationSitcoms.uk" site_id="60afb203ec391c00070ea1bf">Génération Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60afb203ec391c00070ea1bf">Génération Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="InstantSaga.uk" site_id="60549e98061b5f000776866a">Instant Saga</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60549e98061b5f000776866a">Instant Saga</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Lemiracledel'amour.uk" site_id="60549c238c3f21000753d3e0">Le miracle de l'amour</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60549c238c3f21000753d3e0">Le miracle de l'amour</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesAnnéesfac.uk" site_id="60afae68a7fc50000737186d">Les Années fac</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60afae68a7fc50000737186d">Les Années fac</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CoeurOcéan.uk" site_id="62f3dd1c2f29ce0007e18596">Coeur Océan</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3dd1c2f29ce0007e18596">Coeur Océan</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVFrenchCollection.uk" site_id="62f3e0522443200008c567d7">Pluto TV French Collection</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3e0522443200008c567d7">Pluto TV French Collection</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVStarTrek.uk" site_id="61f93af0b253440007c54ad8">Pluto TV Star Trek</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61f93af0b253440007c54ad8">Pluto TV Star Trek</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAction.uk" site_id="5f8ed1ff5c39700007e2204a">Pluto TV Action</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed1ff5c39700007e2204a">Pluto TV Action</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVThrillers.uk" site_id="60c3472a51a2050008dad272">Pluto TV Thrillers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60c3472a51a2050008dad272">Pluto TV Thrillers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHorreur.uk" site_id="66e1978babec540008ce41ac">Pluto TV Horreur</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e1978babec540008ce41ac">Pluto TV Horreur</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSci-Fi.uk" site_id="60c34592c911890007f29a73">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60c34592c911890007f29a73">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCinéd'Asie.uk" site_id="62f3e2d000418d00070f7dbc">Pluto TV Ciné d'Asie</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3e2d000418d00070f7dbc">Pluto TV Ciné d'Asie</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCiné.uk" site_id="5f8ed0f17564a300082b676a">Pluto TV Ciné</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed0f17564a300082b676a">Pluto TV Ciné</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVWestern.uk" site_id="65cca3e2ec452d0008af3a65">Pluto TV Western</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65cca3e2ec452d0008af3a65">Pluto TV Western</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCinéRétro.uk" site_id="5f8ed168f72fcd0007e56269">Pluto TV Ciné Rétro</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed168f72fcd0007e56269">Pluto TV Ciné Rétro</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCatastrophe.uk" site_id="65a69ef53af63d000825e0ee">Pluto TV Catastrophe</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a69ef53af63d000825e0ee">Pluto TV Catastrophe</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WildSideTV.uk" site_id="60b4d6c806ad2a00073b3108">Wild Side TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60b4d6c806ad2a00073b3108">Wild Side TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAsylum.uk" site_id="5f8ece1a89d79800072510e6">The Asylum</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ece1a89d79800072510e6">The Asylum</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRomance.uk" site_id="60812fc8539963000707d1e1">Pluto TV Romance</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60812fc8539963000707d1e1">Pluto TV Romance</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TêtuTV.uk" site_id="615c4bdfdd585f000732a22b">Têtu TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="615c4bdfdd585f000732a22b">Têtu TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyClub.uk" site_id="64c9260ac0222700089ee62b">Family Club</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c9260ac0222700089ee62b">Family Club</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TéléfilmsdeNoëlbyPlutoTV.uk" site_id="65251c3a9c7aeb00083741c9">Téléfilms de Noël by Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65251c3a9c7aeb00083741c9">Téléfilms de Noël by Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Faitesentrerl'accusé.uk" site_id="662a622b5e2370000800f392">Faites entrer l'accusé</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="662a622b5e2370000800f392">Faites entrer l'accusé</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVParanormal.uk" site_id="5f8ed9461b35690007a0bc3a">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed9461b35690007a0bc3a">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MostHaunted.uk" site_id="66d722d31878f200081c2c64">Most Haunted</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66d722d31878f200081c2c64">Most Haunted</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DossiersFBI.uk" site_id="5f8edad922b10b000753bc37">Dossiers FBI</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8edad922b10b000753bc37">Dossiers FBI</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesNouveauxDetectives.uk" site_id="5f8edb6df1ebb800072edf10">Les Nouveaux Detectives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8edb6df1ebb800072edf10">Les Nouveaux Detectives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Homicide.uk" site_id="63921a3d00c96100082a3cb4">Homicide</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63921a3d00c96100082a3cb4">Homicide</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EnquêtesdeChoc.uk" site_id="63921a1bf76e7d0007c998a6">Enquêtes de Choc</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63921a1bf76e7d0007c998a6">Enquêtes de Choc</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVInvestigation.uk" site_id="5f914f4b36d67d0007a91a04">Pluto TV Investigation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f914f4b36d67d0007a91a04">Pluto TV Investigation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SouthPark.uk" site_id="618e34ac4a270700077b1f32">South Park</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="618e34ac4a270700077b1f32">South Park</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OnePiece.uk" site_id="6380c94947c72b0007ee9a13">One Piece</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6380c94947c72b0007ee9a13">One Piece</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yu-Gi-Oh!.uk" site_id="6130d9c712c2b000070abb50">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6130d9c712c2b000070abb50">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Olive&amp;Tom.uk" site_id="662a63275a402e00086bc8a5">Olive &amp; Tom</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="662a63275a402e00086bc8a5">Olive &amp; Tom</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Daria.uk" site_id="6683b680efa2a10008e8a393">Daria</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6683b680efa2a10008e8a393">Daria</channel>
<channel site="pluto.tv" lang="en" xmltv_id="InazumaEleven.uk" site_id="611e75226b7f420007c3f319">Inazuma Eleven</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e75226b7f420007c3f319">Inazuma Eleven</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRetroToons.uk" site_id="611e6a9b4bb5790007a6f0f8">Pluto TV Retro Toons</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e6a9b4bb5790007a6f0f8">Pluto TV Retro Toons</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopGear.uk" site_id="64c1093824ade50008bd117f">Top Gear</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c1093824ade50008bd117f">Top Gear</channel>
<channel site="pluto.tv" lang="en" xmltv_id="C'estpassorcier.uk" site_id="63b579961bdba100071214cb">C'est pas sorcier</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63b579961bdba100071214cb">C'est pas sorcier</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Touteunehistoire.uk" site_id="62f3e6aebcdda4000754fa47">Toute une histoire</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3e6aebcdda4000754fa47">Toute une histoire</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Adjugé,vendu!.uk" site_id="64bab8ba5dc1660008969b5a">Adjugé, vendu !</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64bab8ba5dc1660008969b5a">Adjugé, vendu !</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesZ'amours.uk" site_id="652d0b756208700008d758ad">Les Z'amours</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="652d0b756208700008d758ad">Les Z'amours</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Quiveutgagnerdesmillions?.uk" site_id="652d0b9ceb72580008a4ea5b">Qui veut gagner des millions?</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="652d0b9ceb72580008a4ea5b">Qui veut gagner des millions?</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Y'aquelavéritéquicompte.uk" site_id="612e044c970e6f00083bcf3b">Y'a que la vérité qui compte</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="612e044c970e6f00083bcf3b">Y'a que la vérité qui compte</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHistoire.uk" site_id="611e771e2f5f180007002224">Pluto TV Histoire</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e771e2f5f180007002224">Pluto TV Histoire</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAnimaux.uk" site_id="60925a44f0350600075a1fdc">Pluto TV Animaux</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60925a44f0350600075a1fdc">Pluto TV Animaux</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EchappéesBelles&amp;Co.uk" site_id="63b578b524f0cf00072f2a52">Echappées Belles &amp; Co</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63b578b524f0cf00072f2a52">Echappées Belles &amp; Co</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NatureTime.uk" site_id="61fc0df14159c40007250432">Nature Time</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61fc0df14159c40007250432">Nature Time</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAventure.uk" site_id="611e7811eb9daf000764cbfd">Pluto TV Aventure</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e7811eb9daf000764cbfd">Pluto TV Aventure</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCuisine.uk" site_id="5f8ed48146ba9e00078424b6">Pluto TV Cuisine</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed48146ba9e00078424b6">Pluto TV Cuisine</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WellbeingTV.uk" site_id="62f21f7e0f61420008273b9e">Wellbeing TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f21f7e0f61420008273b9e">Wellbeing TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVInside.uk" site_id="5f8ed3892ed7bb000741a1d2">Pluto TV Inside</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed3892ed7bb000741a1d2">Pluto TV Inside</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CATFISHTV.uk" site_id="5f8eb66537867f0007146953">CATFISH TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8eb66537867f0007146953">CATFISH TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JustTattooofUs.uk" site_id="6304f20c941c5d00089634e7">Just Tattoo of Us</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6304f20c941c5d00089634e7">Just Tattoo of Us</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVReality.uk" site_id="6092544e7639460007d4835e">Pluto TV Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6092544e7639460007d4835e">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVCLASSICS.uk" site_id="5f92b56a367e170007cd43f4">MTV CLASSICS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f92b56a367e170007cd43f4">MTV CLASSICS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TeenMom.uk" site_id="62f3f05505e621000783df2f">Teen Mom</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f3f05505e621000783df2f">Teen Mom</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AreYouTheOne?.uk" site_id="6192416c06d23b0007379766">Are You The One?</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6192416c06d23b0007379766">Are You The One?</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CRIBS:MAISONSDESTAR.uk" site_id="602cf8963b4bc90007454541">CRIBS : MAISONS DE STAR</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="602cf8963b4bc90007454541">CRIBS : MAISONS DE STAR</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JustepourRire.uk" site_id="60afa1508284e60007163c08">Juste pour Rire</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60afa1508284e60007163c08">Juste pour Rire</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FailArmy.uk" site_id="5f8ecd9169d2d4000864a974">FailArmy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecd9169d2d4000864a974">FailArmy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Ridiculousness.uk" site_id="5f8eb8a8b2619a000710605c">Ridiculousness</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8eb8a8b2619a000710605c">Ridiculousness</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVComédie.uk" site_id="5f8eb91bb9b9e7000817e67f">Pluto TV Comédie</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8eb91bb9b9e7000817e67f">Pluto TV Comédie</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePetCollective.uk" site_id="5f8ecd336d64c9000754cdf1">The Pet Collective</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecd336d64c9000754cdf1">The Pet Collective</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Bobl'éponge.uk" site_id="5ffc8c345822750007e167de">Bob l'éponge</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ffc8c345822750007e167de">Bob l'éponge</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSuperKids.uk" site_id="652557d93fd33c000802f995">Pluto TV Super Kids</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="652557d93fd33c000802f995">Pluto TV Super Kids</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Avatar.uk" site_id="60b4c17a81e29300071d3a39">Avatar</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60b4c17a81e29300071d3a39">Avatar</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TortuesNinjaTV.uk" site_id="5f8ecc1b37867f00071469e9">Tortues Ninja TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecc1b37867f00071469e9">Tortues Ninja TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Beyblade.uk" site_id="664c8ba33d173b00080ef0c8">Beyblade</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664c8ba33d173b00080ef0c8">Beyblade</channel>
<channel site="pluto.tv" lang="en" xmltv_id="iCarlyTV.uk" site_id="5f8ecc7aa44d9c00081fca29">iCarly TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecc7aa44d9c00081fca29">iCarly TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Victorious.uk" site_id="64bab8830e086a0009d44273">Victorious</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64bab8830e086a0009d44273">Victorious</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVKidsSéries.uk" site_id="5f8eb99ff17815000784a3b0">Pluto TV Kids Séries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8eb99ff17815000784a3b0">Pluto TV Kids Séries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DigimonAdventure.uk" site_id="617bae1d69bca3000729561e">Digimon Adventure</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="617bae1d69bca3000729561e">Digimon Adventure</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Degrassi.uk" site_id="611e71322f5f180007001dde">Degrassi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e71322f5f180007001dde">Degrassi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVKidsClassics.uk" site_id="654a58dbf9cc82000868f0fb">Pluto TV Kids Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654a58dbf9cc82000868f0fb">Pluto TV Kids Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVKidsAnimation.uk" site_id="5f8eba14a4ffb8000764e950">Pluto TV Kids Animation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8eba14a4ffb8000764e950">Pluto TV Kids Animation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LesRazmoket.uk" site_id="619cee9d5dc3ed0007d845c8">Les Razmoket</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="619cee9d5dc3ed0007d845c8">Les Razmoket</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Sabrina,lasérieanimée.uk" site_id="611e78c4954f250007ef7b84">Sabrina, la série animée</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e78c4954f250007ef7b84">Sabrina, la série animée</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVKidsGaming.uk" site_id="611e6ddc7fcd580007d1eb5f">Pluto TV Kids Gaming</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e6ddc7fcd580007d1eb5f">Pluto TV Kids Gaming</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AngelaAnaconda.uk" site_id="611e73687fcd580007d1f052">Angela Anaconda</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="611e73687fcd580007d1f052">Angela Anaconda</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoraTV.uk" site_id="5f8ecb9524419b0007365a1c">Dora TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecb9524419b0007365a1c">Dora TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CharlotteauxFraises.uk" site_id="60dc6937b450ad0007377e48">Charlotte aux Fraises</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60dc6937b450ad0007377e48">Charlotte aux Fraises</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BubbleGuppies.uk" site_id="618e3c1106d23b0007366723">Bubble Guppies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="618e3c1106d23b0007366723">Bubble Guppies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVJunior.uk" site_id="5f8ecb336537e8000764a17f">Pluto TV Junior</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecb336537e8000764a17f">Pluto TV Junior</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVKidsUkraine.uk" site_id="6228b86dbb834e0007b75019">Pluto TV Kids Ukraine</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6228b86dbb834e0007b75019">Pluto TV Kids Ukraine</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GamingTV.uk" site_id="5f8eccd81062c300078a11df">Gaming TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8eccd81062c300078a11df">Gaming TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Allociné.uk" site_id="6618e3037bcd8600089b62a8">Allociné</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6618e3037bcd8600089b62a8">Allociné</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CarChase.uk" site_id="65bd05483a11680007813560">Car Chase</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65bd05483a11680007813560">Car Chase</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RobotWarsbyMECH+.uk" site_id="64ff1ce298020f000849ff20">Robot Wars by MECH+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64ff1ce298020f000849ff20">Robot Wars by MECH+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETCLASSICSPlutoTV.uk" site_id="5f92b5ba040eaa0007074d0a">BET CLASSICS Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f92b5ba040eaa0007074d0a">BET CLASSICS Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BilliardTV.uk" site_id="65ccd0483a11680007a137d2">Billiard TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65ccd0483a11680007a137d2">Billiard TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DAZNCombat.uk" site_id="64d626ac9b414d000820e2fc">DAZN Combat</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d626ac9b414d000820e2fc">DAZN Combat</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PFLMMA.uk" site_id="654a620d53fc9700083b2e21">PFL MMA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654a620d53fc9700083b2e21">PFL MMA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FIFA+.uk" site_id="660c2a2d2433010008df7e92">FIFA+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="660c2a2d2433010008df7e92">FIFA+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealmadridTV.uk" site_id="65f96c0c2873090008d356d1">Realmadrid TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65f96c0c2873090008d356d1">Realmadrid TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WPT.uk" site_id="5f8ecfb9db6c180007a6d1b0">WPT</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ecfb9db6c180007a6d1b0">WPT</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TritonPoker.uk" site_id="66275c7d039f940008cc4760">Triton Poker</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66275c7d039f940008cc4760">Triton Poker</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVMotor.uk" site_id="618d4ea306d23b0007356080">Pluto TV Motor</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="618d4ea306d23b0007356080">Pluto TV Motor</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSports.uk" site_id="6081310e48d3200007afaf3b">Pluto TV Sports</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6081310e48d3200007afaf3b">Pluto TV Sports</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVExtrême.uk" site_id="5f8ed327f9e9b0000761141e">Pluto TV Extrême</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8ed327f9e9b0000761141e">Pluto TV Extrême</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MonsterJam.uk" site_id="655e053efbc15b00082277de">Monster Jam</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="655e053efbc15b00082277de">Monster Jam</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVClassicHip-Hop.uk" site_id="625e79fe9b586d000785e330">Pluto TV Classic Hip-Hop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="625e79fe9b586d000785e330">Pluto TV Classic Hip-Hop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRap.uk" site_id="65d4be214e01740008991d3b">Pluto TV Rap</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65d4be214e01740008991d3b">Pluto TV Rap</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VH1+Rock.uk" site_id="6447d08f2858cb0008b9957c">VH1+ Rock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6447d08f2858cb0008b9957c">VH1+ Rock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVLoveSongs.uk" site_id="619b80acac5329000740c022">Pluto TV Love Songs</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="619b80acac5329000740c022">Pluto TV Love Songs</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RotanaM+.uk" site_id="64c926b44e3f020008e19112">Rotana M+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64c926b44e3f020008e19112">Rotana M+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VH1+Classics.uk" site_id="667d3794ca746800086962c7">VH1+ Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667d3794ca746800086962c7">VH1+ Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNFast.uk" site_id="66c45b36a72e7b0008a2b291">CNN Fast</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66c45b36a72e7b0008a2b291">CNN Fast</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNews24/7.uk" site_id="6231ec93779a9d00079ba8e2">CBS News 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6231ec93779a9d00079ba8e2">CBS News 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Euronews.uk" site_id="60d35bcaf1ff4a00078af0a6">Euronews</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d35bcaf1ff4a00078af0a6">Euronews</channel>
</channels> </channels>

View file

@ -1,453 +1,453 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="pluto.tv" lang="en" xmltv_id="ION.us" site_id="65453f30085df200085883d8">ION</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65453f30085df200085883d8">ION</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTrendingNow.us" site_id="673247127d5da5000817b4d6">Pluto TV Trending Now</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673247127d5da5000817b4d6">Pluto TV Trending Now</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSpotlight.us" site_id="5ba3fb9c4b078e0f37ad34e8">Pluto TV Spotlight</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ba3fb9c4b078e0f37ad34e8">Pluto TV Spotlight</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVIcons.us" site_id="64b585f84ea480000838e446">Pluto TV Icons</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64b585f84ea480000838e446">Pluto TV Icons</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV007.us" site_id="5d4db961034718b2f52f9e52">Pluto TV 007</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d4db961034718b2f52f9e52">Pluto TV 007</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAction.us" site_id="561d7d484dc7c8770484914a">Pluto TV Action</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="561d7d484dc7c8770484914a">Pluto TV Action</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVReaction.us" site_id="617b37b361e0fd0008cfd8c5">Pluto TV Reaction</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="617b37b361e0fd0008cfd8c5">Pluto TV Reaction</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVFantastic.us" site_id="5b64a245a202b3337f09e51d">Pluto TV Fantastic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b64a245a202b3337f09e51d">Pluto TV Fantastic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVComedy.us" site_id="5a4d3a00ad95e4718ae8d8db">Pluto TV Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a4d3a00ad95e4718ae8d8db">Pluto TV Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVDrama.us" site_id="5b4e92e4694c027be6ecece1">Pluto TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e92e4694c027be6ecece1">Pluto TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVRomance.us" site_id="5a66795ef91fef2c7031c599">Pluto TV Romance</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a66795ef91fef2c7031c599">Pluto TV Romance</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackCinema.us" site_id="58af4c093a41ca9d4ecabe96">Black Cinema</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="58af4c093a41ca9d4ecabe96">Black Cinema</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackVisionaries.us" site_id="663946c1b18d700008d9c168">Black Visionaries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="663946c1b18d700008d9c168">Black Visionaries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCrimeMovies.us" site_id="5f4d8594eb979c0007706de7">Pluto TV Crime Movies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d8594eb979c0007706de7">Pluto TV Crime Movies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVThrillers.us" site_id="5b4e69e08291147bd04a9fd7">Pluto TV Thrillers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e69e08291147bd04a9fd7">Pluto TV Thrillers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHorror.us" site_id="569546031a619b8f07ce6e25">Pluto TV Horror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="569546031a619b8f07ce6e25">Pluto TV Horror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTerror.us" site_id="5c6dc88fcd232425a6e0f06e">Pluto TV Terror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c6dc88fcd232425a6e0f06e">Pluto TV Terror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="00sReplay.us" site_id="62ba60f059624e000781c436">00s Replay</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62ba60f059624e000781c436">00s Replay</channel>
<channel site="pluto.tv" lang="en" xmltv_id="90sThrowback.us" site_id="5f4d86f519358a00072b978e">90s Throwback</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d86f519358a00072b978e">90s Throwback</channel>
<channel site="pluto.tv" lang="en" xmltv_id="80sRewind.us" site_id="5ca525b650be2571e3943c63">80s Rewind</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca525b650be2571e3943c63">80s Rewind</channel>
<channel site="pluto.tv" lang="en" xmltv_id="70sCinema.us" site_id="5f4d878d3d19b30007d2e782">70s Cinema</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d878d3d19b30007d2e782">70s Cinema</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ParamountMovieChannel.us" site_id="5cb0cae7a461406ffe3f5213">Paramount Movie Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cb0cae7a461406ffe3f5213">Paramount Movie Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MovieSpherebyLionsgate.us" site_id="645e7828e1979c00087b75b4">MovieSphere by Lionsgate</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="645e7828e1979c00087b75b4">MovieSphere by Lionsgate</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVWesterns.us" site_id="5b4e94282d4ec87bdcbb87cd">Pluto TV Westerns</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e94282d4ec87bdcbb87cd">Pluto TV Westerns</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicMoviesChannel.us" site_id="561c5b0dada51f8004c4d855">Classic Movies Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="561c5b0dada51f8004c4d855">Classic Movies Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVStaffPicks.us" site_id="5f4d863b98b41000076cd061">Pluto TV Staff Picks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d863b98b41000076cd061">Pluto TV Staff Picks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FlicksofFury.us" site_id="58e55b14ad8e9c364d55f717">Flicks of Fury</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="58e55b14ad8e9c364d55f717">Flicks of Fury</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCultFilms.us" site_id="5c665db3e6c01b72c4977bc2">Pluto TV Cult Films</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c665db3e6c01b72c4977bc2">Pluto TV Cult Films</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVChristmas.us" site_id="5bb1b9f0adfc955391f8b7a2">Pluto TV Christmas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb1b9f0adfc955391f8b7a2">Pluto TV Christmas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HolidayMovieFavoritesByLifetime.us" site_id="63335c59e4d7eb000785e71a">Holiday Movie Favorites By Lifetime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335c59e4d7eb000785e71a">Holiday Movie Favorites By Lifetime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HallmarkMovies&amp;MoreHolidayFavorites.us" site_id="63335d36a1cd8c000765466c">Hallmark Movies &amp; More Holiday Favorites</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335d36a1cd8c000765466c">Hallmark Movies &amp; More Holiday Favorites</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomefortheHolidays.us" site_id="5f7f8698ec435a000785810b">Home for the Holidays</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7f8698ec435a000785810b">Home for the Holidays</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Places&amp;Spaces.us" site_id="66e0b30415d2c60008e2b99e">Places &amp; Spaces</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b30415d2c60008e2b99e">Places &amp; Spaces</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CracklingFireplace.us" site_id="5bf48085851dd5632e2f7b4d">Crackling Fireplace</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bf48085851dd5632e2f7b4d">Crackling Fireplace</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FestiveFireplace.us" site_id="614501c653ceee000772b0ca">Festive Fireplace</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="614501c653ceee000772b0ca">Festive Fireplace</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StingrayHolidayscapes.us" site_id="66ff1d5a565d3a000892bdcd">Stingray Holidayscapes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ff1d5a565d3a000892bdcd">Stingray Holidayscapes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoHoliday.us" site_id="5dcf059646c0cf000a293edd">Vevo Holiday</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dcf059646c0cf000a293edd">Vevo Holiday</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hallmarkenespañol.us" site_id="65453ee6056b97000880302a">Hallmark en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65453ee6056b97000880302a">Hallmark en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cinenavideño.us" site_id="60fb3162df090700075da907">Cine navideño</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb3162df090700075da907">Cine navideño</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SitcomLegends.us" site_id="633354b63df9700007f6a1b7">Sitcom Legends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="633354b63df9700007f6a1b7">Sitcom Legends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cheers+Frasier.us" site_id="66ba495ffe11e5000881f049">Cheers + Frasier</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ba495ffe11e5000881f049">Cheers + Frasier</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TVLandSitcoms.us" site_id="5c2d64ffbdf11b71587184b8">TV Land Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c2d64ffbdf11b71587184b8">TV Land Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTVSitcoms.us" site_id="6132619f9ddaa50007e7dd86">More TV Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6132619f9ddaa50007e7dd86">More TV Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HitSitcoms.us" site_id="66e0b4a3f0f17500085cc268">Hit Sitcoms</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b4a3f0f17500085cc268">Hit Sitcoms</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackThrowbacks.us" site_id="61326275b3c86a00078e4833">Black Throwbacks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61326275b3c86a00078e4833">Black Throwbacks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETxTylerPerryComedy.us" site_id="666b265722acab000885c6aa">BET x Tyler Perry Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666b265722acab000885c6aa">BET x Tyler Perry Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FunnyAF.us" site_id="580e87ff497c73ba2f321dd3">Funny AF</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="580e87ff497c73ba2f321dd3">Funny AF</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralPlutoTV.us" site_id="5ca671f215a62078d2ec0abf">Comedy Central Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca671f215a62078d2ec0abf">Comedy Central Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralAnimation.us" site_id="5f99e24636d67d0007a94e6d">Comedy Central Animation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f99e24636d67d0007a94e6d">Comedy Central Animation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVPranks.us" site_id="60f86f539f03cd00070c503a">Pluto TV Pranks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f86f539f03cd00070c503a">Pluto TV Pranks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Tosh.0.us" site_id="5dae084727c8af0009fe40a4">Tosh.0</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dae084727c8af0009fe40a4">Tosh.0</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Wild'NOut.us" site_id="5d48678d34ceb37d3c458a55">Wild 'N Out</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d48678d34ceb37d3c458a55">Wild 'N Out</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KevinHartsLOL!Network.us" site_id="5af09e645126c2157123f9eb">Kevin Harts LOL! Network</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5af09e645126c2157123f9eb">Kevin Harts LOL! Network</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Stand-UpTV.us" site_id="5637d31f319573e26b64040b">Stand-Up TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5637d31f319573e26b64040b">Stand-Up TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SlightlyOffIFC.us" site_id="5e82547b6b3df60007fec2b5">Slightly Off IFC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e82547b6b3df60007fec2b5">Slightly Off IFC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BritishComedy.us" site_id="60f870184865da00074210ee">British Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f870184865da00074210ee">British Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MST3K.us" site_id="545943f1c9f133a519bbac92">MST3K</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="545943f1c9f133a519bbac92">MST3K</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RiffTrax.us" site_id="58d947b9e420d8656ee101ab">RiffTrax</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="58d947b9e420d8656ee101ab">RiffTrax</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FailArmy.us" site_id="554158e864526b29254ff105">FailArmy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="554158e864526b29254ff105">FailArmy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVComedy.us" site_id="5f15e32b297f96000768f928">Classic TV Comedy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f15e32b297f96000768f928">Classic TV Comedy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTV:Families.us" site_id="61325d18f5166c00081b84e0">Classic TV: Families</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61325d18f5166c00081b84e0">Classic TV: Families</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackClassics.us" site_id="60f85644a9493e0007a1f035">Black Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f85644a9493e0007a1f035">Black Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ILoveLucy.us" site_id="634f3011f4fff20007431641">I Love Lucy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634f3011f4fff20007431641">I Love Lucy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAndyGriffithShow.us" site_id="60f75178e7f8aa0007e9c259">The Andy Griffith Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f75178e7f8aa0007e9c259">The Andy Griffith Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAddamsFamily.us" site_id="5d81607ab737153ea3c1c80e">The Addams Family</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d81607ab737153ea3c1c80e">The Addams Family</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BeverlyHillbillies.us" site_id="5f7796e470510900070d4e3d">Beverly Hillbillies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7796e470510900070d4e3d">Beverly Hillbillies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HappyDays.us" site_id="5f7794162a4559000781fc12">Happy Days</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7794162a4559000781fc12">Happy Days</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Three'sCompany.us" site_id="5ef3977e5d773400077de284">Three's Company</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ef3977e5d773400077de284">Three's Company</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyTies.us" site_id="5f77939a630f530007dde654">Family Ties</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f77939a630f530007dde654">Family Ties</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheLoveBoat.us" site_id="5f7794a788d29000079d2f07">The Love Boat</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7794a788d29000079d2f07">The Love Boat</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dynasty.us" site_id="64d1606b4c5ed80008e3b8b9">Dynasty</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d1606b4c5ed80008e3b8b9">Dynasty</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LittleHouseonthePrairie.us" site_id="654933ac986ad20008a1f406">Little House on the Prairie</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654933ac986ad20008a1f406">Little House on the Prairie</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVDrama.us" site_id="5f15e3cccf49290007053c67">Classic TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f15e3cccf49290007053c67">Classic TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVCrimeDrama.us" site_id="61325c4f982acd000723287e">Classic TV Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61325c4f982acd000723287e">Classic TV Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UniversalCrime.us" site_id="6549341853fc9700083901ac">Universal Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549341853fc9700083901ac">Universal Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Matlock.us" site_id="60f754f98185580007eb0754">Matlock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f754f98185580007eb0754">Matlock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Murder,SheWrote.us" site_id="6549337183595c000815ad05">Murder, She Wrote</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549337183595c000815ad05">Murder, She Wrote</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PerryMason.us" site_id="6197086891ddd4000739941a">Perry Mason</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6197086891ddd4000739941a">Perry Mason</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MissionImpossible.us" site_id="5f77977bd924d80007eee60c">Mission Impossible</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f77977bd924d80007eee60c">Mission Impossible</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicTVVariety.us" site_id="64d1867c6b1fdb0008c6c95b">Classic TV Variety</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d1867c6b1fdb0008c6c95b">Classic TV Variety</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheBobRossChannel.us" site_id="5f36d726234ce10007784f2a">The Bob Ross Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f36d726234ce10007784f2a">The Bob Ross Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WesternTV.us" site_id="5e8df4bc16e34700077e77d3">Western TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e8df4bc16e34700077e77d3">Western TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Gunsmoke.us" site_id="60f75771dfc72a00071fd0e0">Gunsmoke</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f75771dfc72a00071fd0e0">Gunsmoke</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWildWildWest.us" site_id="664e640a0120f40008be4582">The Wild Wild West</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664e640a0120f40008be4582">The Wild Wild West</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Rawhide.us" site_id="634f307c7a068e00072c9982">Rawhide</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634f307c7a068e00072c9982">Rawhide</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheRifleman.us" site_id="5e825550e758c700077b0aef">The Rifleman</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e825550e758c700077b0aef">The Rifleman</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Wanted:DeadorAlive.us" site_id="6089788de5c8410007808e26">Wanted: Dead or Alive</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6089788de5c8410007808e26">Wanted: Dead or Alive</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheLoneRanger.us" site_id="65a6dafb7bdc8d0008473c85">The Lone Ranger</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a6dafb7bdc8d0008473c85">The Lone Ranger</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WildWestTV.us" site_id="6661f88f3d173b000845958c">Wild West TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6661f88f3d173b000845958c">Wild West TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ClassicMovieWesterns.us" site_id="61f33318210549000806a530">Classic Movie Westerns</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61f33318210549000806a530">Classic Movie Westerns</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrek.us" site_id="5efbd39f8c4ce900075d7698">Star Trek</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5efbd39f8c4ce900075d7698">Star Trek</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrekVoyager.us" site_id="634dacf51d90320007fcd5fa">Star Trek Voyager</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634dacf51d90320007fcd5fa">Star Trek Voyager</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTrekDeepSpaceNine.us" site_id="65c69bbfd77d450008c7ffee">Star Trek Deep Space Nine</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69bbfd77d450008c7ffee">Star Trek Deep Space Nine</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheTwilightZone.us" site_id="67352ed93a61d4000881f9fa">The Twilight Zone</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="67352ed93a61d4000881f9fa">The Twilight Zone</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Stargate.us" site_id="620bfa7df72827000703ddb1">Stargate</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="620bfa7df72827000703ddb1">Stargate</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DoctorWhoClassic.us" site_id="5ce4475cd43850831ca91ce7">Doctor Who Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ce4475cd43850831ca91ce7">Doctor Who Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OuterSphere.us" site_id="66c638726838ee00085ac20d">OuterSphere</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66c638726838ee00085ac20d">OuterSphere</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVSci-Fi.us" site_id="5b4fc274694c027be6ed3eea">Pluto TV Sci-Fi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4fc274694c027be6ed3eea">Pluto TV Sci-Fi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AlienNationbyDUST.us" site_id="66621ed08ea5560008fde7c9">Alien Nation by DUST</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66621ed08ea5560008fde7c9">Alien Nation by DUST</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Godzilla.us" site_id="6452c8cee1979c0008608e27">Godzilla</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c8cee1979c0008608e27">Godzilla</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UniversalMonsters.us" site_id="65a9b20f0c7ff50008d3a3b6">Universal Monsters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a9b20f0c7ff50008d3a3b6">Universal Monsters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TokuSHOUTsu.us" site_id="5c3f8f12a93c2d61b9990a4e">TokuSHOUTsu</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c3f8f12a93c2d61b9990a4e">TokuSHOUTsu</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI.us" site_id="5efbd29e4aa26700076c0d06">CSI</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5efbd29e4aa26700076c0d06">CSI</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:Miami.us" site_id="62f54c11b3af68000702c304">CSI: Miami</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f54c11b3af68000702c304">CSI: Miami</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:NY.us" site_id="62f54c6439183b000769fb8f">CSI: NY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f54c6439183b000769fb8f">CSI: NY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CriminalMinds.us" site_id="65653817c917a5000844bc30">Criminal Minds</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65653817c917a5000844bc30">Criminal Minds</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlueBloods.us" site_id="61b3b8c645b45d0007a9bb8d">Blue Bloods</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61b3b8c645b45d0007a9bb8d">Blue Bloods</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheGoodWife.us" site_id="66df70cd61dbf00008fa26ff">The Good Wife</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66df70cd61dbf00008fa26ff">The Good Wife</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NashBridges.us" site_id="6675c742ca74680008566b88">Nash Bridges</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675c742ca74680008566b88">Nash Bridges</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCrimeDrama.us" site_id="5f31fd1b4c510e00071c3103">Pluto TV Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f31fd1b4c510e00071c3103">Pluto TV Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreCrimeDrama.us" site_id="650b6905d1f20c0008586b0c">More Crime Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b6905d1f20c0008586b0c">More Crime Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETxTylerPerryDrama.us" site_id="666b38a5efa2a10008b15b3a">BET x Tyler Perry Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="666b38a5efa2a10008b15b3a">BET x Tyler Perry Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EbonyTVDrama.us" site_id="6675c713fc3a46000863dde7">Ebony TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675c713fc3a46000863dde7">Ebony TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TVLandDrama.us" site_id="5d40bebc5e3d2750a2239d7e">TV Land Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d40bebc5e3d2750a2239d7e">TV Land Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTVDrama.us" site_id="613260e4bdb71c00070d63fa">More TV Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="613260e4bdb71c00070d63fa">More TV Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UniversalAction.us" site_id="654933e253fc970008390114">Universal Action</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654933e253fc970008390114">Universal Action</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWalkingDeadUniverse.us" site_id="62fa8176b9884200074ef5ae">The Walking Dead Universe</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fa8176b9884200074ef5ae">The Walking Dead Universe</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StoriesbyAMC.us" site_id="62f2ce24f328e00007e7f55a">Stories by AMC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62f2ce24f328e00007e7f55a">Stories by AMC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MidsomerMurders.us" site_id="5cbf6a868a1bce4a3d52a5e9">Midsomer Murders</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cbf6a868a1bce4a3d52a5e9">Midsomer Murders</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BritBoxMysteries.us" site_id="60f5d389985a0c0007357304">BritBox Mysteries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f5d389985a0c0007357304">BritBox Mysteries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BritishDrama.us" site_id="5b68a18823ecb93393cba2f1">British Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b68a18823ecb93393cba2f1">British Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FeelGoodDrama.us" site_id="65775af3b3801200084a3aa4">Feel Good Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775af3b3801200084a3aa4">Feel Good Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SupernaturalDrama.us" site_id="5f24662bebe0f0000767de32">Supernatural Drama</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f24662bebe0f0000767de32">Supernatural Drama</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Baywatch.us" site_id="5d815eb889bca2ce7b746fdd">Baywatch</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d815eb889bca2ce7b746fdd">Baywatch</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BeverlyHills90210.us" site_id="5f4d83e0a382c00007bc02e7">Beverly Hills 90210</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d83e0a382c00007bc02e7">Beverly Hills 90210</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Heartland.us" site_id="61f07513227feb00073ee6bc">Heartland</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61f07513227feb00073ee6bc">Heartland</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Degrassi.us" site_id="5c6eeb85c05dfc257e5a50c4">Degrassi</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c6eeb85c05dfc257e5a50c4">Degrassi</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTrueCrime.us" site_id="5812be1c249444e05d09cc50">Pluto TV True Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812be1c249444e05d09cc50">Pluto TV True Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTrueCrime.us" site_id="6532e6a9bdf3cf000887ab29">More True Crime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e6a9bdf3cf000887ab29">More True Crime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AmericanCrimes.us" site_id="65492fc7056b9700088560b5">American Crimes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65492fc7056b9700088560b5">American Crimes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dateline24/7.us" site_id="637413d8531e0c0007442d6d">Dateline 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="637413d8531e0c0007442d6d">Dateline 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="48Hours.us" site_id="6176f39e709f160007ec61c3">48 Hours</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6176f39e709f160007ec61c3">48 Hours</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UnsolvedMysteries.us" site_id="5b4e96a0423e067bd6df6901">Unsolved Mysteries</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e96a0423e067bd6df6901">Unsolved Mysteries</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheNewDetectives.us" site_id="5aea40b35126c2157123aa64">The New Detectives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5aea40b35126c2157123aa64">The New Detectives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ColdCaseFilesbyA&amp;E.us" site_id="5c37d6712de254456f7ec340">Cold Case Files by A&amp;E</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c37d6712de254456f7ec340">Cold Case Files by A&amp;E</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ForensicFiles.us" site_id="5bb1af6a268cae539bcedb0a">Forensic Files</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb1af6a268cae539bcedb0a">Forensic Files</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OxygenTrueCrimeArchives.us" site_id="654930a8346f420008d3b0b8">Oxygen True Crime Archives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654930a8346f420008d3b0b8">Oxygen True Crime Archives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CourtTV.us" site_id="5dae0b4841a7d0000938ddbd">Court TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dae0b4841a7d0000938ddbd">Court TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crime360byA&amp;E.us" site_id="6000a5a9e767980007b497ca">Crime 360 by A&amp;E</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6000a5a9e767980007b497ca">Crime 360 by A&amp;E</channel>
<channel site="pluto.tv" lang="en" xmltv_id="COPS.us" site_id="5e1f7e089f23700009d66303">COPS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e1f7e089f23700009d66303">COPS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CarChase.us" site_id="65244c403fd33c0008ffff31">Car Chase</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65244c403fd33c0008ffff31">Car Chase</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DogtheBountyHunter.us" site_id="5bee1a7359ee03633e780238">Dog the Bounty Hunter</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bee1a7359ee03633e780238">Dog the Bounty Hunter</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Rescue911.us" site_id="5f21e831e9fe730007706acb">Rescue 911</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21e831e9fe730007706acb">Rescue 911</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpikePlutoTV.us" site_id="5812bcc8237a6ff45d16c407">Spike Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812bcc8237a6ff45d16c407">Spike Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVReality.us" site_id="5d8bf0b06d2d855ee15115e3">Pluto TV Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8bf0b06d2d855ee15115e3">Pluto TV Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BarRescue.us" site_id="60a3d889a5b3690008dc7fe8">Bar Rescue</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60a3d889a5b3690008dc7fe8">Bar Rescue</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Pickers&amp;Pawn.us" site_id="6565413e4261ca0008215320">Pickers &amp; Pawn</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565413e4261ca0008215320">Pickers &amp; Pawn</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XtremeOutdoorPresentedbyHISTORY.us" site_id="6000a6f4c3f8550008fc9b91">Xtreme Outdoor Presented by HISTORY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6000a6f4c3f8550008fc9b91">Xtreme Outdoor Presented by HISTORY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomefortheHolidays.us" site_id="6334a3355471ee0007609e21">Home for the Holidays</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a3355471ee0007609e21">Home for the Holidays</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpikeOutdoors.us" site_id="5c393cad2de254456f7ef8c2">Spike Outdoors</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c393cad2de254456f7ef8c2">Spike Outdoors</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ToughJobs.us" site_id="65c69bf23ef47d0008583967">Tough Jobs</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69bf23ef47d0008583967">Tough Jobs</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVBackcountry.us" site_id="5cabdf1437b88b26947346b2">Pluto TV Backcountry</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cabdf1437b88b26947346b2">Pluto TV Backcountry</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVLives.us" site_id="5d8beeb39b5d5d5f8c672530">Pluto TV Lives</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8beeb39b5d5d5f8c672530">Pluto TV Lives</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MedicalIncredible.us" site_id="6565436c9d5ac4000822f552">Medical Incredible</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565436c9d5ac4000822f552">Medical Incredible</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UnXplainedZone.us" site_id="656538f8954b020008d389db">UnXplained Zone</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656538f8954b020008d389db">UnXplained Zone</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVParanormal.us" site_id="5adf96e3e738977e2c31cb04">Pluto TV Paranormal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5adf96e3e738977e2c31cb04">Pluto TV Paranormal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GhostHunters.us" site_id="64e561a4354251000823a0e0">Ghost Hunters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64e561a4354251000823a0e0">Ghost Hunters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCars.us" site_id="5812b3a4249444e05d09cc46">Pluto TV Cars</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812b3a4249444e05d09cc46">Pluto TV Cars</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopGear.us" site_id="636adc255bcf470007d6e0e2">Top Gear</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="636adc255bcf470007d6e0e2">Top Gear</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cheaters.us" site_id="627d355aa95efd00077afcc7">Cheaters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="627d355aa95efd00077afcc7">Cheaters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DatingDisasters.us" site_id="651f239d9c7aeb0008286823">Dating Disasters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="651f239d9c7aeb0008286823">Dating Disasters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="QueensofReality.us" site_id="66abefe5d2d50d00082c7d12">Queens of Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66abefe5d2d50d00082c7d12">Queens of Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlackInkCrew.us" site_id="5d51e2bceca5b4b2c0e06c50">Black Ink Crew</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51e2bceca5b4b2c0e06c50">Black Ink Crew</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Love&amp;HipHop.us" site_id="5d51ddf0369acdb278dfb05e">Love &amp; Hip Hop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51ddf0369acdb278dfb05e">Love &amp; Hip Hop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VH1HipHopFamily.us" site_id="5d71561df6f2e6d0b6493bf5">VH1 Hip Hop Family</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d71561df6f2e6d0b6493bf5">VH1 Hip Hop Family</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VH1ILoveReality.us" site_id="5d7154fa8326b6ce4ec31f2e">VH1 I Love Reality</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d7154fa8326b6ce4ec31f2e">VH1 I Love Reality</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JerseyShore.us" site_id="609bfa51fbecc1000733152e">Jersey Shore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="609bfa51fbecc1000733152e">Jersey Shore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AcapulcoShore.us" site_id="64dab1f835425100080e1e7b">Acapulco Shore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64dab1f835425100080e1e7b">Acapulco Shore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TeenMom.us" site_id="6127e12ed140e900077e7b6f">Teen Mom</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6127e12ed140e900077e7b6f">Teen Mom</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVDating.us" site_id="5ca6899a37b88b269472ea4b">MTV Dating</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca6899a37b88b269472ea4b">MTV Dating</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MillionDollarListingVault.us" site_id="6549322e53fc97000838febc">Million Dollar Listing Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549322e53fc97000838febc">Million Dollar Listing Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BravoVault.us" site_id="6549310a53fc97000838fcc9">Bravo Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549310a53fc97000838fcc9">Bravo Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealHousewivesVault.us" site_id="6549316d2c1d330008631496">Real Housewives Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549316d2c1d330008631496">Real Housewives Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BadGirlsClub.us" site_id="654932fa4d6d8f00084c4723">Bad Girls Club</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654932fa4d6d8f00084c4723">Bad Girls Club</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WarnerBros.TVSayYestotheDress.us" site_id="6532e8342cf13100083b404c">Warner Bros. TV Say Yes to the Dress</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e8342cf13100083b404c">Warner Bros. TV Say Yes to the Dress</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AllRealitybyWEtv.us" site_id="5e82530945600e0007ca076c">All Reality by WE tv</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e82530945600e0007ca076c">All Reality by WE tv</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PerformbyLifetime.us" site_id="656538bb635c3c0008695660">Perform by Lifetime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656538bb635c3c0008695660">Perform by Lifetime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVCompetition.us" site_id="603fde9026ecbf0007752c2c">Pluto TV Competition</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="603fde9026ecbf0007752c2c">Pluto TV Competition</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DCC:MakingtheTeam.us" site_id="5d40855b3fb0855028c99b6f">DCC: Making the Team</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d40855b3fb0855028c99b6f">DCC: Making the Team</channel>
<channel site="pluto.tv" lang="en" xmltv_id="InkMaster.us" site_id="60807fd5db701400078219c2">Ink Master</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60807fd5db701400078219c2">Ink Master</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GordonRamsay'sHell'sKitchen.us" site_id="5b4e99f4423e067bd6df6903">Gordon Ramsay's Hell's Kitchen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b4e99f4423e067bd6df6903">Gordon Ramsay's Hell's Kitchen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopChefVault.us" site_id="654931d753fc97000838fe55">Top Chef Vault</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="654931d753fc97000838fe55">Top Chef Vault</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FearFactor.us" site_id="588128d17d64bc0d0f385c34">Fear Factor</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="588128d17d64bc0d0f385c34">Fear Factor</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BigBrother.us" site_id="6661f11a41af6400080e90d8">Big Brother</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6661f11a41af6400080e90d8">Big Brother</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Survivor.us" site_id="5f21e7b24744c60007c1f6fc">Survivor</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21e7b24744c60007c1f6fc">Survivor</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheAmazingRace.us" site_id="5f21e8a6e2f12b000755afdb">The Amazing Race</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21e8a6e2f12b000755afdb">The Amazing Race</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheChallenge.us" site_id="5d48685da7e9f476aa8a1888">The Challenge</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d48685da7e9f476aa8a1888">The Challenge</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Paramount+Picks.us" site_id="5ff8c708653d080007361b14">Paramount+ Picks</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ff8c708653d080007361b14">Paramount+ Picks</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETPlutoTV.us" site_id="5ca670f6593a5d78f0e85aed">BET Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca670f6593a5d78f0e85aed">BET Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BETHer.us" site_id="5d51e6949ab8e2b35bdcaa9f">BET Her</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51e6949ab8e2b35bdcaa9f">BET Her</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HolidayMovieFavoritesByLifetime.us" site_id="63335b193583440007c859fb">Holiday Movie Favorites By Lifetime</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335b193583440007c859fb">Holiday Movie Favorites By Lifetime</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HallmarkMovies&amp;MoreHolidayFavorites.us" site_id="628e685ba3811100070551a8">Hallmark Movies &amp; More Holiday Favorites</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="628e685ba3811100070551a8">Hallmark Movies &amp; More Holiday Favorites</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVChristmas.us" site_id="63335df531a7590007c226b9">Pluto TV Christmas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63335df531a7590007c226b9">Pluto TV Christmas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BounceXL.us" site_id="6176fd25e83a5f0007a464c9">Bounce XL</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6176fd25e83a5f0007a464c9">Bounce XL</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXSOUL.us" site_id="60fb2c9c663b130008945ad0">FOX SOUL</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb2c9c663b130008945ad0">FOX SOUL</channel>
<channel site="pluto.tv" lang="en" xmltv_id="theGrio.us" site_id="5f1efad04320070007dbb60b">theGrio</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f1efad04320070007dbb60b">theGrio</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVPlutoTV.us" site_id="5ca672f515a62078d2ec0ad2">MTV Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca672f515a62078d2ec0ad2">MTV Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CMTPlutoTV.us" site_id="5dcc42446750e200093b15e2">CMT Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dcc42446750e200093b15e2">CMT Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LogoPlutoTV.us" site_id="5ce5a8954311f992edbe1da2">Logo Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ce5a8954311f992edbe1da2">Logo Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="4UV.us" site_id="65775e07dfed030008cb3f47">4UV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775e07dfed030008cb3f47">4UV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ET.us" site_id="5dc0c78281eddb0009a02d5e">ET</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc0c78281eddb0009a02d5e">ET</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LiveMusic.us" site_id="5873fc21cad696fb37aa9054">Live Music</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5873fc21cad696fb37aa9054">Live Music</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePriceIsRight.us" site_id="643f035d5a0cd50008361534">The Price Is Right</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="643f035d5a0cd50008361534">The Price Is Right</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePriceIsRight:TheBarkerEra.us" site_id="5f7791b8372da90007fd45e6">The Price Is Right: The Barker Era</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7791b8372da90007fd45e6">The Price Is Right: The Barker Era</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Let'sMakeADeal.us" site_id="6267352efcf21c0007c76642">Let's Make A Deal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6267352efcf21c0007c76642">Let's Make A Deal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyFeud.us" site_id="672e4d915534bb0008c50168">Family Feud</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="672e4d915534bb0008c50168">Family Feud</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FamilyFeudClassic.us" site_id="643f03b9d8436e0008edf021">Family Feud Classic</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="643f03b9d8436e0008edf021">Family Feud Classic</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HollywoodSquares.us" site_id="64387bb1af2bd90008978a2b">Hollywood Squares</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64387bb1af2bd90008978a2b">Hollywood Squares</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SupermarketSweep.us" site_id="649ddbfb6f29ec000874ca9e">Supermarket Sweep</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="649ddbfb6f29ec000874ca9e">Supermarket Sweep</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DealorNoDeal.us" site_id="5e9debf8c881310007d7bde1">Deal or No Deal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e9debf8c881310007d7bde1">Deal or No Deal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BUZZR.us" site_id="5812bfbe4ced4f7b601b12e6">BUZZR</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812bfbe4ced4f7b601b12e6">BUZZR</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVGameShows.us" site_id="6036e7c385749f00075dbd3b">Pluto TV Game Shows</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6036e7c385749f00075dbd3b">Pluto TV Game Shows</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MoreTVGameShows.us" site_id="64387c25e0789d000849f62e">More TV Game Shows</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64387c25e0789d000849f62e">More TV Game Shows</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GameShowCentral.us" site_id="5e54187aae660e00093561d6">Game Show Central</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e54187aae660e00093561d6">Game Show Central</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BestofTheDrewBarrymoreShow.us" site_id="61858ac0491af10007f8ce4f">Best of The Drew Barrymore Show</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61858ac0491af10007f8ce4f">Best of The Drew Barrymore Show</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BestofDr.Phil.us" site_id="60f760bbdf090700075d7bfe">Best of Dr. Phil</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f760bbdf090700075d7bfe">Best of Dr. Phil</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Nosey.us" site_id="5aec96ec5126c2157123c657">Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5aec96ec5126c2157123c657">Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ConfessbyNosey.us" site_id="634ee8f95aa9870007248333">Confess by Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634ee8f95aa9870007248333">Confess by Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="JudgeNosey.us" site_id="5e9decb953e157000752321c">Judge Nosey</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e9decb953e157000752321c">Judge Nosey</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJudgeJudyChannel.us" site_id="6283d51144ad8f0007fa382d">The Judge Judy Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6283d51144ad8f0007fa382d">The Judge Judy Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HotBench.us" site_id="6036e6e7ac69c400072afca2">Hot Bench</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6036e6e7ac69c400072afca2">Hot Bench</channel>
<channel site="pluto.tv" lang="en" xmltv_id="QVC.us" site_id="5bdcdf1e851dd5632e2c11d1">QVC</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bdcdf1e851dd5632e2c11d1">QVC</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HSN.us" site_id="5f8a02476b72230007e62b7d">HSN</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f8a02476b72230007e62b7d">HSN</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNews24/7.us" site_id="5a6b92f6e22a617379789618">CBS News 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a6b92f6e22a617379789618">CBS News 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NBCNewsNOW.us" site_id="5df97894467dfa00091c873c">NBC News NOW</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5df97894467dfa00091c873c">NBC News NOW</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ABCNewsLive.us" site_id="6508be683a0d700008c534e4">ABC News Live</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6508be683a0d700008c534e4">ABC News Live</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNHEADLINES.us" site_id="5421f71da6af422839419cb3">CNN HEADLINES</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5421f71da6af422839419cb3">CNN HEADLINES</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LiveNOWfromFOX.us" site_id="63d025db4e83e700086eaa96">LiveNOW from FOX</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63d025db4e83e700086eaa96">LiveNOW from FOX</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsNewYork.us" site_id="5dc9b8223687ff000936ed79">CBS News New York</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc9b8223687ff000936ed79">CBS News New York</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsLosAngeles.us" site_id="5dc9b875e280c80009a8a44a">CBS News Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc9b875e280c80009a8a44a">CBS News Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsChicago.us" site_id="62cdc75b1a1cbd0007ed45dc">CBS News Chicago</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62cdc75b1a1cbd0007ed45dc">CBS News Chicago</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TODAYAllDay.us" site_id="5d695f7db53adf96b78e7ce3">TODAY All Day</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d695f7db53adf96b78e7ce3">TODAY All Day</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ScrippsNews.us" site_id="5459795fc9f133a519bc0bef">Scripps News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5459795fc9f133a519bc0bef">Scripps News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXWeather.us" site_id="640a68880e884c0009979cc2">FOX Weather</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="640a68880e884c0009979cc2">FOX Weather</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WeatherNationLosAngeles.us" site_id="61e9af6bfbbcc6000700119b">WeatherNation Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61e9af6bfbbcc6000700119b">WeatherNation Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCNews.us" site_id="65d92a8c8b24c80008e285c0">BBC News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65d92a8c8b24c80008e285c0">BBC News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SkyNews.us" site_id="55b285cd2665de274553d66f">Sky News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="55b285cd2665de274553d66f">Sky News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BloombergTV.us" site_id="54ff7ba69222cb1c2624c584">Bloomberg TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="54ff7ba69222cb1c2624c584">Bloomberg TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Newsmax2.us" site_id="55b179af994403942f3061d6">Newsmax2</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="55b179af994403942f3061d6">Newsmax2</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BlazeLive.us" site_id="5e46fba0c43b0d00096e5ac1">Blaze Live</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e46fba0c43b0d00096e5ac1">Blaze Live</channel>
<channel site="pluto.tv" lang="en" xmltv_id="America'sVoiceNews.us" site_id="5e1f7da4bc7d740009831259">America's Voice News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e1f7da4bc7d740009831259">America's Voice News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OANPlus.us" site_id="5e7cf6c7b156d500078c5f44">OAN Plus</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e7cf6c7b156d500078c5f44">OAN Plus</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SalemNewsChannel.us" site_id="66a7f0a78561260008c177f2">Salem News Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66a7f0a78561260008c177f2">Salem News Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheFirst.us" site_id="5d486acc34ceb37d3c458a64">The First</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d486acc34ceb37d3c458a64">The First</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSSportsHQ.us" site_id="5e9f2c05172a0f0007db4786">CBS Sports HQ</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e9f2c05172a0f0007db4786">CBS Sports HQ</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXSports.us" site_id="5a74b8e1e22a61737979c6bf">FOX Sports</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a74b8e1e22a61737979c6bf">FOX Sports</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NBCSports.us" site_id="6549306c83595c000815a696">NBC Sports</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6549306c83595c000815a696">NBC Sports</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NFLChannel.us" site_id="5ced7d5df64be98e07ed47b6">NFL Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ced7d5df64be98e07ed47b6">NFL Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MLB.us" site_id="5e66968a70f34c0007d050be">MLB</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e66968a70f34c0007d050be">MLB</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PGATOUR.us" site_id="5de94dacb394a300099fa22a">PGA TOUR</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5de94dacb394a300099fa22a">PGA TOUR</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GolfPass.us" site_id="65493029ab052400089e9d2f">GolfPass</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65493029ab052400089e9d2f">GolfPass</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GolazoNetwork.us" site_id="63a0e33a45264d000850ed7e">Golazo Network</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63a0e33a45264d000850ed7e">Golazo Network</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UEFAChampionsLeague.us" site_id="65ea8b928145cb0008509426">UEFA Champions League</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65ea8b928145cb0008509426">UEFA Champions League</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBRRidePass.us" site_id="60d39387706fe50007fda8e8">PBR RidePass</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d39387706fe50007fda8e8">PBR RidePass</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TopRankClassics.us" site_id="64d160f53c785e0008df525e">Top Rank Classics</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d160f53c785e0008df525e">Top Rank Classics</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DAZNRingside.us" site_id="649b6898f2ec0000081a9460">DAZN Ringside</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="649b6898f2ec0000081a9460">DAZN Ringside</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BellatorMMA.us" site_id="5ebc8688f3697d00072f7cf8">Bellator MMA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ebc8688f3697d00072f7cf8">Bellator MMA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ONEChampionshipTV.us" site_id="668c5d3bfd9eb2000882bb50">ONE Championship TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668c5d3bfd9eb2000882bb50">ONE Championship TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PFLMMA.us" site_id="6334a574605f140007e233c4">PFL MMA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a574605f140007e233c4">PFL MMA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TNAWrestling.us" site_id="59b722526996084038c01e1b">TNA Wrestling</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="59b722526996084038c01e1b">TNA Wrestling</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WOWWomenofWrestling.us" site_id="66b66b9e14a2bb000872f606">WOW Women of Wrestling</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b66b9e14a2bb000872f606">WOW Women of Wrestling</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GLORYKickboxing.us" site_id="5417a212ff9fba68282fbf5e">GLORY Kickboxing</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5417a212ff9fba68282fbf5e">GLORY Kickboxing</channel>
<channel site="pluto.tv" lang="en" xmltv_id="beINSPORTSXTRA.us" site_id="5df975e2b27cf5000921c102">beIN SPORTS XTRA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5df975e2b27cf5000921c102">beIN SPORTS XTRA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WorldPokerTour.us" site_id="5616f9c0ada51f8004c4b091">World Poker Tour</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5616f9c0ada51f8004c4b091">World Poker Tour</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PokerGo.us" site_id="5fc54366b04b2300072e31af">PokerGo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fc54366b04b2300072e31af">PokerGo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TritonPoker.us" site_id="661827ffe8fba800086b217d">Triton Poker</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="661827ffe8fba800086b217d">Triton Poker</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Formula1Channel.us" site_id="65c69ee3d77d450008c80438">Formula 1 Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69ee3d77d450008c80438">Formula 1 Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SpeedSport1.us" site_id="6675b8ccca74680008563c24">Speed Sport 1</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675b8ccca74680008563c24">Speed Sport 1</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MonsterJam.us" site_id="65c69b683ba51e00084534a3">Monster Jam</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65c69b683ba51e00084534a3">Monster Jam</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MotorTrendFASTTV.us" site_id="6400f731d200410008f9b339">MotorTrend FAST TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6400f731d200410008f9b339">MotorTrend FAST TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="POWERNATION.us" site_id="63b48016d9dd51000828fa37">POWERNATION</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63b48016d9dd51000828fa37">POWERNATION</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FanDuelTVExtra.us" site_id="650b68bc2ce8e40008ac9c14">FanDuel TV Extra</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b68bc2ce8e40008ac9c14">FanDuel TV Extra</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVMilitary.us" site_id="5bb3fea0f711fd76340eebff">Pluto TV Military</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb3fea0f711fd76340eebff">Pluto TV Military</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHistory.us" site_id="5a4d35dfa5c02e717a234f86">Pluto TV History</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5a4d35dfa5c02e717a234f86">Pluto TV History</channel>
<channel site="pluto.tv" lang="en" xmltv_id="60Minutes.us" site_id="66b646f9cd0d3100086af83c">60 Minutes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66b646f9cd0d3100086af83c">60 Minutes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNOriginals.us" site_id="66e0b4536ad04d0008fff4b2">CNN Originals</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b4536ad04d0008fff4b2">CNN Originals</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ModernMarvelsPresentedbyHISTORY.us" site_id="65775d29dfed030008cb3db2">Modern Marvels Presented by HISTORY</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775d29dfed030008cb3db2">Modern Marvels Presented by HISTORY</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RealDisasterChannel.us" site_id="64d2b6bf9b414d0008187d83">Real Disaster Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d2b6bf9b414d0008187d83">Real Disaster Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVScience.us" site_id="563a970aa1a1f7fe7c9daad7">Pluto TV Science</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="563a970aa1a1f7fe7c9daad7">Pluto TV Science</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MythBusters.us" site_id="66e0b4866ad04d0008fff4d8">MythBusters</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b4866ad04d0008fff4d8">MythBusters</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StarTalkTV.us" site_id="65775a88b3801200084a39ed">StarTalk TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65775a88b3801200084a39ed">StarTalk TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SmithsonianChannelSelects.us" site_id="5f21ea08007a49000762d349">Smithsonian Channel Selects</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f21ea08007a49000762d349">Smithsonian Channel Selects</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBSGenealogy.us" site_id="65a6db580d9ab400080e6ab6">PBS Genealogy</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65a6db580d9ab400080e6ab6">PBS Genealogy</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVTravel.us" site_id="59c01b1953680139c6ae9d4d">Pluto TV Travel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="59c01b1953680139c6ae9d4d">Pluto TV Travel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThisOldHouse.us" site_id="5d51e791b7dba3b2ae990ab2">This Old House</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d51e791b7dba3b2ae990ab2">This Old House</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThisOldHouseMakersChannel.us" site_id="6452c9465a0cd50008654fc1">This Old House Makers Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c9465a0cd50008654fc1">This Old House Makers Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVHome.us" site_id="6022bd17849c620007f43ae0">Pluto TV Home</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6022bd17849c620007f43ae0">Pluto TV Home</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Homeful.us" site_id="66df8aa7abec540008ca8cb6">Homeful</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66df8aa7abec540008ca8cb6">Homeful</channel>
<channel site="pluto.tv" lang="en" xmltv_id="HomeCrashers.us" site_id="65654230c917a5000844ce96">Home Crashers</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65654230c917a5000844ce96">Home Crashers</channel>
<channel site="pluto.tv" lang="en" xmltv_id="UltimateBuilds.us" site_id="656542ae4261ca00082154a8">Ultimate Builds</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656542ae4261ca00082154a8">Ultimate Builds</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RusticRetreats.us" site_id="6565430c9d5ac4000822f508">Rustic Retreats</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6565430c9d5ac4000822f508">Rustic Retreats</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Places&amp;Spaces.us" site_id="66e0b265dd2d690008c5496b">Places &amp; Spaces</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66e0b265dd2d690008c5496b">Places &amp; Spaces</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TinyHouseNation.us" site_id="601a0342dcf4370007566891">Tiny House Nation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="601a0342dcf4370007566891">Tiny House Nation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Home.Made.Nation.us" site_id="5dc1cb279c91420009db261d">Home.Made.Nation</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc1cb279c91420009db261d">Home.Made.Nation</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBSAntiquesRoadshow.us" site_id="636c2b3c55d2e700074105c4">PBS Antiques Roadshow</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="636c2b3c55d2e700074105c4">PBS Antiques Roadshow</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AntiquesRoadshowUK.us" site_id="5ce44810b421747ae467b7cd">Antiques Roadshow UK</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ce44810b421747ae467b7cd">Antiques Roadshow UK</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AntiquesRoadTrip.us" site_id="615b8ec39e878900073f419a">Antiques Road Trip</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="615b8ec39e878900073f419a">Antiques Road Trip</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TBN.us" site_id="5d486b2eeddd9576d66f9066">TBN</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d486b2eeddd9576d66f9066">TBN</channel>
<channel site="pluto.tv" lang="en" xmltv_id="America'sTestKitchen.us" site_id="5e84f54a82f05300080e6746">America's Test Kitchen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84f54a82f05300080e6746">America's Test Kitchen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVFood.us" site_id="5877ac8cb791f4eb4a140d81">Pluto TV Food</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5877ac8cb791f4eb4a140d81">Pluto TV Food</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NoReservations.us" site_id="66ff0cf663292d0008320cf8">No Reservations</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ff0cf663292d0008320cf8">No Reservations</channel>
<channel site="pluto.tv" lang="en" xmltv_id="WarnerBros.TVSweetEscapes.us" site_id="6532e7fa045c3d0008514ca7">Warner Bros. TV Sweet Escapes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e7fa045c3d0008514ca7">Warner Bros. TV Sweet Escapes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJamieOliverChannel.us" site_id="64dab9df3d48f40008868091">The Jamie Oliver Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64dab9df3d48f40008868091">The Jamie Oliver Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCFood.us" site_id="5fb5844bf5514d0007945bda">BBC Food</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fb5844bf5514d0007945bda">BBC Food</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCHome&amp;Garden.us" site_id="5fb5836fe745b600070fc743">BBC Home &amp; Garden</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fb5836fe745b600070fc743">BBC Home &amp; Garden</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BBCEarth.us" site_id="656535fc2c46f30008870fae">BBC Earth</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="656535fc2c46f30008870fae">BBC Earth</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dinos24/7.us" site_id="673bf05ddaad7f0008ac7a5c">Dinos 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673bf05ddaad7f0008ac7a5c">Dinos 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EarthDay365.us" site_id="650b69cfd1f20c0008586bac">EarthDay 365</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b69cfd1f20c0008586bac">EarthDay 365</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PBSNature.us" site_id="640a64bd73e013000893d4e0">PBS Nature</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="640a64bd73e013000893d4e0">PBS Nature</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LoveNature.us" site_id="66df8a29b25d2b0008fc5fe0">Love Nature</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66df8a29b25d2b0008fc5fe0">Love Nature</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Naturescape.us" site_id="5812bd9f249444e05d09cc4e">Naturescape</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812bd9f249444e05d09cc4e">Naturescape</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheJackHannaChannel.us" site_id="650b6a0c6625510008e1043b">The Jack Hanna Channel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="650b6a0c6625510008e1043b">The Jack Hanna Channel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVAnimals.us" site_id="56b27f85ff3037045055037e">Pluto TV Animals</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="56b27f85ff3037045055037e">Pluto TV Animals</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ThePetCollective.us" site_id="5bb1ad55268cae539bcedb08">The Pet Collective</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5bb1ad55268cae539bcedb08">The Pet Collective</channel>
<channel site="pluto.tv" lang="en" xmltv_id="DogWhispererwithCesarMillan.us" site_id="664fd48894d5580008e45e7c">Dog Whisperer with Cesar Millan</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="664fd48894d5580008e45e7c">Dog Whisperer with Cesar Millan</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Dogs24/7.us" site_id="5b329e0a7b9d8872aeb49ceb">Dogs 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5b329e0a7b9d8872aeb49ceb">Dogs 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cats24/7.us" site_id="599375885ceaac3cabccbed7">Cats 24/7</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="599375885ceaac3cabccbed7">Cats 24/7</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickJr.PlutoTV.us" site_id="5ca6748a37b88b269472dad9">Nick Jr. Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca6748a37b88b269472dad9">Nick Jr. Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MisterRogers'Neighborhood.us" site_id="65e23f340d4561000821540d">Mister Rogers' Neighborhood</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65e23f340d4561000821540d">Mister Rogers' Neighborhood</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Zoom!Zoom!.us" site_id="6452c77ed3fdde00080eb3a8">Zoom! Zoom!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c77ed3fdde00080eb3a8">Zoom! Zoom!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PeppaPig.us" site_id="5d14fb6c84dd37df3b4290c5">Peppa Pig</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fb6c84dd37df3b4290c5">Peppa Pig</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LittleStarsUniverse.us" site_id="51c75f7bb6f26ba1cd00002f">Little Stars Universe</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="51c75f7bb6f26ba1cd00002f">Little Stars Universe</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LittleAngel'sPlayroom.us" site_id="5eb301b7395671000780d100">Little Angel's Playroom</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb301b7395671000780d100">Little Angel's Playroom</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BebecitoBumysusamigos.us" site_id="60493283ffc52f000710edae">Bebecito Bum y sus amigos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60493283ffc52f000710edae">Bebecito Bum y sus amigos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ElReinoInfantil.us" site_id="66fedd65d7de140008dccd66">El Reino Infantil</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66fedd65d7de140008dccd66">El Reino Infantil</channel>
<channel site="pluto.tv" lang="en" xmltv_id="BabySharkTV.us" site_id="60faffc3fbbc120007fc4376">Baby Shark TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60faffc3fbbc120007fc4376">Baby Shark TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NickelodeonPlutoTV.us" site_id="5ca673e0d0bd6c2689c94ce3">Nickelodeon Pluto TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5ca673e0d0bd6c2689c94ce3">Nickelodeon Pluto TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Nickelodeonenespañol.us" site_id="5d8d08395f39465da6fb3ec4">Nickelodeon en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d08395f39465da6fb3ec4">Nickelodeon en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="90'sKids.us" site_id="6452c814939a590008567a3b">90's Kids</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6452c814939a590008567a3b">90's Kids</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TotallyTeen.us" site_id="6450209d939a5900084dba1d">Totally Teen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6450209d939a5900084dba1d">Totally Teen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TOTALLYTURTLES.us" site_id="5d0c16d686454ead733d08f8">TOTALLY TURTLES</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d0c16d686454ead733d08f8">TOTALLY TURTLES</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Pokémon.us" site_id="6675c7868768aa0008d7f1c7">Pokémon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6675c7868768aa0008d7f1c7">Pokémon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TransformersTV.us" site_id="60fb053712f22a0007ff14d2">Transformers TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb053712f22a0007ff14d2">Transformers TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GoGoGadget!.us" site_id="667f3852efa2a10008e1e514">Go Go Gadget!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667f3852efa2a10008e1e514">Go Go Gadget!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TeamSpirit.us" site_id="60f9ebb06f0b3d000746fbdb">Team Spirit</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f9ebb06f0b3d000746fbdb">Team Spirit</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LEGOKidsTV.us" site_id="60fb01a24795a6000762fe83">LEGO Kids TV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb01a24795a6000762fe83">LEGO Kids TV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KidsMovieClub.us" site_id="5db0ad56edc89300090d2ebb">Kids Movie Club</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5db0ad56edc89300090d2ebb">Kids Movie Club</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RainbowSquad.us" site_id="60fb028c2e6a0c00075275a5">Rainbow Squad</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb028c2e6a0c00075275a5">Rainbow Squad</channel>
<channel site="pluto.tv" lang="en" xmltv_id="StrawberryShortcakeandFriends.us" site_id="667f393836a2f90008fd17c0">Strawberry Shortcake and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667f393836a2f90008fd17c0">Strawberry Shortcake and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KartoonChannel!.us" site_id="60fb040d4795a6000762fe8f">Kartoon Channel!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb040d4795a6000762fe8f">Kartoon Channel!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="pocket.watchGame-On.us" site_id="5dae0a40e8ee0d000975e99b">pocket.watch Game-On</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dae0a40e8ee0d000975e99b">pocket.watch Game-On</channel>
<channel site="pluto.tv" lang="en" xmltv_id="RyanandFriends.us" site_id="5fb584b7613a31000789de5a">Ryan and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fb584b7613a31000789de5a">Ryan and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ForeverKids.us" site_id="56171fafada51f8004c4b40f">Forever Kids</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="56171fafada51f8004c4b40f">Forever Kids</channel>
<channel site="pluto.tv" lang="en" xmltv_id="GarfieldandFriends.us" site_id="60faf9ddfcc1f200070a5932">Garfield and Friends</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60faf9ddfcc1f200070a5932">Garfield and Friends</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Grande-ish.us" site_id="60fafef7c2440500071266e0">Grande-ish</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fafef7c2440500071266e0">Grande-ish</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NoParentsAllowed.us" site_id="5db0ae5af8797b00095c0794">No Parents Allowed</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5db0ae5af8797b00095c0794">No Parents Allowed</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AnimeAllDay.us" site_id="5812b7d3249444e05d09cc49">Anime All Day</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5812b7d3249444e05d09cc49">Anime All Day</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crunchyroll.us" site_id="65652f7fc0fc88000883537a">Crunchyroll</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65652f7fc0fc88000883537a">Crunchyroll</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SailorMoon.us" site_id="637e55347427a40007fac703">Sailor Moon</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="637e55347427a40007fac703">Sailor Moon</channel>
<channel site="pluto.tv" lang="en" xmltv_id="OnePiece.us" site_id="5f7790b3ed0c88000720b241">One Piece</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f7790b3ed0c88000720b241">One Piece</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Naruto.us" site_id="5da0c85bd2c9c10009370984">Naruto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5da0c85bd2c9c10009370984">Naruto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yu-Gi-Oh!.us" site_id="5f4ec10ed9636f00089b8c89">Yu-Gi-Oh!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4ec10ed9636f00089b8c89">Yu-Gi-Oh!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Lupinthe3rd.us" site_id="60f74ba51c82ac000776c669">Lupin the 3rd</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f74ba51c82ac000776c669">Lupin the 3rd</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CinePremiere.us" site_id="5cf968040ab7d8f181e6a68b">Cine Premiere</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf968040ab7d8f181e6a68b">Cine Premiere</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTV007enespañol.us" site_id="5d93b58e7ea6f9918873886f">Pluto TV 007 en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d93b58e7ea6f9918873886f">Pluto TV 007 en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cineenespañol.us" site_id="5cf96b1c4f1ca3f0629f4bf0">Cine en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96b1c4f1ca3f0629f4bf0">Cine en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CineClásico.us" site_id="64b9671cdac71b0008f371df">Cine Clásico</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64b9671cdac71b0008f371df">Cine Clásico</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PelisyPopcorn.us" site_id="60fb2f47c133270007327375">Pelis y Popcorn</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb2f47c133270007327375">Pelis y Popcorn</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cineadrenalina.us" site_id="5d8d164d92e97a5e107638d2">Cine adrenalina</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d164d92e97a5e107638d2">Cine adrenalina</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cineterror.us" site_id="5d8d180092e97a5e107638d3">Cine terror</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d180092e97a5e107638d3">Cine terror</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cine¡¡jaja!!.us" site_id="5f513564e4622a0007c578c0">Cine ¡¡jaja!!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f513564e4622a0007c578c0">Cine ¡¡jaja!!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CineXOXO.us" site_id="5f5136317aedfb0007016f93">Cine XOXO</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f5136317aedfb0007016f93">Cine XOXO</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Cinenavideño.us" site_id="6334a4d7ae975100073994a2">Cine navideño</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a4d7ae975100073994a2">Cine navideño</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hallmarkenespañol.us" site_id="6532e7b290a74c00084a3bb6">Hallmark en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6532e7b290a74c00084a3bb6">Hallmark en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Telemundotelenovelasclásicas.us" site_id="5cf96cc422df39f1a338d165">Telemundo telenovelas clásicas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96cc422df39f1a338d165">Telemundo telenovelas clásicas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="PlutoTVNovelas.us" site_id="5cf96c0222df39f1a338d163">Pluto TV Novelas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96c0222df39f1a338d163">Pluto TV Novelas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Novelasconlaabuela.us" site_id="5e84dbf4a838b60007ffbba1">Novelas con la abuela</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84dbf4a838b60007ffbba1">Novelas con la abuela</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Amantesdelromance.us" site_id="5e84db2db3851800077c871e">Amantes del romance</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84db2db3851800077c871e">Amantes del romance</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Corazónturco.us" site_id="61b3e21d56fee300087e4cba">Corazón turco</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61b3e21d56fee300087e4cba">Corazón turco</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Badassnovelas.us" site_id="5e84dc59026b9b000766f9a2">Badass novelas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e84dc59026b9b000766f9a2">Badass novelas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Entrenosotras.us" site_id="60492c67f4c48700075b5d37">Entre nosotras</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492c67f4c48700075b5d37">Entre nosotras</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TuWarner.us" site_id="6732497f3a61d400087a53b0">TuWarner</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6732497f3a61d400087a53b0">TuWarner</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SeriesconÑ.us" site_id="60fb3087fbbc120007fc46be">Series con Ñ</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb3087fbbc120007fc46be">Series con Ñ</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSenespañol.us" site_id="668c5cb4f01dbe0008dd4082">CBS en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668c5cb4f01dbe0008dd4082">CBS en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSIenEspañol.us" site_id="604928d54a4f730007ff76bc">CSI en Español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="604928d54a4f730007ff76bc">CSI en Español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:Miamienespañol.us" site_id="632b5950b515b000079e6b81">CSI: Miami en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="632b5950b515b000079e6b81">CSI: Miami en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CSI:NYenespañol.us" site_id="632b606e12a67b0007c9e371">CSI: NY en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="632b606e12a67b0007c9e371">CSI: NY en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWalkingDeadenespañol.us" site_id="5e82bb378601b80007b4bd78">The Walking Dead en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e82bb378601b80007b4bd78">The Walking Dead en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AMCenespañol.us" site_id="62fa81ccd1a7e90007c1ada0">AMC en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="62fa81ccd1a7e90007c1ada0">AMC en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Spike¡extremo!.us" site_id="5d8d11baeb31c5a43b77bf59">Spike ¡extremo!</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d11baeb31c5a43b77bf59">Spike ¡extremo!</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Mundoparanormal.us" site_id="60492a9bbca75b0007b1bfd5">Mundo paranormal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492a9bbca75b0007b1bfd5">Mundo paranormal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="AcapulcoShore.us" site_id="60c25ec6da6d6600074233a8">Acapulco Shore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60c25ec6da6d6600074233a8">Acapulco Shore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVenespañol.us" site_id="5cf96d351652631e36d4331f">MTV en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96d351652631e36d4331f">MTV en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LaFamiliadelBarrio.us" site_id="668c566d08d5490008075948">La Familia del Barrio</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="668c566d08d5490008075948">La Familia del Barrio</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ComedyCentralenespañol.us" site_id="5cf96dad1652631e36d43320">Comedy Central en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96dad1652631e36d43320">Comedy Central en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EstrellaTV.us" site_id="5cf0622da00ca1e2f6fac712">EstrellaTV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf0622da00ca1e2f6fac712">EstrellaTV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CasosdelaDra.Polo.us" site_id="60d393e5579a420007ee553c">Casos de la Dra. Polo</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60d393e5579a420007ee553c">Casos de la Dra. Polo</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Noseyescándalos.us" site_id="60492ee6375a3900079a158c">Nosey escándalos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492ee6375a3900079a158c">Nosey escándalos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Bodas+.us" site_id="673249215534bb0008c8a012">Bodas+</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249215534bb0008c8a012">Bodas+</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SonyCanalEscapePerfecto.us" site_id="605e479d5b8229000763e697">Sony Canal Escape Perfecto</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="605e479d5b8229000763e697">Sony Canal Escape Perfecto</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Hell'sKitchenenespañol.us" site_id="60492b2794116800073e32dc">Hell's Kitchen en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492b2794116800073e32dc">Hell's Kitchen en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Foodies.us" site_id="5d8d0fbaa8742fa3093899da">Foodies</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d8d0fbaa8742fa3093899da">Foodies</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Mundoviajero.us" site_id="60511efd71ec430007f50d97">Mundo viajero</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60511efd71ec430007f50d97">Mundo viajero</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VidasExtremas.us" site_id="673249afc7626f0008c7205d">Vidas Extremas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249afc7626f0008c7205d">Vidas Extremas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ConstruccionesAsombrosas.us" site_id="673249433a61d400087a51ed">Construcciones Asombrosas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249433a61d400087a51ed">Construcciones Asombrosas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Mundogeek.us" site_id="6051201a0aa8a70007c24a2a">Mundo geek</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6051201a0aa8a70007c24a2a">Mundo geek</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TuDiscovery.us" site_id="673249ccc7626f0008c72076">TuDiscovery</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673249ccc7626f0008c72076">TuDiscovery</channel>
<channel site="pluto.tv" lang="en" xmltv_id="SaladeEmergencias:HistoriasInéditas.us" site_id="66ba53cda4ee2700083fac09">Sala de Emergencias: Historias Inéditas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="66ba53cda4ee2700083fac09">Sala de Emergencias: Historias Inéditas</channel>
<channel site="pluto.tv" lang="en" xmltv_id="ExpedientesSobrenaturales.us" site_id="6732495dc7626f0008c71e7d">Expedientes Sobrenaturales</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6732495dc7626f0008c71e7d">Expedientes Sobrenaturales</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crimen.us" site_id="6732499ce40c4a0008bb9894">Crimen</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6732499ce40c4a0008bb9894">Crimen</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Crímenesimperfectos.us" site_id="5e94cd036cc69d0007e8a1ba">Crímenes imperfectos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5e94cd036cc69d0007e8a1ba">Crímenes imperfectos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Misteriossinresolver.us" site_id="5f4d882d5233170007ee880e">Misterios sin resolver</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f4d882d5233170007ee880e">Misterios sin resolver</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Investiga.us" site_id="5cf96b8f4f1ca3f0629f4bf1">Investiga</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5cf96b8f4f1ca3f0629f4bf1">Investiga</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TelemundoNoticiasCalifornia.us" site_id="65790feacbd0d60008fac87a">Telemundo Noticias California</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65790feacbd0d60008fac87a">Telemundo Noticias California</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CNNXPRESS.us" site_id="673248f9030a2c0008033af8">CNN XPRESS</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="673248f9030a2c0008033af8">CNN XPRESS</channel>
<channel site="pluto.tv" lang="en" xmltv_id="EstrellaNews.us" site_id="60492e6d7f3f560007ab0f62">Estrella News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492e6d7f3f560007ab0f62">Estrella News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="TheWeatherChannelEnEspañol.us" site_id="627ae4fcf001df00074d6e5b">The Weather Channel En Español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="627ae4fcf001df00074d6e5b">The Weather Channel En Español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Euronews.us" site_id="60492dcf1c9b6a00089f41df">Euronews</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492dcf1c9b6a00089f41df">Euronews</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOXDeportes.us" site_id="63d0269d60bc8f000890facc">FOX Deportes</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="63d0269d60bc8f000890facc">FOX Deportes</channel>
<channel site="pluto.tv" lang="en" xmltv_id="beINSPORTSXTRAenespañol.us" site_id="60492fdd9989d30007ccd30a">beIN SPORTS XTRA en español</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60492fdd9989d30007ccd30a">beIN SPORTS XTRA en español</channel>
<channel site="pluto.tv" lang="en" xmltv_id="LuchaLibreAAA.us" site_id="5c01df1759ee03633e7b272c">Lucha Libre AAA</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5c01df1759ee03633e7b272c">Lucha Libre AAA</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoRegionalMexicano.us" site_id="64dab5fe35425100080e2991">Vevo Regional Mexicano</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64dab5fe35425100080e2991">Vevo Regional Mexicano</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoÍconosLatinos.us" site_id="64d161c93c785e0008df575e">Vevo Íconos Latinos</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="64d161c93c785e0008df575e">Vevo Íconos Latinos</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoHoliday.us" site_id="6334a3ffdc283500076acf92">Vevo Holiday</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="6334a3ffdc283500076acf92">Vevo Holiday</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo'70s.us" site_id="5f32f26bcd8aea00071240e5">Vevo '70s</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f32f26bcd8aea00071240e5">Vevo '70s</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo'80s.us" site_id="5fd7b8bf927e090007685853">Vevo '80s</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fd7b8bf927e090007685853">Vevo '80s</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo'90s.us" site_id="5fd7bb1f86d94a000796e2c2">Vevo '90s</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fd7bb1f86d94a000796e2c2">Vevo '90s</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Vevo2K.us" site_id="5fd7bca3e0a4ee0007a38e8c">Vevo 2K</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fd7bca3e0a4ee0007a38e8c">Vevo 2K</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CMTEqualPlay.us" site_id="5f68f53eb1e5800007390bf8">CMT Equal Play</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f68f53eb1e5800007390bf8">CMT Equal Play</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XITEClassicCountry.us" site_id="623b92a2ccefed0007b1db48">XITE Classic Country</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="623b92a2ccefed0007b1db48">XITE Classic Country</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoCountry.us" site_id="5da0d75e84830900098a1ea0">Vevo Country</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5da0d75e84830900098a1ea0">Vevo Country</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Yo!MTV.us" site_id="5d14fc31252d35decbc4080b">Yo! MTV</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fc31252d35decbc4080b">Yo! MTV</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoTrueSchoolHip-Hop.us" site_id="61d4c2817a823d00070ba53e">Vevo True School Hip-Hop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61d4c2817a823d00070ba53e">Vevo True School Hip-Hop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoR&amp;B.us" site_id="5da0d83f66c9700009b96d0e">Vevo R&amp;B</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5da0d83f66c9700009b96d0e">Vevo R&amp;B</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoRetroRock.us" site_id="61d4b38226b8a50007fe03a6">Vevo Retro Rock</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="61d4b38226b8a50007fe03a6">Vevo Retro Rock</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XITERockxMetal.us" site_id="623a1b5188ecdc0007c9ef5a">XITE Rock x Metal</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="623a1b5188ecdc0007c9ef5a">XITE Rock x Metal</channel>
<channel site="pluto.tv" lang="en" xmltv_id="VevoPop.us" site_id="5d93b635b43dd1a399b39eee">Vevo Pop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d93b635b43dd1a399b39eee">Vevo Pop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVSpankin'New.us" site_id="5d14fdb8ca91eedee1633117">MTV Spankin' New</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fdb8ca91eedee1633117">MTV Spankin' New</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVBiggestPop.us" site_id="5d14fd1a252d35decbc4080c">MTV Biggest Pop</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d14fd1a252d35decbc4080c">MTV Biggest Pop</channel>
<channel site="pluto.tv" lang="en" xmltv_id="MTVFlowLatino.us" site_id="5d3609cd6a6c78d7672f2a81">MTV Flow Latino</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5d3609cd6a6c78d7672f2a81">MTV Flow Latino</channel>
<channel site="pluto.tv" lang="en" xmltv_id="XITEGospel.us" site_id="623b93628e6ded0007337d4d">XITE Gospel</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="623b93628e6ded0007337d4d">XITE Gospel</channel>
<channel site="pluto.tv" lang="en" xmltv_id="Classica.us" site_id="5f779951372da90007fd45e8">Classica</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5f779951372da90007fd45e8">Classica</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsBaltimore.us" site_id="60f75919718aed0007250d7a">CBS News Baltimore</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60f75919718aed0007250d7a">CBS News Baltimore</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsBayArea.us" site_id="5eb1afb21486df0007abc57c">CBS News Bay Area</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1afb21486df0007abc57c">CBS News Bay Area</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsBoston.us" site_id="5eb1af2ad345340008fccd1e">CBS News Boston</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1af2ad345340008fccd1e">CBS News Boston</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsChicago.us" site_id="5eb1aeb2fd4b8a00076c2047">CBS News Chicago</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1aeb2fd4b8a00076c2047">CBS News Chicago</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsColorado.us" site_id="5eb1b12146cba40007aa7e5d">CBS News Colorado</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b12146cba40007aa7e5d">CBS News Colorado</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsDetroit.us" site_id="634f2610d5023700078f7dee">CBS News Detroit</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="634f2610d5023700078f7dee">CBS News Detroit</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsLosAngeles.us" site_id="5dc481cda1d430000948a1b4">CBS News Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc481cda1d430000948a1b4">CBS News Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="FOX11LosAngeles.us" site_id="667f2c7b22acab0008b7072b">FOX 11 Los Angeles</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="667f2c7b22acab0008b7072b">FOX 11 Los Angeles</channel>
<channel site="pluto.tv" lang="en" xmltv_id="NBCLosAngelesNews.us" site_id="65790cda6e4f6a0008768764">NBC Los Angeles News</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="65790cda6e4f6a0008768764">NBC Los Angeles News</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsMiami.us" site_id="60fb299b79498900070b29e0">CBS News Miami</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60fb299b79498900070b29e0">CBS News Miami</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsMinnesota.us" site_id="5eb1b0bf2240d8000732a09c">CBS News Minnesota</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b0bf2240d8000732a09c">CBS News Minnesota</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsNewYork.us" site_id="5dc48170e280c80009a861ab">CBS News New York</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5dc48170e280c80009a861ab">CBS News New York</channel>
<channel site="pluto.tv" lang="en" xmltv_id="News12NewYork.us" site_id="5fff49cfb5cd4f0007c2b0dc">News 12 New York</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5fff49cfb5cd4f0007c2b0dc">News 12 New York</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsPhiladelphia.us" site_id="5eb1b05ea168cc000767ba67">CBS News Philadelphia</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b05ea168cc000767ba67">CBS News Philadelphia</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsPittsburgh.us" site_id="5eb1b17aa5277e00083f6521">CBS News Pittsburgh</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eb1b17aa5277e00083f6521">CBS News Pittsburgh</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsSacramento.us" site_id="60cb6df2b2ad610008cd5bea">CBS News Sacramento</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="60cb6df2b2ad610008cd5bea">CBS News Sacramento</channel>
<channel site="pluto.tv" lang="en" xmltv_id="KIROSeattle.us" site_id="632b619c8d2a6c0007ff534e">KIRO Seattle</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="632b619c8d2a6c0007ff534e">KIRO Seattle</channel>
<channel site="pluto.tv" lang="en" xmltv_id="CBSNewsTexas.us" site_id="5eceb0d4065c240007688ec6">CBS News Texas</channel> <channel site="pluto.tv" lang="en" xmltv_id="" site_id="5eceb0d4065c240007688ec6">CBS News Texas</channel>
</channels> </channels>

View file

@ -144,7 +144,7 @@
<channel site="programacion-tv.elpais.com" lang="es" xmltv_id="EWTNEspanaLatinAmerica.us" site_id="190">EWTN</channel> <channel site="programacion-tv.elpais.com" lang="es" xmltv_id="EWTNEspanaLatinAmerica.us" site_id="190">EWTN</channel>
<channel site="programacion-tv.elpais.com" lang="en" xmltv_id="ExtremeSportsChannel.nl" site_id="550">Extreme Sports</channel> <channel site="programacion-tv.elpais.com" lang="en" xmltv_id="ExtremeSportsChannel.nl" site_id="550">Extreme Sports</channel>
<channel site="programacion-tv.elpais.com" lang="es" xmltv_id="FactoriadeFiccion.es" site_id="506">FDF Telecinco</channel> <channel site="programacion-tv.elpais.com" lang="es" xmltv_id="FactoriadeFiccion.es" site_id="506">FDF Telecinco</channel>
<channel site="programacion-tv.elpais.com" lang="es" xmltv_id="Fox.es" site_id="202">FOX</channel> <channel site="programacion-tv.elpais.com" lang="es" xmltv_id="" site_id="202">FOX</channel>
<channel site="programacion-tv.elpais.com" lang="es" xmltv_id="FoxLife.es" site_id="660">Fox Life</channel> <channel site="programacion-tv.elpais.com" lang="es" xmltv_id="FoxLife.es" site_id="660">Fox Life</channel>
<channel site="programacion-tv.elpais.com" lang="fr" xmltv_id="France24Espanol.fr" site_id="608">France 24</channel> <channel site="programacion-tv.elpais.com" lang="fr" xmltv_id="France24Espanol.fr" site_id="608">France 24</channel>
<channel site="programacion-tv.elpais.com" lang="es" xmltv_id="GaliciaTVEuropa.es" site_id="37">Galicia TV</channel> <channel site="programacion-tv.elpais.com" lang="es" xmltv_id="GaliciaTVEuropa.es" site_id="37">Galicia TV</channel>

View file

@ -128,7 +128,7 @@
<channel site="programme-tv.net" lang="fr" xmltv_id="C8.fr" site_id="c8-4">C8</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="C8.fr" site_id="c8-4">C8</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalJ.fr" site_id="canal-j-40">Canal J</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalJ.fr" site_id="canal-j-40">Canal J</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlus.fr" site_id="canalplus-2">Canal+</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlus.fr" site_id="canalplus-2">Canal+</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusCinema.fr" site_id="canalplus-cinema-35">Canal+ Cinéma</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="" site_id="canalplus-cinema-35">Canal+ Cinéma</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusDecale.fr" site_id="canalplus-decale-36">Canal+ Décalé</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusDecale.fr" site_id="canalplus-decale-36">Canal+ Décalé</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusDocs.fr" site_id="canalplus-docs-9501">Canal+ Docs</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusDocs.fr" site_id="canalplus-docs-9501">Canal+ Docs</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusFormula1.fr" site_id="canalplus-formula-1-10503">Canal+ Formula 1</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusFormula1.fr" site_id="canalplus-formula-1-10503">Canal+ Formula 1</channel>
@ -139,17 +139,17 @@
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusSeries.fr" site_id="canalplus-series-227">Canal+ Séries</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusSeries.fr" site_id="canalplus-series-227">Canal+ Séries</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusSport.fr" site_id="canalplus-sport-37">Canal+ Sport</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusSport.fr" site_id="canalplus-sport-37">Canal+ Sport</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusTop14.fr" site_id="canalplus-top-14-10507">Canal+ Top 14</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CanalPlusTop14.fr" site_id="canalplus-top-14-10507">Canal+ Top 14</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Canvas.be" site_id="canvas-234">Canvas</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="" site_id="canvas-234">Canvas</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="cartoon-network-41">Cartoon Network</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CartoonNetwork.fr" site_id="cartoon-network-41">Cartoon Network</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="ChassePeche.fr" site_id="chasse-et-peche-42">Chasse et pêche</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="ChassePeche.fr" site_id="chasse-et-peche-42">Chasse et pêche</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Cherie25.fr" site_id="cherie-25-206">Chérie 25</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="Cherie25.fr" site_id="cherie-25-206">Chérie 25</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="cineplus-classic-44">Ciné+ Classic</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusClassic.fr" site_id="cineplus-classic-44">Ciné+ Classic</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusClub.fr" site_id="cineplus-club-43">Ciné+ Club</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusClub.fr" site_id="cineplus-club-43">Ciné+ Club</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="cineplus-emotion-45">Ciné+ Emotion</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusEmotion.fr" site_id="cineplus-emotion-45">Ciné+ Emotion</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusFamiz.fr" site_id="cineplus-famiz-46">Ciné+ Famiz</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="" site_id="cineplus-famiz-46">Ciné+ Famiz</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="cineplus-frisson-47">Ciné+ Frisson</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusFrisson.fr" site_id="cineplus-frisson-47">Ciné+ Frisson</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="cineplus-premier-3">Ciné+ Premier</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CinePlusPremier.fr" site_id="cineplus-premier-3">Ciné+ Premier</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="ClubRTL.be" site_id="club-rtl-140">Club RTL</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="" site_id="club-rtl-140">Club RTL</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CNews.fr" site_id="cnews-30">CNEWS</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CNews.fr" site_id="cnews-30">CNEWS</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="CNNInternationalEurope.us" site_id="cnn-235">CNN</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="CNNInternationalEurope.us" site_id="cnn-235">CNN</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="ComediePlus.fr" site_id="comedieplus-27">Comédie+</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="ComediePlus.fr" site_id="comedieplus-27">Comédie+</channel>
@ -162,7 +162,7 @@
<channel site="programme-tv.net" lang="fr" xmltv_id="DisneyChannel.fr" site_id="disney-channel-57">Disney Channel</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="DisneyChannel.fr" site_id="disney-channel-57">Disney Channel</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="DisneyJunior.fr" site_id="disney-junior-166">Disney Junior</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="DisneyJunior.fr" site_id="disney-junior-166">Disney Junior</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="E.fr" site_id="e-141">E !</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="E.fr" site_id="e-141">E !</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Een.be" site_id="een-264">één</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="" site_id="een-264">één</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Equidia.fr" site_id="equidia-59">Equidia</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="Equidia.fr" site_id="equidia-59">Equidia</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Eurochannel.uk" site_id="eurochannel-236">Eurochannel</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="Eurochannel.uk" site_id="eurochannel-236">Eurochannel</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="EuronewsFrench.fr" site_id="euronews-62">Euronews</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="EuronewsFrench.fr" site_id="euronews-62">Euronews</channel>
@ -251,7 +251,7 @@
<channel site="programme-tv.net" lang="fr" xmltv_id="PlanetePlus.fr" site_id="planeteplus-16">Planète+</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="PlanetePlus.fr" site_id="planeteplus-16">Planète+</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="PlanetePlusCrime.fr" site_id="planeteplus-crime-investigation-151">Planète+ Crime Investigation</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="PlanetePlusCrime.fr" site_id="planeteplus-crime-investigation-151">Planète+ Crime Investigation</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Play4.be" site_id="vier-260">Vier</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="Play4.be" site_id="vier-260">Vier</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="PlugRTL.be" site_id="plug-rtl-145">Plug RTL</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="" site_id="plug-rtl-145">Plug RTL</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="PolarPlus.fr" site_id="polarplus-401">Polar+</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="PolarPlus.fr" site_id="polarplus-401">Polar+</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="Rai1.it" site_id="rai-uno-188">Rai Uno</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="Rai1.it" site_id="rai-uno-188">Rai Uno</channel>
<channel site="programme-tv.net" lang="fr" xmltv_id="RFMTV.fr" site_id="rfm-tv-85">RFM TV</channel> <channel site="programme-tv.net" lang="fr" xmltv_id="RFMTV.fr" site_id="rfm-tv-85">RFM TV</channel>

View file

@ -391,7 +391,7 @@
<channel site="programtv.onet.pl" lang="pl" xmltv_id="CanalPlusSport.pl" site_id="canal-sport-14">CANAL+ Sport</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="CanalPlusSport.pl" site_id="canal-sport-14">CANAL+ Sport</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="CartoonNetwork.pl" site_id="cartoon-network-273">Cartoon Network</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="CartoonNetwork.pl" site_id="cartoon-network-273">Cartoon Network</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="CBeebies.pl" site_id="bbc-cbeebies-2">BBC CBeebies</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="CBeebies.pl" site_id="bbc-cbeebies-2">BBC CBeebies</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="CBSEuropa.uk" site_id="cbs-europa-317">CBS Europa</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="" site_id="cbs-europa-317">CBS Europa</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="CBSReality.pl" site_id="cbs-reality-318">CBS Reality</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="CBSReality.pl" site_id="cbs-reality-318">CBS Reality</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="Cinemax2CentralEuropeHD.hu" site_id="cinemax2-58">Cinemax2</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="Cinemax2CentralEuropeHD.hu" site_id="cinemax2-58">Cinemax2</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="CinemaxCentralEuropeHD.hu" site_id="cinemax-59">Cinemax</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="CinemaxCentralEuropeHD.hu" site_id="cinemax-59">Cinemax</channel>
@ -413,7 +413,7 @@
<channel site="programtv.onet.pl" lang="pl" xmltv_id="DocuBox.nl" site_id="docubox-hd-175">DocuBox HD</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="DocuBox.nl" site_id="docubox-hd-175">DocuBox HD</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="DTX.pl" site_id="discovery-turbo-xtra-239">DTX</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="DTX.pl" site_id="discovery-turbo-xtra-239">DTX</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="ducktv.sk" site_id="ducktv-94">ducktv</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="ducktv.sk" site_id="ducktv-94">ducktv</channel>
<channel site="programtv.onet.pl" lang="nl" xmltv_id="Een.be" site_id="belgia-tv1-268">Belgia - TV1</channel> <channel site="programtv.onet.pl" lang="nl" xmltv_id="" site_id="belgia-tv1-268">Belgia - TV1</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="EEurope.nl" site_id="e-entertainment-73">E! Entertainment</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="EEurope.nl" site_id="e-entertainment-73">E! Entertainment</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="ElevenSports1.pl" site_id="eleven-208">Eleven Sports 1</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="ElevenSports1.pl" site_id="eleven-208">Eleven Sports 1</channel>
<channel site="programtv.onet.pl" lang="pl" xmltv_id="ElevenSports2.pl" site_id="eleven-sports-212">Eleven Sports 2</channel> <channel site="programtv.onet.pl" lang="pl" xmltv_id="ElevenSports2.pl" site_id="eleven-sports-212">Eleven Sports 2</channel>

View file

@ -1,21 +1,21 @@
# rikstv.no # rikstv.no
https://play.rikstv.no/tv-guide https://play.rikstv.no/tv-guide
### Download the guide ### Download the guide
```sh ```sh
npm run grab --- --site=rikstv.no npm run grab --- --site=rikstv.no
``` ```
### Update channel list ### Update channel list
```sh ```sh
npm run channels:parse --- --config=./sites/rikstv.no/rikstv.no.config.js --output=./sites/rikstv.no/rikstv.no.channels.xml npm run channels:parse --- --config=./sites/rikstv.no/rikstv.no.config.js --output=./sites/rikstv.no/rikstv.no.channels.xml
``` ```
### Test ### Test
```sh ```sh
npm test --- rikstv.no npm test --- rikstv.no
``` ```

View file

@ -1,83 +1,83 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="12">BBC News</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="12">BBC News</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="21">Discovery</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="21">Discovery</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="22">TLC</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="22">TLC</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="23">Disney Channel</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="23">Disney Channel</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="26">Eurosport 1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="26">Eurosport 1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="27">FEM</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="27">FEM</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="29">Frikanalen</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="29">Frikanalen</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="43">REX</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="43">REX</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="45">National Geographic</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="45">National Geographic</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="46">NRK Super/3</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="46">NRK Super/3</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="47">NRK1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="47">NRK1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="48">NRK1 Tegnspråk</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="48">NRK1 Tegnspråk</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="49">NRK2</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="49">NRK2</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="55">SVT1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="55">SVT1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="58">TV 2 Livsstil</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="58">TV 2 Livsstil</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="60">TV 2 Direkte</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="60">TV 2 Direkte</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="61">TV 2 Nyheter</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="61">TV 2 Nyheter</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="68">TV 2 Zebra</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="68">TV 2 Zebra</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="69">TV3</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="69">TV3</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="70">TVNorge</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="70">TVNorge</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="71">TV3+</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="71">TV3+</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="72">Visjon Norge</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="72">Visjon Norge</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="73">VOX</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="73">VOX</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="74">Animal Planet</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="74">Animal Planet</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="75">BBC Nordic</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="75">BBC Nordic</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="76">TV6</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="76">TV6</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="77">History Channel</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="77">History Channel</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="121">Eurosport Norge</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="121">Eurosport Norge</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="142">Nick Jr.</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="142">Nick Jr.</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="143">Nickelodeon</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="143">Nickelodeon</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="201">TV 2 Danmark</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="201">TV 2 Danmark</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="202">DR2</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="202">DR2</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="203">DR1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="203">DR1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="204">SVT2</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="204">SVT2</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="205">TV4</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="205">TV4</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="241">CNN</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="241">CNN</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="281">Discovery Science</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="281">Discovery Science</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="282">Investigation Discovery</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="282">Investigation Discovery</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="283">Norway Live</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="283">Norway Live</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="361">V Sport +</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="361">V Sport +</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="362">V Sport 1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="362">V Sport 1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="363">V Sport 2</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="363">V Sport 2</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="364">V Sport 3</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="364">V Sport 3</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="441">Hits</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="441">Hits</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="461">Stars</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="461">Stars</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="462">SF-kanalen</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="462">SF-kanalen</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="481">TV 2 Sport 1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="481">TV 2 Sport 1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="501">TV 2 Sport 2</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="501">TV 2 Sport 2</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="522">Sky News</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="522">Sky News</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="524">CNBC</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="524">CNBC</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="525">Deutsche Welle</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="525">Deutsche Welle</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="526">France 24</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="526">France 24</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="561">NRK1 Sørlandet</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="561">NRK1 Sørlandet</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="562">NRK1 Nordland</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="562">NRK1 Nordland</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="563">NRK1 Midtnytt</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="563">NRK1 Midtnytt</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="564">NRK1 Vestfold og Telemark</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="564">NRK1 Vestfold og Telemark</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="565">NRK1 Vestlandsrevyen</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="565">NRK1 Vestlandsrevyen</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="567">NRK1 Nordnytt</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="567">NRK1 Nordnytt</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="581">NRK1 Innlandet</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="581">NRK1 Innlandet</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="601">MTV00s</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="601">MTV00s</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="602">TV Nord</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="602">TV Nord</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="619">Travel Channel</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="619">Travel Channel</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="620">Food Network</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="620">Food Network</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="621">Euronews</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="621">Euronews</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="622">Auto Motor og Sport TV</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="622">Auto Motor og Sport TV</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="628">Rikstoto Direkte</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="628">Rikstoto Direkte</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="629">TV Øst</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="629">TV Øst</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="630">NRK1 Rogaland</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="630">NRK1 Rogaland</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="631">NRK1 Møre og Romsdal</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="631">NRK1 Møre og Romsdal</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="632">NRK1 Lydtekst</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="632">NRK1 Lydtekst</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="633">NRK2 Lydtekst</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="633">NRK2 Lydtekst</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="634">NRK3 Super Lydtekst</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="634">NRK3 Super Lydtekst</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="635">Heim TV</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="635">Heim TV</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="642">V sport golf</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="642">V sport golf</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="643">NRK1 Underteksting</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="643">NRK1 Underteksting</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="644">NRK2 Underteksting</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="644">NRK2 Underteksting</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="650">Naturkanal1</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="650">Naturkanal1</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="651">V Film Action</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="651">V Film Action</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="652">V Film Premiere</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="652">V Film Premiere</channel>
<channel site="rikstv.no" lang="no" xmltv_id="" site_id="653">V Series</channel> <channel site="rikstv.no" lang="no" xmltv_id="" site_id="653">V Series</channel>
</channels> </channels>

View file

@ -1,72 +1,76 @@
const dayjs = require('dayjs') const dayjs = require('dayjs')
const utc = require('dayjs/plugin/utc') const utc = require('dayjs/plugin/utc')
const axios = require('axios') const axios = require('axios')
dayjs.extend(utc) dayjs.extend(utc)
module.exports = { module.exports = {
site: 'rikstv.no', site: 'rikstv.no',
days: 3, days: 3,
request: { request: {
cache: { cache: {
ttl: 60 * 60 * 1000 // 1 hour ttl: 60 * 60 * 1000 // 1 hour
} }
}, },
url({ channel, date }) { url({ channel, date }) {
return `https://play.rikstv.no/api/content-search/1/channel/${channel.site_id}/epg/${date.format('YYYY-MM-DD')}` return `https://play.rikstv.no/api/content-search/1/channel/${
}, channel.site_id
parser: function ({ content }) { }/epg/${date.format('YYYY-MM-DD')}`
let data },
try { parser: function ({ content }) {
data = JSON.parse(content) let data
} catch (error) { try {
console.error('Error parsing JSON:', error) data = JSON.parse(content)
return [] } catch (error) {
} console.error('Error parsing JSON:', error)
return []
const programs = [] }
if (data && Array.isArray(data)) { const programs = []
data.forEach(item => {
if (!item) return if (data && Array.isArray(data)) {
//const start = dayjs.utc(item.broadcastedTime) data.forEach(item => {
//const stop = dayjs.utc(item.broadcastedTimeEnd) if (!item) return
//const start = dayjs.utc(item.broadcastedTime)
programs.push({ //const stop = dayjs.utc(item.broadcastedTimeEnd)
title: item.seriesName,
sub_title: item.name, programs.push({
description: item.description || item.synopsis, title: item.seriesName,
season: item.season || null, sub_title: item.name,
episode: item.episode || null, description: item.description || item.synopsis,
category: item.genres, season: item.season || null,
actors: item.actors, episode: item.episode || null,
directors: item.director || item.directors, category: item.genres,
icon: item.imagePackUri, actors: item.actors,
start: item.broadcastedTime, directors: item.director || item.directors,
stop: item.broadcastedTimeEnd icon: item.imagePackUri,
}) start: item.broadcastedTime,
}) stop: item.broadcastedTimeEnd
} })
})
return programs }
},
async channels() { return programs
try { },
const response = await axios.get('https://play.rikstv.no/api/content-search/1/channel?includePrograms=false') async channels() {
if (!response.data || !Array.isArray(response.data)) { try {
console.error('Error: No channels data found') const response = await axios.get(
return [] 'https://play.rikstv.no/api/content-search/1/channel?includePrograms=false'
} )
return response.data.map(item => { if (!response.data || !Array.isArray(response.data)) {
return { console.error('Error: No channels data found')
lang: 'no', return []
site_id: item.channelId, }
name: item.serviceName return response.data.map(item => {
} return {
}) lang: 'no',
} catch (error) { site_id: item.channelId,
console.error('Error fetching channels:', error) name: item.serviceName
return [] }
} })
} } catch (error) {
} console.error('Error fetching channels:', error)
return []
}
}
}

View file

@ -1,66 +1,72 @@
const { parser, url } = require('./rikstv.no.config.js') const { parser, url } = require('./rikstv.no.config.js')
const dayjs = require('dayjs') const dayjs = require('dayjs')
const utc = require('dayjs/plugin/utc') const utc = require('dayjs/plugin/utc')
const customParseFormat = require('dayjs/plugin/customParseFormat') const customParseFormat = require('dayjs/plugin/customParseFormat')
dayjs.extend(customParseFormat) dayjs.extend(customParseFormat)
dayjs.extend(utc) dayjs.extend(utc)
const date = dayjs.utc('2025-01-14', 'YYYY-MM-DD').startOf('d') const date = dayjs.utc('2025-01-14', 'YYYY-MM-DD').startOf('d')
const channel = { const channel = {
site_id: '47', site_id: '47',
xmltv_id: 'NRK1.no' xmltv_id: 'NRK1.no'
} }
describe('rikstv.no Module Tests', () => { describe('rikstv.no Module Tests', () => {
it('can generate valid url', () => { it('can generate valid url', () => {
expect(url({ date, channel })).toBe(`https://play.rikstv.no/api/content-search/1/channel/${channel.site_id}/epg/${date.format('YYYY-MM-DD')}`) expect(url({ date, channel })).toBe(
}) `https://play.rikstv.no/api/content-search/1/channel/${channel.site_id}/epg/${date.format(
'YYYY-MM-DD'
it('can parse response', () => { )}`
const content = JSON.stringify([ )
{ })
seriesName: 'Vakre og ville Oman',
name: 'Vakre og ville Oman', it('can parse response', () => {
description: 'Oman er eit arabisk skattkammer av unike habitat og variert dyreliv. Rev, kvalhai, reptil og skjelpadder er blant skapningane du finn her.', const content = JSON.stringify([
season: 1, {
episode: 1, seriesName: 'Vakre og ville Oman',
genres: ['Dokumentar', 'Fakta', 'Natur'], name: 'Vakre og ville Oman',
actors: ['Gergana Muskalla'], description:
director: 'Stefania Muller', 'Oman er eit arabisk skattkammer av unike habitat og variert dyreliv. Rev, kvalhai, reptil og skjelpadder er blant skapningane du finn her.',
imagePackUri: 'https://imageservice.rikstv.no/hash/EC206C374F42287C0BDF850A7D3CB4D3.jpg', season: 1,
broadcastedTime: '2025-01-13T23:00:00Z', episode: 1,
broadcastedTimeEnd: '2025-01-13T23:55:00Z' genres: ['Dokumentar', 'Fakta', 'Natur'],
} actors: ['Gergana Muskalla'],
]) director: 'Stefania Muller',
imagePackUri: 'https://imageservice.rikstv.no/hash/EC206C374F42287C0BDF850A7D3CB4D3.jpg',
const result = parser({ content }).map(p => { broadcastedTime: '2025-01-13T23:00:00Z',
p.start = dayjs(p.start).toISOString() broadcastedTimeEnd: '2025-01-13T23:55:00Z'
p.stop = dayjs(p.stop).toISOString() }
return p ])
})
const result = parser({ content }).map(p => {
expect(result).toMatchObject([ p.start = dayjs(p.start).toISOString()
{ p.stop = dayjs(p.stop).toISOString()
title: 'Vakre og ville Oman', return p
sub_title: 'Vakre og ville Oman', })
description: 'Oman er eit arabisk skattkammer av unike habitat og variert dyreliv. Rev, kvalhai, reptil og skjelpadder er blant skapningane du finn her.',
season: 1, expect(result).toMatchObject([
episode: 1, {
category: ['Dokumentar', 'Fakta', 'Natur'], title: 'Vakre og ville Oman',
actors: ['Gergana Muskalla'], sub_title: 'Vakre og ville Oman',
directors: 'Stefania Muller', description:
icon: 'https://imageservice.rikstv.no/hash/EC206C374F42287C0BDF850A7D3CB4D3.jpg', 'Oman er eit arabisk skattkammer av unike habitat og variert dyreliv. Rev, kvalhai, reptil og skjelpadder er blant skapningane du finn her.',
start: '2025-01-13T23:00:00.000Z', season: 1,
stop: '2025-01-13T23:55:00.000Z' episode: 1,
} category: ['Dokumentar', 'Fakta', 'Natur'],
]) actors: ['Gergana Muskalla'],
}) directors: 'Stefania Muller',
icon: 'https://imageservice.rikstv.no/hash/EC206C374F42287C0BDF850A7D3CB4D3.jpg',
it('can handle empty guide', () => { start: '2025-01-13T23:00:00.000Z',
const result = parser({ stop: '2025-01-13T23:55:00.000Z'
content: '[]' }
}) ])
expect(result).toMatchObject([]) })
})
}) it('can handle empty guide', () => {
const result = parser({
content: '[]'
})
expect(result).toMatchObject([])
})
})

View file

@ -15432,7 +15432,7 @@
<channel site="sat.tv" lang="ar" xmltv_id="AdenTV.ye" site_id="1#38#عدن">عدن</channel> <channel site="sat.tv" lang="ar" xmltv_id="AdenTV.ye" site_id="1#38#عدن">عدن</channel>
<channel site="sat.tv" lang="ar" xmltv_id="AlAanTV.ae" site_id="1#38#الآن">الآن</channel> <channel site="sat.tv" lang="ar" xmltv_id="AlAanTV.ae" site_id="1#38#الآن">الآن</channel>
<channel site="sat.tv" lang="ar" xmltv_id="AlAoula.ma" site_id="1#38#الاولى">الاولى</channel> <channel site="sat.tv" lang="ar" xmltv_id="AlAoula.ma" site_id="1#38#الاولى">الاولى</channel>
<channel site="sat.tv" lang="ar" xmltv_id="AlArabyTV.uk" site_id="1#38#العربي">العربي</channel> <channel site="sat.tv" lang="ar" xmltv_id="" site_id="1#38#العربي">العربي</channel>
<channel site="sat.tv" lang="ar" xmltv_id="AlEkhbariya.sa" site_id="1#38#السعودية الإخبارية">السعودية الإخبارية</channel> <channel site="sat.tv" lang="ar" xmltv_id="AlEkhbariya.sa" site_id="1#38#السعودية الإخبارية">السعودية الإخبارية</channel>
<channel site="sat.tv" lang="ar" xmltv_id="AlhayatDrama.eg" site_id="1#38#الحياة مسلسلات">الحياة مسلسلات</channel> <channel site="sat.tv" lang="ar" xmltv_id="AlhayatDrama.eg" site_id="1#38#الحياة مسلسلات">الحياة مسلسلات</channel>
<channel site="sat.tv" lang="ar" xmltv_id="AlhayatTV.eg" site_id="1#38#الحياة">الحياة</channel> <channel site="sat.tv" lang="ar" xmltv_id="AlhayatTV.eg" site_id="1#38#الحياة">الحياة</channel>

View file

@ -15472,7 +15472,7 @@
<channel site="sat.tv" lang="en" xmltv_id="AlAhvazTV.ir" site_id="1#33#Al Ahvaz TV">Al Ahvaz TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlAhvazTV.ir" site_id="1#33#Al Ahvaz TV">Al Ahvaz TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlAnwarTV.kw" site_id="1#33#Al Anwar TV">Al Anwar TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlAnwarTV.kw" site_id="1#33#Al Anwar TV">Al Anwar TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlAyyamTV.iq" site_id="1#33#Al Ayyam TV">Al Ayyam TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlAyyamTV.iq" site_id="1#33#Al Ayyam TV">Al Ayyam TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlEman.ye" site_id="1#33#Al Eman">Al Eman</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Al Eman">Al Eman</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlerthAlnabawiChannel.jo" site_id="1#33#Alerth Alnabawi">Alerth Alnabawi</channel> <channel site="sat.tv" lang="en" xmltv_id="AlerthAlnabawiChannel.jo" site_id="1#33#Alerth Alnabawi">Alerth Alnabawi</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlEshraqTV.iq" site_id="1#33#Al Eshraq TV">Al Eshraq TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlEshraqTV.iq" site_id="1#33#Al Eshraq TV">Al Eshraq TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlFallujahTV.iq" site_id="1#33#Al Fallujah TV">Al Fallujah TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlFallujahTV.iq" site_id="1#33#Al Fallujah TV">Al Fallujah TV</channel>
@ -15480,7 +15480,7 @@
<channel site="sat.tv" lang="en" xmltv_id="AlForatTV.iq" site_id="1#33#Al Forat">Al Forat</channel> <channel site="sat.tv" lang="en" xmltv_id="AlForatTV.iq" site_id="1#33#Al Forat">Al Forat</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlghadeerTV.iq" site_id="1#33#Alghadeer TV">Alghadeer TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlghadeerTV.iq" site_id="1#33#Alghadeer TV">Alghadeer TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlGhadTV.eg" site_id="1#33#Al Ghad">Al Ghad</channel> <channel site="sat.tv" lang="en" xmltv_id="AlGhadTV.eg" site_id="1#33#Al Ghad">Al Ghad</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlHadath.ae" site_id="1#33#Al Hadath">Al Hadath</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Al Hadath">Al Hadath</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlHadathAlyoum.eg" site_id="1#33#AlHadath Alyoum">AlHadath Alyoum</channel> <channel site="sat.tv" lang="en" xmltv_id="AlHadathAlyoum.eg" site_id="1#33#AlHadath Alyoum">AlHadath Alyoum</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlHawyah.ye" site_id="1#33#Al Hawyah">Al Hawyah</channel> <channel site="sat.tv" lang="en" xmltv_id="AlHawyah.ye" site_id="1#33#Al Hawyah">Al Hawyah</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlhayatDrama.eg" site_id="1#33#Al Hayah Mosalsalat">Al Hayah Mosalsalat</channel> <channel site="sat.tv" lang="en" xmltv_id="AlhayatDrama.eg" site_id="1#33#Al Hayah Mosalsalat">Al Hayah Mosalsalat</channel>
@ -15497,7 +15497,7 @@
<channel site="sat.tv" lang="en" xmltv_id="AlKawtharTV.ir" site_id="1#33#Al Kawthar TV">Al Kawthar TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlKawtharTV.ir" site_id="1#33#Al Kawthar TV">Al Kawthar TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlkerazaTV.us" site_id="1#33#Alkeraza TV">Alkeraza TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlkerazaTV.us" site_id="1#33#Alkeraza TV">Alkeraza TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AllahdhahTV.ye" site_id="1#33#Allahdhah TV">Allahdhah TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AllahdhahTV.ye" site_id="1#33#Allahdhah TV">Allahdhah TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlMaarefTV.kw" site_id="1#33#Al Maaref TV">Al Maaref TV</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Al Maaref TV">Al Maaref TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlmagdTV.us" site_id="1#33#Almagd TV">Almagd TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlmagdTV.us" site_id="1#33#Almagd TV">Almagd TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlmagharibiaTV.uk" site_id="1#33#Almagharibia TV">Almagharibia TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlmagharibiaTV.uk" site_id="1#33#Almagharibia TV">Almagharibia TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlMahdiTV.us" site_id="1#33#Al Mahdi TV">Al Mahdi TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlMahdiTV.us" site_id="1#33#Al Mahdi TV">Al Mahdi TV</channel>
@ -15516,7 +15516,7 @@
<channel site="sat.tv" lang="en" xmltv_id="AlQamarTV.ae" site_id="1#33#Al Qamar TV">Al Qamar TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlQamarTV.ae" site_id="1#33#Al Qamar TV">Al Qamar TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlQanat9.tr" site_id="1#33#Al Qanat 9">Al Qanat 9</channel> <channel site="sat.tv" lang="en" xmltv_id="AlQanat9.tr" site_id="1#33#Al Qanat 9">Al Qanat 9</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlQudsTodayTV.ps" site_id="1#33#Al Quds Today TV">Al Quds Today TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AlQudsTodayTV.ps" site_id="1#33#Al Quds Today TV">Al Quds Today TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlRafidainTV.iq" site_id="1#33#Al Rafidain TV">Al Rafidain TV</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Al Rafidain TV">Al Rafidain TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlRiyadhRadio.sa" site_id="1#33#Riyad Radio">Riyad Radio</channel> <channel site="sat.tv" lang="en" xmltv_id="AlRiyadhRadio.sa" site_id="1#33#Riyad Radio">Riyad Radio</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlSabah.kw" site_id="1#33#Al Sabah">Al Sabah</channel> <channel site="sat.tv" lang="en" xmltv_id="AlSabah.kw" site_id="1#33#Al Sabah">Al Sabah</channel>
<channel site="sat.tv" lang="en" xmltv_id="AlSaeedah.eg" site_id="1#33#Al Saeedah">Al Saeedah</channel> <channel site="sat.tv" lang="en" xmltv_id="AlSaeedah.eg" site_id="1#33#Al Saeedah">Al Saeedah</channel>
@ -15533,7 +15533,7 @@
<channel site="sat.tv" lang="en" xmltv_id="AryenTV.se" site_id="1#33#Aryen TV">Aryen TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AryenTV.se" site_id="1#33#Aryen TV">Aryen TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AsilTV.ir" site_id="1#33#Asil TV">Asil TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AsilTV.ir" site_id="1#33#Asil TV">Asil TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AtfalMawahebTV.sa" site_id="1#33#Atfal &amp; Mawaheb">Atfal &amp; Mawaheb</channel> <channel site="sat.tv" lang="en" xmltv_id="AtfalMawahebTV.sa" site_id="1#33#Atfal &amp; Mawaheb">Atfal &amp; Mawaheb</channel>
<channel site="sat.tv" lang="en" xmltv_id="AvaTV.iq" site_id="1#33#Ava TV">Ava TV</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Ava TV">Ava TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="AzhariTV.jo" site_id="1#33#Azhari TV">Azhari TV</channel> <channel site="sat.tv" lang="en" xmltv_id="AzhariTV.jo" site_id="1#33#Azhari TV">Azhari TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="B4UPlus.in" site_id="1#33#B4U Plus">B4U Plus</channel> <channel site="sat.tv" lang="en" xmltv_id="B4UPlus.in" site_id="1#33#B4U Plus">B4U Plus</channel>
<channel site="sat.tv" lang="en" xmltv_id="BahiaTV.dz" site_id="1#33#Bahia TV">Bahia TV</channel> <channel site="sat.tv" lang="en" xmltv_id="BahiaTV.dz" site_id="1#33#Bahia TV">Bahia TV</channel>
@ -15561,7 +15561,7 @@
<channel site="sat.tv" lang="en" xmltv_id="DijlahTV.iq" site_id="1#33#Dijlah TV">Dijlah TV</channel> <channel site="sat.tv" lang="en" xmltv_id="DijlahTV.iq" site_id="1#33#Dijlah TV">Dijlah TV</channel>
<channel site="sat.tv" lang="en" xmltv_id="DMC.eg" site_id="1#33#DMC">DMC</channel> <channel site="sat.tv" lang="en" xmltv_id="DMC.eg" site_id="1#33#DMC">DMC</channel>
<channel site="sat.tv" lang="en" xmltv_id="DMCDrama.eg" site_id="1#33#DMC Drama">DMC Drama</channel> <channel site="sat.tv" lang="en" xmltv_id="DMCDrama.eg" site_id="1#33#DMC Drama">DMC Drama</channel>
<channel site="sat.tv" lang="en" xmltv_id="DuaChannel.iq" site_id="1#33#Dua Channel">Dua Channel</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Dua Channel">Dua Channel</channel>
<channel site="sat.tv" lang="en" xmltv_id="DubaiRacing2.ae" site_id="1#33#Dubai Racing 2">Dubai Racing 2</channel> <channel site="sat.tv" lang="en" xmltv_id="DubaiRacing2.ae" site_id="1#33#Dubai Racing 2">Dubai Racing 2</channel>
<channel site="sat.tv" lang="en" xmltv_id="DubaiRacing3.ae" site_id="1#33#Dubai Racing 3">Dubai Racing 3</channel> <channel site="sat.tv" lang="en" xmltv_id="DubaiRacing3.ae" site_id="1#33#Dubai Racing 3">Dubai Racing 3</channel>
<channel site="sat.tv" lang="en" xmltv_id="DubaiSports2.ae" site_id="1#33#Dubai Sports 2">Dubai Sports 2</channel> <channel site="sat.tv" lang="en" xmltv_id="DubaiSports2.ae" site_id="1#33#Dubai Sports 2">Dubai Sports 2</channel>
@ -15610,7 +15610,7 @@
<channel site="sat.tv" lang="en" xmltv_id="MBCMasr.eg" site_id="1#33#MBC Masr">MBC Masr</channel> <channel site="sat.tv" lang="en" xmltv_id="MBCMasr.eg" site_id="1#33#MBC Masr">MBC Masr</channel>
<channel site="sat.tv" lang="en" xmltv_id="MBCMasr2.eg" site_id="1#33#MBC Masr 2">MBC Masr 2</channel> <channel site="sat.tv" lang="en" xmltv_id="MBCMasr2.eg" site_id="1#33#MBC Masr 2">MBC Masr 2</channel>
<channel site="sat.tv" lang="en" xmltv_id="MedMuzik.tr" site_id="1#33#Med Muzîk">Med Muzîk</channel> <channel site="sat.tv" lang="en" xmltv_id="MedMuzik.tr" site_id="1#33#Med Muzîk">Med Muzîk</channel>
<channel site="sat.tv" lang="en" xmltv_id="MekameleenTV.eg" site_id="1#33#Mekameleen">Mekameleen</channel> <channel site="sat.tv" lang="en" xmltv_id="" site_id="1#33#Mekameleen">Mekameleen</channel>
<channel site="sat.tv" lang="en" xmltv_id="MiskFM.tr" site_id="1#33#Misk FM">Misk FM</channel> <channel site="sat.tv" lang="en" xmltv_id="MiskFM.tr" site_id="1#33#Misk FM">Misk FM</channel>
<channel site="sat.tv" lang="en" xmltv_id="MisrAlBalad.eg" site_id="1#33#Misr AlBalad">Misr AlBalad</channel> <channel site="sat.tv" lang="en" xmltv_id="MisrAlBalad.eg" site_id="1#33#Misr AlBalad">Misr AlBalad</channel>
<channel site="sat.tv" lang="en" xmltv_id="MixBelAraby.eg" site_id="1#33#Mix bel Araby TV">Mix bel Araby TV</channel> <channel site="sat.tv" lang="en" xmltv_id="MixBelAraby.eg" site_id="1#33#Mix bel Araby TV">Mix bel Araby TV</channel>

View file

@ -52,7 +52,7 @@
<channel site="shahid.mbc.net" lang="ar" xmltv_id="AlAanTV.ae" site_id="996520">الآن</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="AlAanTV.ae" site_id="996520">الآن</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="Alarabiya.ae" site_id="387286">العربية</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="Alarabiya.ae" site_id="387286">العربية</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="AlArabiyaBusiness.ae" site_id="1003218">العربية Business</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="AlArabiyaBusiness.ae" site_id="1003218">العربية Business</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="AlHadath.ae" site_id="387288">الحدث</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387288">الحدث</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="AlikhbariaSyria.sy" site_id="946948">الإخبارية</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="AlikhbariaSyria.sy" site_id="946948">الإخبارية</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="AlQuranAlKareemTV.sa" site_id="946946">القرآن الكريم</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="AlQuranAlKareemTV.sa" site_id="946946">القرآن الكريم</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="AlSaudiya.sa" site_id="946938">السعودية</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="AlSaudiya.sa" site_id="946938">السعودية</channel>
@ -74,11 +74,11 @@
<channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCBollywood.ae" site_id="409387">MBC Bollywood</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCBollywood.ae" site_id="409387">MBC Bollywood</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCDrama.ae" site_id="387251">MBC Drama</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCDrama.ae" site_id="387251">MBC Drama</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCFM.ae" site_id="388567">MBC FM</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCFM.ae" site_id="388567">MBC FM</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCIraq.ae" site_id="387294">MBC Iraq</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387294">MBC Iraq</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387293">MBC Masr2</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387293">MBC Masr2</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387290">MBC Masr</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387290">MBC Masr</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCPersia.ae" site_id="418308">MBC Persia</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCPersia.ae" site_id="418308">MBC Persia</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="MBCPlusDrama.ae" site_id="387296">MBC Plus Drama</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="" site_id="387296">MBC Plus Drama</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="NatureTime.es" site_id="999399">Nature Time</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="NatureTime.es" site_id="999399">Nature Time</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="RotanaCinemaEgypt.eg" site_id="820506">Rotana Cinema EGY</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="RotanaCinemaEgypt.eg" site_id="820506">Rotana Cinema EGY</channel>
<channel site="shahid.mbc.net" lang="ar" xmltv_id="RotanaCinemaKSA.sa" site_id="820505">Rotana Cinema KSA</channel> <channel site="shahid.mbc.net" lang="ar" xmltv_id="RotanaCinemaKSA.sa" site_id="820505">Rotana Cinema KSA</channel>

View file

@ -52,7 +52,7 @@
<channel site="shahid.mbc.net" lang="en" xmltv_id="AlAanTV.ae" site_id="996520">Al Aan TV</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="AlAanTV.ae" site_id="996520">Al Aan TV</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="Alarabiya.ae" site_id="387286">Al Arabiya</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="Alarabiya.ae" site_id="387286">Al Arabiya</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="AlArabiyaBusiness.ae" site_id="1003218">Al Arabiya Business</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="AlArabiyaBusiness.ae" site_id="1003218">Al Arabiya Business</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="AlHadath.ae" site_id="387288">Al Hadath</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387288">Al Hadath</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="AlikhbariaSyria.sy" site_id="946948">Alikhbariya</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="AlikhbariaSyria.sy" site_id="946948">Alikhbariya</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="AlQuranAlKareemTV.sa" site_id="946946">Al Quraan al Kareem</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="AlQuranAlKareemTV.sa" site_id="946946">Al Quraan al Kareem</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="AlSaudiya.sa" site_id="946938">AlSaudia</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="AlSaudiya.sa" site_id="946938">AlSaudia</channel>
@ -74,11 +74,11 @@
<channel site="shahid.mbc.net" lang="en" xmltv_id="MBCBollywood.ae" site_id="409387">MBC Bollywood</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="MBCBollywood.ae" site_id="409387">MBC Bollywood</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="MBCDrama.ae" site_id="387251">MBC Drama</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="MBCDrama.ae" site_id="387251">MBC Drama</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="MBCFM.ae" site_id="388567">MBC FM</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="MBCFM.ae" site_id="388567">MBC FM</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="MBCIraq.ae" site_id="387294">MBC Iraq</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387294">MBC Iraq</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387293">MBC Masr2</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387293">MBC Masr2</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387290">MBC Masr</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387290">MBC Masr</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="MBCPersia.ae" site_id="418308">MBC Persia</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="MBCPersia.ae" site_id="418308">MBC Persia</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="MBCPlusDrama.ae" site_id="387296">MBC Plus Drama</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="" site_id="387296">MBC Plus Drama</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="NatureTime.es" site_id="999399">Nature Time</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="NatureTime.es" site_id="999399">Nature Time</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="RotanaCinemaEgypt.eg" site_id="820506">Rotana Cinema EGY</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="RotanaCinemaEgypt.eg" site_id="820506">Rotana Cinema EGY</channel>
<channel site="shahid.mbc.net" lang="en" xmltv_id="RotanaCinemaKSA.sa" site_id="820505">Rotana Cinema KSA</channel> <channel site="shahid.mbc.net" lang="en" xmltv_id="RotanaCinemaKSA.sa" site_id="820505">Rotana Cinema KSA</channel>

View file

@ -52,7 +52,7 @@
<channel site="shahid.mbc.net" lang="fr" xmltv_id="AlAanTV.ae" site_id="996520">Al Aan TV</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="AlAanTV.ae" site_id="996520">Al Aan TV</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="Alarabiya.ae" site_id="387286">Al Arabiya</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="Alarabiya.ae" site_id="387286">Al Arabiya</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="AlArabiyaBusiness.ae" site_id="1003218">Al Arabiya Business</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="AlArabiyaBusiness.ae" site_id="1003218">Al Arabiya Business</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="AlHadath.ae" site_id="387288">Al Hadath</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387288">Al Hadath</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="AlikhbariaSyria.sy" site_id="946948">Alikhbariya</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="AlikhbariaSyria.sy" site_id="946948">Alikhbariya</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="AlQuranAlKareemTV.sa" site_id="946946">Al Quraan al Kareem</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="AlQuranAlKareemTV.sa" site_id="946946">Al Quraan al Kareem</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="AlSaudiya.sa" site_id="946938">AlSaudia</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="AlSaudiya.sa" site_id="946938">AlSaudia</channel>
@ -74,11 +74,11 @@
<channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCBollywood.ae" site_id="409387">MBC Bollywood</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCBollywood.ae" site_id="409387">MBC Bollywood</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCDrama.ae" site_id="387251">MBC Drama</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCDrama.ae" site_id="387251">MBC Drama</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCFM.ae" site_id="388567">MBC FM</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCFM.ae" site_id="388567">MBC FM</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCIraq.ae" site_id="387294">MBC Iraq</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387294">MBC Iraq</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387293">MBC Masr2</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387293">MBC Masr2</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387290">MBC Masr</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387290">MBC Masr</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCPersia.ae" site_id="418308">MBC Persia</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCPersia.ae" site_id="418308">MBC Persia</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="MBCPlusDrama.ae" site_id="387296">MBC Plus Drama</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="" site_id="387296">MBC Plus Drama</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="NatureTime.es" site_id="999399">Nature Time</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="NatureTime.es" site_id="999399">Nature Time</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="RotanaCinemaEgypt.eg" site_id="820506">Rotana Cinema EGY</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="RotanaCinemaEgypt.eg" site_id="820506">Rotana Cinema EGY</channel>
<channel site="shahid.mbc.net" lang="fr" xmltv_id="RotanaCinemaKSA.sa" site_id="820505">Rotana Cinema KSA</channel> <channel site="shahid.mbc.net" lang="fr" xmltv_id="RotanaCinemaKSA.sa" site_id="820505">Rotana Cinema KSA</channel>

View file

@ -90,10 +90,10 @@
<channel site="sky.com" lang="en" xmltv_id="AhlebaitTV.uk" site_id="6765">Ahlebait TV</channel> <channel site="sky.com" lang="en" xmltv_id="AhlebaitTV.uk" site_id="6765">Ahlebait TV</channel>
<channel site="sky.com" lang="en" xmltv_id="AkaalChannel.uk" site_id="5087">Akaal Channel</channel> <channel site="sky.com" lang="en" xmltv_id="AkaalChannel.uk" site_id="5087">Akaal Channel</channel>
<channel site="sky.com" lang="en" xmltv_id="alibi.ie" site_id="2330">U&amp;Alibi</channel> <channel site="sky.com" lang="en" xmltv_id="alibi.ie" site_id="2330">U&amp;Alibi</channel>
<channel site="sky.com" lang="en" xmltv_id="alibi.uk" site_id="2303">U&amp;Alibi</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2303">U&amp;Alibi</channel>
<channel site="sky.com" lang="en" xmltv_id="alibiHD.ie" site_id="3077">U&amp;Alibi HD</channel> <channel site="sky.com" lang="en" xmltv_id="alibiHD.ie" site_id="3077">U&amp;Alibi HD</channel>
<channel site="sky.com" lang="en" xmltv_id="alibiHD.uk" site_id="3825">U&amp;Alibi HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="3825">U&amp;Alibi HD</channel>
<channel site="sky.com" lang="en" xmltv_id="alibiPlus1.uk" site_id="2630">U&amp;Alibi+1</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2630">U&amp;Alibi+1</channel>
<channel site="sky.com" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="1023">Al Jazeera HD</channel> <channel site="sky.com" lang="en" xmltv_id="AlJazeeraEnglish.qa" site_id="1023">Al Jazeera HD</channel>
<channel site="sky.com" lang="en" xmltv_id="AnimalPlanet.uk" site_id="2402">Animal Planet</channel> <channel site="sky.com" lang="en" xmltv_id="AnimalPlanet.uk" site_id="2402">Animal Planet</channel>
<channel site="sky.com" lang="en" xmltv_id="AnimalPlanetPlus1.uk" site_id="1352">Animal Plnt+1</channel> <channel site="sky.com" lang="en" xmltv_id="AnimalPlanetPlus1.uk" site_id="1352">Animal Plnt+1</channel>
@ -104,7 +104,7 @@
<channel site="sky.com" lang="en" xmltv_id="B4UMoviesUK.uk" site_id="5703">B4U Movies</channel> <channel site="sky.com" lang="en" xmltv_id="B4UMoviesUK.uk" site_id="5703">B4U Movies</channel>
<channel site="sky.com" lang="en" xmltv_id="B4UMusicUK.uk" site_id="5708">B4U Music</channel> <channel site="sky.com" lang="en" xmltv_id="B4UMusicUK.uk" site_id="5708">B4U Music</channel>
<channel site="sky.com" lang="en" xmltv_id="BabyTV.uk" site_id="3645">BabyTV</channel> <channel site="sky.com" lang="en" xmltv_id="BabyTV.uk" site_id="3645">BabyTV</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCALBAHD.uk" site_id="3021">BBC ALBA HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="3021">BBC ALBA HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCFourHD.ie" site_id="2091">BBC Four HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCFourHD.ie" site_id="2091">BBC Four HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCFourHD.uk" site_id="2086">BBC Four HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCFourHD.uk" site_id="2086">BBC Four HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCNewsHD.uk" site_id="2085">BBC NEWS HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCNewsHD.uk" site_id="2085">BBC NEWS HD</channel>
@ -128,7 +128,7 @@
<channel site="sky.com" lang="en" xmltv_id="BBCParliamentHD.uk" site_id="3020">BBC Parl HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCParliamentHD.uk" site_id="3020">BBC Parl HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCRedButton1HD.uk" site_id="2053">BBC RB 1 HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCRedButton1HD.uk" site_id="2053">BBC RB 1 HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCScotlandHD.uk" site_id="1138">BBCScotlandHD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCScotlandHD.uk" site_id="1138">BBCScotlandHD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCThreeHD.ie" site_id="2084">BBC Three HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2084">BBC Three HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCThreeHD.uk" site_id="2080">BBC Three HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCThreeHD.uk" site_id="2080">BBC Three HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCTwoHD.uk" site_id="2075">BBC Two HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCTwoHD.uk" site_id="2075">BBC Two HD</channel>
<channel site="sky.com" lang="en" xmltv_id="BBCTwoNorthernIrelandHD.ie" site_id="1135">BBC Two NI HD</channel> <channel site="sky.com" lang="en" xmltv_id="BBCTwoNorthernIrelandHD.ie" site_id="1135">BBC Two NI HD</channel>
@ -197,10 +197,10 @@
<channel site="sky.com" lang="en" xmltv_id="Cruise1stTV.uk" site_id="1018">Cruise1st.tv</channel> <channel site="sky.com" lang="en" xmltv_id="Cruise1stTV.uk" site_id="1018">Cruise1st.tv</channel>
<channel site="sky.com" lang="en" xmltv_id="Cula4HD.ie" site_id="1861">Cúla4 HD</channel> <channel site="sky.com" lang="en" xmltv_id="Cula4HD.ie" site_id="1861">Cúla4 HD</channel>
<channel site="sky.com" lang="en" xmltv_id="Dave.ie" site_id="2376">U&amp;Dave</channel> <channel site="sky.com" lang="en" xmltv_id="Dave.ie" site_id="2376">U&amp;Dave</channel>
<channel site="sky.com" lang="en" xmltv_id="Dave.uk" site_id="2306">U&amp;Dave</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2306">U&amp;Dave</channel>
<channel site="sky.com" lang="en" xmltv_id="DaveHD.ie" site_id="3078">U&amp;Dave HD</channel> <channel site="sky.com" lang="en" xmltv_id="DaveHD.ie" site_id="3078">U&amp;Dave HD</channel>
<channel site="sky.com" lang="en" xmltv_id="DaveHD.uk" site_id="3809">U&amp;Dave HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="3809">U&amp;Dave HD</channel>
<channel site="sky.com" lang="en" xmltv_id="Davejavu.uk" site_id="2320">U&amp;DaveJaVu</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2320">U&amp;DaveJaVu</channel>
<channel site="sky.com" lang="en" xmltv_id="DaystarTV.us" site_id="5541">DAYSTAR HD</channel> <channel site="sky.com" lang="en" xmltv_id="DaystarTV.us" site_id="5541">DAYSTAR HD</channel>
<channel site="sky.com" lang="en" xmltv_id="DeenTV.uk" site_id="1235">Deen TV</channel> <channel site="sky.com" lang="en" xmltv_id="DeenTV.uk" site_id="1235">Deen TV</channel>
<channel site="sky.com" lang="en" xmltv_id="DiscoveryChannel.ie" site_id="1370">Discovery</channel> <channel site="sky.com" lang="en" xmltv_id="DiscoveryChannel.ie" site_id="1370">Discovery</channel>
@ -217,8 +217,8 @@
<channel site="sky.com" lang="en" xmltv_id="DMAX.uk" site_id="3618">DMAX</channel> <channel site="sky.com" lang="en" xmltv_id="DMAX.uk" site_id="3618">DMAX</channel>
<channel site="sky.com" lang="en" xmltv_id="DMAXPlus1.uk" site_id="1865">DMAX+1</channel> <channel site="sky.com" lang="en" xmltv_id="DMAXPlus1.uk" site_id="1865">DMAX+1</channel>
<channel site="sky.com" lang="en" xmltv_id="Drama.ie" site_id="2613">U&amp;Drama</channel> <channel site="sky.com" lang="en" xmltv_id="Drama.ie" site_id="2613">U&amp;Drama</channel>
<channel site="sky.com" lang="en" xmltv_id="Drama.uk" site_id="2612">U&amp;Drama</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2612">U&amp;Drama</channel>
<channel site="sky.com" lang="en" xmltv_id="DramaPlus1.uk" site_id="1081">U&amp;Drama+1</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="1081">U&amp;Drama+1</channel>
<channel site="sky.com" lang="en" xmltv_id="DunamisTV.ng" site_id="1191">Dunamis TV</channel> <channel site="sky.com" lang="en" xmltv_id="DunamisTV.ng" site_id="1191">Dunamis TV</channel>
<channel site="sky.com" lang="en" xmltv_id="E4.ie" site_id="1637">E4</channel> <channel site="sky.com" lang="en" xmltv_id="E4.ie" site_id="1637">E4</channel>
<channel site="sky.com" lang="en" xmltv_id="E4.uk" site_id="1628">E4</channel> <channel site="sky.com" lang="en" xmltv_id="E4.uk" site_id="1628">E4</channel>
@ -226,8 +226,8 @@
<channel site="sky.com" lang="en" xmltv_id="E4HD.uk" site_id="4076">E4 HD</channel> <channel site="sky.com" lang="en" xmltv_id="E4HD.uk" site_id="4076">E4 HD</channel>
<channel site="sky.com" lang="en" xmltv_id="E4Plus1.ie" site_id="1668">E4+1</channel> <channel site="sky.com" lang="en" xmltv_id="E4Plus1.ie" site_id="1668">E4+1</channel>
<channel site="sky.com" lang="en" xmltv_id="E4Plus1.uk" site_id="3300">E4+1</channel> <channel site="sky.com" lang="en" xmltv_id="E4Plus1.uk" site_id="3300">E4+1</channel>
<channel site="sky.com" lang="en" xmltv_id="Eden.uk" site_id="2302">U&amp;Eden</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2302">U&amp;Eden</channel>
<channel site="sky.com" lang="en" xmltv_id="EdenPlus1.uk" site_id="2307">U&amp;Eden+1</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2307">U&amp;Eden+1</channel>
<channel site="sky.com" lang="en" xmltv_id="EmanChannel.uk" site_id="3111">Eman Channel</channel> <channel site="sky.com" lang="en" xmltv_id="EmanChannel.uk" site_id="3111">Eman Channel</channel>
<channel site="sky.com" lang="en" xmltv_id="EuronewsEnglish.fr" site_id="4604">Euronews</channel> <channel site="sky.com" lang="en" xmltv_id="EuronewsEnglish.fr" site_id="4604">Euronews</channel>
<channel site="sky.com" lang="en" xmltv_id="Eurosport1.uk" site_id="1726">Eurosport 1</channel> <channel site="sky.com" lang="en" xmltv_id="Eurosport1.uk" site_id="1726">Eurosport 1</channel>
@ -248,12 +248,12 @@
<channel site="sky.com" lang="en" xmltv_id="GBNews.uk" site_id="1196">GB News HD</channel> <channel site="sky.com" lang="en" xmltv_id="GBNews.uk" site_id="1196">GB News HD</channel>
<channel site="sky.com" lang="en" xmltv_id="GemsTV.uk" site_id="3010">Gems TV</channel> <channel site="sky.com" lang="en" xmltv_id="GemsTV.uk" site_id="3010">Gems TV</channel>
<channel site="sky.com" lang="en" xmltv_id="GeoNewsInternational.pk" site_id="4407">GEO News</channel> <channel site="sky.com" lang="en" xmltv_id="GeoNewsInternational.pk" site_id="4407">GEO News</channel>
<channel site="sky.com" lang="en" xmltv_id="GeoUK.uk" site_id="4110">GEO TV</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="4110">GEO TV</channel>
<channel site="sky.com" lang="en" xmltv_id="GODTV.uk" site_id="3105">GOD Channel</channel> <channel site="sky.com" lang="en" xmltv_id="GODTV.uk" site_id="3105">GOD Channel</channel>
<channel site="sky.com" lang="en" xmltv_id="GOLD.ie" site_id="2365">U&amp;Gold</channel> <channel site="sky.com" lang="en" xmltv_id="GOLD.ie" site_id="2365">U&amp;Gold</channel>
<channel site="sky.com" lang="en" xmltv_id="GOLD.uk" site_id="2304">U&amp;Gold</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2304">U&amp;Gold</channel>
<channel site="sky.com" lang="en" xmltv_id="GOLDHD.uk" site_id="6513">U&amp;Gold HD</channel> <channel site="sky.com" lang="en" xmltv_id="GOLDHD.uk" site_id="6513">U&amp;Gold HD</channel>
<channel site="sky.com" lang="en" xmltv_id="GOLDPlus1.uk" site_id="2703">U&amp;Gold+1</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2703">U&amp;Gold+1</channel>
<channel site="sky.com" lang="en" xmltv_id="GREATaction.uk" site_id="3708">GREAT! action</channel> <channel site="sky.com" lang="en" xmltv_id="GREATaction.uk" site_id="3708">GREAT! action</channel>
<channel site="sky.com" lang="en" xmltv_id="GREATactionPlus1.uk" site_id="3721">GREAT!action+1</channel> <channel site="sky.com" lang="en" xmltv_id="GREATactionPlus1.uk" site_id="3721">GREAT!action+1</channel>
<channel site="sky.com" lang="en" xmltv_id="GREATmovies.ie" site_id="1318">GREAT! movies</channel> <channel site="sky.com" lang="en" xmltv_id="GREATmovies.ie" site_id="1318">GREAT! movies</channel>
@ -322,7 +322,7 @@
<channel site="sky.com" lang="en" xmltv_id="Legend.uk" site_id="4610">LEGEND</channel> <channel site="sky.com" lang="en" xmltv_id="Legend.uk" site_id="4610">LEGEND</channel>
<channel site="sky.com" lang="en" xmltv_id="LFCTV.uk" site_id="3845">LFCTV HD</channel> <channel site="sky.com" lang="en" xmltv_id="LFCTV.uk" site_id="3845">LFCTV HD</channel>
<channel site="sky.com" lang="en" xmltv_id="LondonLive.uk" site_id="5090">London Live</channel> <channel site="sky.com" lang="en" xmltv_id="LondonLive.uk" site_id="5090">London Live</channel>
<channel site="sky.com" lang="en" xmltv_id="LoveWorldUK.uk" site_id="1228">LoveWorld HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="1228">LoveWorld HD</channel>
<channel site="sky.com" lang="en" xmltv_id="MadaniChannelEnglish.pk" site_id="4460">Madani Chnl</channel> <channel site="sky.com" lang="en" xmltv_id="MadaniChannelEnglish.pk" site_id="4460">Madani Chnl</channel>
<channel site="sky.com" lang="en" xmltv_id="MasalaTV.pk" site_id="1069">HUM Masala</channel> <channel site="sky.com" lang="en" xmltv_id="MasalaTV.pk" site_id="1069">HUM Masala</channel>
<channel site="sky.com" lang="en" xmltv_id="MATVChannel.uk" site_id="3401">MATV National</channel> <channel site="sky.com" lang="en" xmltv_id="MATVChannel.uk" site_id="3401">MATV National</channel>
@ -560,14 +560,14 @@
<channel site="sky.com" lang="en" xmltv_id="VirginMediaThree.ie" site_id="2817">Virgin Three</channel> <channel site="sky.com" lang="en" xmltv_id="VirginMediaThree.ie" site_id="2817">Virgin Three</channel>
<channel site="sky.com" lang="en" xmltv_id="VirginMediaTwoHD.ie" site_id="1046">Virgin Two HD</channel> <channel site="sky.com" lang="en" xmltv_id="VirginMediaTwoHD.ie" site_id="1046">Virgin Two HD</channel>
<channel site="sky.com" lang="en" xmltv_id="W.ie" site_id="5880">U&amp;W</channel> <channel site="sky.com" lang="en" xmltv_id="W.ie" site_id="5880">U&amp;W</channel>
<channel site="sky.com" lang="en" xmltv_id="W.uk" site_id="2617">U&amp;W</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2617">U&amp;W</channel>
<channel site="sky.com" lang="en" xmltv_id="WHD.ie" site_id="3080">U&amp;W HD</channel> <channel site="sky.com" lang="en" xmltv_id="WHD.ie" site_id="3080">U&amp;W HD</channel>
<channel site="sky.com" lang="en" xmltv_id="WHD.uk" site_id="3810">U&amp;W HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="3810">U&amp;W HD</channel>
<channel site="sky.com" lang="en" xmltv_id="WION.in" site_id="1084">WION HD</channel> <channel site="sky.com" lang="en" xmltv_id="WION.in" site_id="1084">WION HD</channel>
<channel site="sky.com" lang="en" xmltv_id="WPlus1.uk" site_id="2616">U&amp;W+1</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2616">U&amp;W+1</channel>
<channel site="sky.com" lang="en" xmltv_id="Yesterday.uk" site_id="2305">U&amp;Yesterday</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2305">U&amp;Yesterday</channel>
<channel site="sky.com" lang="en" xmltv_id="YesterdayHD.uk" site_id="1139">U&amp;Yesterday HD</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="1139">U&amp;Yesterday HD</channel>
<channel site="sky.com" lang="en" xmltv_id="YesterdayPlus1.uk" site_id="2615">U&amp;Yesterday+1</channel> <channel site="sky.com" lang="en" xmltv_id="" site_id="2615">U&amp;Yesterday+1</channel>
<channel site="sky.com" lang="en" xmltv_id="ZeeCinemaUK.uk" site_id="2608">Zee Cinema</channel> <channel site="sky.com" lang="en" xmltv_id="ZeeCinemaUK.uk" site_id="2608">Zee Cinema</channel>
<channel site="sky.com" lang="en" xmltv_id="ZeePunjabi.in" site_id="1188">Zee Punjabi</channel> <channel site="sky.com" lang="en" xmltv_id="ZeePunjabi.in" site_id="1188">Zee Punjabi</channel>
<channel site="sky.com" lang="en" xmltv_id="ZeeTVUK.uk" site_id="2607">Zee TV</channel> <channel site="sky.com" lang="en" xmltv_id="ZeeTVUK.uk" site_id="2607">Zee TV</channel>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<channels> <channels>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="WOWOWCinema.jp" site_id="basic_BS193">WOWOWシネマ</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="WOWOWCinema.jp" site_id="basic_BS193">WOWOWシネマ</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="StarChannel1.jp" site_id="basic_BS200">スターチャンネル</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="basic_BS200">スターチャンネル</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="WOWOWPlus.jp" site_id="basic_BS252">WOWOWプラス 映画・ドラマ・スポーツ・音楽</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="WOWOWPlus.jp" site_id="basic_BS252">WOWOWプラス 映画・ドラマ・スポーツ・音楽</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="NihonEigaSenmonChannel.jp" site_id="basic_BS255">日本映画専門チャンネル</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="NihonEigaSenmonChannel.jp" site_id="basic_BS255">日本映画専門チャンネル</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="ToeiChannel.jp" site_id="basic_CS218">東映チャンネル</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="ToeiChannel.jp" site_id="basic_CS218">東映チャンネル</channel>
@ -78,13 +78,13 @@
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan5.jp" site_id="premium_585">スカチャン5</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan5.jp" site_id="premium_585">スカチャン5</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan6.jp" site_id="premium_586">スカチャン6</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan6.jp" site_id="premium_586">スカチャン6</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan7.jp" site_id="premium_587">スカチャン7</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan7.jp" site_id="premium_587">スカチャン7</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan8.jp" site_id="premium_588">スカチャン8</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="premium_588">スカチャン8</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan9.jp" site_id="premium_589">スカチャン9</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="premium_589">スカチャン9</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan10.jp" site_id="premium_590">スカチャン10</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="premium_590">スカチャン10</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan11.jp" site_id="premium_591">スカチャン11</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="premium_591">スカチャン11</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan12.jp" site_id="premium_592">スカチャン12</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan12.jp" site_id="premium_592">スカチャン12</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan13.jp" site_id="premium_593">スカチャン13</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="premium_593">スカチャン13</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="Sukachan14.jp" site_id="premium_594">スカチャン14</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="" site_id="premium_594">スカチャン14</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="MusicJapanTV.jp" site_id="premium_639">ミュージック・ジャパンTV</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="MusicJapanTV.jp" site_id="premium_639">ミュージック・ジャパンTV</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="MusicGraffitiTV.jp" site_id="premium_645">ミュージック・グラフィティTV</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="MusicGraffitiTV.jp" site_id="premium_645">ミュージック・グラフィティTV</channel>
<channel site="skyperfectv.co.jp" lang="ja" xmltv_id="AsiaDramaticTV.jp" site_id="premium_655">アジアドラマチックTVアジドラ</channel> <channel site="skyperfectv.co.jp" lang="ja" xmltv_id="AsiaDramaticTV.jp" site_id="premium_655">アジアドラマチックTVアジドラ</channel>

View file

@ -9,6 +9,6 @@
<channel site="snrt.ma" lang="ar" xmltv_id="Arryadia.ma" site_id="4070">Arryadia</channel> <channel site="snrt.ma" lang="ar" xmltv_id="Arryadia.ma" site_id="4070">Arryadia</channel>
<channel site="snrt.ma" lang="ar" xmltv_id="Assadissa.ma" site_id="4073">Assadissa</channel> <channel site="snrt.ma" lang="ar" xmltv_id="Assadissa.ma" site_id="4073">Assadissa</channel>
<channel site="snrt.ma" lang="ar" xmltv_id="Athaqafia.ma" site_id="4071">Athaqafia</channel> <channel site="snrt.ma" lang="ar" xmltv_id="Athaqafia.ma" site_id="4071">Athaqafia</channel>
<channel site="snrt.ma" lang="ar" xmltv_id="Laayoune.ma" site_id="4069">Laâyoune</channel> <channel site="snrt.ma" lang="ar" xmltv_id="" site_id="4069">Laâyoune</channel>
<channel site="snrt.ma" lang="ar" xmltv_id="Tamazight.ma" site_id="4075">Tamazight</channel> <channel site="snrt.ma" lang="ar" xmltv_id="" site_id="4075">Tamazight</channel>
</channels> </channels>

View file

@ -7,6 +7,6 @@
<channel site="sporttv.pt" lang="pt" xmltv_id="SportTV4.pt" site_id="5406">SPORT.TV4</channel> <channel site="sporttv.pt" lang="pt" xmltv_id="SportTV4.pt" site_id="5406">SPORT.TV4</channel>
<channel site="sporttv.pt" lang="pt" xmltv_id="SportTV5.pt" site_id="5422">SPORT.TV5</channel> <channel site="sporttv.pt" lang="pt" xmltv_id="SportTV5.pt" site_id="5422">SPORT.TV5</channel>
<channel site="sporttv.pt" lang="pt" xmltv_id="SportTV6.pt" site_id="7577">SPORT.TV6</channel> <channel site="sporttv.pt" lang="pt" xmltv_id="SportTV6.pt" site_id="7577">SPORT.TV6</channel>
<channel site="sporttv.pt" lang="pt" xmltv_id="SportTV7.pt" site_id="7600">SPORT.TV7</channel> <channel site="sporttv.pt" lang="pt" xmltv_id="" site_id="7600">SPORT.TV7</channel>
<channel site="sporttv.pt" lang="pt" xmltv_id="NBATVInternational.us" site_id="7386">NBA TV</channel> <channel site="sporttv.pt" lang="pt" xmltv_id="NBATVInternational.us" site_id="7386">NBA TV</channel>
</channels> </channels>

View file

@ -75,9 +75,9 @@
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports2.sg" site_id="3c292157-4cf2-48bf-9608-c0ef8ab79cc5">Hub Sports 2 HD</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports2.sg" site_id="3c292157-4cf2-48bf-9608-c0ef8ab79cc5">Hub Sports 2 HD</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports3.sg" site_id="9511afb0-2af8-4a1a-9d54-1395924edf91">Hub Sports 3 HD</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports3.sg" site_id="9511afb0-2af8-4a1a-9d54-1395924edf91">Hub Sports 3 HD</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports4.sg" site_id="1944dfe8-b8e6-46c2-a700-78d5b680e2ac">Hub Sports 4 HD</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports4.sg" site_id="1944dfe8-b8e6-46c2-a700-78d5b680e2ac">Hub Sports 4 HD</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports5.sg" site_id="eac9d5cf-9291-4900-adbd-b81551cbeeb3">Hub Sports 5 HD</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="" site_id="eac9d5cf-9291-4900-adbd-b81551cbeeb3">Hub Sports 5 HD</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports6.sg" site_id="c691a121-f6a9-450d-bd1c-cb41107b65b6">Hub Sports 6</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="" site_id="c691a121-f6a9-450d-bd1c-cb41107b65b6">Hub Sports 6</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubSports7.sg" site_id="b4ff91f4-7aa6-4e06-ab58-d3932bcbb496">Hub Sports 7</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="" site_id="b4ff91f4-7aa6-4e06-ab58-d3932bcbb496">Hub Sports 7</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="HubVVDrama.sg" site_id="ce5ca9b4-9dca-412f-ac30-252144c124e3">Hub VVDrama</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="HubVVDrama.sg" site_id="ce5ca9b4-9dca-412f-ac30-252144c124e3">Hub VVDrama</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="Jade.hk" site_id="5bc5b18c-b12c-462f-b49a-8056b74d72a3">TVB Jade HD</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="Jade.hk" site_id="5bc5b18c-b12c-462f-b49a-8056b74d72a3">TVB Jade HD</channel>
<channel site="starhubtvplus.com" lang="en" xmltv_id="KalaignarTV.in" site_id="d99214cd-fcdf-4613-8106-55e248d3b608">Kalaignar TV</channel> <channel site="starhubtvplus.com" lang="en" xmltv_id="KalaignarTV.in" site_id="d99214cd-fcdf-4613-8106-55e248d3b608">Kalaignar TV</channel>

View file

@ -75,9 +75,9 @@
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports2.sg" site_id="3c292157-4cf2-48bf-9608-c0ef8ab79cc5">Hub Sports 2 HD</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports2.sg" site_id="3c292157-4cf2-48bf-9608-c0ef8ab79cc5">Hub Sports 2 HD</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports3.sg" site_id="9511afb0-2af8-4a1a-9d54-1395924edf91">Hub Sports 3 HD</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports3.sg" site_id="9511afb0-2af8-4a1a-9d54-1395924edf91">Hub Sports 3 HD</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports4.sg" site_id="1944dfe8-b8e6-46c2-a700-78d5b680e2ac">Hub Sports 4 HD</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports4.sg" site_id="1944dfe8-b8e6-46c2-a700-78d5b680e2ac">Hub Sports 4 HD</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports5.sg" site_id="eac9d5cf-9291-4900-adbd-b81551cbeeb3">Hub Sports 5 HD</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="" site_id="eac9d5cf-9291-4900-adbd-b81551cbeeb3">Hub Sports 5 HD</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports6.sg" site_id="c691a121-f6a9-450d-bd1c-cb41107b65b6">Hub Sports 6</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="" site_id="c691a121-f6a9-450d-bd1c-cb41107b65b6">Hub Sports 6</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubSports7.sg" site_id="b4ff91f4-7aa6-4e06-ab58-d3932bcbb496">Hub Sports 7</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="" site_id="b4ff91f4-7aa6-4e06-ab58-d3932bcbb496">Hub Sports 7</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="HubVVDrama.sg" site_id="ce5ca9b4-9dca-412f-ac30-252144c124e3">Hub VVDrama</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="HubVVDrama.sg" site_id="ce5ca9b4-9dca-412f-ac30-252144c124e3">Hub VVDrama</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="Jade.hk" site_id="5bc5b18c-b12c-462f-b49a-8056b74d72a3">TVB Jade HD</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="Jade.hk" site_id="5bc5b18c-b12c-462f-b49a-8056b74d72a3">TVB Jade HD</channel>
<channel site="starhubtvplus.com" lang="zh" xmltv_id="KalaignarTV.in" site_id="d99214cd-fcdf-4613-8106-55e248d3b608">Kalaignar TV</channel> <channel site="starhubtvplus.com" lang="zh" xmltv_id="KalaignarTV.in" site_id="d99214cd-fcdf-4613-8106-55e248d3b608">Kalaignar TV</channel>

View file

@ -71,7 +71,7 @@
<channel site="startimestv.com" lang="fr" xmltv_id="STNovelaF1.cn" site_id="402">ST NOVELA F</channel> <channel site="startimestv.com" lang="fr" xmltv_id="STNovelaF1.cn" site_id="402">ST NOVELA F</channel>
<channel site="startimestv.com" lang="fr" xmltv_id="STNovelaFPlus.cn" site_id="698">ST NOVELA F PLUS</channel> <channel site="startimestv.com" lang="fr" xmltv_id="STNovelaFPlus.cn" site_id="698">ST NOVELA F PLUS</channel>
<channel site="startimestv.com" lang="fr" xmltv_id="TV5MondeAfrica.fr" site_id="381">TV5 MONDE</channel> <channel site="startimestv.com" lang="fr" xmltv_id="TV5MondeAfrica.fr" site_id="381">TV5 MONDE</channel>
<channel site="startimestv.com" lang="pt" xmltv_id="AfroMusicChannel.pt" site_id="514">Afro Music</channel> <channel site="startimestv.com" lang="pt" xmltv_id="" site_id="514">Afro Music</channel>
<channel site="startimestv.com" lang="pt" xmltv_id="AMC.pt" site_id="595">AMC P</channel> <channel site="startimestv.com" lang="pt" xmltv_id="AMC.pt" site_id="595">AMC P</channel>
<channel site="startimestv.com" lang="pt" xmltv_id="DisneyChannel.pt" site_id="512">DISNEY CHANNEL</channel> <channel site="startimestv.com" lang="pt" xmltv_id="DisneyChannel.pt" site_id="512">DISNEY CHANNEL</channel>
<channel site="startimestv.com" lang="pt" xmltv_id="DisneyJunior.pt" site_id="513">DISNEY JUNIOR</channel> <channel site="startimestv.com" lang="pt" xmltv_id="DisneyJunior.pt" site_id="513">DISNEY JUNIOR</channel>

View file

@ -11,5 +11,5 @@
<channel site="stod2.is" lang="is" xmltv_id="" site_id="besta01">Besta01</channel> <channel site="stod2.is" lang="is" xmltv_id="" site_id="besta01">Besta01</channel>
<channel site="stod2.is" lang="is" xmltv_id="" site_id="besta02">Besta02</channel> <channel site="stod2.is" lang="is" xmltv_id="" site_id="besta02">Besta02</channel>
<channel site="stod2.is" lang="is" xmltv_id="" site_id="besta03">Besta03</channel> <channel site="stod2.is" lang="is" xmltv_id="" site_id="besta03">Besta03</channel>
<channel site="stod2.is" lang="is" xmltv_id="VodafoneSport.is" site_id="vodasport">Vodafone Sport</channel> <channel site="stod2.is" lang="is" xmltv_id="" site_id="vodasport">Vodafone Sport</channel>
</channels> </channels>

Some files were not shown because too many files have changed in this diff Show more