Merge branch 'master' into pr/1194

This commit is contained in:
Aleksandr Statciuk 2022-10-20 17:33:24 +03:00
commit 392bd22e92
116 changed files with 664 additions and 673 deletions

View file

@ -10,7 +10,7 @@ jobs:
check: check:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
fetch-depth: 2 fetch-depth: 2
- name: Download data from API - name: Download data from API
@ -21,10 +21,10 @@ jobs:
id: files id: files
with: with:
files: sites/**/*.channels.xml files: sites/**/*.channels.xml
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
if: ${{ !env.ACT && steps.files.outputs.any_changed == 'true' }} if: ${{ !env.ACT && steps.files.outputs.any_changed == 'true' }}
with: with:
node-version: '14' node-version: 16
cache: 'npm' cache: 'npm'
- name: validate - name: validate
if: steps.files.outputs.any_changed == 'true' if: steps.files.outputs.any_changed == 'true'

View file

@ -16,19 +16,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: npm run api:load - run: npm run api:load
- uses: tibdex/github-app-token@v1 - uses: actions/setup-node@v3
if: ${{ !env.ACT }}
id: create-ffmpeg-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: FedericoCarboni/setup-ffmpeg@v1
with:
token: ${{ steps.create-ffmpeg-token.outputs.token }}
- uses: actions/setup-node@v2
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
with: with:
node-version: '14' node-version: 16
cache: 'npm' cache: 'npm'
- run: npm install - run: npm install
- run: CHANNELS_PATH=sites/${{inputs.site}}/*.channels.xml npm run queue:create -- --max-clusters=1 --days=2 - run: CHANNELS_PATH=sites/${{inputs.site}}/*.channels.xml npm run queue:create -- --max-clusters=1 --days=2
@ -41,7 +32,7 @@ jobs:
with: with:
app_id: ${{ secrets.APP_ID }} app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }} private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: JamesIves/github-pages-deploy-action@v4.3.3 - uses: JamesIves/github-pages-deploy-action@v4.4.1
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
with: with:
branch: gh-pages branch: gh-pages

View file

@ -1,33 +1,12 @@
name: _test name: _test
on: on:
workflow_dispatch: workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened, edited]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs: jobs:
test: load:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: - run: npm run api:load
fetch-depth: 2 - run: npm install
- uses: tj-actions/changed-files@v19 - run: CHANNELS_PATH=sites/tvtv.us/tvtv.us_us.channels.xml npm run queue:create -- --max-clusters=1 --days=2
id: files - run: NODE_OPTIONS=--insecure-http-parser npm run cluster:load -- --timeout=30000 --cluster-id=1
with:
files: sites/**/*.config.js
- name: Set changed sites name
if: ${{ steps.files.outputs.any_changed == 'true' }}
id: sites
run: |
declare out
for i in ${{ steps.files.outputs.all_changed_files }}; do
out+="$(echo $i | cut -d'/' -f 2) "
done
echo "::set-output name=all_changed_sites::$(echo $out)"
- name: test
if: steps.files.outputs.any_changed == 'true'
run: |
npm install
npm test -- ${{ steps.sites.outputs.all_changed_sites }}

View file

@ -7,11 +7,11 @@ jobs:
update: update:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
with: with:
node-version: '14' node-version: 16
cache: 'npm' cache: 'npm'
- run: npm install - run: npm install
- run: npm run api:update - run: npm run api:update
@ -21,7 +21,7 @@ jobs:
with: with:
app_id: ${{ secrets.APP_ID }} app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }} private_key: ${{ secrets.APP_PRIVATE_KEY }}
- uses: JamesIves/github-pages-deploy-action@4.1.1 - uses: JamesIves/github-pages-deploy-action@v4.4.1
if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} if: ${{ !env.ACT && github.ref == 'refs/heads/master' }}
with: with:
repository-name: iptv-org/api repository-name: iptv-org/api

View file

@ -7,16 +7,16 @@ jobs:
update: update:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- run: echo "::set-output name=branch_name::$(date +'bot/auto-update-%s')" - run: echo "BRANCH_NAME=$(date +'bot/auto-update-%s')" >> $GITHUB_OUTPUT
id: create-branch-name id: create-branch-name
- run: git config user.name 'iptv-bot[bot]' - run: git config user.name 'iptv-bot[bot]'
- run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com' - run: git config user.email '84861620+iptv-bot[bot]@users.noreply.github.com'
- run: git checkout -b ${{ steps.create-branch-name.outputs.branch_name }} - run: git checkout -b ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
with: with:
node-version: '14' node-version: 16
cache: 'npm' cache: 'npm'
- run: npm install - run: npm install
- run: npm run api:load - run: npm run api:load
@ -27,7 +27,7 @@ jobs:
git add README.md git add README.md
git commit -m "[Bot] Update README.md" git commit -m "[Bot] Update README.md"
git status git status
git push -u origin ${{ steps.create-branch-name.outputs.branch_name }} git push -u origin ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
- uses: tibdex/github-app-token@v1 - uses: tibdex/github-app-token@v1
if: ${{ !env.ACT }} if: ${{ !env.ACT }}
id: create-app-token id: create-app-token
@ -39,7 +39,7 @@ jobs:
id: pull-request id: pull-request
with: with:
github_token: ${{ steps.create-app-token.outputs.token }} github_token: ${{ steps.create-app-token.outputs.token }}
source_branch: ${{ steps.create-branch-name.outputs.branch_name }} source_branch: ${{ steps.create-branch-name.outputs.BRANCH_NAME }}
destination_branch: 'master' destination_branch: 'master'
pr_title: '[Bot] Update README.md' pr_title: '[Bot] Update README.md'
pr_body: | pr_body: |

View file

@ -9,7 +9,7 @@ To load a program guide, all you need to do is copy the link to one or more of t
<!-- prettier-ignore --> <!-- prettier-ignore -->
#include "./.readme/_countries.md" #include "./.readme/_countries.md"
All guides also have a JSON version. To download it, just change the extension from `.xml.gz` to `.json`. All guides also have a compressed and JSON version. To download them, simply change the extension from `.xml` to `.xml.gz` or `.json` respectively.
## Contribution ## Contribution

605
README.md
View file

@ -12,313 +12,310 @@ To load a program guide, all you need to do is copy the link to one or more of t
<tr><th>Country&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th><th>Channels</th><th>EPG</th><th>Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th></tr> <tr><th>Country&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th><th>Channels</th><th>EPG</th><th>Status&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</th></tr>
</thead> </thead>
<tbody> <tbody>
<tr><td valign="top" rowspan="2">🇦🇫&nbsp;Afghanistan</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/af/arianaafgtv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/arianaafgtv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/arianaafgtv.com.yml/badge.svg" alt="arianaafgtv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇦🇫&nbsp;Afghanistan</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/af/arianaafgtv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/arianaafgtv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/arianaafgtv.com.yml/badge.svg" alt="arianaafgtv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/af/arianatelevision.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/arianatelevision.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/arianatelevision.com.yml/badge.svg" alt="arianatelevision.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/af/arianatelevision.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/arianatelevision.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/arianatelevision.com.yml/badge.svg" alt="arianatelevision.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇦🇱&nbsp;Albania</td><td align="right">35</td><td nowrap><code>https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ipko.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ipko.com.yml/badge.svg" alt="ipko.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇦🇱&nbsp;Albania</td><td align="right">35</td><td nowrap><code>https://iptv-org.github.io/epg/guides/al/ipko.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ipko.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ipko.com.yml/badge.svg" alt="ipko.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇩🇿&nbsp;Algeria</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇩🇿&nbsp;Algeria</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dz-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dz-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇦🇩&nbsp;Andorra</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/andorradifusio.ad.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/andorradifusio.ad.yml/badge.svg" alt="andorradifusio.ad" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇦🇩&nbsp;Andorra</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ad/andorradifusio.ad.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/andorradifusio.ad.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/andorradifusio.ad.yml/badge.svg" alt="andorradifusio.ad" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇦🇴&nbsp;Angola</td><td align="right">100</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/zap.co.ao.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/zap.co.ao.yml/badge.svg" alt="zap.co.ao" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇦🇴&nbsp;Angola</td><td align="right">100</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ao/zap.co.ao.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/zap.co.ao.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/zap.co.ao.yml/badge.svg" alt="zap.co.ao" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">77</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ao/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">77</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ao/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇦🇷&nbsp;Argentina</td><td align="right">262</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ar/directv.com.ar.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/directv.com.ar.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/directv.com.ar.yml/badge.svg" alt="directv.com.ar" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇦🇷&nbsp;Argentina</td><td align="right">262</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ar/directv.com.ar.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/directv.com.ar.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/directv.com.ar.yml/badge.svg" alt="directv.com.ar" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">157</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">157</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ar/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">35</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">35</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ar/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇦🇲&nbsp;Armenia</td><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml/badge.svg" alt="tv.mail.ru" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇦🇲&nbsp;Armenia</td><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/am/tv.mail.ru.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml/badge.svg" alt="tv.mail.ru" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇦🇺&nbsp;Australia</td><td align="right">47</td><td nowrap><code>https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇦🇺&nbsp;Australia</td><td align="right">47</td><td nowrap><code>https://iptv-org.github.io/epg/guides/au/ontvtonight.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/au/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/au/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇦🇹&nbsp;Austria</td><td align="right">203</td><td nowrap><code>https://iptv-org.github.io/epg/guides/at/magentatv.at.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/magentatv.at.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/magentatv.at.yml/badge.svg" alt="magentatv.at" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇦🇹&nbsp;Austria</td><td align="right">203</td><td nowrap><code>https://iptv-org.github.io/epg/guides/at/magentatv.at.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/magentatv.at.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/magentatv.at.yml/badge.svg" alt="magentatv.at" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">52</td><td nowrap><code>https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvheute.at.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvheute.at.yml/badge.svg" alt="tvheute.at" style="max-width: 100%;"></a></td></tr> <tr><td align="right">52</td><td nowrap><code>https://iptv-org.github.io/epg/guides/at/tvheute.at.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvheute.at.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvheute.at.yml/badge.svg" alt="tvheute.at" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇦🇿&nbsp;Azerbaijan</td><td align="right">6</td><td nowrap><code>https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml/badge.svg" alt="tv.mail.ru" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇦🇿&nbsp;Azerbaijan</td><td align="right">6</td><td nowrap><code>https://iptv-org.github.io/epg/guides/az/tv.mail.ru.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml/badge.svg" alt="tv.mail.ru" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇧🇸&nbsp;Bahamas</td><td align="right">179</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/rev.bs.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/rev.bs.yml/badge.svg" alt="rev.bs" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇧🇸&nbsp;Bahamas</td><td align="right">179</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bs/rev.bs.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/rev.bs.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/rev.bs.yml/badge.svg" alt="rev.bs" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇧🇭&nbsp;Bahrain</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇧🇭&nbsp;Bahrain</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bh-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bh-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇧🇾&nbsp;Belarus</td><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml/badge.svg" alt="tv.mail.ru" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇧🇾&nbsp;Belarus</td><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/by/tv.mail.ru.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.mail.ru.yml/badge.svg" alt="tv.mail.ru" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇧🇪&nbsp;Belgium</td><td align="right">106</td><td nowrap><code>https://iptv-org.github.io/epg/guides/be/telenettv.be.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/telenettv.be.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/telenettv.be.yml/badge.svg" alt="telenettv.be" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇧🇪&nbsp;Belgium</td><td align="right">106</td><td nowrap><code>https://iptv-org.github.io/epg/guides/be/telenettv.be.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/telenettv.be.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/telenettv.be.yml/badge.svg" alt="telenettv.be" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">7</td><td nowrap><code>https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/vtm.be.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/vtm.be.yml/badge.svg" alt="vtm.be" style="max-width: 100%;"></a></td></tr> <tr><td align="right">7</td><td nowrap><code>https://iptv-org.github.io/epg/guides/be/vtm.be.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/vtm.be.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/vtm.be.yml/badge.svg" alt="vtm.be" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇧🇯&nbsp;Benin</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇧🇯&nbsp;Benin</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bj/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bj/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bj/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇧🇴&nbsp;Bolivia</td><td align="right">75</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/comteco.com.bo.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/comteco.com.bo.yml/badge.svg" alt="comteco.com.bo" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇧🇴&nbsp;Bolivia</td><td align="right">75</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bo/comteco.com.bo.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/comteco.com.bo.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/comteco.com.bo.yml/badge.svg" alt="comteco.com.bo" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">33</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">33</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bo/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇧🇦&nbsp;Bosnia and Herzegovina</td><td align="right">168</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mtel.ba.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mtel.ba.yml/badge.svg" alt="mtel.ba" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇧🇦&nbsp;Bosnia and Herzegovina</td><td align="right">168</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ba/mtel.ba.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mtel.ba.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mtel.ba.yml/badge.svg" alt="mtel.ba" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ba/tvarenasport.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ba/tvarenasport.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇧🇼&nbsp;Botswana</td><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bw/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇧🇼&nbsp;Botswana</td><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bw/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇧🇷&nbsp;Brazil</td><td align="right">255</td><td nowrap><code>https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇧🇷&nbsp;Brazil</td><td align="right">255</td><td nowrap><code>https://iptv-org.github.io/epg/guides/br/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇧🇬&nbsp;Bulgaria</td><td align="right">100</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.dir.bg.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.dir.bg.yml/badge.svg" alt="tv.dir.bg" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇧🇬&nbsp;Bulgaria</td><td align="right">100</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bg/tv.dir.bg.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.dir.bg.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.dir.bg.yml/badge.svg" alt="tv.dir.bg" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇧🇫&nbsp;Burkina Faso</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇧🇫&nbsp;Burkina Faso</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bf/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bf/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bf/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇧🇮&nbsp;Burundi</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇧🇮&nbsp;Burundi</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bi/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">167</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bi/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">167</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bi/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bi/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bi/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇨🇲&nbsp;Cameroon</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇨🇲&nbsp;Cameroon</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cm/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">142</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cm/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">142</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cm/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cm/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cm/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇨🇦&nbsp;Canada</td><td align="right">355</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ca/tvhebdo.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvhebdo.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvhebdo.com.yml/badge.svg" alt="tvhebdo.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇨🇦&nbsp;Canada</td><td align="right">355</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ca/tvhebdo.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvhebdo.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvhebdo.com.yml/badge.svg" alt="tvhebdo.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">112</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ca/tvtv.us.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvtv.us.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvtv.us.yml/badge.svg" alt="tvtv.us" style="max-width: 100%;"></a></td></tr> <tr><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ca/sportsnet.ca.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/sportsnet.ca.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/sportsnet.ca.yml/badge.svg" alt="sportsnet.ca" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ca/sportsnet.ca.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/sportsnet.ca.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/sportsnet.ca.yml/badge.svg" alt="sportsnet.ca" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇨🇻&nbsp;Cape Verde</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇨🇻&nbsp;Cape Verde</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cv/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cv/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cv/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇨🇫&nbsp;Central African Republic</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇨🇫&nbsp;Central African Republic</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cf/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cf/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cf/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇹🇩&nbsp;Chad</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇹🇩&nbsp;Chad</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">123</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">123</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/td-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇨🇱&nbsp;Chile</td><td align="right">79</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇨🇱&nbsp;Chile</td><td align="right">79</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cl/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">49</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">49</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cl/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇨🇳&nbsp;China</td><td align="right">94</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.cctv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.cctv.com.yml/badge.svg" alt="tv.cctv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇨🇳&nbsp;China</td><td align="right">94</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cn/tv.cctv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.cctv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.cctv.com.yml/badge.svg" alt="tv.cctv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇨🇴&nbsp;Colombia</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/siba.com.co.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/siba.com.co.yml/badge.svg" alt="siba.com.co" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇨🇴&nbsp;Colombia</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/co/siba.com.co.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/siba.com.co.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/siba.com.co.yml/badge.svg" alt="siba.com.co" style="max-width: 100%;"></a></td></tr> <tr><td align="right">52</td><td nowrap><code>https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">52</td><td nowrap><code>https://iptv-org.github.io/epg/guides/co/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">41</td><td nowrap><code>https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">41</td><td nowrap><code>https://iptv-org.github.io/epg/guides/co/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇰🇲&nbsp;Comoros</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml/badge.svg" alt="canalplus-reunion.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇰🇲&nbsp;Comoros</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/km/canalplus-reunion.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml/badge.svg" alt="canalplus-reunion.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇨🇷&nbsp;Costa Rica</td><td align="right">45</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇨🇷&nbsp;Costa Rica</td><td align="right">45</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cr/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇭🇷&nbsp;Croatia</td><td align="right">160</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/maxtv.hrvatskitelekom.hr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/maxtv.hrvatskitelekom.hr.yml/badge.svg" alt="maxtv.hrvatskitelekom.hr" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇭🇷&nbsp;Croatia</td><td align="right">160</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hr/maxtv.hrvatskitelekom.hr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/maxtv.hrvatskitelekom.hr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/maxtv.hrvatskitelekom.hr.yml/badge.svg" alt="maxtv.hrvatskitelekom.hr" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇨🇺&nbsp;Cuba</td><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvcubana.icrt.cu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvcubana.icrt.cu.yml/badge.svg" alt="tvcubana.icrt.cu" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇨🇺&nbsp;Cuba</td><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cu/tvcubana.icrt.cu.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvcubana.icrt.cu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvcubana.icrt.cu.yml/badge.svg" alt="tvcubana.icrt.cu" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇨🇾&nbsp;Cyprus</td><td align="right">29</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/novacyprus.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/novacyprus.com.yml/badge.svg" alt="novacyprus.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇨🇾&nbsp;Cyprus</td><td align="right">29</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cy/novacyprus.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/novacyprus.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/novacyprus.com.yml/badge.svg" alt="novacyprus.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇨🇿&nbsp;Czech Republic</td><td align="right">528</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/m.tv.sms.cz.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/m.tv.sms.cz.yml/badge.svg" alt="m.tv.sms.cz" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇨🇿&nbsp;Czech Republic</td><td align="right">528</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cz/m.tv.sms.cz.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/m.tv.sms.cz.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/m.tv.sms.cz.yml/badge.svg" alt="m.tv.sms.cz" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇨🇩&nbsp;Democratic Republic of the Congo</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇨🇩&nbsp;Democratic Republic of the Congo</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cd/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">172</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cd/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">172</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cd/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">126</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cd/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">126</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cd/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇩🇰&nbsp;Denmark</td><td align="right">61</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇩🇰&nbsp;Denmark</td><td align="right">61</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dk/allente.se.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇩🇯&nbsp;Djibouti</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇩🇯&nbsp;Djibouti</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dj/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">121</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dj/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">121</td><td nowrap><code>https://iptv-org.github.io/epg/guides/dj/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇩🇴&nbsp;Dominican Republic</td><td align="right">56</td><td nowrap><code>https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇩🇴&nbsp;Dominican Republic</td><td align="right">56</td><td nowrap><code>https://iptv-org.github.io/epg/guides/do/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇪🇨&nbsp;Ecuador</td><td align="right">41</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇪🇨&nbsp;Ecuador</td><td align="right">41</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ec/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇪🇬&nbsp;Egypt</td><td align="right">122</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml/badge.svg" alt="elcinema.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇪🇬&nbsp;Egypt</td><td align="right">122</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-ar/elcinema.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml/badge.svg" alt="elcinema.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">122</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml/badge.svg" alt="elcinema.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">122</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-en/elcinema.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/elcinema.com.yml/badge.svg" alt="elcinema.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/eg-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇸🇻&nbsp;El Salvador</td><td align="right">48</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇸🇻&nbsp;El Salvador</td><td align="right">48</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sv/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">12</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">12</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sv/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇬🇶&nbsp;Equatorial Guinea</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇬🇶&nbsp;Equatorial Guinea</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gq/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gq/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gq/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇪🇷&nbsp;Eritrea</td><td align="right">123</td><td nowrap><code>https://iptv-org.github.io/epg/guides/er/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇪🇷&nbsp;Eritrea</td><td align="right">123</td><td nowrap><code>https://iptv-org.github.io/epg/guides/er/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇪🇪&nbsp;Estonia</td><td align="right">132</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml/badge.svg" alt="teliatv.ee" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇪🇪&nbsp;Estonia</td><td align="right">132</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ee-en/teliatv.ee.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml/badge.svg" alt="teliatv.ee" style="max-width: 100%;"></a></td></tr> <tr><td align="right">132</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml/badge.svg" alt="teliatv.ee" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">132</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ee-ru/teliatv.ee.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml/badge.svg" alt="teliatv.ee" style="max-width: 100%;"></a></td></tr> <tr><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml/badge.svg" alt="teliatv.ee" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ee-et/teliatv.ee.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/teliatv.ee.yml/badge.svg" alt="teliatv.ee" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇪🇹&nbsp;Ethiopia</td><td align="right">148</td><td nowrap><code>https://iptv-org.github.io/epg/guides/et/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇪🇹&nbsp;Ethiopia</td><td align="right">148</td><td nowrap><code>https://iptv-org.github.io/epg/guides/et/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇫🇴&nbsp;Faroe Islands</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fo/kvf.fo.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/kvf.fo.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/kvf.fo.yml/badge.svg" alt="kvf.fo" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇫🇴&nbsp;Faroe Islands</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fo/kvf.fo.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/kvf.fo.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/kvf.fo.yml/badge.svg" alt="kvf.fo" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇫🇮&nbsp;Finland</td><td align="right">43</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/telkussa.fi.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/telkussa.fi.yml/badge.svg" alt="telkussa.fi" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇫🇮&nbsp;Finland</td><td align="right">38</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fi/telkussa.fi.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/telkussa.fi.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/telkussa.fi.yml/badge.svg" alt="telkussa.fi" style="max-width: 100%;"></a></td></tr> <tr><td align="right">36</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">36</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fi/allente.se.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="5">🇫🇷&nbsp;France</td><td align="right">280</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/telecablesat.fr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/telecablesat.fr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/telecablesat.fr.yml/badge.svg" alt="telecablesat.fr" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="5">🇫🇷&nbsp;France</td><td align="right">280</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/telecablesat.fr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/telecablesat.fr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/telecablesat.fr.yml/badge.svg" alt="telecablesat.fr" style="max-width: 100%;"></a></td></tr> <tr><td align="right">226</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/canalplus.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus.com.yml/badge.svg" alt="canalplus.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">226</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/canalplus.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus.com.yml/badge.svg" alt="canalplus.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">211</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programme-tv.net.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programme-tv.net.yml/badge.svg" alt="programme-tv.net" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">211</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/programme-tv.net.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programme-tv.net.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programme-tv.net.yml/badge.svg" alt="programme-tv.net" style="max-width: 100%;"></a></td></tr> <tr><td align="right">194</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/chaines-tv.orange.fr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/chaines-tv.orange.fr.yml/badge.svg" alt="chaines-tv.orange.fr" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">194</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/chaines-tv.orange.fr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/chaines-tv.orange.fr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/chaines-tv.orange.fr.yml/badge.svg" alt="chaines-tv.orange.fr" style="max-width: 100%;"></a></td></tr> <tr><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/fr/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇬🇫&nbsp;French Guiana</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇬🇫&nbsp;French Guiana</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gf/canalplus-caraibes.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇵🇫&nbsp;French Polynesia</td><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pf/programme-tv.vini.pf.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programme-tv.vini.pf.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programme-tv.vini.pf.yml/badge.svg" alt="programme-tv.vini.pf" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇵🇫&nbsp;French Polynesia</td><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pf/programme-tv.vini.pf.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programme-tv.vini.pf.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programme-tv.vini.pf.yml/badge.svg" alt="programme-tv.vini.pf" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇬🇦&nbsp;Gabon</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇬🇦&nbsp;Gabon</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ga/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ga/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ga/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">101</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ga/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">101</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ga/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇬🇲&nbsp;Gambia</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇬🇲&nbsp;Gambia</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gm/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">124</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gm/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">124</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gm/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇬🇪&nbsp;Georgia</td><td align="right">115</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/magticom.ge.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/magticom.ge.yml/badge.svg" alt="magticom.ge" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇬🇪&nbsp;Georgia</td><td align="right">116</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ge/magticom.ge.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/magticom.ge.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/magticom.ge.yml/badge.svg" alt="magticom.ge" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇩🇪&nbsp;Germany</td><td align="right">245</td><td nowrap><code>https://iptv-org.github.io/epg/guides/de/horizon.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/horizon.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/horizon.tv.yml/badge.svg" alt="horizon.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇩🇪&nbsp;Germany</td><td align="right">245</td><td nowrap><code>https://iptv-org.github.io/epg/guides/de/horizon.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/horizon.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/horizon.tv.yml/badge.svg" alt="horizon.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">121</td><td nowrap><code>https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/hd-plus.de.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/hd-plus.de.yml/badge.svg" alt="hd-plus.de" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">121</td><td nowrap><code>https://iptv-org.github.io/epg/guides/de/hd-plus.de.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/hd-plus.de.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/hd-plus.de.yml/badge.svg" alt="hd-plus.de" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇬🇭&nbsp;Ghana</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇬🇭&nbsp;Ghana</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gh/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">139</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gh/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">139</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gh/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">124</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gh/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">124</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gh/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇬🇷&nbsp;Greece</td><td align="right">86</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/cosmote.gr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/cosmote.gr.yml/badge.svg" alt="cosmote.gr" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇬🇷&nbsp;Greece</td><td align="right">86</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gr/cosmote.gr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/cosmote.gr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/cosmote.gr.yml/badge.svg" alt="cosmote.gr" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇬🇱&nbsp;Greenland</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gl/knr.gl.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/knr.gl.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/knr.gl.yml/badge.svg" alt="knr.gl" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇬🇱&nbsp;Greenland</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gl/knr.gl.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/knr.gl.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/knr.gl.yml/badge.svg" alt="knr.gl" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇬🇵&nbsp;Guadeloupe</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇬🇵&nbsp;Guadeloupe</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gp/canalplus-caraibes.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇬🇺&nbsp;Guam</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gu/pbsguam.org.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/pbsguam.org.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/pbsguam.org.yml/badge.svg" alt="pbsguam.org" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇬🇺&nbsp;Guam</td><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gu/pbsguam.org.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/pbsguam.org.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/pbsguam.org.yml/badge.svg" alt="pbsguam.org" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇬🇹&nbsp;Guatemala</td><td align="right">49</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇬🇹&nbsp;Guatemala</td><td align="right">49</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gt/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">18</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">18</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gt/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇬🇳&nbsp;Guinea</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇬🇳&nbsp;Guinea</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gn/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">154</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gn/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">154</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gn/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gn/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gn/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇬🇼&nbsp;Guinea-Bissau</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇬🇼&nbsp;Guinea-Bissau</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gw/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gw/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/gw/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇭🇹&nbsp;Haiti</td><td align="right">112</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-haiti.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-haiti.com.yml/badge.svg" alt="canalplus-haiti.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇭🇹&nbsp;Haiti</td><td align="right">112</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ht/canalplus-haiti.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-haiti.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-haiti.com.yml/badge.svg" alt="canalplus-haiti.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇭🇳&nbsp;Honduras</td><td align="right">46</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇭🇳&nbsp;Honduras</td><td align="right">46</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hn/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">22</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">22</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hn/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇭🇰&nbsp;Hong Kong</td><td align="right">131</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml/badge.svg" alt="nowplayer.now.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇭🇰&nbsp;Hong Kong</td><td align="right">131</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hk-en/nowplayer.now.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml/badge.svg" alt="nowplayer.now.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml/badge.svg" alt="nowplayer.now.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hk-zh/nowplayer.now.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/nowplayer.now.com.yml/badge.svg" alt="nowplayer.now.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hk/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hk/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇭🇺&nbsp;Hungary</td><td align="right">169</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/musor.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/musor.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/musor.tv.yml/badge.svg" alt="musor.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇭🇺&nbsp;Hungary</td><td align="right">169</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/musor.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/musor.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/musor.tv.yml/badge.svg" alt="musor.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">89</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvmusor.hu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvmusor.hu.yml/badge.svg" alt="tvmusor.hu" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">89</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/tvmusor.hu.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvmusor.hu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvmusor.hu.yml/badge.svg" alt="tvmusor.hu" style="max-width: 100%;"></a></td></tr> <tr><td align="right">74</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/tv.yettel.hu.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.yettel.hu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.yettel.hu.yml/badge.svg" alt="tv.yettel.hu" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">74</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/tv.yettel.hu.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.yettel.hu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.yettel.hu.yml/badge.svg" alt="tv.yettel.hu" style="max-width: 100%;"></a></td></tr> <tr><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/mediaklikk.hu.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mediaklikk.hu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mediaklikk.hu.yml/badge.svg" alt="mediaklikk.hu" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/hu/mediaklikk.hu.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mediaklikk.hu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mediaklikk.hu.yml/badge.svg" alt="mediaklikk.hu" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇮🇸&nbsp;Iceland</td><td align="right">17</td><td nowrap><code>https://iptv-org.github.io/epg/guides/is/sjonvarp.is.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/sjonvarp.is.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/sjonvarp.is.yml/badge.svg" alt="sjonvarp.is" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇮🇸&nbsp;Iceland</td><td align="right">17</td><td nowrap><code>https://iptv-org.github.io/epg/guides/is/sjonvarp.is.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/sjonvarp.is.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/sjonvarp.is.yml/badge.svg" alt="sjonvarp.is" style="max-width: 100%;"></a></td></tr> <tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/is/ruv.is.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ruv.is.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ruv.is.yml/badge.svg" alt="ruv.is" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/is/ruv.is.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ruv.is.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ruv.is.yml/badge.svg" alt="ruv.is" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇮🇳&nbsp;India</td><td align="right">363</td><td nowrap><code>https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dishtv.in.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dishtv.in.yml/badge.svg" alt="dishtv.in" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇮🇳&nbsp;India</td><td align="right">363</td><td nowrap><code>https://iptv-org.github.io/epg/guides/in/dishtv.in.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dishtv.in.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dishtv.in.yml/badge.svg" alt="dishtv.in" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="6">🇮🇩&nbsp;Indonesia</td><td align="right">126</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/useetv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/useetv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/useetv.com.yml/badge.svg" alt="useetv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="6">🇮🇩&nbsp;Indonesia</td><td align="right">126</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/useetv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/useetv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/useetv.com.yml/badge.svg" alt="useetv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id-en/mncvision.id.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml/badge.svg" alt="mncvision.id" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id-en/mncvision.id.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml/badge.svg" alt="mncvision.id" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id-id/mncvision.id.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml/badge.svg" alt="mncvision.id" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id-id/mncvision.id.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mncvision.id.yml/badge.svg" alt="mncvision.id" style="max-width: 100%;"></a></td></tr> <tr><td align="right">78</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/transvision.co.id.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/transvision.co.id.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/transvision.co.id.yml/badge.svg" alt="transvision.co.id" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">78</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/transvision.co.id.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/transvision.co.id.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/transvision.co.id.yml/badge.svg" alt="transvision.co.id" style="max-width: 100%;"></a></td></tr> <tr><td align="right">57</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/vidio.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/vidio.com.yml/badge.svg" alt="vidio.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">57</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/vidio.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/vidio.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/vidio.com.yml/badge.svg" alt="vidio.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/id/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇮🇷&nbsp;Iran</td><td align="right">28</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tva.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tva.tv.yml/badge.svg" alt="tva.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇮🇷&nbsp;Iran</td><td align="right">28</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ir/tva.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tva.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tva.tv.yml/badge.svg" alt="tva.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇮🇶&nbsp;Iraq</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇮🇶&nbsp;Iraq</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/iq-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/iq-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇮🇪&nbsp;Ireland</td><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ie/ontvtonight.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇮🇪&nbsp;Ireland</td><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ie/ontvtonight.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇮🇱&nbsp;Israel</td><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/i24news.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/i24news.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/i24news.tv.yml/badge.svg" alt="i24news.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇮🇱&nbsp;Israel</td><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/i24news.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/i24news.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/i24news.tv.yml/badge.svg" alt="i24news.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/kan.org.il.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/kan.org.il.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/kan.org.il.yml/badge.svg" alt="kan.org.il" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">3</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/kan.org.il.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/kan.org.il.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/kan.org.il.yml/badge.svg" alt="kan.org.il" style="max-width: 100%;"></a></td></tr> <tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/9tv.co.il.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/9tv.co.il.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/9tv.co.il.yml/badge.svg" alt="9tv.co.il" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/9tv.co.il.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/9tv.co.il.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/9tv.co.il.yml/badge.svg" alt="9tv.co.il" style="max-width: 100%;"></a></td></tr> <tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/mako.co.il.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mako.co.il.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mako.co.il.yml/badge.svg" alt="mako.co.il" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/il/mako.co.il.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mako.co.il.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mako.co.il.yml/badge.svg" alt="mako.co.il" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇮🇹&nbsp;Italy</td><td align="right">164</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guidatv.sky.it.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guidatv.sky.it.yml/badge.svg" alt="guidatv.sky.it" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇮🇹&nbsp;Italy</td><td align="right">164</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/guidatv.sky.it.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guidatv.sky.it.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guidatv.sky.it.yml/badge.svg" alt="guidatv.sky.it" style="max-width: 100%;"></a></td></tr> <tr><td align="right">69</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/tivu.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tivu.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tivu.tv.yml/badge.svg" alt="tivu.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">69</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/tivu.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tivu.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tivu.tv.yml/badge.svg" alt="tivu.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">15</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mediaset.it.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mediaset.it.yml/badge.svg" alt="mediaset.it" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">15</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/mediaset.it.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mediaset.it.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mediaset.it.yml/badge.svg" alt="mediaset.it" style="max-width: 100%;"></a></td></tr> <tr><td align="right">14</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/raiplay.it.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/raiplay.it.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/raiplay.it.yml/badge.svg" alt="raiplay.it" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">14</td><td nowrap><code>https://iptv-org.github.io/epg/guides/it/raiplay.it.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/raiplay.it.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/raiplay.it.yml/badge.svg" alt="raiplay.it" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇨🇮&nbsp;Ivory Coast</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇨🇮&nbsp;Ivory Coast</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ci/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">172</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ci/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">172</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ci/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ci/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ci/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇯🇵&nbsp;Japan</td><td align="right">136</td><td nowrap><code>https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvguide.myjcom.jp.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvguide.myjcom.jp.yml/badge.svg" alt="tvguide.myjcom.jp" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇯🇵&nbsp;Japan</td><td align="right">136</td><td nowrap><code>https://iptv-org.github.io/epg/guides/jp/tvguide.myjcom.jp.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvguide.myjcom.jp.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvguide.myjcom.jp.yml/badge.svg" alt="tvguide.myjcom.jp" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇯🇴&nbsp;Jordan</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇯🇴&nbsp;Jordan</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/jo-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/jo-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇰🇿&nbsp;Kazakhstan</td><td align="right">7</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml/badge.svg" alt="tv.yandex.ru" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇰🇿&nbsp;Kazakhstan</td><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kz/tv.yandex.ru.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml/badge.svg" alt="tv.yandex.ru" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇰🇪&nbsp;Kenya</td><td align="right">151</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ke/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇰🇪&nbsp;Kenya</td><td align="right">151</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ke/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">147</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ke/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">147</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ke/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇽🇰&nbsp;Kosovo</td><td align="right">52</td><td nowrap><code>https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvim.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvim.tv.yml/badge.svg" alt="tvim.tv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇽🇰&nbsp;Kosovo</td><td align="right">52</td><td nowrap><code>https://iptv-org.github.io/epg/guides/xk/tvim.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvim.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvim.tv.yml/badge.svg" alt="tvim.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇰🇼&nbsp;Kuwait</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇰🇼&nbsp;Kuwait</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kw-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kw-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇱🇻&nbsp;Latvia</td><td align="right">20</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.lv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.lv.yml/badge.svg" alt="tv.lv" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇱🇻&nbsp;Latvia</td><td align="right">20</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lv/tv.lv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.lv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.lv.yml/badge.svg" alt="tv.lv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇱🇧&nbsp;Lebanon</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇱🇧&nbsp;Lebanon</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lb-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lb-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇱🇸&nbsp;Lesotho</td><td align="right">145</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ls/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇱🇸&nbsp;Lesotho</td><td align="right">145</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ls/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇱🇷&nbsp;Liberia</td><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lr/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇱🇷&nbsp;Liberia</td><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lr/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇱🇾&nbsp;Libya</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇱🇾&nbsp;Libya</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ly-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ly-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇱🇹&nbsp;Lithuania</td><td align="right">81</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lt/cgates.lt.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/cgates.lt.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/cgates.lt.yml/badge.svg" alt="cgates.lt" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇱🇹&nbsp;Lithuania</td><td align="right">81</td><td nowrap><code>https://iptv-org.github.io/epg/guides/lt/cgates.lt.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/cgates.lt.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/cgates.lt.yml/badge.svg" alt="cgates.lt" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇬&nbsp;Madagascar</td><td align="right">164</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mg/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇬&nbsp;Madagascar</td><td align="right">164</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mg/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mg/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mg/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇼&nbsp;Malawi</td><td align="right">131</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mw/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇼&nbsp;Malawi</td><td align="right">131</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mw/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">95</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mw/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">95</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mw/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇲🇾&nbsp;Malaysia</td><td align="right">139</td><td nowrap><code>https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/astro.com.my.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/astro.com.my.yml/badge.svg" alt="astro.com.my" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇲🇾&nbsp;Malaysia</td><td align="right">139</td><td nowrap><code>https://iptv-org.github.io/epg/guides/my/astro.com.my.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/astro.com.my.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/astro.com.my.yml/badge.svg" alt="astro.com.my" style="max-width: 100%;"></a></td></tr> <tr><td align="right">6</td><td nowrap><code>https://iptv-org.github.io/epg/guides/my/rtmklik.rtm.gov.my.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/rtmklik.rtm.gov.my.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/rtmklik.rtm.gov.my.yml/badge.svg" alt="rtmklik.rtm.gov.my" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">6</td><td nowrap><code>https://iptv-org.github.io/epg/guides/my/rtmklik.rtm.gov.my.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/rtmklik.rtm.gov.my.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/rtmklik.rtm.gov.my.yml/badge.svg" alt="rtmklik.rtm.gov.my" style="max-width: 100%;"></a></td></tr> <tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/my/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/my/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇱&nbsp;Mali</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇱&nbsp;Mali</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ml/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ml/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ml/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇹&nbsp;Malta</td><td align="right">123</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mt/melita.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/melita.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/melita.com.yml/badge.svg" alt="melita.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇹&nbsp;Malta</td><td align="right">123</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mt/melita.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/melita.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/melita.com.yml/badge.svg" alt="melita.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mt/tvmi.mt.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvmi.mt.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvmi.mt.yml/badge.svg" alt="tvmi.mt" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mt/tvmi.mt.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvmi.mt.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvmi.mt.yml/badge.svg" alt="tvmi.mt" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇲🇶&nbsp;Martinique</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇲🇶&nbsp;Martinique</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mq/canalplus-caraibes.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇲🇷&nbsp;Mauritania</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇲🇷&nbsp;Mauritania</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mr-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇲🇺&nbsp;Mauritius</td><td align="right">126</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mu/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇲🇺&nbsp;Mauritius</td><td align="right">126</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mu/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇾🇹&nbsp;Mayotte</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml/badge.svg" alt="canalplus-reunion.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇾🇹&nbsp;Mayotte</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/yt/canalplus-reunion.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml/badge.svg" alt="canalplus-reunion.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇽&nbsp;Mexico</td><td align="right">101</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇽&nbsp;Mexico</td><td align="right">101</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mx/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">26</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">26</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mx/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇲🇪&nbsp;Montenegro</td><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/me/tvarenasport.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇲🇪&nbsp;Montenegro</td><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/me/tvarenasport.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇦&nbsp;Morocco</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇦&nbsp;Morocco</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ma-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ma-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇿&nbsp;Mozambique</td><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mz/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇿&nbsp;Mozambique</td><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mz/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">86</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mz/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">86</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mz/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇳🇦&nbsp;Namibia</td><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/na/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇳🇦&nbsp;Namibia</td><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/na/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇳🇱&nbsp;Netherlands</td><td align="right">225</td><td nowrap><code>https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/delta.nl.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/delta.nl.yml/badge.svg" alt="delta.nl" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇳🇱&nbsp;Netherlands</td><td align="right">225</td><td nowrap><code>https://iptv-org.github.io/epg/guides/nl/delta.nl.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/delta.nl.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/delta.nl.yml/badge.svg" alt="delta.nl" style="max-width: 100%;"></a></td></tr> <tr><td align="right">141</td><td nowrap><code>https://iptv-org.github.io/epg/guides/nl/ziggogo.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ziggogo.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ziggogo.tv.yml/badge.svg" alt="ziggogo.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">141</td><td nowrap><code>https://iptv-org.github.io/epg/guides/nl/ziggogo.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ziggogo.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ziggogo.tv.yml/badge.svg" alt="ziggogo.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇳🇮&nbsp;Nicaragua</td><td align="right">46</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇳🇮&nbsp;Nicaragua</td><td align="right">46</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ni/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇳🇪&nbsp;Niger</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇳🇪&nbsp;Niger</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ne/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ne/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ne/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇳🇬&nbsp;Nigeria</td><td align="right">149</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml/badge.svg" alt="dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇳🇬&nbsp;Nigeria</td><td align="right">149</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ng/dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml/badge.svg" alt="dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">145</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ng/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">145</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ng/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">140</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ng/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">140</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ng/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇲🇰&nbsp;North Macedonia</td><td align="right">51</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/maxtvgo.mk.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/maxtvgo.mk.yml/badge.svg" alt="maxtvgo.mk" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇲🇰&nbsp;North Macedonia</td><td align="right">51</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mk/maxtvgo.mk.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/maxtvgo.mk.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/maxtvgo.mk.yml/badge.svg" alt="maxtvgo.mk" style="max-width: 100%;"></a></td></tr> <tr><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mk/tvarenasport.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mk/tvarenasport.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇳🇴&nbsp;Norway</td><td align="right">71</td><td nowrap><code>https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇳🇴&nbsp;Norway</td><td align="right">71</td><td nowrap><code>https://iptv-org.github.io/epg/guides/no/allente.se.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr> <tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/no/frikanalen.no.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/frikanalen.no.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/frikanalen.no.yml/badge.svg" alt="frikanalen.no" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">1</td><td nowrap><code>https://iptv-org.github.io/epg/guides/no/frikanalen.no.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/frikanalen.no.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/frikanalen.no.yml/badge.svg" alt="frikanalen.no" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇴🇲&nbsp;Oman</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇴🇲&nbsp;Oman</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/om-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/om-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇵🇸&nbsp;Palestine</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇵🇸&nbsp;Palestine</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ps-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ps-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇵🇦&nbsp;Panama</td><td align="right">48</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇵🇦&nbsp;Panama</td><td align="right">48</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pa/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇵🇾&nbsp;Paraguay</td><td align="right">35</td><td nowrap><code>https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇵🇾&nbsp;Paraguay</td><td align="right">35</td><td nowrap><code>https://iptv-org.github.io/epg/guides/py/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇵🇪&nbsp;Peru</td><td align="right">44</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇵🇪&nbsp;Peru</td><td align="right">44</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pe/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pe/mi.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mi.tv.yml/badge.svg" alt="mi.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="4">🇵🇭&nbsp;Philippines</td><td align="right">56</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/mysky.com.ph.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mysky.com.ph.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mysky.com.ph.yml/badge.svg" alt="mysky.com.ph" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="4">🇵🇭&nbsp;Philippines</td><td align="right">56</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/mysky.com.ph.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mysky.com.ph.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mysky.com.ph.yml/badge.svg" alt="mysky.com.ph" style="max-width: 100%;"></a></td></tr> <tr><td align="right">33</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/clickthecity.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/clickthecity.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/clickthecity.com.yml/badge.svg" alt="clickthecity.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">33</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/clickthecity.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/clickthecity.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/clickthecity.com.yml/badge.svg" alt="clickthecity.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">15</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/tapdmv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tapdmv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tapdmv.com.yml/badge.svg" alt="tapdmv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">15</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/tapdmv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tapdmv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tapdmv.com.yml/badge.svg" alt="tapdmv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ph/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇵🇱&nbsp;Poland</td><td align="right">340</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programtv.onet.pl.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programtv.onet.pl.yml/badge.svg" alt="programtv.onet.pl" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇵🇱&nbsp;Poland</td><td align="right">340</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pl/programtv.onet.pl.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programtv.onet.pl.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programtv.onet.pl.yml/badge.svg" alt="programtv.onet.pl" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇵🇹&nbsp;Portugal</td><td align="right">203</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/meo.pt.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/meo.pt.yml/badge.svg" alt="meo.pt" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇵🇹&nbsp;Portugal</td><td align="right">203</td><td nowrap><code>https://iptv-org.github.io/epg/guides/pt/meo.pt.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/meo.pt.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/meo.pt.yml/badge.svg" alt="meo.pt" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="5">🇶🇦&nbsp;Qatar</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="5">🇶🇦&nbsp;Qatar</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">34</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa/bein.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/bein.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/bein.com.yml/badge.svg" alt="bein.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">34</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa/bein.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/bein.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/bein.com.yml/badge.svg" alt="bein.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">25</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-ar/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">25</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-ar/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-en/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">19</td><td nowrap><code>https://iptv-org.github.io/epg/guides/qa-en/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇨🇬&nbsp;Republic of the Congo</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇨🇬&nbsp;Republic of the Congo</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cg/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">149</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cg/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">149</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cg/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cg/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/cg/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇷🇴&nbsp;Romania</td><td align="right">232</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programetv.ro.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programetv.ro.yml/badge.svg" alt="programetv.ro" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇷🇴&nbsp;Romania</td><td align="right">232</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ro/programetv.ro.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programetv.ro.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programetv.ro.yml/badge.svg" alt="programetv.ro" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇷🇺&nbsp;Russia</td><td align="right">283</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml/badge.svg" alt="tv.yandex.ru" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇷🇺&nbsp;Russia</td><td align="right">283</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ru/tv.yandex.ru.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.yandex.ru.yml/badge.svg" alt="tv.yandex.ru" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇷🇼&nbsp;Rwanda</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇷🇼&nbsp;Rwanda</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rw/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">142</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rw/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">142</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rw/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">132</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rw/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">132</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rw/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇷🇪&nbsp;Réunion</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml/badge.svg" alt="canalplus-reunion.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇷🇪&nbsp;Réunion</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/re/canalplus-reunion.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-reunion.com.yml/badge.svg" alt="canalplus-reunion.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇧🇱&nbsp;Saint Barthélemy</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇧🇱&nbsp;Saint Barthélemy</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/bl/canalplus-caraibes.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇲🇫&nbsp;Saint Martin</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇲🇫&nbsp;Saint Martin</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/mf/canalplus-caraibes.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-caraibes.com.yml/badge.svg" alt="canalplus-caraibes.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇸🇦&nbsp;Saudi Arabia</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇸🇦&nbsp;Saudi Arabia</td><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sa-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sa-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">5</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sa/artonline.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/artonline.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/artonline.tv.yml/badge.svg" alt="artonline.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">5</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sa/artonline.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/artonline.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/artonline.tv.yml/badge.svg" alt="artonline.tv" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇸🇳&nbsp;Senegal</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇸🇳&nbsp;Senegal</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sn/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sn/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sn/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇷🇸&nbsp;Serbia</td><td align="right">349</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mts.rs.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mts.rs.yml/badge.svg" alt="mts.rs" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇷🇸&nbsp;Serbia</td><td align="right">349</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rs/mts.rs.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mts.rs.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mts.rs.yml/badge.svg" alt="mts.rs" style="max-width: 100%;"></a></td></tr> <tr><td align="right">12</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">12</td><td nowrap><code>https://iptv-org.github.io/epg/guides/rs/tvarenasport.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvarenasport.com.yml/badge.svg" alt="tvarenasport.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇨&nbsp;Seychelles</td><td align="right">124</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sc/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇨&nbsp;Seychelles</td><td align="right">124</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sc/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇸🇱&nbsp;Sierra Leone</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇸🇱&nbsp;Sierra Leone</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sl/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sl/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sl/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇸🇬&nbsp;Singapore</td><td align="right">129</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sg/starhubtvplus.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/starhubtvplus.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/starhubtvplus.com.yml/badge.svg" alt="starhubtvplus.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇸🇬&nbsp;Singapore</td><td align="right">129</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sg/starhubtvplus.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/starhubtvplus.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/starhubtvplus.com.yml/badge.svg" alt="starhubtvplus.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">17</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sg/mewatch.sg.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mewatch.sg.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mewatch.sg.yml/badge.svg" alt="mewatch.sg" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">17</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sg/mewatch.sg.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/mewatch.sg.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/mewatch.sg.yml/badge.svg" alt="mewatch.sg" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇮&nbsp;Slovenia</td><td align="right">263</td><td nowrap><code>https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv2go.t-2.net.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv2go.t-2.net.yml/badge.svg" alt="tv2go.t-2.net" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇮&nbsp;Slovenia</td><td align="right">263</td><td nowrap><code>https://iptv-org.github.io/epg/guides/si/tv2go.t-2.net.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv2go.t-2.net.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv2go.t-2.net.yml/badge.svg" alt="tv2go.t-2.net" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇴&nbsp;Somalia</td><td align="right">120</td><td nowrap><code>https://iptv-org.github.io/epg/guides/so/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇴&nbsp;Somalia</td><td align="right">120</td><td nowrap><code>https://iptv-org.github.io/epg/guides/so/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇿🇦&nbsp;South Africa</td><td align="right">160</td><td nowrap><code>https://iptv-org.github.io/epg/guides/za/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇿🇦&nbsp;South Africa</td><td align="right">160</td><td nowrap><code>https://iptv-org.github.io/epg/guides/za/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">145</td><td nowrap><code>https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml/badge.svg" alt="dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">145</td><td nowrap><code>https://iptv-org.github.io/epg/guides/za/dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dstv.com.yml/badge.svg" alt="dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇰🇷&nbsp;South Korea</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kr/seezntv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/seezntv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/seezntv.com.yml/badge.svg" alt="seezntv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇰🇷&nbsp;South Korea</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kr/seezntv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/seezntv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/seezntv.com.yml/badge.svg" alt="seezntv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">77</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kr/wavve.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/wavve.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/wavve.com.yml/badge.svg" alt="wavve.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">77</td><td nowrap><code>https://iptv-org.github.io/epg/guides/kr/wavve.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/wavve.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/wavve.com.yml/badge.svg" alt="wavve.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇸&nbsp;South Sudan</td><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ss/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇸&nbsp;South Sudan</td><td align="right">125</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ss/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇪🇸&nbsp;Spain</td><td align="right">183</td><td nowrap><code>https://iptv-org.github.io/epg/guides/es/movistarplus.es.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/movistarplus.es.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/movistarplus.es.yml/badge.svg" alt="movistarplus.es" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇪🇸&nbsp;Spain</td><td align="right">183</td><td nowrap><code>https://iptv-org.github.io/epg/guides/es/movistarplus.es.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/movistarplus.es.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/movistarplus.es.yml/badge.svg" alt="movistarplus.es" style="max-width: 100%;"></a></td></tr> <tr><td align="right">99</td><td nowrap><code>https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programacion-tv.elpais.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programacion-tv.elpais.com.yml/badge.svg" alt="programacion-tv.elpais.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">99</td><td nowrap><code>https://iptv-org.github.io/epg/guides/es/programacion-tv.elpais.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/programacion-tv.elpais.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/programacion-tv.elpais.com.yml/badge.svg" alt="programacion-tv.elpais.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">58</td><td nowrap><code>https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">58</td><td nowrap><code>https://iptv-org.github.io/epg/guides/es/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇩&nbsp;Sudan</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sd/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇩&nbsp;Sudan</td><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sd/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇿&nbsp;Swaziland</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sz/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇿&nbsp;Swaziland</td><td align="right">127</td><td nowrap><code>https://iptv-org.github.io/epg/guides/sz/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇸🇪&nbsp;Sweden</td><td align="right">211</td><td nowrap><code>https://iptv-org.github.io/epg/guides/se/tv24.se.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv24.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv24.se.yml/badge.svg" alt="tv24.se" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇸🇪&nbsp;Sweden</td><td align="right">211</td><td nowrap><code>https://iptv-org.github.io/epg/guides/se/tv24.se.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv24.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv24.se.yml/badge.svg" alt="tv24.se" style="max-width: 100%;"></a></td></tr> <tr><td align="right">176</td><td nowrap><code>https://iptv-org.github.io/epg/guides/se/tv.nu.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.nu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.nu.yml/badge.svg" alt="tv.nu" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">176</td><td nowrap><code>https://iptv-org.github.io/epg/guides/se/tv.nu.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.nu.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.nu.yml/badge.svg" alt="tv.nu" style="max-width: 100%;"></a></td></tr> <tr><td align="right">109</td><td nowrap><code>https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">109</td><td nowrap><code>https://iptv-org.github.io/epg/guides/se/allente.se.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/allente.se.yml/badge.svg" alt="allente.se" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇨🇭&nbsp;Switzerland</td><td align="right">599</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.blue.ch.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.blue.ch.yml/badge.svg" alt="tv.blue.ch" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇨🇭&nbsp;Switzerland</td><td align="right">599</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ch/tv.blue.ch.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.blue.ch.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.blue.ch.yml/badge.svg" alt="tv.blue.ch" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇸🇹&nbsp;São Tomé and Príncipe</td><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/st/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇸🇹&nbsp;São Tomé and Príncipe</td><td align="right">128</td><td nowrap><code>https://iptv-org.github.io/epg/guides/st/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇹🇿&nbsp;Tanzania</td><td align="right">152</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tz/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇹🇿&nbsp;Tanzania</td><td align="right">152</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tz/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">30</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tz/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">30</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tz/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇹🇭&nbsp;Thailand</td><td align="right">89</td><td nowrap><code>https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.trueid.net.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.trueid.net.yml/badge.svg" alt="tv.trueid.net" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇹🇭&nbsp;Thailand</td><td align="right">89</td><td nowrap><code>https://iptv-org.github.io/epg/guides/th/tv.trueid.net.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv.trueid.net.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv.trueid.net.yml/badge.svg" alt="tv.trueid.net" style="max-width: 100%;"></a></td></tr> <tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/th/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">2</td><td nowrap><code>https://iptv-org.github.io/epg/guides/th/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇹🇬&nbsp;Togo</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇹🇬&nbsp;Togo</td><td align="right">243</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tg/canalplus-afrique.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/canalplus-afrique.com.yml/badge.svg" alt="canalplus-afrique.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">137</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tg/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">137</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tg/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="3">🇹🇷&nbsp;Turkey</td><td align="right">144</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvplus.com.tr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvplus.com.tr.yml/badge.svg" alt="tvplus.com.tr" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="3">🇹🇷&nbsp;Turkey</td><td align="right">144</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tr/tvplus.com.tr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvplus.com.tr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvplus.com.tr.yml/badge.svg" alt="tvplus.com.tr" style="max-width: 100%;"></a></td></tr> <tr><td align="right">116</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/digiturk.com.tr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/digiturk.com.tr.yml/badge.svg" alt="digiturk.com.tr" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">116</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tr/digiturk.com.tr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/digiturk.com.tr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/digiturk.com.tr.yml/badge.svg" alt="digiturk.com.tr" style="max-width: 100%;"></a></td></tr> <tr><td align="right">105</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dsmart.com.tr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dsmart.com.tr.yml/badge.svg" alt="dsmart.com.tr" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">105</td><td nowrap><code>https://iptv-org.github.io/epg/guides/tr/dsmart.com.tr.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/dsmart.com.tr.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/dsmart.com.tr.yml/badge.svg" alt="dsmart.com.tr" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇺🇬&nbsp;Uganda</td><td align="right">151</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ug/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇺🇬&nbsp;Uganda</td><td align="right">151</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ug/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">146</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ug/startimestv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">146</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ug/startimestv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/startimestv.com.yml/badge.svg" alt="startimestv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇦🇪&nbsp;United Arab Emirates</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇦🇪&nbsp;United Arab Emirates</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ae-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ae-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="5">🇬🇧&nbsp;United Kingdom</td><td align="right">339</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/sky.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/sky.com.yml/badge.svg" alt="sky.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="5">🇬🇧&nbsp;United Kingdom</td><td align="right">339</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/sky.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/sky.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/sky.com.yml/badge.svg" alt="sky.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">197</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/virginmedia.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/virginmedia.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/virginmedia.com.yml/badge.svg" alt="virginmedia.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">197</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/virginmedia.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/virginmedia.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/virginmedia.com.yml/badge.svg" alt="virginmedia.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">192</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/bt.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/bt.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/bt.com.yml/badge.svg" alt="bt.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">192</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/bt.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/bt.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/bt.com.yml/badge.svg" alt="bt.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">97</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/ontvtonight.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">60</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/tv24.co.uk.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv24.co.uk.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv24.co.uk.yml/badge.svg" alt="tv24.co.uk" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">60</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uk/tv24.co.uk.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tv24.co.uk.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tv24.co.uk.yml/badge.svg" alt="tv24.co.uk" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="10">🇺🇸&nbsp;United States</td><td align="right">377</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/directv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/directv.com.yml/badge.svg" alt="directv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="12">🇺🇸&nbsp;United States</td><td align="right">1583</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-local/tvtv.us.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvtv.us.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvtv.us.yml/badge.svg" alt="tvtv.us" style="max-width: 100%;"></a></td></tr> <tr><td align="right">329</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-pluto/i.mjh.nz.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/i.mjh.nz.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/i.mjh.nz.yml/badge.svg" alt="i.mjh.nz" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">713</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/tvtv.us.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvtv.us.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvtv.us.yml/badge.svg" alt="tvtv.us" style="max-width: 100%;"></a></td></tr> <tr><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/tvpassport.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvpassport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvpassport.com.yml/badge.svg" alt="tvpassport.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">383</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/directv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/directv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/directv.com.yml/badge.svg" alt="directv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">88</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvguide.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvguide.com.yml/badge.svg" alt="tvguide.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">329</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-pluto/i.mjh.nz.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/i.mjh.nz.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/i.mjh.nz.yml/badge.svg" alt="i.mjh.nz" style="max-width: 100%;"></a></td></tr> <tr><td align="right">24</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/watchyour.tv.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/watchyour.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/watchyour.tv.yml/badge.svg" alt="watchyour.tv" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">118</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/tvpassport.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvpassport.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvpassport.com.yml/badge.svg" alt="tvpassport.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">22</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">88</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/tvguide.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/tvguide.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/tvguide.com.yml/badge.svg" alt="tvguide.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">14</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/ontvtonight.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">24</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/watchyour.tv.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/watchyour.tv.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/watchyour.tv.yml/badge.svg" alt="watchyour.tv" style="max-width: 100%;"></a></td></tr> <tr><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-en/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">22</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-es/beinsports.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">14</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/ontvtonight.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/ontvtonight.com.yml/badge.svg" alt="ontvtonight.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/myafn.dodmedia.osd.mil.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/myafn.dodmedia.osd.mil.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/myafn.dodmedia.osd.mil.yml/badge.svg" alt="myafn.dodmedia.osd.mil" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-en/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇺🇾&nbsp;Uruguay</td><td align="right">209</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uy/directv.com.uy.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/directv.com.uy.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/directv.com.uy.yml/badge.svg" alt="directv.com.uy" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">10</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us-es/beinsports.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/beinsports.com.yml/badge.svg" alt="beinsports.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">28</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">8</td><td nowrap><code>https://iptv-org.github.io/epg/guides/us/myafn.dodmedia.osd.mil.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/myafn.dodmedia.osd.mil.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/myafn.dodmedia.osd.mil.yml/badge.svg" alt="myafn.dodmedia.osd.mil" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇻🇪&nbsp;Venezuela</td><td align="right">36</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ve/reportv.com.ar.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/reportv.com.ar.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/reportv.com.ar.yml/badge.svg" alt="reportv.com.ar" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇺🇾&nbsp;Uruguay</td><td align="right">209</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uy/directv.com.uy.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/directv.com.uy.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/directv.com.uy.yml/badge.svg" alt="directv.com.uy" style="max-width: 100%;"></a></td></tr> <tr><td align="right">33</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">28</td><td nowrap><code>https://iptv-org.github.io/epg/guides/uy/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇾🇪&nbsp;Yemen</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇻🇪&nbsp;Venezuela</td><td align="right">36</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ve/reportv.com.ar.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/reportv.com.ar.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/reportv.com.ar.yml/badge.svg" alt="reportv.com.ar" style="max-width: 100%;"></a></td></tr> <tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">33</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ve/gatotv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/gatotv.com.yml/badge.svg" alt="gatotv.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top" rowspan="2">🇿🇲&nbsp;Zambia</td><td align="right">136</td><td nowrap><code>https://iptv-org.github.io/epg/guides/zm/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇾🇪&nbsp;Yemen</td><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ye-ar/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/zm/znbc.co.zm.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/znbc.co.zm.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/znbc.co.zm.yml/badge.svg" alt="znbc.co.zm" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">98</td><td nowrap><code>https://iptv-org.github.io/epg/guides/ye-en/osn.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/osn.com.yml/badge.svg" alt="osn.com" style="max-width: 100%;"></a></td></tr> <tr><td valign="top">🇿🇼&nbsp;Zimbabwe</td><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/zw/guide.dstv.com.epg.xml</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top" rowspan="2">🇿🇲&nbsp;Zambia</td><td align="right">136</td><td nowrap><code>https://iptv-org.github.io/epg/guides/zm/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
<tr><td align="right">4</td><td nowrap><code>https://iptv-org.github.io/epg/guides/zm/znbc.co.zm.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/znbc.co.zm.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/znbc.co.zm.yml/badge.svg" alt="znbc.co.zm" style="max-width: 100%;"></a></td></tr>
<tr><td valign="top">🇿🇼&nbsp;Zimbabwe</td><td align="right">130</td><td nowrap><code>https://iptv-org.github.io/epg/guides/zw/guide.dstv.com.epg.xml.gz</code></td><td><a href="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/guide.dstv.com.yml/badge.svg" alt="guide.dstv.com" style="max-width: 100%;"></a></td></tr>
</tbody> </tbody>
</table> </table>
All guides also have a JSON version. To download it, just change the extension from `.xml.gz` to `.json`. All guides also have a compressed and JSON version. To download them, simply change the extension from `.xml` to `.xml.gz` or `.json` respectively.
## Contribution ## Contribution

View file

@ -32,12 +32,16 @@ async function main() {
channels = Object.values(channels) channels = Object.values(channels)
channels = _.sortBy(channels, 'id') channels = _.sortBy(channels, 'id')
const xmlFilepath = `${PUBLIC_DIR}/guides/${key}.epg.xml`
const gzFilepath = `${PUBLIC_DIR}/guides/${key}.epg.xml.gz` const gzFilepath = `${PUBLIC_DIR}/guides/${key}.epg.xml.gz`
const jsonFilepath = `${PUBLIC_DIR}/guides/${key}.epg.json` const jsonFilepath = `${PUBLIC_DIR}/guides/${key}.epg.json`
logger.info(`Creating "${gzFilepath}"...`) logger.info(`Creating "${xmlFilepath}"...`)
const xmltv = generateXMLTV({ channels, programs, date: CURR_DATE }) const xmltv = generateXMLTV({ channels, programs, date: CURR_DATE })
await file.create(xmlFilepath, xmltv)
logger.info(`Creating "${gzFilepath}"...`)
const compressed = await zip.compress(xmltv) const compressed = await zip.compress(xmltv)
await file.create(gzFilepath, compressed) await file.create(gzFilepath, compressed)
logger.info(`Creating "${jsonFilepath}"...`)
await file.create(jsonFilepath, JSON.stringify({ channels, programs })) await file.create(jsonFilepath, JSON.stringify({ channels, programs }))
} }

View file

@ -55,7 +55,7 @@ async function generateCountriesTable(items = []) {
flag: country.flag, flag: country.flag,
name: country.name, name: country.name,
channels: item.count, channels: item.count,
epg: `<code>https://iptv-org.github.io/epg/guides/${item.group}.epg.xml.gz</code>`, epg: `<code>https://iptv-org.github.io/epg/guides/${item.group}.epg.xml</code>`,
status: `<a href="https://github.com/iptv-org/epg/actions/workflows/${item.site}.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/${item.site}.yml/badge.svg" alt="${item.site}" style="max-width: 100%;"></a>` status: `<a href="https://github.com/iptv-org/epg/actions/workflows/${item.site}.yml"><img src="https://github.com/iptv-org/epg/actions/workflows/${item.site}.yml/badge.svg" alt="${item.site}" style="max-width: 100%;"></a>`
}) })
} }

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -211,7 +211,7 @@
<channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel> <channel lang="fr" xmltv_id="TFM.sn" site_id="80234">TFM</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="80067">TFX</channel>
<channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel> <channel lang="fr" xmltv_id="TGB.gw" site_id="80499">TGB</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="80097">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="80097">Tiji</channel>
<channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel> <channel lang="fr" xmltv_id="TiVi5Monde.fr" site_id="80545">Tivi 5 Monde</channel>
<channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel> <channel lang="fr" xmltv_id="TLSAfrica.tg" site_id="80404">TLS Africa</channel>
<channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel> <channel lang="fr" xmltv_id="TM1TV.ml" site_id="80723">TM1 TV</channel>

View file

@ -72,7 +72,7 @@
<channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel> <channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel>
<channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel>
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="50060">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="50060">MCM France</channel>
<channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel> <channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel>
<channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel> <channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel>
<channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel> <channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel>

View file

@ -72,7 +72,7 @@
<channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel> <channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel>
<channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel>
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="50060">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="50060">MCM France</channel>
<channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel> <channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel>
<channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel> <channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel>
<channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel> <channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel>

View file

@ -72,7 +72,7 @@
<channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel> <channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel>
<channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel>
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="50060">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="50060">MCM France</channel>
<channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel> <channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel>
<channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel> <channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel>
<channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel> <channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel>

View file

@ -72,7 +72,7 @@
<channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel> <channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel>
<channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel>
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="50060">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="50060">MCM France</channel>
<channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel> <channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel>
<channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel> <channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel>
<channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel> <channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel>

View file

@ -72,7 +72,7 @@
<channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel> <channel lang="fr" xmltv_id="Ludikids.fr" site_id="50931">Ludikids</channel>
<channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="50057">M6</channel>
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="50085">Martinique 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="50060">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="50060">MCM France</channel>
<channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel> <channel lang="fr" xmltv_id="Metropole.ht" site_id="50306">Metropole</channel>
<channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel> <channel lang="fr" xmltv_id="MTVFrance.fr" site_id="50065">MTV France</channel>
<channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel> <channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="50147">MTV Hits France</channel>

View file

@ -63,7 +63,7 @@
<channel lang="fr" xmltv_id="Ludikids.fr" site_id="51931">Ludikids</channel> <channel lang="fr" xmltv_id="Ludikids.fr" site_id="51931">Ludikids</channel>
<channel lang="fr" xmltv_id="M6.fr" site_id="51057">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="51057">M6</channel>
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="51085">Martinique 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="51085">Martinique 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="51060">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="51060">MCM France</channel>
<channel lang="fr" xmltv_id="Metropole.ht" site_id="51306">Metropole</channel> <channel lang="fr" xmltv_id="Metropole.ht" site_id="51306">Metropole</channel>
<channel lang="fr" xmltv_id="MTVFrance.fr" site_id="51065">MTV France</channel> <channel lang="fr" xmltv_id="MTVFrance.fr" site_id="51065">MTV France</channel>
<channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="51147">MTV Hits France</channel> <channel lang="fr" xmltv_id="MTVHitsFrance.fr" site_id="51147">MTV Hits France</channel>

View file

@ -136,7 +136,7 @@
<channel lang="fr" xmltv_id="M6Music.fr" site_id="352">M6 MUSIC</channel> <channel lang="fr" xmltv_id="M6Music.fr" site_id="352">M6 MUSIC</channel>
<channel lang="fr" xmltv_id="Mangas.fr" site_id="613">MANGAS</channel> <channel lang="fr" xmltv_id="Mangas.fr" site_id="613">MANGAS</channel>
<channel lang="fr" xmltv_id="ManX.be" site_id="672">MAN X</channel> <channel lang="fr" xmltv_id="ManX.be" site_id="672">MAN X</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="556">MCM</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="556">MCM</channel>
<channel lang="fr" xmltv_id="Melody.fr" site_id="580">MELODY</channel> <channel lang="fr" xmltv_id="Melody.fr" site_id="580">MELODY</channel>
<channel lang="fr" xmltv_id="Mezzo.fr" site_id="560">MEZZO</channel> <channel lang="fr" xmltv_id="Mezzo.fr" site_id="560">MEZZO</channel>
<channel lang="fr" xmltv_id="MezzoLiveHD.fr" site_id="268">MEZZO LIVE</channel> <channel lang="fr" xmltv_id="MezzoLiveHD.fr" site_id="268">MEZZO LIVE</channel>
@ -214,7 +214,7 @@
<channel lang="fr" xmltv_id="TF1.fr" site_id="312">TF1</channel> <channel lang="fr" xmltv_id="TF1.fr" site_id="312">TF1</channel>
<channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="526">TF1 SERIES FILMS</channel> <channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="526">TF1 SERIES FILMS</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="570">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="570">TFX</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="583">TIJI</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="583">TIJI</channel>
<channel lang="fr" xmltv_id="TMC.fr" site_id="584">TMC</channel> <channel lang="fr" xmltv_id="TMC.fr" site_id="584">TMC</channel>
<channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="683">TOONAMI</channel> <channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="683">TOONAMI</channel>
<channel lang="fr" xmltv_id="ToutelHistoire.fr" site_id="620">TOUTE L&apos;HISTOIRE</channel> <channel lang="fr" xmltv_id="ToutelHistoire.fr" site_id="620">TOUTE L&apos;HISTOIRE</channel>

View file

@ -13,7 +13,7 @@
<channel lang="lt" xmltv_id="BalticumPlatinum.lt" site_id="balticum-platinum-hd">Balticum Platinum HD</channel> <channel lang="lt" xmltv_id="BalticumPlatinum.lt" site_id="balticum-platinum-hd">Balticum Platinum HD</channel>
<channel lang="lt" xmltv_id="BalticumTV.lt" site_id="balticum-tv">Balticum TV</channel> <channel lang="lt" xmltv_id="BalticumTV.lt" site_id="balticum-tv">Balticum TV</channel>
<channel lang="lt" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg-television">Bloomberg Television</channel> <channel lang="lt" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg-television">Bloomberg Television</channel>
<channel lang="lt" xmltv_id="BlueHustler.uk" site_id="blue-hustler">Blue Hustler</channel> <channel lang="lt" xmltv_id="BlueHustler.nl" site_id="blue-hustler">Blue Hustler</channel>
<channel lang="lt" xmltv_id="CBSRealityEurope.us" site_id="cbs-reality">CBS Reality</channel> <channel lang="lt" xmltv_id="CBSRealityEurope.us" site_id="cbs-reality">CBS Reality</channel>
<channel lang="lt" xmltv_id="CNBCEurope.uk" site_id="cnbc-europe">CNBC Europe</channel> <channel lang="lt" xmltv_id="CNBCEurope.uk" site_id="cnbc-europe">CNBC Europe</channel>
<channel lang="lt" xmltv_id="CNNInternationalEurope.us" site_id="cnn-international">CNN International</channel> <channel lang="lt" xmltv_id="CNNInternationalEurope.us" site_id="cnn-international">CNN International</channel>
@ -66,7 +66,7 @@
<channel lang="lt" xmltv_id="StarFamily.ua" site_id="star-family">Star Family</channel> <channel lang="lt" xmltv_id="StarFamily.ua" site_id="star-family">Star Family</channel>
<channel lang="lt" xmltv_id="TV1000ActionEast.ru" site_id="tv-1000-action">TV 1000 Action</channel> <channel lang="lt" xmltv_id="TV1000ActionEast.ru" site_id="tv-1000-action">TV 1000 Action</channel>
<channel lang="lt" xmltv_id="TV1000East.ru" site_id="tv-1000">TV 1000</channel> <channel lang="lt" xmltv_id="TV1000East.ru" site_id="tv-1000">TV 1000</channel>
<channel lang="lt" xmltv_id="TV1000WorldKino.se" site_id="tv-1000-world-kino">TV 1000 World Kino</channel> <channel lang="lt" xmltv_id="TV1000WorldKino.ru" site_id="tv-1000-world-kino">TV 1000 World Kino</channel>
<channel lang="lt" xmltv_id="TV1HD.lt" site_id="tv1-hd">TV1 HD</channel> <channel lang="lt" xmltv_id="TV1HD.lt" site_id="tv1-hd">TV1 HD</channel>
<channel lang="lt" xmltv_id="TV3Film.lv" site_id="tv-1000-premium-hd">TV3 Film HD</channel> <channel lang="lt" xmltv_id="TV3Film.lv" site_id="tv-1000-premium-hd">TV3 Film HD</channel>
<channel lang="lt" xmltv_id="TV3HDLithuania.lt" site_id="tv3-hd">TV3 HD</channel> <channel lang="lt" xmltv_id="TV3HDLithuania.lt" site_id="tv3-hd">TV3 HD</channel>
@ -79,9 +79,9 @@
<channel lang="lt" xmltv_id="TVBolt.ua" site_id="bolt">Bolt</channel> <channel lang="lt" xmltv_id="TVBolt.ua" site_id="bolt">Bolt</channel>
<channel lang="lt" xmltv_id="TVPInfo.pl" site_id="tvp-info">TVP Info</channel> <channel lang="lt" xmltv_id="TVPInfo.pl" site_id="tvp-info">TVP Info</channel>
<channel lang="lt" xmltv_id="TVPPolonia.pl" site_id="tvp-polonia">TVP Polonia</channel> <channel lang="lt" xmltv_id="TVPPolonia.pl" site_id="tvp-polonia">TVP Polonia</channel>
<channel lang="lt" xmltv_id="TijiRussia.ru" site_id="tiji">Tiji</channel> <channel lang="lt" xmltv_id="TiJiRussia.ru" site_id="tiji">Tiji</channel>
<channel lang="lt" xmltv_id="VIPComedy.ru" site_id="vip-comedy">ViP Comedy</channel> <channel lang="lt" xmltv_id="VIPComedy.ru" site_id="vip-comedy">ViP Comedy</channel>
<channel lang="lt" xmltv_id="VividTouch.us" site_id="vivid-touch">Vivid Touch</channel> <channel lang="lt" xmltv_id="VividTouch.uk" site_id="vivid-touch">Vivid Touch</channel>
<!-- <channel lang="lt" xmltv_id="" site_id="amc">AMC</channel> --> <!-- <channel lang="lt" xmltv_id="" site_id="amc">AMC</channel> -->
<!-- <channel lang="lt" xmltv_id="" site_id="animal-planet-hd">Animal Planet HD</channel> --> <!-- <channel lang="lt" xmltv_id="" site_id="animal-planet-hd">Animal Planet HD</channel> -->
<!-- <channel lang="lt" xmltv_id="" site_id="boomerang">Boomerang</channel> --> <!-- <channel lang="lt" xmltv_id="" site_id="boomerang">Boomerang</channel> -->

View file

@ -2,7 +2,7 @@
<site site="chaines-tv.orange.fr"> <site site="chaines-tv.orange.fr">
<channels> <channels>
<channel lang="fr" xmltv_id="01TV.fr" site_id="2942">01 TV</channel> <channel lang="fr" xmltv_id="01TV.fr" site_id="2942">01 TV</channel>
<channel lang="fr" xmltv_id="2MMonde.ma" site_id="340">2M Monde</channel> <channel lang="fr" xmltv_id="2MInternational.ma" site_id="340">2M Monde</channel>
<channel lang="fr" xmltv_id="3sat.de" site_id="960">3sat</channel> <channel lang="fr" xmltv_id="3sat.de" site_id="960">3sat</channel>
<channel lang="fr" xmltv_id="6ter.fr" site_id="1403">6ter</channel> <channel lang="fr" xmltv_id="6ter.fr" site_id="1403">6ter</channel>
<channel lang="fr" xmltv_id="AB1.fr" site_id="5">AB 1</channel> <channel lang="fr" xmltv_id="AB1.fr" site_id="5">AB 1</channel>
@ -118,7 +118,7 @@
<channel lang="fr" xmltv_id="M6Music.fr" site_id="453">M6 Music</channel> <channel lang="fr" xmltv_id="M6Music.fr" site_id="453">M6 Music</channel>
<channel lang="fr" xmltv_id="MaisonTravauxTV.fr" site_id="3360">Maison &amp; Travaux TV</channel> <channel lang="fr" xmltv_id="MaisonTravauxTV.fr" site_id="3360">Maison &amp; Travaux TV</channel>
<channel lang="fr" xmltv_id="Mangas.fr" site_id="6">Mangas</channel> <channel lang="fr" xmltv_id="Mangas.fr" site_id="6">Mangas</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="121">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="121">MCM France</channel>
<channel lang="fr" xmltv_id="Melody.fr" site_id="265">Melody</channel> <channel lang="fr" xmltv_id="Melody.fr" site_id="265">Melody</channel>
<channel lang="fr" xmltv_id="MelodydAfrique.fr" site_id="2321">Melody d&apos;Afrique</channel> <channel lang="fr" xmltv_id="MelodydAfrique.fr" site_id="2321">Melody d&apos;Afrique</channel>
<channel lang="fr" xmltv_id="Mezzo.fr" site_id="125">Mezzo</channel> <channel lang="fr" xmltv_id="Mezzo.fr" site_id="125">Mezzo</channel>
@ -178,7 +178,7 @@
<channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="1404">TF 1 Séries Films</channel> <channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="1404">TF 1 Séries Films</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="446">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="446">TFX</channel>
<channel lang="fr" xmltv_id="TheIsraeliNetwork.il" site_id="2000">The Israeli Network</channel> <channel lang="fr" xmltv_id="TheIsraeliNetwork.il" site_id="2000">The Israeli Network</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="229">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="229">Tiji</channel>
<channel lang="fr" xmltv_id="TMC.mc" site_id="195">TMC</channel> <channel lang="fr" xmltv_id="TMC.mc" site_id="195">TMC</channel>
<channel lang="fr" xmltv_id="TMCPlus1.mc" site_id="2442">TMC +1</channel> <channel lang="fr" xmltv_id="TMCPlus1.mc" site_id="2442">TMC +1</channel>
<channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="2040">Toonami France</channel> <channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="2040">Toonami France</channel>

View file

@ -12,7 +12,7 @@
<channel lang="el" xmltv_id="BBCEarthGreece.gr" site_id="bbc-earth-hd">BBC Earth HD</channel> <channel lang="el" xmltv_id="BBCEarthGreece.gr" site_id="bbc-earth-hd">BBC Earth HD</channel>
<channel lang="el" xmltv_id="BBCWorldNewsEurope.uk" site_id="bbc-world-news">BBC World News</channel> <channel lang="el" xmltv_id="BBCWorldNewsEurope.uk" site_id="bbc-world-news">BBC World News</channel>
<channel lang="el" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg">Bloomberg TV</channel> <channel lang="el" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg">Bloomberg TV</channel>
<channel lang="el" xmltv_id="BlueHustler.uk" site_id="blue-hustler">Blue Hustler</channel> <channel lang="el" xmltv_id="BlueHustler.nl" site_id="blue-hustler">Blue Hustler</channel>
<channel lang="el" xmltv_id="BodyinBalanceGreece.gr" site_id="body-in-balance">Body in Balance</channel> <channel lang="el" xmltv_id="BodyinBalanceGreece.gr" site_id="body-in-balance">Body in Balance</channel>
<channel lang="el" xmltv_id="CBSRealityEurope.us" site_id="cbs-reality">CBS Reality</channel> <channel lang="el" xmltv_id="CBSRealityEurope.us" site_id="cbs-reality">CBS Reality</channel>
<channel lang="el" xmltv_id="CNBCEurope.uk" site_id="cnbc">CNBC</channel> <channel lang="el" xmltv_id="CNBCEurope.uk" site_id="cnbc">CNBC</channel>
@ -53,7 +53,7 @@
<channel lang="el" xmltv_id="France24French.fr" site_id="france-24-fr">France 24 Français</channel> <channel lang="el" xmltv_id="France24French.fr" site_id="france-24-fr">France 24 Français</channel>
<channel lang="el" xmltv_id="GinxeSportsTVGreece.gr" site_id="ginx-esports">Ginx eSports TV</channel> <channel lang="el" xmltv_id="GinxeSportsTVGreece.gr" site_id="ginx-esports">Ginx eSports TV</channel>
<channel lang="el" xmltv_id="HellenicParliamentTV.gr" site_id="boule">Vouli TV</channel> <channel lang="el" xmltv_id="HellenicParliamentTV.gr" site_id="boule">Vouli TV</channel>
<channel lang="el" xmltv_id="HustlerHD.uk" site_id="hustler-tv-hd">Hustler HD</channel> <channel lang="el" xmltv_id="HustlerHD.nl" site_id="hustler-tv-hd">Hustler HD</channel>
<channel lang="el" xmltv_id="KritiTV.gr" site_id="krete-tv">Kriti TV</channel> <channel lang="el" xmltv_id="KritiTV.gr" site_id="krete-tv">Kriti TV</channel>
<channel lang="el" xmltv_id="LuxeTV.lu" site_id="luxe-tv-hd">Luxe TV HD</channel> <channel lang="el" xmltv_id="LuxeTV.lu" site_id="luxe-tv-hd">Luxe TV HD</channel>
<channel lang="el" xmltv_id="MadTV.gr" site_id="mad">Mad TV</channel> <channel lang="el" xmltv_id="MadTV.gr" site_id="mad">Mad TV</channel>
@ -72,7 +72,7 @@
<channel lang="el" xmltv_id="OpenBeyondTV.gr" site_id="epsilon-tv">Open Beyond TV</channel> <channel lang="el" xmltv_id="OpenBeyondTV.gr" site_id="epsilon-tv">Open Beyond TV</channel>
<channel lang="el" xmltv_id="PenthouseGold.us" site_id="penthouse-hd1">Penthouse Gold</channel> <channel lang="el" xmltv_id="PenthouseGold.us" site_id="penthouse-hd1">Penthouse Gold</channel>
<channel lang="el" xmltv_id="PrivateTV.nl" site_id="private-tv">Private TV</channel> <channel lang="el" xmltv_id="PrivateTV.nl" site_id="private-tv">Private TV</channel>
<channel lang="el" xmltv_id="RTNews.ru" site_id="russia-today">RT News</channel> <channel lang="el" xmltv_id="RT.ru" site_id="russia-today">RT News</channel>
<channel lang="el" xmltv_id="SirinaTV.gr" site_id="sirina-tv">Sirina TV</channel> <channel lang="el" xmltv_id="SirinaTV.gr" site_id="sirina-tv">Sirina TV</channel>
<channel lang="el" xmltv_id="SkaiTV.gr" site_id="skai">SKAI</channel> <channel lang="el" xmltv_id="SkaiTV.gr" site_id="skai">SKAI</channel>
<channel lang="el" xmltv_id="SmileTV.gr" site_id="smile-tv">Smile TV</channel> <channel lang="el" xmltv_id="SmileTV.gr" site_id="smile-tv">Smile TV</channel>

View file

@ -77,7 +77,7 @@
<channel lang="nl" xmltv_id="HofstreekTV.nl" site_id="3058">Hofstreek TV</channel> <channel lang="nl" xmltv_id="HofstreekTV.nl" site_id="3058">Hofstreek TV</channel>
<channel lang="nl" xmltv_id="HOiTV.nl" site_id="3072">HOi TV</channel> <channel lang="nl" xmltv_id="HOiTV.nl" site_id="3072">HOi TV</channel>
<channel lang="nl" xmltv_id="HorseCountryTV.uk" site_id="31">Horse &amp; Country TV</channel> <channel lang="nl" xmltv_id="HorseCountryTV.uk" site_id="31">Horse &amp; Country TV</channel>
<channel lang="nl" xmltv_id="HustlerTVEurope.uk" site_id="3044">Hustler TV Europe</channel> <channel lang="nl" xmltv_id="HustlerTVEurope.nl" site_id="3044">Hustler TV Europe</channel>
<channel lang="nl" xmltv_id="IdeaalTV.nl" site_id="3174">Ideaal TV</channel> <channel lang="nl" xmltv_id="IdeaalTV.nl" site_id="3174">Ideaal TV</channel>
<channel lang="nl" xmltv_id="IjsselmondTV.nl" site_id="3161">Ijsselmond TV</channel> <channel lang="nl" xmltv_id="IjsselmondTV.nl" site_id="3161">Ijsselmond TV</channel>
<channel lang="nl" xmltv_id="InsightTV.nl" site_id="3149">Insight TV</channel> <channel lang="nl" xmltv_id="InsightTV.nl" site_id="3149">Insight TV</channel>

View file

@ -39,7 +39,7 @@
<channel lang="es" xmltv_id="CanalLuz.ar" site_id="354#CLUZ">Canal LUZ (ARG)</channel> <channel lang="es" xmltv_id="CanalLuz.ar" site_id="354#CLUZ">Canal LUZ (ARG)</channel>
<channel lang="es" xmltv_id="CanalOrbe21.ar" site_id="351#ORBE21">Canal 21 (ARG)</channel> <channel lang="es" xmltv_id="CanalOrbe21.ar" site_id="351#ORBE21">Canal 21 (ARG)</channel>
<channel lang="es" xmltv_id="CanalRural.ar" site_id="728#CRUR">Canal Rural</channel> <channel lang="es" xmltv_id="CanalRural.ar" site_id="728#CRUR">Canal Rural</channel>
<channel lang="es" xmltv_id="CanalaHD.ar" site_id="1748#CANAHD">Canal A HD</channel> <channel lang="es" xmltv_id="CanalAHD.ar" site_id="1748#CANAHD">Canal A HD</channel>
<channel lang="es" xmltv_id="CanaldelaCiudad.ar" site_id="127#CDLC">CANAL DE LA CIUDAD</channel> <channel lang="es" xmltv_id="CanaldelaCiudad.ar" site_id="127#CDLC">CANAL DE LA CIUDAD</channel>
<channel lang="es" xmltv_id="CaracolInternacional.co" site_id="772#CRCL">Caracol Internacional</channel> <channel lang="es" xmltv_id="CaracolInternacional.co" site_id="772#CRCL">Caracol Internacional</channel>
<channel lang="es" xmltv_id="CartoonNetworkHDSouthAtlantic.us" site_id="1304#TOONHD">Cartoon Network HD</channel> <channel lang="es" xmltv_id="CartoonNetworkHDSouthAtlantic.us" site_id="1304#TOONHD">Cartoon Network HD</channel>
@ -150,7 +150,7 @@
<channel lang="es" xmltv_id="HistorySouth.us" site_id="742#THC">History (Sur)</channel> <channel lang="es" xmltv_id="HistorySouth.us" site_id="742#THC">History (Sur)</channel>
<channel lang="es" xmltv_id="HolaTVHDLatinAmerica.es" site_id="221#HOLAHD">Hola TV HD</channel> <channel lang="es" xmltv_id="HolaTVHDLatinAmerica.es" site_id="221#HOLAHD">Hola TV HD</channel>
<channel lang="es" xmltv_id="HolaTVLatinAmerica.es" site_id="221#HOLATV">Hola TV</channel> <channel lang="es" xmltv_id="HolaTVLatinAmerica.es" site_id="221#HOLATV">Hola TV</channel>
<channel lang="es" xmltv_id="HustlerTVUS.us" site_id="470#HUST">HustlerTV</channel> <channel lang="es" xmltv_id="HustlerTV.us" site_id="470#HUST">HustlerTV</channel>
<channel lang="es" xmltv_id="ISatSouth.us" site_id="520#ISAT">I-SAT</channel> <channel lang="es" xmltv_id="ISatSouth.us" site_id="520#ISAT">I-SAT</channel>
<channel lang="es" xmltv_id="IVCHDPanregional.ve" site_id="235#IVCHD">IVC Internacional HD</channel> <channel lang="es" xmltv_id="IVCHDPanregional.ve" site_id="235#IVCHD">IVC Internacional HD</channel>
<channel lang="es" xmltv_id="IVCPanregional.ve" site_id="235#IVC">IVC Internacional</channel> <channel lang="es" xmltv_id="IVCPanregional.ve" site_id="235#IVC">IVC Internacional</channel>

View file

@ -116,7 +116,7 @@
<channel lang="es" xmltv_id="HolaTVHDLatinAmerica.es" site_id="221#HOLAHD">Hola TV HD</channel> <channel lang="es" xmltv_id="HolaTVHDLatinAmerica.es" site_id="221#HOLAHD">Hola TV HD</channel>
<channel lang="es" xmltv_id="HolaTVLatinAmerica.es" site_id="221#HOLATV">Hola TV</channel> <channel lang="es" xmltv_id="HolaTVLatinAmerica.es" site_id="221#HOLATV">Hola TV</channel>
<channel lang="es" xmltv_id="HTV.us" site_id="272#HTV">HTV</channel> <channel lang="es" xmltv_id="HTV.us" site_id="272#HTV">HTV</channel>
<channel lang="es" xmltv_id="HustlerTVUS.us" site_id="470#HUST">HustlerTV</channel> <channel lang="es" xmltv_id="HustlerTV.us" site_id="470#HUST">HustlerTV</channel>
<channel lang="es" xmltv_id="InvestigationDiscoveryHDSouth.us" site_id="223#IDHD">Discovery ID HD</channel> <channel lang="es" xmltv_id="InvestigationDiscoveryHDSouth.us" site_id="223#IDHD">Discovery ID HD</channel>
<channel lang="es" xmltv_id="InvestigationDiscoverySouth.us" site_id="223#ID">Investigation Discovery</channel> <channel lang="es" xmltv_id="InvestigationDiscoverySouth.us" site_id="223#ID">Investigation Discovery</channel>
<channel lang="es" xmltv_id="ISatSouth.us" site_id="520#ISAT">I-SAT</channel> <channel lang="es" xmltv_id="ISatSouth.us" site_id="520#ISAT">I-SAT</channel>

View file

@ -32,8 +32,8 @@
<channel lang="en" xmltv_id="BloombergTelevision.us" site_id="353">Bloomberg TV US</channel> <channel lang="en" xmltv_id="BloombergTelevision.us" site_id="353">Bloomberg TV US</channel>
<channel lang="en" xmltv_id="Boomerang.us" site_id="298">Boomerang US</channel> <channel lang="en" xmltv_id="Boomerang.us" site_id="298">Boomerang US</channel>
<channel lang="en" xmltv_id="BravoEast.us" site_id="237">Bravo East</channel> <channel lang="en" xmltv_id="BravoEast.us" site_id="237">Bravo East</channel>
<channel lang="en" xmltv_id="BrazzersTVMonthlyOffer.us" site_id="580">Brazzers TV Monthly Offer</channel> <!-- <channel lang="en" xmltv_id="BrazzersTVMonthlyOffer.us" site_id="580">Brazzers TV Monthly Offer</channel> -->
<channel lang="en" xmltv_id="BrazzersTVXX.us" site_id="597">Brazzers TV XX</channel> <!-- <channel lang="en" xmltv_id="BrazzersTVXX.us" site_id="597">Brazzers TV XX</channel> -->
<channel lang="en" xmltv_id="BuzzTV.us" site_id="243">Buzz TV</channel> <channel lang="en" xmltv_id="BuzzTV.us" site_id="243">Buzz TV</channel>
<channel lang="en" xmltv_id="BYUTV.us" site_id="374">BYU TV</channel> <channel lang="en" xmltv_id="BYUTV.us" site_id="374">BYU TV</channel>
<channel lang="en" xmltv_id="Canal22Internacional.mx" site_id="446">Canal 22 Internacional</channel> <channel lang="en" xmltv_id="Canal22Internacional.mx" site_id="446">Canal 22 Internacional</channel>
@ -118,7 +118,7 @@
<channel lang="en" xmltv_id="FYIEast.us" site_id="266">FYI East</channel> <channel lang="en" xmltv_id="FYIEast.us" site_id="266">FYI East</channel>
<channel lang="en" xmltv_id="GalavisionEast.us" site_id="404">Galavisión Este</channel> <channel lang="en" xmltv_id="GalavisionEast.us" site_id="404">Galavisión Este</channel>
<channel lang="en" xmltv_id="GameShowNetworkEast.us" site_id="233">Game Show Network East</channel> <channel lang="en" xmltv_id="GameShowNetworkEast.us" site_id="233">Game Show Network East</channel>
<channel lang="en" xmltv_id="GEBAmerica.us" site_id="363">GEB</channel> <!-- <channel lang="en" xmltv_id="GEBAmerica.us" site_id="363">GEB</channel> -->
<channel lang="en" xmltv_id="GemShoppingNetwork.us" site_id="228">Gem Shopping Network</channel> <channel lang="en" xmltv_id="GemShoppingNetwork.us" site_id="228">Gem Shopping Network</channel>
<channel lang="en" xmltv_id="GMALifeTV.ph" site_id="2069">GMA Life TV</channel> <channel lang="en" xmltv_id="GMALifeTV.ph" site_id="2069">GMA Life TV</channel>
<channel lang="en" xmltv_id="GMAPinoyTVUSACanada.ph" site_id="2061">GMA Pinoy TV USA &amp; Canada</channel> <channel lang="en" xmltv_id="GMAPinoyTVUSACanada.ph" site_id="2061">GMA Pinoy TV USA &amp; Canada</channel>
@ -151,7 +151,7 @@
<channel lang="en" xmltv_id="Honvietv.us" site_id="2038">Honvietv</channel> <channel lang="en" xmltv_id="Honvietv.us" site_id="2038">Honvietv</channel>
<channel lang="en" xmltv_id="HopeChannelNorthAmerica.us" site_id="368">Hope Channel North America</channel> <channel lang="en" xmltv_id="HopeChannelNorthAmerica.us" site_id="368">Hope Channel North America</channel>
<channel lang="en" xmltv_id="HSN.us" site_id="240">HSN</channel> <channel lang="en" xmltv_id="HSN.us" site_id="240">HSN</channel>
<channel lang="en" xmltv_id="HustlerHD.uk" site_id="599">Hustler HD USA</channel> <channel lang="en" xmltv_id="HustlerHD.nl" site_id="599">Hustler HD USA</channel>
<channel lang="en" xmltv_id="ICableFinanceInfoChannel.hk" site_id="2108">I-Cable Finance Info Channel</channel> <channel lang="en" xmltv_id="ICableFinanceInfoChannel.hk" site_id="2108">I-Cable Finance Info Channel</channel>
<channel lang="en" xmltv_id="ICableNewsChannel.hk" site_id="2109">I-Cable News Channel</channel> <channel lang="en" xmltv_id="ICableNewsChannel.hk" site_id="2109">I-Cable News Channel</channel>
<channel lang="en" xmltv_id="IFCEast.us" site_id="333">IFC East</channel> <channel lang="en" xmltv_id="IFCEast.us" site_id="333">IFC East</channel>
@ -166,7 +166,7 @@
<channel lang="en" xmltv_id="JusticeCentralTV.us" site_id="383">Justice Central TV</channel> <channel lang="en" xmltv_id="JusticeCentralTV.us" site_id="383">Justice Central TV</channel>
<channel lang="en" xmltv_id="KABCDT1.us" site_id="397">ABC WEST</channel> <channel lang="en" xmltv_id="KABCDT1.us" site_id="397">ABC WEST</channel>
<channel lang="en" xmltv_id="KapatidTV5.ph" site_id="2071">Kapatid TV 5</channel> <channel lang="en" xmltv_id="KapatidTV5.ph" site_id="2071">Kapatid TV 5</channel>
<channel lang="en" xmltv_id="KaruselInternational.ru" site_id="2145">Karusel International</channel> <channel lang="en" xmltv_id="Karusel.ru" site_id="2145">Karusel International</channel>
<channel lang="en" xmltv_id="KBSKorea.kr" site_id="2085">KBS Korea</channel> <channel lang="en" xmltv_id="KBSKorea.kr" site_id="2085">KBS Korea</channel>
<channel lang="en" xmltv_id="KBSWorld.kr" site_id="2082">KBS World</channel> <channel lang="en" xmltv_id="KBSWorld.kr" site_id="2082">KBS World</channel>
<channel lang="en" xmltv_id="KCBSDT1.us" site_id="391">CBS West</channel> <channel lang="en" xmltv_id="KCBSDT1.us" site_id="391">CBS West</channel>
@ -180,7 +180,7 @@
<channel lang="en" xmltv_id="MASN.us" site_id="640">MASN</channel> <channel lang="en" xmltv_id="MASN.us" site_id="640">MASN</channel>
<channel lang="en" xmltv_id="MAVTV.us" site_id="214">MavTV</channel> <channel lang="en" xmltv_id="MAVTV.us" site_id="214">MavTV</channel>
<channel lang="en" xmltv_id="MaxLatino.us" site_id="523">MaxLatino</channel> <channel lang="en" xmltv_id="MaxLatino.us" site_id="523">MaxLatino</channel>
<channel lang="en" xmltv_id="MBCTV.kr" site_id="2081">MBC</channel> <channel lang="en" xmltv_id="MBCAmerica.us" site_id="2081">MBC</channel>
<channel lang="en" xmltv_id="MBNPlus.kr" site_id="2088">MBN Plus</channel> <channel lang="en" xmltv_id="MBNPlus.kr" site_id="2088">MBN Plus</channel>
<channel lang="en" xmltv_id="MediasetItalia.it" site_id="2020">Mediaset Italia</channel> <channel lang="en" xmltv_id="MediasetItalia.it" site_id="2020">Mediaset Italia</channel>
<channel lang="en" xmltv_id="MegaTV.us" site_id="405">Mega TV</channel> <channel lang="en" xmltv_id="MegaTV.us" site_id="405">Mega TV</channel>
@ -219,7 +219,7 @@
<channel lang="en" xmltv_id="NTN24.co" site_id="418">NTN 24 USA</channel> <channel lang="en" xmltv_id="NTN24.co" site_id="418">NTN 24 USA</channel>
<channel lang="en" xmltv_id="NTVAmerica.us" site_id="2146">NTV America</channel> <channel lang="en" xmltv_id="NTVAmerica.us" site_id="2146">NTV America</channel>
<channel lang="en" xmltv_id="OlympicChannelUSA.us" site_id="624">Olympic Channel USA</channel> <channel lang="en" xmltv_id="OlympicChannelUSA.us" site_id="624">Olympic Channel USA</channel>
<channel lang="en" xmltv_id="OnceMexico.mx" site_id="447">Once México</channel> <channel lang="en" xmltv_id="XEIPNTDT.mx" site_id="447">Once México</channel>
<channel lang="en" xmltv_id="OneAmericaNewsNetwork.us" site_id="347">One America News Network</channel> <channel lang="en" xmltv_id="OneAmericaNewsNetwork.us" site_id="347">One America News Network</channel>
<channel lang="en" xmltv_id="OPMTV.us" site_id="2064">OPM TV</channel> <channel lang="en" xmltv_id="OPMTV.us" site_id="2064">OPM TV</channel>
<channel lang="en" xmltv_id="OprahWinfreyNetworkEast.us" site_id="279">Oprah Winfrey Network East</channel> <channel lang="en" xmltv_id="OprahWinfreyNetworkEast.us" site_id="279">Oprah Winfrey Network East</channel>
@ -232,7 +232,7 @@
<channel lang="en" xmltv_id="PenthouseTV.us" site_id="595">Penthouse TV</channel> <channel lang="en" xmltv_id="PenthouseTV.us" site_id="595">Penthouse TV</channel>
<channel lang="en" xmltv_id="PenthouseTVMonthlyOffer.us" site_id="587">Penthouse TV Monthly Offer</channel> <channel lang="en" xmltv_id="PenthouseTVMonthlyOffer.us" site_id="587">Penthouse TV Monthly Offer</channel>
<channel lang="en" xmltv_id="PeruMagico.pe" site_id="431">Perú Mágico</channel> <channel lang="en" xmltv_id="PeruMagico.pe" site_id="431">Perú Mágico</channel>
<channel lang="en" xmltv_id="ChannelOneAmerica.ru" site_id="2140">Pervyy kanal America</channel> <!-- <channel lang="en" xmltv_id="ChannelOneAmerica.ru" site_id="2140">Pervyy kanal America</channel> -->
<channel lang="en" xmltv_id="PhoenixHongKong.hk" site_id="2104">Phoenix Hong Kong</channel> <channel lang="en" xmltv_id="PhoenixHongKong.hk" site_id="2104">Phoenix Hong Kong</channel>
<channel lang="en" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="2051">Phoenix InfoNews Channel</channel> <channel lang="en" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="2051">Phoenix InfoNews Channel</channel>
<channel lang="en" xmltv_id="PhoenixNorthAmericaChineseChannel.hk" site_id="2050">Phoenix North America Chinese Channel</channel> <channel lang="en" xmltv_id="PhoenixNorthAmericaChineseChannel.hk" site_id="2050">Phoenix North America Chinese Channel</channel>
@ -255,10 +255,10 @@
<channel lang="en" xmltv_id="Russia24.ru" site_id="2147">Rossiya 24</channel> <channel lang="en" xmltv_id="Russia24.ru" site_id="2147">Rossiya 24</channel>
<channel lang="en" xmltv_id="RTAmerica.us" site_id="321">RT America</channel> <channel lang="en" xmltv_id="RTAmerica.us" site_id="321">RT America</channel>
<channel lang="en" xmltv_id="RTRPlanetaUSA.us" site_id="2141">RTR Planeta USA</channel> <channel lang="en" xmltv_id="RTRPlanetaUSA.us" site_id="2141">RTR Planeta USA</channel>
<channel lang="en" xmltv_id="RTViUSA.us" site_id="2148">RTVi USA</channel> <channel lang="en" xmltv_id="RTVi.ru" site_id="2148">RTVi USA</channel>
<channel lang="en" xmltv_id="SariSariChannel.ph" site_id="2068">Sari Sari Channel</channel> <channel lang="en" xmltv_id="SariSariChannel.ph" site_id="2068">Sari Sari Channel</channel>
<channel lang="en" xmltv_id="SBNDomestic.us" site_id="344">SBN Domestic</channel> <channel lang="en" xmltv_id="SBNDomestic.us" site_id="344">SBN Domestic</channel>
<channel lang="en" xmltv_id="SBSTV.kr" site_id="2080">SBS</channel> <!-- <channel lang="en" xmltv_id="SBSTV.kr" site_id="2080">SBS</channel> -->
<channel lang="en" xmltv_id="SBSPlus.kr" site_id="2084">SBS Plus</channel> <channel lang="en" xmltv_id="SBSPlus.kr" site_id="2084">SBS Plus</channel>
<channel lang="en" xmltv_id="SBTN.us" site_id="2030">SBTN</channel> <channel lang="en" xmltv_id="SBTN.us" site_id="2030">SBTN</channel>
<channel lang="en" xmltv_id="SChannel.us" site_id="2034">S Channel</channel> <channel lang="en" xmltv_id="SChannel.us" site_id="2034">S Channel</channel>
@ -300,7 +300,7 @@
<channel lang="en" xmltv_id="TBNEast.us" site_id="372">TBN US</channel> <channel lang="en" xmltv_id="TBNEast.us" site_id="372">TBN US</channel>
<channel lang="en" xmltv_id="TBSEast.us" site_id="247">TBS East</channel> <channel lang="en" xmltv_id="TBSEast.us" site_id="247">TBS East</channel>
<channel lang="en" xmltv_id="TCMEast.us" site_id="256">TCM US</channel> <channel lang="en" xmltv_id="TCMEast.us" site_id="256">TCM US</channel>
<channel lang="en" xmltv_id="TCT.us" site_id="377">TCT</channel> <!-- <channel lang="en" xmltv_id="TCT.us" site_id="377">TCT</channel> -->
<channel lang="en" xmltv_id="TeenNickUSEast.us" site_id="303">TeenNick East</channel> <channel lang="en" xmltv_id="TeenNickUSEast.us" site_id="303">TeenNick East</channel>
<channel lang="en" xmltv_id="TeleCentro.us" site_id="429">TeleCentro</channel> <channel lang="en" xmltv_id="TeleCentro.us" site_id="429">TeleCentro</channel>
<channel lang="en" xmltv_id="TelefeInternacional.ar" site_id="411">Telefe Internacional</channel> <channel lang="en" xmltv_id="TelefeInternacional.ar" site_id="411">Telefe Internacional</channel>

View file

@ -216,7 +216,7 @@
<channel lang="en" xmltv_id="RomedyNow.in" site_id="10000000017730000">Romedy Now</channel> <channel lang="en" xmltv_id="RomedyNow.in" site_id="10000000017730000">Romedy Now</channel>
<channel lang="en" xmltv_id="RongeenTV.in" site_id="10000000066990000">Rongeen TV</channel> <channel lang="en" xmltv_id="RongeenTV.in" site_id="10000000066990000">Rongeen TV</channel>
<channel lang="en" xmltv_id="RPlus.in" site_id="10000000016080000">R Plus</channel> <channel lang="en" xmltv_id="RPlus.in" site_id="10000000016080000">R Plus</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="10000000003490000">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="10000000003490000">RT News</channel>
<channel lang="en" xmltv_id="RupasiBangla.in" site_id="10000000005690000">Rupasi Bangla</channel> <channel lang="en" xmltv_id="RupasiBangla.in" site_id="10000000005690000">Rupasi Bangla</channel>
<channel lang="en" xmltv_id="SaamTV.in" site_id="10000000004280000">Saam TV</channel> <channel lang="en" xmltv_id="SaamTV.in" site_id="10000000004280000">Saam TV</channel>
<channel lang="en" xmltv_id="SadhnaTV.in" site_id="10000000001330000">Sadhna TV</channel> <channel lang="en" xmltv_id="SadhnaTV.in" site_id="10000000001330000">Sadhna TV</channel>

View file

@ -97,7 +97,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="zaf#430">RAI International</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="zaf#430">RAI International</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="zaf#155">Real Time</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="zaf#155">Real Time</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="zaf#168">ROK</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="zaf#168">ROK</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="zaf#407">Russia Today</channel> <channel lang="en" xmltv_id="RT.ru" site_id="zaf#407">Russia Today</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="zaf#435">RTPI</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="zaf#435">RTPI</channel>
<channel lang="en" xmltv_id="SABC1.za" site_id="zaf#191">SABC 1 HD</channel> <channel lang="en" xmltv_id="SABC1.za" site_id="zaf#191">SABC 1 HD</channel>
<channel lang="en" xmltv_id="SABC2.za" site_id="zaf#192">SABC 2 HD</channel> <channel lang="en" xmltv_id="SABC2.za" site_id="zaf#192">SABC 2 HD</channel>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<site site="elcinema.com"> <site site="elcinema.com">
<channels> <channels>
<channel lang="ar" xmltv_id="2MMonde.ma" site_id="1353">2M Monde</channel> <channel lang="ar" xmltv_id="2MInternational.ma" site_id="1353">2M Monde</channel>
<channel lang="ar" xmltv_id="AbuDhabiDrama.ae" site_id="1178">Abu Dhabi Drama</channel> <channel lang="ar" xmltv_id="AbuDhabiDrama.ae" site_id="1178">Abu Dhabi Drama</channel>
<channel lang="ar" xmltv_id="AbuDhabiTV.ae" site_id="1136">Abu Dhabi TV</channel> <channel lang="ar" xmltv_id="AbuDhabiTV.ae" site_id="1136">Abu Dhabi TV</channel>
<channel lang="ar" xmltv_id="AlAoulaMiddleEast.ma" site_id="1101">Al Aoula Middle East</channel> <channel lang="ar" xmltv_id="AlAoulaMiddleEast.ma" site_id="1101">Al Aoula Middle East</channel>
@ -10,7 +10,7 @@
<channel lang="ar" xmltv_id="AlHayatTV.us" site_id="1137">Al Hayat</channel> <channel lang="ar" xmltv_id="AlHayatTV.us" site_id="1137">Al Hayat</channel>
<channel lang="ar" xmltv_id="AlJadeed.lb" site_id="1216">Al Jadeed</channel> <channel lang="ar" xmltv_id="AlJadeed.lb" site_id="1216">Al Jadeed</channel>
<channel lang="ar" xmltv_id="AlKaheraWalNas.eg" site_id="1174">Al Kahera Wal Nas</channel> <channel lang="ar" xmltv_id="AlKaheraWalNas.eg" site_id="1174">Al Kahera Wal Nas</channel>
<channel lang="ar" xmltv_id="AlManarTV.lb" site_id="1321">Al-Manar TV</channel> <channel lang="ar" xmltv_id="AlManar.lb" site_id="1321">Al-Manar TV</channel>
<channel lang="ar" xmltv_id="AlNaharDrama.eg" site_id="1223">Al-Nahar Drama</channel> <channel lang="ar" xmltv_id="AlNaharDrama.eg" site_id="1223">Al-Nahar Drama</channel>
<channel lang="ar" xmltv_id="AlNahar.eg" site_id="1193">Al-Nahar TV</channel> <channel lang="ar" xmltv_id="AlNahar.eg" site_id="1193">Al-Nahar TV</channel>
<channel lang="ar" xmltv_id="AlraiTV.kw" site_id="1170">Alrai TV</channel> <channel lang="ar" xmltv_id="AlraiTV.kw" site_id="1170">Alrai TV</channel>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<site site="elcinema.com"> <site site="elcinema.com">
<channels> <channels>
<channel lang="en" xmltv_id="2MMonde.ma" site_id="1353">2M Monde</channel> <channel lang="en" xmltv_id="2MInternational.ma" site_id="1353">2M Monde</channel>
<channel lang="en" xmltv_id="AbuDhabiDrama.ae" site_id="1178">Abu Dhabi Drama</channel> <channel lang="en" xmltv_id="AbuDhabiDrama.ae" site_id="1178">Abu Dhabi Drama</channel>
<channel lang="en" xmltv_id="AbuDhabiTV.ae" site_id="1136">Abu Dhabi TV</channel> <channel lang="en" xmltv_id="AbuDhabiTV.ae" site_id="1136">Abu Dhabi TV</channel>
<channel lang="en" xmltv_id="AlAoulaMiddleEast.ma" site_id="1101">Al Aoula Middle East</channel> <channel lang="en" xmltv_id="AlAoulaMiddleEast.ma" site_id="1101">Al Aoula Middle East</channel>
@ -10,7 +10,7 @@
<channel lang="en" xmltv_id="AlHayatTV.us" site_id="1137">Al Hayat</channel> <channel lang="en" xmltv_id="AlHayatTV.us" site_id="1137">Al Hayat</channel>
<channel lang="en" xmltv_id="AlJadeed.lb" site_id="1216">Al Jadeed</channel> <channel lang="en" xmltv_id="AlJadeed.lb" site_id="1216">Al Jadeed</channel>
<channel lang="en" xmltv_id="AlKaheraWalNas.eg" site_id="1174">Al Kahera Wal Nas</channel> <channel lang="en" xmltv_id="AlKaheraWalNas.eg" site_id="1174">Al Kahera Wal Nas</channel>
<channel lang="en" xmltv_id="AlManarTV.lb" site_id="1321">Al-Manar TV</channel> <channel lang="en" xmltv_id="AlManar.lb" site_id="1321">Al-Manar TV</channel>
<channel lang="en" xmltv_id="AlNaharDrama.eg" site_id="1223">Al-Nahar Drama</channel> <channel lang="en" xmltv_id="AlNaharDrama.eg" site_id="1223">Al-Nahar Drama</channel>
<channel lang="en" xmltv_id="AlNahar.eg" site_id="1193">Al-Nahar TV</channel> <channel lang="en" xmltv_id="AlNahar.eg" site_id="1193">Al-Nahar TV</channel>
<channel lang="en" xmltv_id="AlraiTV.kw" site_id="1170">Alrai TV</channel> <channel lang="en" xmltv_id="AlraiTV.kw" site_id="1170">Alrai TV</channel>

View file

@ -23,7 +23,7 @@
<channel lang="es" xmltv_id="BoomerangMexico.mx" site_id="boomerang_mexico">Boomerang México</channel> <channel lang="es" xmltv_id="BoomerangMexico.mx" site_id="boomerang_mexico">Boomerang México</channel>
<channel lang="es" xmltv_id="Canal5.mx" site_id="5_mexico">Canal 5</channel> <channel lang="es" xmltv_id="Canal5.mx" site_id="5_mexico">Canal 5</channel>
<channel lang="es" xmltv_id="Canal22Nacional.mx" site_id="22_mexico">Canal 22 Nacional</channel> <channel lang="es" xmltv_id="Canal22Nacional.mx" site_id="22_mexico">Canal 22 Nacional</channel>
<channel lang="es" xmltv_id="CanalCatorce.mx" site_id="14_de_mexico">Canal Catorce</channel> <channel lang="es" xmltv_id="XHSPRTDT1.mx" site_id="14_de_mexico">Canal Catorce</channel>
<channel lang="es" xmltv_id="CartoonNetworkMexico.mx" site_id="cartoon_network_mexico">Cartoon Network México</channel> <channel lang="es" xmltv_id="CartoonNetworkMexico.mx" site_id="cartoon_network_mexico">Cartoon Network México</channel>
<channel lang="es" xmltv_id="CinecanalWest.us" site_id="cinecanal_mexico">Cinecanal Oeste</channel> <channel lang="es" xmltv_id="CinecanalWest.us" site_id="cinecanal_mexico">Cinecanal Oeste</channel>
<channel lang="es" xmltv_id="CineLatino.mx" site_id="cinelatino">CineLatino</channel> <channel lang="es" xmltv_id="CineLatino.mx" site_id="cinelatino">CineLatino</channel>
@ -72,7 +72,7 @@
<channel lang="es" xmltv_id="NickelodeonPanregional.us" site_id="nickelodeon_mexico">Nickelodeon Mexico</channel> <channel lang="es" xmltv_id="NickelodeonPanregional.us" site_id="nickelodeon_mexico">Nickelodeon Mexico</channel>
<channel lang="es" xmltv_id="NickJrPanregional.us" site_id="nick_junior_mexico">Nick Jr Latin America</channel> <channel lang="es" xmltv_id="NickJrPanregional.us" site_id="nick_junior_mexico">Nick Jr Latin America</channel>
<channel lang="es" xmltv_id="Nueve.mx" site_id="9_de_mexico">Nueve</channel> <channel lang="es" xmltv_id="Nueve.mx" site_id="9_de_mexico">Nueve</channel>
<channel lang="es" xmltv_id="OnceMexico.mx" site_id="11_de_mexico">Once México</channel> <channel lang="es" xmltv_id="XEIPNTDT.mx" site_id="11_de_mexico">Once México</channel>
<channel lang="es" xmltv_id="Panico.mx" site_id="panico">Pánico</channel> <channel lang="es" xmltv_id="Panico.mx" site_id="panico">Pánico</channel>
<channel lang="es" xmltv_id="ParamountNetworkPanregional.us" site_id="paramount_channel_mexico">Paramount Network Latin America</channel> <channel lang="es" xmltv_id="ParamountNetworkPanregional.us" site_id="paramount_channel_mexico">Paramount Network Latin America</channel>
<channel lang="es" xmltv_id="SkyOne.mx" site_id="sky_one_mexico">Sky One</channel> <channel lang="es" xmltv_id="SkyOne.mx" site_id="sky_one_mexico">Sky One</channel>

View file

@ -87,7 +87,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="f039b135-2944-423c-80d9-4e6fd3add524#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="f039b135-2944-423c-80d9-4e6fd3add524#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="f039b135-2944-423c-80d9-4e6fd3add524#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="f039b135-2944-423c-80d9-4e6fd3add524#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="f039b135-2944-423c-80d9-4e6fd3add524#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="f039b135-2944-423c-80d9-4e6fd3add524#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="f039b135-2944-423c-80d9-4e6fd3add524#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="f039b135-2944-423c-80d9-4e6fd3add524#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="f039b135-2944-423c-80d9-4e6fd3add524#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="f039b135-2944-423c-80d9-4e6fd3add524#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABCNews.za" site_id="f039b135-2944-423c-80d9-4e6fd3add524#SAN">SABC News</channel> <channel lang="en" xmltv_id="SABCNews.za" site_id="f039b135-2944-423c-80d9-4e6fd3add524#SAN">SABC News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="f039b135-2944-423c-80d9-4e6fd3add524#S33">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="f039b135-2944-423c-80d9-4e6fd3add524#S33">Sky News International</channel>

View file

@ -96,7 +96,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABC1.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B1C">SABC 1</channel> <channel lang="en" xmltv_id="SABC1.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B1C">SABC 1</channel>
<channel lang="en" xmltv_id="SABC2.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B2C">SABC 2</channel> <channel lang="en" xmltv_id="SABC2.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B2C">SABC 2</channel>

View file

@ -88,7 +88,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#ROW">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#ROW">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABCNews.za" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#SAN">SABC News</channel> <channel lang="en" xmltv_id="SABCNews.za" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#SAN">SABC News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#S33">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="eddee4b5-ecfc-41e7-a8c0-8e2978506b33#S33">Sky News International</channel>

View file

@ -87,7 +87,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABCNews.za" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#SAN">SABC News</channel> <channel lang="en" xmltv_id="SABCNews.za" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#SAN">SABC News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#S33">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="942aeed1-ebd7-4396-ae8e-d24383d9831b#S33">Sky News International</channel>

View file

@ -84,7 +84,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABCNews.za" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#SAN">SABC News</channel> <channel lang="en" xmltv_id="SABCNews.za" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#SAN">SABC News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#S33">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="84dc4bdc-ab48-4ed2-a67d-1aaa0528bfac#S33">Sky News International</channel>

View file

@ -103,7 +103,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABC1.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B1C">SABC 1</channel> <channel lang="en" xmltv_id="SABC1.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B1C">SABC 1</channel>
<channel lang="en" xmltv_id="SABC2.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B2C">SABC 2</channel> <channel lang="en" xmltv_id="SABC2.za" site_id="08654b4d-2288-4c83-bfb7-0f464d0d9ee1#B2C">SABC 2</channel>

View file

@ -91,7 +91,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABCNews.za" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#SAN">SABC News</channel> <channel lang="en" xmltv_id="SABCNews.za" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#SAN">SABC News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#S33">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="19ac6d87-43ba-436f-b4d1-12f62fe7dad4#S33">Sky News International</channel>

View file

@ -85,7 +85,7 @@
<channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#RAI">Rai Italia Africa</channel> <channel lang="en" xmltv_id="RaiItaliaAfrica.it" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#RAI">Rai Italia Africa</channel>
<channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#RTA">Real Time Africa</channel> <channel lang="en" xmltv_id="RealTimeAfrica.us" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#RTA">Real Time Africa</channel>
<channel lang="en" xmltv_id="Rok.ng" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#19K">Rok</channel> <channel lang="en" xmltv_id="Rok.ng" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#19K">Rok</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#EVE">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#EVE">RT News</channel>
<channel lang="en" xmltv_id="RTPInternacional.pt" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#RTP">RTP Internacional Europa</channel> <channel lang="en" xmltv_id="RTPInternacional.pt" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#RTP">RTP Internacional Europa</channel>
<channel lang="en" xmltv_id="SABCNews.za" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#SAN">SABC News</channel> <channel lang="en" xmltv_id="SABCNews.za" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#SAN">SABC News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#S33">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="404a052b-3dea-4cac-a19c-de9a7d6f191d#S33">Sky News International</channel>

View file

@ -119,7 +119,7 @@
<channel lang="de" xmltv_id="NTVMir.ru" site_id="SV_09999_25154">NTV Mir</channel> <channel lang="de" xmltv_id="NTVMir.ru" site_id="SV_09999_25154">NTV Mir</channel>
<channel lang="de" xmltv_id="One.de" site_id="SV_09999_41102">ONE HD</channel> <channel lang="de" xmltv_id="One.de" site_id="SV_09999_41102">ONE HD</channel>
<channel lang="de" xmltv_id="OstWest.de" site_id="SV_09999_23109">OstWest</channel> <channel lang="de" xmltv_id="OstWest.de" site_id="SV_09999_23109">OstWest</channel>
<channel lang="de" xmltv_id="ChannelOneEuropa.ru" site_id="Channel_One_Russia">Channel One Russia</channel> <channel lang="de" xmltv_id="ChannelOne.ru" site_id="Channel_One_Russia">Channel One Russia</channel>
<channel lang="de" xmltv_id="Phoenix.de" site_id="Phoenix">phoenix</channel> <channel lang="de" xmltv_id="Phoenix.de" site_id="Phoenix">phoenix</channel>
<channel lang="de" xmltv_id="PinkExtra.rs" site_id="SV_09999_50105">Pink Extra</channel> <channel lang="de" xmltv_id="PinkExtra.rs" site_id="SV_09999_50105">Pink Extra</channel>
<channel lang="de" xmltv_id="PinkFilm.rs" site_id="SV_09999_50106">Pink Film</channel> <channel lang="de" xmltv_id="PinkFilm.rs" site_id="SV_09999_50106">Pink Film</channel>
@ -151,7 +151,7 @@
<channel lang="de" xmltv_id="RTLLivingGermany.de" site_id="RTL_Living_HD">RTL Living HD</channel> <channel lang="de" xmltv_id="RTLLivingGermany.de" site_id="RTL_Living_HD">RTL Living HD</channel>
<channel lang="de" xmltv_id="RTLUp.de" site_id="RTLplus">RTLup</channel> <channel lang="de" xmltv_id="RTLUp.de" site_id="RTLplus">RTLup</channel>
<channel lang="de" xmltv_id="RTLZweiGermany.de" site_id="RTL2">RTLZWEI</channel> <channel lang="de" xmltv_id="RTLZweiGermany.de" site_id="RTL2">RTLZWEI</channel>
<channel lang="de" xmltv_id="RTNews.ru" site_id="SV_09999_42104">Russia Today</channel> <channel lang="de" xmltv_id="RT.ru" site_id="SV_09999_42104">Russia Today</channel>
<channel lang="de" xmltv_id="RTPInternacional.pt" site_id="RTPi">RTPi</channel> <channel lang="de" xmltv_id="RTPInternacional.pt" site_id="RTPi">RTPi</channel>
<channel lang="de" xmltv_id="RTRPlaneta.ru" site_id="RTR_Planeta">RTR Planeta</channel> <channel lang="de" xmltv_id="RTRPlaneta.ru" site_id="RTR_Planeta">RTR Planeta</channel>
<channel lang="de" xmltv_id="RTSSvet.rs" site_id="SV_09999_59109">RTS Sat</channel> <channel lang="de" xmltv_id="RTSSvet.rs" site_id="SV_09999_59109">RTS Sat</channel>

View file

@ -42,7 +42,7 @@
<channel lang="cz" xmltv_id="Belarus24.by" site_id="TV+Bialorus">Belarus 24</channel> <channel lang="cz" xmltv_id="Belarus24.by" site_id="TV+Bialorus">Belarus 24</channel>
<channel lang="cz" xmltv_id="Biznes24.pl" site_id="Biznes24">Biznes 24</channel> <channel lang="cz" xmltv_id="Biznes24.pl" site_id="Biznes24">Biznes 24</channel>
<channel lang="cz" xmltv_id="BloombergTVEMEA.uk" site_id="Bloomberg">Bloomberg TV Europe</channel> <channel lang="cz" xmltv_id="BloombergTVEMEA.uk" site_id="Bloomberg">Bloomberg TV Europe</channel>
<channel lang="cz" xmltv_id="BlueHustler.uk" site_id="Blue+Hustler">Blue Hustler Europe</channel> <channel lang="cz" xmltv_id="BlueHustler.nl" site_id="Blue+Hustler">Blue Hustler Europe</channel>
<channel lang="cz" xmltv_id="BNTV.ba" site_id="BN+Televizija">BN TV Satelitski</channel> <channel lang="cz" xmltv_id="BNTV.ba" site_id="BN+Televizija">BN TV Satelitski</channel>
<channel lang="cz" xmltv_id="Bober.ru" site_id="Bober">Bober International</channel> <channel lang="cz" xmltv_id="Bober.ru" site_id="Bober">Bober International</channel>
<channel lang="cz" xmltv_id="BodyinBalanceUK.uk" site_id="B+in+Balance">Body in Balance UK</channel> <channel lang="cz" xmltv_id="BodyinBalanceUK.uk" site_id="B+in+Balance">Body in Balance UK</channel>
@ -186,8 +186,8 @@
<channel lang="cz" xmltv_id="HRT4.hr" site_id="HRT+4">HRT 4</channel> <channel lang="cz" xmltv_id="HRT4.hr" site_id="HRT+4">HRT 4</channel>
<channel lang="cz" xmltv_id="HRTInternational.hr" site_id="HRT+International">HRT International</channel> <channel lang="cz" xmltv_id="HRTInternational.hr" site_id="HRT+International">HRT International</channel>
<channel lang="cz" xmltv_id="HtMusicChannelHungary.hu" site_id="H%21t+Music+Channel+%28hu%29">H!t Music Channel Hungary</channel> <channel lang="cz" xmltv_id="HtMusicChannelHungary.hu" site_id="H%21t+Music+Channel+%28hu%29">H!t Music Channel Hungary</channel>
<channel lang="cz" xmltv_id="HustlerHD.uk" site_id="Hustler+HD">Hustler HD Europe</channel> <channel lang="cz" xmltv_id="HustlerHD.nl" site_id="Hustler+HD">Hustler HD Europe</channel>
<channel lang="cz" xmltv_id="HustlerTVEurope.uk" site_id="Hustler+TV">Hustler TV Europe</channel> <channel lang="cz" xmltv_id="HustlerTVEurope.nl" site_id="Hustler+TV">Hustler TV Europe</channel>
<channel lang="cz" xmltv_id="Inter.ua" site_id="Inter">Inter</channel> <channel lang="cz" xmltv_id="Inter.ua" site_id="Inter">Inter</channel>
<channel lang="cz" xmltv_id="InvestigationDiscoveryEurope.us" site_id="Investigation+Discovery">Investigation Discovery Europe</channel> <channel lang="cz" xmltv_id="InvestigationDiscoveryEurope.us" site_id="Investigation+Discovery">Investigation Discovery Europe</channel>
<channel lang="cz" xmltv_id="Iris.it" site_id="Iris">Iris</channel> <channel lang="cz" xmltv_id="Iris.it" site_id="Iris">Iris</channel>

View file

@ -16,7 +16,7 @@
<channel lang="de" xmltv_id="Bergblick.de" site_id="Planet_HD">Bergblick</channel> <channel lang="de" xmltv_id="Bergblick.de" site_id="Planet_HD">Bergblick</channel>
<channel lang="de" xmltv_id="BibelTV.de" site_id="Bibel_TV_HD">Bibel TV</channel> <channel lang="de" xmltv_id="BibelTV.de" site_id="Bibel_TV_HD">Bibel TV</channel>
<channel lang="de" xmltv_id="BloombergTVEMEA.uk" site_id="Bloomberg_Europe">Bloomberg</channel> <channel lang="de" xmltv_id="BloombergTVEMEA.uk" site_id="Bloomberg_Europe">Bloomberg</channel>
<channel lang="de" xmltv_id="BlueHustler.uk" site_id="Blue_Hustler">Blue Hustler Europe</channel> <channel lang="de" xmltv_id="BlueHustler.nl" site_id="Blue_Hustler">Blue Hustler Europe</channel>
<channel lang="de" xmltv_id="BonGusto.de" site_id="Bongusto_HD">Bon Gusto</channel> <channel lang="de" xmltv_id="BonGusto.de" site_id="Bongusto_HD">Bon Gusto</channel>
<channel lang="de" xmltv_id="BoomerangGermany.de" site_id="Disney_XD">Boomerang</channel> <channel lang="de" xmltv_id="BoomerangGermany.de" site_id="Disney_XD">Boomerang</channel>
<channel lang="de" xmltv_id="CCTV4Europe.cn" site_id="CCTV4">CCTV 4 Europe</channel> <channel lang="de" xmltv_id="CCTV4Europe.cn" site_id="CCTV4">CCTV 4 Europe</channel>
@ -54,7 +54,7 @@
<channel lang="de" xmltv_id="Haberturk.tr" site_id="Habertuerk_TV">Habertürk</channel> <channel lang="de" xmltv_id="Haberturk.tr" site_id="Habertuerk_TV">Habertürk</channel>
<channel lang="de" xmltv_id="Hayat.ba" site_id="Hayat">Hayat TV</channel> <channel lang="de" xmltv_id="Hayat.ba" site_id="Hayat">Hayat TV</channel>
<channel lang="de" xmltv_id="Heimatkanal.de" site_id="Heimatkanal">Heimatkanal</channel> <channel lang="de" xmltv_id="Heimatkanal.de" site_id="Heimatkanal">Heimatkanal</channel>
<channel lang="de" xmltv_id="HustlerTVEurope.uk" site_id="Hustler_TV">Hustler TV Europe</channel> <channel lang="de" xmltv_id="HustlerTVEurope.nl" site_id="Hustler_TV">Hustler TV Europe</channel>
<channel lang="de" xmltv_id="KIKA.de" site_id="KI_KA_HD">KIKA</channel> <channel lang="de" xmltv_id="KIKA.de" site_id="KI_KA_HD">KIKA</channel>
<channel lang="de" xmltv_id="kabeleinsAustria.at" site_id="kabel_eins_HD">Kabel Eins Austria</channel> <channel lang="de" xmltv_id="kabeleinsAustria.at" site_id="kabel_eins_HD">Kabel Eins Austria</channel>
<channel lang="de" xmltv_id="kabeleinsDokuAustria.at" site_id="kabel_eins_classics_HD">Kabel Eins Classics</channel> <channel lang="de" xmltv_id="kabeleinsDokuAustria.at" site_id="kabel_eins_classics_HD">Kabel Eins Classics</channel>

View file

@ -24,7 +24,7 @@
<channel lang="de" xmltv_id="Bergblick.de" site_id="45">Bergblick</channel> <channel lang="de" xmltv_id="Bergblick.de" site_id="45">Bergblick</channel>
<channel lang="de" xmltv_id="BibelTV.de" site_id="485">Bibel TV</channel> <channel lang="de" xmltv_id="BibelTV.de" site_id="485">Bibel TV</channel>
<channel lang="de" xmltv_id="Bild.de" site_id="5077">BILD</channel> <channel lang="de" xmltv_id="Bild.de" site_id="5077">BILD</channel>
<channel lang="de" xmltv_id="BlueHustler.uk" site_id="112">Blue Hustler</channel> <channel lang="de" xmltv_id="BlueHustler.nl" site_id="112">Blue Hustler</channel>
<channel lang="de" xmltv_id="BonGusto.de" site_id="117">BonGusto</channel> <channel lang="de" xmltv_id="BonGusto.de" site_id="117">BonGusto</channel>
<channel lang="de" xmltv_id="BoomerangGermany.de" site_id="148">Boomerang</channel> <channel lang="de" xmltv_id="BoomerangGermany.de" site_id="148">Boomerang</channel>
<channel lang="de" xmltv_id="BRFernsehenNord.de" site_id="175">BR Fernsehen Nord</channel> <channel lang="de" xmltv_id="BRFernsehenNord.de" site_id="175">BR Fernsehen Nord</channel>

View file

@ -13,7 +13,7 @@
<channel lang="ru" xmltv_id="AmediaHit.ru" site_id="76">Amedia Hit</channel> <channel lang="ru" xmltv_id="AmediaHit.ru" site_id="76">Amedia Hit</channel>
<channel lang="ru" xmltv_id="AmediaPremium.ru" site_id="122">Amedia Premium</channel> <channel lang="ru" xmltv_id="AmediaPremium.ru" site_id="122">Amedia Premium</channel>
<channel lang="ru" xmltv_id="1TV.am" site_id="84">Armenia 1 TV</channel> <channel lang="ru" xmltv_id="1TV.am" site_id="84">Armenia 1 TV</channel>
<channel lang="ru" xmltv_id="Avto24.ru" site_id="294">Avto 24</channel> <channel lang="ru" xmltv_id="AVTO24.ru" site_id="294">Avto 24</channel>
<channel lang="ru" xmltv_id="AzTV.az" site_id="101">Az TV</channel> <channel lang="ru" xmltv_id="AzTV.az" site_id="101">Az TV</channel>
<channel lang="en" xmltv_id="BBCWorldNewsEurope.uk" site_id="284">BBC World News Europe</channel> <channel lang="en" xmltv_id="BBCWorldNewsEurope.uk" site_id="284">BBC World News Europe</channel>
<channel lang="ru" xmltv_id="BollywoodHDRussia.ru" site_id="260">Bollywood TV Rossiya</channel> <channel lang="ru" xmltv_id="BollywoodHDRussia.ru" site_id="260">Bollywood TV Rossiya</channel>
@ -55,7 +55,7 @@
<channel lang="ru" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="159">Investigation Discovery Rossiya</channel> <channel lang="ru" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="159">Investigation Discovery Rossiya</channel>
<channel lang="ru" xmltv_id="Istoriya.ru" site_id="261">Istoriya</channel> <channel lang="ru" xmltv_id="Istoriya.ru" site_id="261">Istoriya</channel>
<channel lang="ru" xmltv_id="JimJamRussia.ru" site_id="283">JimJam Rossiya</channel> <channel lang="ru" xmltv_id="JimJamRussia.ru" site_id="283">JimJam Rossiya</channel>
<channel lang="ru" xmltv_id="KaruselInternational.ru" site_id="184">Karusel International</channel> <channel lang="ru" xmltv_id="Karusel.ru" site_id="184">Karusel International</channel>
<channel lang="ka" xmltv_id="KavkasiaTV.ge" site_id="135">Kavkasia TV</channel> <channel lang="ka" xmltv_id="KavkasiaTV.ge" site_id="135">Kavkasia TV</channel>
<channel lang="ka" xmltv_id="Maestro.ge" site_id="141">Maestro</channel> <channel lang="ka" xmltv_id="Maestro.ge" site_id="141">Maestro</channel>
<channel lang="ka" xmltv_id="MagtiHiti.ge" site_id="249">Magti Hiti</channel> <channel lang="ka" xmltv_id="MagtiHiti.ge" site_id="249">Magti Hiti</channel>
@ -75,14 +75,14 @@
<channel lang="ru" xmltv_id="NickJrCIS.ru" site_id="171">Nick Jr CIS</channel> <channel lang="ru" xmltv_id="NickJrCIS.ru" site_id="171">Nick Jr CIS</channel>
<channel lang="ru" xmltv_id="NST.ru" site_id="214">NST</channel> <channel lang="ru" xmltv_id="NST.ru" site_id="214">NST</channel>
<channel lang="ka" xmltv_id="ObieqtiviTV.ge" site_id="85">Obieqtivi TV</channel> <channel lang="ka" xmltv_id="ObieqtiviTV.ge" site_id="85">Obieqtivi TV</channel>
<channel lang="ru" xmltv_id="OhotnikiRybolov.ru" site_id="174">Ohotnik i Rybolov</channel> <channel lang="ru" xmltv_id="Ohotnikirybolov.ru" site_id="174">Ohotnik i Rybolov</channel>
<channel lang="ka" xmltv_id="PalitraNews.ge" site_id="87">Palitra News</channel> <channel lang="ka" xmltv_id="PalitraNews.ge" site_id="87">Palitra News</channel>
<channel lang="ru" xmltv_id="ParamountChannelRussia.ru" site_id="172">Paramount Channel Russia</channel> <channel lang="ru" xmltv_id="ParamountChannelRussia.ru" site_id="172">Paramount Channel Russia</channel>
<channel lang="ru" xmltv_id="ParamountComedyRussia.ru" site_id="173">Paramount Comedy Russia</channel> <channel lang="ru" xmltv_id="ParamountComedyRussia.ru" site_id="173">Paramount Comedy Russia</channel>
<channel lang="ru" xmltv_id="PeretzInternational.ru" site_id="220">Peretz International</channel> <channel lang="ru" xmltv_id="PeretzInternational.ru" site_id="220">Peretz International</channel>
<channel lang="ru" xmltv_id="ChannelOneCIS.ru" site_id="5">Perviy kanal CIS</channel> <!-- <channel lang="ru" xmltv_id="ChannelOneCIS.ru" site_id="5">Perviy kanal CIS</channel> -->
<channel lang="ka" xmltv_id="PosTV.ge" site_id="65000">Pos TV</channel> <channel lang="ka" xmltv_id="PosTV.ge" site_id="65000">Pos TV</channel>
<channel lang="ru" xmltv_id="PyatnitsaInternational.ru" site_id="124">Pyatnitsa! International</channel> <channel lang="ru" xmltv_id="FridayInternational.ru" site_id="124">Pyatnitsa! International</channel>
<channel lang="ka" xmltv_id="QartuliArkhi.ge" site_id="195">Qartuli Arkhi</channel> <channel lang="ka" xmltv_id="QartuliArkhi.ge" site_id="195">Qartuli Arkhi</channel>
<channel lang="ka" xmltv_id="QualityChannel.ge" site_id="96">Quality Channel</channel> <channel lang="ka" xmltv_id="QualityChannel.ge" site_id="96">Quality Channel</channel>
<channel lang="ru" xmltv_id="RBKTV.ru" site_id="90">RBK TV</channel> <channel lang="ru" xmltv_id="RBKTV.ru" site_id="90">RBK TV</channel>
@ -90,9 +90,9 @@
<channel lang="ka" xmltv_id="RioniTV.ge" site_id="197">Rioni TV</channel> <channel lang="ka" xmltv_id="RioniTV.ge" site_id="197">Rioni TV</channel>
<channel lang="ru" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel> <channel lang="ru" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel>
<channel lang="ru" xmltv_id="RussiaK.ru" site_id="69">Rossiya K</channel> <channel lang="ru" xmltv_id="RussiaK.ru" site_id="69">Rossiya K</channel>
<channel lang="ru" xmltv_id="RTNews.ru" site_id="154">RT News</channel> <channel lang="ru" xmltv_id="RT.ru" site_id="154">RT News</channel>
<channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="63">RTR Planeta</channel> <channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="63">RTR Planeta</channel>
<channel lang="ru" xmltv_id="RTViEurope.ru" site_id="30">RTVi Europe</channel> <channel lang="ru" xmltv_id="RTVi.ru" site_id="30">RTVi Europe</channel>
<channel lang="ka" xmltv_id="RugbyTV.ge" site_id="288">Rugby TV</channel> <channel lang="ka" xmltv_id="RugbyTV.ge" site_id="288">Rugby TV</channel>
<channel lang="ru" xmltv_id="RusskiyIllusion.ru" site_id="213">Russkiy Illusion</channel> <channel lang="ru" xmltv_id="RusskiyIllusion.ru" site_id="213">Russkiy Illusion</channel>
<channel lang="ka" xmltv_id="Rustavi2.ge" site_id="1">Rustavi 2</channel> <channel lang="ka" xmltv_id="Rustavi2.ge" site_id="1">Rustavi 2</channel>
@ -101,9 +101,9 @@
<channel lang="ka" xmltv_id="SetantaSportsGeorgia.ge" site_id="68351">Setanta Sports Georgia</channel> <channel lang="ka" xmltv_id="SetantaSportsGeorgia.ge" site_id="68351">Setanta Sports Georgia</channel>
<channel lang="ka" xmltv_id="SetantaSportsPlusGeorgia.ge" site_id="68352">Setanta Sports + Georgia</channel> <channel lang="ka" xmltv_id="SetantaSportsPlusGeorgia.ge" site_id="68352">Setanta Sports + Georgia</channel>
<channel lang="ka" xmltv_id="SilkUniversal.ge" site_id="287">Silk Universal</channel> <channel lang="ka" xmltv_id="SilkUniversal.ge" site_id="287">Silk Universal</channel>
<channel lang="ru" xmltv_id="STSInternational.ru" site_id="65">STS International</channel> <channel lang="ru" xmltv_id="CTCInternational.ru" site_id="65">STS International</channel>
<channel lang="ru" xmltv_id="TelekanalO.ru" site_id="302">Telekanal O!</channel> <channel lang="ru" xmltv_id="O.ru" site_id="302">Telekanal O!</channel>
<channel lang="ru" xmltv_id="TijiRussia.ru" site_id="15">Tiji Russia</channel> <channel lang="ru" xmltv_id="TiJiRussia.ru" site_id="15">Tiji Russia</channel>
<channel lang="ru" xmltv_id="TNTMusic.ru" site_id="1345">TNT Music</channel> <channel lang="ru" xmltv_id="TNTMusic.ru" site_id="1345">TNT Music</channel>
<channel lang="ka" xmltv_id="TV25.ge" site_id="285">TV 25</channel> <channel lang="ka" xmltv_id="TV25.ge" site_id="285">TV 25</channel>
<channel lang="ka" xmltv_id="TV1000ActionEast.ru" site_id="20">TV 1000 Action</channel> <channel lang="ka" xmltv_id="TV1000ActionEast.ru" site_id="20">TV 1000 Action</channel>
@ -114,7 +114,7 @@
<channel lang="ru" xmltv_id="ViasatExplore.se" site_id="22">Viasat Explore East</channel> <channel lang="ru" xmltv_id="ViasatExplore.se" site_id="22">Viasat Explore East</channel>
<channel lang="ru" xmltv_id="ViasatHistory.se" site_id="23">Viasat History</channel> <channel lang="ru" xmltv_id="ViasatHistory.se" site_id="23">Viasat History</channel>
<channel lang="ru" xmltv_id="ViasatNature.se" site_id="77">Viasat Nature East</channel> <channel lang="ru" xmltv_id="ViasatNature.se" site_id="77">Viasat Nature East</channel>
<channel lang="ru" xmltv_id="ViasatSport.se" site_id="24">Viasat Sport East</channel> <channel lang="ru" xmltv_id="ViasatSportEast.ru" site_id="24">Viasat Sport East</channel>
<channel lang="ru" xmltv_id="Zagorodnyy.ru" site_id="1340">Zagorodny International</channel> <channel lang="ru" xmltv_id="Zagorodnyy.ru" site_id="1340">Zagorodny International</channel>
<channel lang="ru" xmltv_id="ZhivayaPlaneta.ru" site_id="263">Zhivaya Planeta</channel> <channel lang="ru" xmltv_id="ZhivayaPlaneta.ru" site_id="263">Zhivaya Planeta</channel>
</channels> </channels>

View file

@ -19,7 +19,7 @@
<channel lang="hr" xmltv_id="BalkanikaMusicTV.bg" site_id="271">Balkanika Music TV</channel> <channel lang="hr" xmltv_id="BalkanikaMusicTV.bg" site_id="271">Balkanika Music TV</channel>
<channel lang="hr" xmltv_id="BBCEarthRomania.ro" site_id="631">BBC Earth Romania</channel> <channel lang="hr" xmltv_id="BBCEarthRomania.ro" site_id="631">BBC Earth Romania</channel>
<channel lang="hr" xmltv_id="BHT1.ba" site_id="125">BHT 1</channel> <channel lang="hr" xmltv_id="BHT1.ba" site_id="125">BHT 1</channel>
<channel lang="hr" xmltv_id="BlueHustler.uk" site_id="291">Blue Hustler Europe</channel> <channel lang="hr" xmltv_id="BlueHustler.nl" site_id="291">Blue Hustler Europe</channel>
<channel lang="hr" xmltv_id="BoomerangCEE.us" site_id="425">Boomerang Central &amp; Eastern Europe</channel> <channel lang="hr" xmltv_id="BoomerangCEE.us" site_id="425">Boomerang Central &amp; Eastern Europe</channel>
<channel lang="hr" xmltv_id="BrazzersTVEurope.us" site_id="295">Brazzers TV Europe</channel> <channel lang="hr" xmltv_id="BrazzersTVEurope.us" site_id="295">Brazzers TV Europe</channel>
<channel lang="hr" xmltv_id="CartoonNetworkRussia.ru" site_id="427">Cartoon Network Russia &amp; South East Europe</channel> <channel lang="hr" xmltv_id="CartoonNetworkRussia.ru" site_id="427">Cartoon Network Russia &amp; South East Europe</channel>
@ -29,9 +29,9 @@
<channel lang="hr" xmltv_id="CinemaxCroatia.hr" site_id="399">Cinemax</channel> <channel lang="hr" xmltv_id="CinemaxCroatia.hr" site_id="399">Cinemax</channel>
<channel lang="hr" xmltv_id="CineStarTV1Croatia.hr" site_id="208">CineStar TV 1 Hrvatska</channel> <channel lang="hr" xmltv_id="CineStarTV1Croatia.hr" site_id="208">CineStar TV 1 Hrvatska</channel>
<channel lang="hr" xmltv_id="CineStarTVActionCroatia.hr" site_id="218">CineStar TV Action Hrvatska</channel> <channel lang="hr" xmltv_id="CineStarTVActionCroatia.hr" site_id="218">CineStar TV Action Hrvatska</channel>
<channel lang="hr" xmltv_id="CineStarTVFantasy.hr" site_id="633">CineStar TV Fantasy</channel> <channel lang="hr" xmltv_id="CineStarTVFantasyCroatia.hr" site_id="633">CineStar TV Fantasy</channel>
<channel lang="hr" xmltv_id="CineStarTVPremiere1.hr" site_id="634">CineStar TV Premiere 1</channel> <channel lang="hr" xmltv_id="CineStarTVPremiere1Croatia.hr" site_id="634">CineStar TV Premiere 1</channel>
<channel lang="hr" xmltv_id="CineStarTVPremiere2.hr" site_id="635">CineStar TV Premiere 2</channel> <channel lang="hr" xmltv_id="CineStarTVPremiere2Croatia.hr" site_id="635">CineStar TV Premiere 2</channel>
<channel lang="hr" xmltv_id="ClubMTVEurope.uk" site_id="327">Club MTV</channel> <channel lang="hr" xmltv_id="ClubMTVEurope.uk" site_id="327">Club MTV</channel>
<channel lang="hr" xmltv_id="CMCTV.hr" site_id="101">CMC TV</channel> <channel lang="hr" xmltv_id="CMCTV.hr" site_id="101">CMC TV</channel>
<channel lang="hr" xmltv_id="CNBCEurope.uk" site_id="260">CNBC Europe</channel> <channel lang="hr" xmltv_id="CNBCEurope.uk" site_id="260">CNBC Europe</channel>
@ -62,7 +62,7 @@
<channel lang="hr" xmltv_id="HRT2.hr" site_id="432">HRT 2</channel> <channel lang="hr" xmltv_id="HRT2.hr" site_id="432">HRT 2</channel>
<channel lang="hr" xmltv_id="HRT3.hr" site_id="451">HRT 3</channel> <channel lang="hr" xmltv_id="HRT3.hr" site_id="451">HRT 3</channel>
<channel lang="hr" xmltv_id="HRT4.hr" site_id="94">HRT 4</channel> <channel lang="hr" xmltv_id="HRT4.hr" site_id="94">HRT 4</channel>
<channel lang="hr" xmltv_id="HustlerTVEurope.uk" site_id="296">Hustler TV Europe</channel> <channel lang="hr" xmltv_id="HustlerTVEurope.nl" site_id="296">Hustler TV Europe</channel>
<channel lang="hr" xmltv_id="JugotonTV.hr" site_id="179">Jugoton TV</channel> <channel lang="hr" xmltv_id="JugotonTV.hr" site_id="179">Jugoton TV</channel>
<channel lang="hr" xmltv_id="KIKA.de" site_id="242">KIKA</channel> <channel lang="hr" xmltv_id="KIKA.de" site_id="242">KIKA</channel>
<channel lang="hr" xmltv_id="KinoTV.hr" site_id="647">Kino TV</channel> <channel lang="hr" xmltv_id="KinoTV.hr" site_id="647">Kino TV</channel>
@ -120,7 +120,7 @@
<channel lang="hr" xmltv_id="RTLLivingCroatia.hr" site_id="187">RTL Living Hrvatska</channel> <channel lang="hr" xmltv_id="RTLLivingCroatia.hr" site_id="187">RTL Living Hrvatska</channel>
<channel lang="hr" xmltv_id="RTLPassionCroatia.hr" site_id="307">RTL Passion Hrvatska</channel> <channel lang="hr" xmltv_id="RTLPassionCroatia.hr" site_id="307">RTL Passion Hrvatska</channel>
<channel lang="hr" xmltv_id="RTLZweiGermany.de" site_id="339">RTL Zwei Deutschland</channel> <channel lang="hr" xmltv_id="RTLZweiGermany.de" site_id="339">RTL Zwei Deutschland</channel>
<channel lang="hr" xmltv_id="RTNews.ru" site_id="275">RT News</channel> <channel lang="hr" xmltv_id="RT.ru" site_id="275">RT News</channel>
<channel lang="hr" xmltv_id="RTS1.rs" site_id="288">RTS 1</channel> <channel lang="hr" xmltv_id="RTS1.rs" site_id="288">RTS 1</channel>
<channel lang="hr" xmltv_id="RTS2.rs" site_id="289">RTS 2</channel> <channel lang="hr" xmltv_id="RTS2.rs" site_id="289">RTS 2</channel>
<channel lang="hr" xmltv_id="RTS3.rs" site_id="721">RTS 3</channel> <channel lang="hr" xmltv_id="RTS3.rs" site_id="721">RTS 3</channel>
@ -154,8 +154,8 @@
<channel lang="hr" xmltv_id="ViasatHistory.se" site_id="385">Viasat History</channel> <channel lang="hr" xmltv_id="ViasatHistory.se" site_id="385">Viasat History</channel>
<channel lang="hr" xmltv_id="ViasatNature.se" site_id="387">Viasat Nature East</channel> <channel lang="hr" xmltv_id="ViasatNature.se" site_id="387">Viasat Nature East</channel>
<channel lang="hr" xmltv_id="VividRed.us" site_id="761">Vivid Red</channel> <channel lang="hr" xmltv_id="VividRed.us" site_id="761">Vivid Red</channel>
<channel lang="hr" xmltv_id="VividTouch.us" site_id="762">Vivid Touch</channel> <channel lang="hr" xmltv_id="VividTouch.uk" site_id="762">Vivid Touch</channel>
<channel lang="hr" xmltv_id="VividTVEurope.us" site_id="715">Vivid TV Europe</channel> <channel lang="hr" xmltv_id="VividTVEurope.uk" site_id="715">Vivid TV Europe</channel>
<channel lang="hr" xmltv_id="VoxGermany.de" site_id="256">Vox Deutschland</channel> <channel lang="hr" xmltv_id="VoxGermany.de" site_id="256">Vox Deutschland</channel>
<channel lang="hr" xmltv_id="Woman.hr" site_id="639">Woman</channel> <channel lang="hr" xmltv_id="Woman.hr" site_id="639">Woman</channel>
<channel lang="hr" xmltv_id="Z1.hr" site_id="106">Z1</channel> <channel lang="hr" xmltv_id="Z1.hr" site_id="106">Z1</channel>

View file

@ -98,7 +98,7 @@
<channel lang="en" xmltv_id="RTL1025Radiovisione.it" site_id="256ddb92-cdb4-4069-8fc1-5d4fec608adc">Radio TV</channel> <channel lang="en" xmltv_id="RTL1025Radiovisione.it" site_id="256ddb92-cdb4-4069-8fc1-5d4fec608adc">Radio TV</channel>
<channel lang="en" xmltv_id="RTLGermany.de" site_id="38de6f81-d9ff-49ba-aa33-b147166ca454">RTL</channel> <channel lang="en" xmltv_id="RTLGermany.de" site_id="38de6f81-d9ff-49ba-aa33-b147166ca454">RTL</channel>
<channel lang="en" xmltv_id="RTLZweiGermany.de" site_id="ef81f5fd-d6ac-4464-92f3-2474735aa6d3">RTL II</channel> <channel lang="en" xmltv_id="RTLZweiGermany.de" site_id="ef81f5fd-d6ac-4464-92f3-2474735aa6d3">RTL II</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="b5d93ab3-e36d-4531-9a4a-0596116ed792">Russia Today</channel> <channel lang="en" xmltv_id="RT.ru" site_id="b5d93ab3-e36d-4531-9a4a-0596116ed792">Russia Today</channel>
<channel lang="en" xmltv_id="RTRPlaneta.ru" site_id="74d4a913-2475-4ed8-b017-bd1ff333a846">RTR Planeta</channel> <channel lang="en" xmltv_id="RTRPlaneta.ru" site_id="74d4a913-2475-4ed8-b017-bd1ff333a846">RTR Planeta</channel>
<channel lang="en" xmltv_id="SkyNewsHD.uk" site_id="818b8ffe-5a9d-4b73-9463-6783fa2217db">Sky News HD</channel> <channel lang="en" xmltv_id="SkyNewsHD.uk" site_id="818b8ffe-5a9d-4b73-9463-6783fa2217db">Sky News HD</channel>
<channel lang="en" xmltv_id="SmashTV.mt" site_id="90866e92-bb52-4842-b00d-ae2bad9dfec6">Smash TV</channel> <channel lang="en" xmltv_id="SmashTV.mt" site_id="90866e92-bb52-4842-b00d-ae2bad9dfec6">Smash TV</channel>

View file

@ -120,12 +120,12 @@
<channel lang="pt" xmltv_id="PFCInternacional.br" site_id="PFC">PFC</channel> <channel lang="pt" xmltv_id="PFCInternacional.br" site_id="PFC">PFC</channel>
<channel lang="pt" xmltv_id="PandaKids.pt" site_id="PANDAK">Panda Kids</channel> <channel lang="pt" xmltv_id="PandaKids.pt" site_id="PANDAK">Panda Kids</channel>
<channel lang="pt" xmltv_id="PenthouseGold.us" site_id="PENTHG">Penthouse Gold</channel> <channel lang="pt" xmltv_id="PenthouseGold.us" site_id="PENTHG">Penthouse Gold</channel>
<channel lang="pt" xmltv_id="ChannelOneEuropa.ru" site_id="1RUSS">Perviy kanal</channel> <channel lang="pt" xmltv_id="ChannelOne.ru" site_id="1RUSS">Perviy kanal</channel>
<channel lang="pt" xmltv_id="PhoenixCNE.hk" site_id="PHCNE">Phoenix CNE</channel> <channel lang="pt" xmltv_id="PhoenixCNE.hk" site_id="PHCNE">Phoenix CNE</channel>
<channel lang="pt" xmltv_id="PlayboyTVEurope.us" site_id="PLAY">Playboy TV</channel> <channel lang="pt" xmltv_id="PlayboyTVEurope.us" site_id="PLAY">Playboy TV</channel>
<channel lang="pt" xmltv_id="PortoCanal.pt" site_id="PORTO">Porto Canal</channel> <channel lang="pt" xmltv_id="PortoCanal.pt" site_id="PORTO">Porto Canal</channel>
<channel lang="pt" xmltv_id="ProTVInternational.ro" site_id="PROTV">Pro TV</channel> <channel lang="pt" xmltv_id="ProTVInternational.ro" site_id="PROTV">Pro TV</channel>
<channel lang="pt" xmltv_id="RTNews.ru" site_id="RUSSTHD">RT News</channel> <channel lang="pt" xmltv_id="RT.ru" site_id="RUSSTHD">RT News</channel>
<channel lang="pt" xmltv_id="RTP1.pt" site_id="RTP1">RTP 1</channel> <channel lang="pt" xmltv_id="RTP1.pt" site_id="RTP1">RTP 1</channel>
<channel lang="pt" xmltv_id="RTP2.pt" site_id="RTP2">RTP 2</channel> <channel lang="pt" xmltv_id="RTP2.pt" site_id="RTP2">RTP 2</channel>
<channel lang="pt" xmltv_id="RTP3.pt" site_id="RTP3">RTP 3</channel> <channel lang="pt" xmltv_id="RTP3.pt" site_id="RTP3">RTP 3</channel>
@ -142,7 +142,7 @@
<channel lang="pt" xmltv_id="RecordNews.br" site_id="RECNEW">Record News</channel> <channel lang="pt" xmltv_id="RecordNews.br" site_id="RECNEW">Record News</channel>
<channel lang="pt" xmltv_id="RecordTVEuropa.pt" site_id="TVREC">Record TV</channel> <channel lang="pt" xmltv_id="RecordTVEuropa.pt" site_id="TVREC">Record TV</channel>
<channel lang="pt" xmltv_id="RedeGlobo.br" site_id="GLOB">Rede Globo</channel> <channel lang="pt" xmltv_id="RedeGlobo.br" site_id="GLOB">Rede Globo</channel>
<channel lang="pt" xmltv_id="RybalkaTelekanal.ua" site_id="RYBALKA">Rybalka Telekanal</channel> <channel lang="pt" xmltv_id="Rybalka.ua" site_id="RYBALKA">Rybalka Telekanal</channel>
<channel lang="pt" xmltv_id="SonyEntertainmentTelevisionAsia.in" site_id="SETAS">SET Asia</channel> <channel lang="pt" xmltv_id="SonyEntertainmentTelevisionAsia.in" site_id="SETAS">SET Asia</channel>
<channel lang="pt" xmltv_id="SIC.pt" site_id="SIC">SIC</channel> <channel lang="pt" xmltv_id="SIC.pt" site_id="SIC">SIC</channel>
<channel lang="pt" xmltv_id="SICCaras.pt" site_id="SICC">SIC Caras</channel> <channel lang="pt" xmltv_id="SICCaras.pt" site_id="SICC">SIC Caras</channel>

View file

@ -19,7 +19,7 @@
<channel lang="es" xmltv_id="Canal20VillaMaria.ar" site_id="ar#canal-c20-villa-maria">Canal 20 Villa Maria</channel> <channel lang="es" xmltv_id="Canal20VillaMaria.ar" site_id="ar#canal-c20-villa-maria">Canal 20 Villa Maria</channel>
<channel lang="es" xmltv_id="Canal26.ar" site_id="ar#26-tv">Canal 26</channel> <channel lang="es" xmltv_id="Canal26.ar" site_id="ar#26-tv">Canal 26</channel>
<channel lang="es" xmltv_id="Canal4.uy" site_id="ar#canal-4-montecarlo">Canal 4</channel> <channel lang="es" xmltv_id="Canal4.uy" site_id="ar#canal-4-montecarlo">Canal 4</channel>
<channel lang="es" xmltv_id="Canala.ar" site_id="ar#canal-a">Canal (á)</channel> <channel lang="es" xmltv_id="CanalA.ar" site_id="ar#canal-a">Canal (á)</channel>
<channel lang="es" xmltv_id="CanaldelaCiudad.ar" site_id="ar#ciudad-abierta">Canal de la Ciudad</channel> <channel lang="es" xmltv_id="CanaldelaCiudad.ar" site_id="ar#ciudad-abierta">Canal de la Ciudad</channel>
<channel lang="es" xmltv_id="DHE.us" site_id="ar#dhe">Canal DHE</channel> <channel lang="es" xmltv_id="DHE.us" site_id="ar#dhe">Canal DHE</channel>
<channel lang="es" xmltv_id="CanalLuz.ar" site_id="ar#canal-luz">Canal Luz</channel> <channel lang="es" xmltv_id="CanalLuz.ar" site_id="ar#canal-luz">Canal Luz</channel>

View file

@ -69,7 +69,7 @@
<channel lang="es" xmltv_id="TeletrakTV.cl" site_id="cl#teletrak">Teletrak</channel> <channel lang="es" xmltv_id="TeletrakTV.cl" site_id="cl#teletrak">Teletrak</channel>
<channel lang="es" xmltv_id="TNTChile.cl" site_id="cl#tnt">TNT</channel> <channel lang="es" xmltv_id="TNTChile.cl" site_id="cl#tnt">TNT</channel>
<channel lang="es" xmltv_id="TVN.cl" site_id="ar#tvn-chile">TVN</channel> <channel lang="es" xmltv_id="TVN.cl" site_id="ar#tvn-chile">TVN</channel>
<channel lang="es" xmltv_id="TVNuevoTiempo.us" site_id="cl#nuevo-tiempo">TV Nuevo Tiempo</channel> <channel lang="es" xmltv_id="NuevoTiempo.br" site_id="cl#nuevo-tiempo">TV Nuevo Tiempo</channel>
<channel lang="es" xmltv_id="TVSenado.cl" site_id="cl#senado-tv">TV Senado</channel> <channel lang="es" xmltv_id="TVSenado.cl" site_id="cl#senado-tv">TV Senado</channel>
<channel lang="es" xmltv_id="TVU.bo" site_id="cl#tvu">TVU</channel> <channel lang="es" xmltv_id="TVU.bo" site_id="cl#tvu">TVU</channel>
<channel lang="es" xmltv_id="TyCSportsPanregional.ar" site_id="cl#tyc-sports">TyC Sports</channel> <channel lang="es" xmltv_id="TyCSportsPanregional.ar" site_id="cl#tyc-sports">TyC Sports</channel>

View file

@ -17,7 +17,7 @@
<channel lang="es" xmltv_id="Foro.mx" site_id="mx#canal-4-foro-tv">Foro TV</channel> <channel lang="es" xmltv_id="Foro.mx" site_id="mx#canal-4-foro-tv">Foro TV</channel>
<channel lang="es" xmltv_id="MilenioTelevision.mx" site_id="mx#milenio-tv">Milenio TV</channel> <channel lang="es" xmltv_id="MilenioTelevision.mx" site_id="mx#milenio-tv">Milenio TV</channel>
<channel lang="es" xmltv_id="NUMusic.mx" site_id="mx#canal-nu">Nu Music</channel> <channel lang="es" xmltv_id="NUMusic.mx" site_id="mx#canal-nu">Nu Music</channel>
<channel lang="es" xmltv_id="OnceMexico.mx" site_id="mx#xeipn-canal-11">Once México</channel> <channel lang="es" xmltv_id="XEIPNTDT.mx" site_id="mx#xeipn-canal-11">Once México</channel>
<channel lang="es" xmltv_id="SpaceMexico.mx" site_id="mx#space">Space</channel> <channel lang="es" xmltv_id="SpaceMexico.mx" site_id="mx#space">Space</channel>
<channel lang="es" xmltv_id="StarChannelMexico.mx" site_id="mx#fox">Star Channel</channel> <channel lang="es" xmltv_id="StarChannelMexico.mx" site_id="mx#fox">Star Channel</channel>
<channel lang="es" xmltv_id="StarLifeMexico.mx" site_id="mx#fox-life">Star Life</channel> <channel lang="es" xmltv_id="StarLifeMexico.mx" site_id="mx#fox-life">Star Life</channel>

View file

@ -37,8 +37,8 @@
<channel lang="bs" xmltv_id="CGTN.cn" site_id="809#207">CGTN</channel> <channel lang="bs" xmltv_id="CGTN.cn" site_id="809#207">CGTN</channel>
<channel lang="bs" xmltv_id="CineStarTV1Serbia.rs" site_id="301#345">CineStar TV 1 Srbija</channel> <channel lang="bs" xmltv_id="CineStarTV1Serbia.rs" site_id="301#345">CineStar TV 1 Srbija</channel>
<channel lang="bs" xmltv_id="CineStarTVActionSerbia.rs" site_id="306#347">CineStar TV Action Srbija</channel> <channel lang="bs" xmltv_id="CineStarTVActionSerbia.rs" site_id="306#347">CineStar TV Action Srbija</channel>
<channel lang="bs" xmltv_id="CineStarTVComedy.hr" site_id="054#346">CineStar TV Comedy</channel> <channel lang="bs" xmltv_id="CineStarTVComedyCroatia.hr" site_id="054#346">CineStar TV Comedy</channel>
<channel lang="bs" xmltv_id="CineStarTVFantasy.hr" site_id="053#348">CineStar TV Fantasy</channel> <channel lang="bs" xmltv_id="CineStarTVFantasyCroatia.hr" site_id="053#348">CineStar TV Fantasy</channel>
<channel lang="bs" xmltv_id="CNNInternationalEurope.us" site_id="175#429">CNN International Europe</channel> <channel lang="bs" xmltv_id="CNNInternationalEurope.us" site_id="175#429">CNN International Europe</channel>
<channel lang="bs" xmltv_id="DecijaTV.rs" site_id="201#387">Decija TV</channel> <channel lang="bs" xmltv_id="DecijaTV.rs" site_id="201#387">Decija TV</channel>
<channel lang="bs" xmltv_id="DexyTV.rs" site_id="211#405">Dexy TV</channel> <channel lang="bs" xmltv_id="DexyTV.rs" site_id="211#405">Dexy TV</channel>
@ -138,7 +138,7 @@
<channel lang="bs" xmltv_id="RTLII.hu" site_id="044#457">RTL II</channel> <channel lang="bs" xmltv_id="RTLII.hu" site_id="044#457">RTL II</channel>
<channel lang="bs" xmltv_id="RTLKockica.hr" site_id="205#459">RTL Kockica</channel> <channel lang="bs" xmltv_id="RTLKockica.hr" site_id="205#459">RTL Kockica</channel>
<channel lang="bs" xmltv_id="RTLLivingCroatia.hr" site_id="508#158">RTL Living Hrvatska</channel> <channel lang="bs" xmltv_id="RTLLivingCroatia.hr" site_id="508#158">RTL Living Hrvatska</channel>
<channel lang="bs" xmltv_id="RTNews.ru" site_id="180#198">RT News</channel> <channel lang="bs" xmltv_id="RT.ru" site_id="180#198">RT News</channel>
<channel lang="bs" xmltv_id="RTRPlaneta.ru" site_id="174#201">RTR Planeta</channel> <channel lang="bs" xmltv_id="RTRPlaneta.ru" site_id="174#201">RTR Planeta</channel>
<channel lang="bs" xmltv_id="RTRSTV.ba" site_id="001#11">RTRS TV</channel> <channel lang="bs" xmltv_id="RTRSTV.ba" site_id="001#11">RTRS TV</channel>
<channel lang="bs" xmltv_id="RTS2.rs" site_id="012#20">RTS 2</channel> <channel lang="bs" xmltv_id="RTS2.rs" site_id="012#20">RTS 2</channel>

View file

@ -43,8 +43,8 @@
<channel lang="sr" xmltv_id="CGTN.cn" site_id="671#207">CGTN</channel> <channel lang="sr" xmltv_id="CGTN.cn" site_id="671#207">CGTN</channel>
<channel lang="sr" xmltv_id="CineStarTV1Serbia.rs" site_id="246#518">CineStar TV 1 Srbija</channel> <channel lang="sr" xmltv_id="CineStarTV1Serbia.rs" site_id="246#518">CineStar TV 1 Srbija</channel>
<channel lang="sr" xmltv_id="CineStarTVActionSerbia.rs" site_id="247#519">CineStar TV Action Srbija</channel> <channel lang="sr" xmltv_id="CineStarTVActionSerbia.rs" site_id="247#519">CineStar TV Action Srbija</channel>
<channel lang="sr" xmltv_id="CineStarTVComedy.hr" site_id="249#521">CineStar TV Comedy</channel> <channel lang="sr" xmltv_id="CineStarTVComedyCroatia.hr" site_id="249#521">CineStar TV Comedy</channel>
<channel lang="sr" xmltv_id="CineStarTVFantasy.hr" site_id="248#520">CineStar TV Fantasy</channel> <channel lang="sr" xmltv_id="CineStarTVFantasyCroatia.hr" site_id="248#520">CineStar TV Fantasy</channel>
<channel lang="sr" xmltv_id="ClubMTVEurope.uk" site_id="475#293">Club MTV</channel> <channel lang="sr" xmltv_id="ClubMTVEurope.uk" site_id="475#293">Club MTV</channel>
<channel lang="sr" xmltv_id="CNBCEurope.uk" site_id="672#282">CNBC Europe</channel> <channel lang="sr" xmltv_id="CNBCEurope.uk" site_id="672#282">CNBC Europe</channel>
<channel lang="sr" xmltv_id="CNNInternationalEurope.us" site_id="660#196">CNN International Europe</channel> <channel lang="sr" xmltv_id="CNNInternationalEurope.us" site_id="660#196">CNN International Europe</channel>
@ -203,7 +203,7 @@
<channel lang="sr" xmltv_id="RedTV.rs" site_id="110#24">Red TV</channel> <channel lang="sr" xmltv_id="RedTV.rs" site_id="110#24">Red TV</channel>
<channel lang="sr" xmltv_id="RockRoll.rs" site_id="484#230">Rock &amp; Roll</channel> <channel lang="sr" xmltv_id="RockRoll.rs" site_id="484#230">Rock &amp; Roll</channel>
<channel lang="sr" xmltv_id="Russia24.ru" site_id="662#195">Rossiya 24</channel> <channel lang="sr" xmltv_id="Russia24.ru" site_id="662#195">Rossiya 24</channel>
<channel lang="sr" xmltv_id="RTDocumentary.ru" site_id="363#281">RT Documentary</channel> <channel lang="sr" xmltv_id="RTDoc.ru" site_id="363#281">RT Documentary</channel>
<channel lang="sr" xmltv_id="RTLCroatiaWorld.hr" site_id="645#334">RTL Croatia World</channel> <channel lang="sr" xmltv_id="RTLCroatiaWorld.hr" site_id="645#334">RTL Croatia World</channel>
<channel lang="sr" xmltv_id="RTLGermany.de" site_id="672#34">RTL Deutschland</channel> <channel lang="sr" xmltv_id="RTLGermany.de" site_id="672#34">RTL Deutschland</channel>
<channel lang="sr" xmltv_id="RTLGold.hu" site_id="689#591">RTL Gold</channel> <channel lang="sr" xmltv_id="RTLGold.hu" site_id="689#591">RTL Gold</channel>
@ -212,7 +212,7 @@
<channel lang="sr" xmltv_id="RTLKlub.hu" site_id="674#470">RTL Klub</channel> <channel lang="sr" xmltv_id="RTLKlub.hu" site_id="674#470">RTL Klub</channel>
<channel lang="sr" xmltv_id="RTLKockica.hr" site_id="644#832">RTL Kockica</channel> <channel lang="sr" xmltv_id="RTLKockica.hr" site_id="644#832">RTL Kockica</channel>
<channel lang="sr" xmltv_id="RTLPlus.hu" site_id="687#589">RTL +</channel> <channel lang="sr" xmltv_id="RTLPlus.hu" site_id="687#589">RTL +</channel>
<channel lang="sr" xmltv_id="RTNews.ru" site_id="664#336">RT News</channel> <channel lang="sr" xmltv_id="RT.ru" site_id="664#336">RT News</channel>
<channel lang="sr" xmltv_id="RTP.rs" site_id="558#650">RTP</channel> <channel lang="sr" xmltv_id="RTP.rs" site_id="558#650">RTP</channel>
<channel lang="sr" xmltv_id="RTRPlaneta.ru" site_id="662#201">RTR Planeta</channel> <channel lang="sr" xmltv_id="RTRPlaneta.ru" site_id="662#201">RTR Planeta</channel>
<channel lang="sr" xmltv_id="RTRSTV.ba" site_id="135#11">RTRS TV</channel> <channel lang="sr" xmltv_id="RTRSTV.ba" site_id="135#11">RTRS TV</channel>

View file

@ -57,7 +57,7 @@
<channel lang="en" xmltv_id="IceFire.hk" site_id="901">Ice Fire</channel> <channel lang="en" xmltv_id="IceFire.hk" site_id="901">Ice Fire</channel>
<channel lang="en" xmltv_id="KBSWorld.kr" site_id="156">KBS World</channel> <channel lang="en" xmltv_id="KBSWorld.kr" site_id="156">KBS World</channel>
<channel lang="en" xmltv_id="LifetimeAsia.us" site_id="525">Lifetime</channel> <channel lang="en" xmltv_id="LifetimeAsia.us" site_id="525">Lifetime</channel>
<channel lang="en" xmltv_id="MacauAsiaSatelliteTV.mo" site_id="544">Macau Asia Satellite TV</channel> <channel lang="en" xmltv_id="TDMMacauSatellite.mo" site_id="544">Macau Asia Satellite TV</channel>
<channel lang="en" xmltv_id="MOOVConcertMV.hk" site_id="168">MOOV Concert/MV</channel> <channel lang="en" xmltv_id="MOOVConcertMV.hk" site_id="168">MOOV Concert/MV</channel>
<channel lang="en" xmltv_id="MovieMovie.hk" site_id="116">Movie Movie</channel> <channel lang="en" xmltv_id="MovieMovie.hk" site_id="116">Movie Movie</channel>
<channel lang="en" xmltv_id="MTVIndia.in" site_id="779">MTV India</channel> <channel lang="en" xmltv_id="MTVIndia.in" site_id="779">MTV India</channel>
@ -103,7 +103,7 @@
<channel lang="en" xmltv_id="PhoenixHongKong.hk" site_id="367">Phoenix Hong Kong</channel> <channel lang="en" xmltv_id="PhoenixHongKong.hk" site_id="367">Phoenix Hong Kong</channel>
<channel lang="en" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="366">Phoenix InfoNews Channel</channel> <channel lang="en" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="366">Phoenix InfoNews Channel</channel>
<channel lang="en" xmltv_id="RockEntertainment.sg" site_id="517">Rock Entertainment</channel> <channel lang="en" xmltv_id="RockEntertainment.sg" site_id="517">Rock Entertainment</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="329">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="329">RT News</channel>
<channel lang="en" xmltv_id="RugbyPassTV.uk" site_id="679">RugbyPass TV</channel> <channel lang="en" xmltv_id="RugbyPassTV.uk" site_id="679">RugbyPass TV</channel>
<channel lang="en" xmltv_id="SanshaTV.cn" site_id="553">Sansha TV</channel> <channel lang="en" xmltv_id="SanshaTV.cn" site_id="553">Sansha TV</channel>
<channel lang="en" xmltv_id="SonyEntertainmentTelevision.in" site_id="771">SET India</channel> <channel lang="en" xmltv_id="SonyEntertainmentTelevision.in" site_id="771">SET India</channel>

View file

@ -54,7 +54,7 @@
<channel lang="zh" xmltv_id="IceFire.hk" site_id="901">Ice Fire</channel> <channel lang="zh" xmltv_id="IceFire.hk" site_id="901">Ice Fire</channel>
<channel lang="zh" xmltv_id="KBSWorld.kr" site_id="156">KBS World</channel> <channel lang="zh" xmltv_id="KBSWorld.kr" site_id="156">KBS World</channel>
<channel lang="zh" xmltv_id="LifetimeAsia.us" site_id="525">Lifetime Asia</channel> <channel lang="zh" xmltv_id="LifetimeAsia.us" site_id="525">Lifetime Asia</channel>
<channel lang="zh" xmltv_id="MacauAsiaSatelliteTV.mo" site_id="544">Macau Asia Satellite TV</channel> <channel lang="zh" xmltv_id="TDMMacauSatellite.mo" site_id="544">Macau Asia Satellite TV</channel>
<channel lang="zh" xmltv_id="MOOVConcertMV.hk" site_id="168">MOOV Concert/MV</channel> <channel lang="zh" xmltv_id="MOOVConcertMV.hk" site_id="168">MOOV Concert/MV</channel>
<channel lang="zh" xmltv_id="MovieMovie.hk" site_id="116">Movie Movie</channel> <channel lang="zh" xmltv_id="MovieMovie.hk" site_id="116">Movie Movie</channel>
<channel lang="zh" xmltv_id="MTVIndia.in" site_id="779">MTV India</channel> <channel lang="zh" xmltv_id="MTVIndia.in" site_id="779">MTV India</channel>
@ -100,7 +100,7 @@
<channel lang="zh" xmltv_id="PhoenixHongKong.hk" site_id="367">Phoenix Hong Kong</channel> <channel lang="zh" xmltv_id="PhoenixHongKong.hk" site_id="367">Phoenix Hong Kong</channel>
<channel lang="zh" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="366">Phoenix InfoNews Channel</channel> <channel lang="zh" xmltv_id="PhoenixInfoNewsChannel.hk" site_id="366">Phoenix InfoNews Channel</channel>
<channel lang="zh" xmltv_id="RockEntertainment.sg" site_id="517">Rock Entertainment</channel> <channel lang="zh" xmltv_id="RockEntertainment.sg" site_id="517">Rock Entertainment</channel>
<channel lang="zh" xmltv_id="RTNews.ru" site_id="329">RT News</channel> <channel lang="zh" xmltv_id="RT.ru" site_id="329">RT News</channel>
<channel lang="zh" xmltv_id="RugbyPassTV.uk" site_id="679">RugbyPass TV</channel> <channel lang="zh" xmltv_id="RugbyPassTV.uk" site_id="679">RugbyPass TV</channel>
<channel lang="zh" xmltv_id="SanshaTV.cn" site_id="553">Sansha TV</channel> <channel lang="zh" xmltv_id="SanshaTV.cn" site_id="553">Sansha TV</channel>
<channel lang="zh" xmltv_id="SonyEntertainmentTelevision.in" site_id="771">SET India</channel> <channel lang="zh" xmltv_id="SonyEntertainmentTelevision.in" site_id="771">SET India</channel>

View file

@ -77,7 +77,7 @@
<channel lang="en" xmltv_id="QVCUK.uk" site_id="uk#69036651/qvc-uk">QVC UK</channel> <channel lang="en" xmltv_id="QVCUK.uk" site_id="uk#69036651/qvc-uk">QVC UK</channel>
<channel lang="en" xmltv_id="RacingTV.uk" site_id="uk#69040591/racing-uk">Racing TV</channel> <channel lang="en" xmltv_id="RacingTV.uk" site_id="uk#69040591/racing-uk">Racing TV</channel>
<channel lang="en" xmltv_id="ReallyUK.uk" site_id="uk#69037274/really">Really UK</channel> <channel lang="en" xmltv_id="ReallyUK.uk" site_id="uk#69037274/really">Really UK</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="uk#322672042/rt-english-hdtv">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="uk#322672042/rt-english-hdtv">RT News</channel>
<channel lang="en" xmltv_id="RTUK.uk" site_id="uk#69036669/russia-today">RT UK</channel> <channel lang="en" xmltv_id="RTUK.uk" site_id="uk#69036669/russia-today">RT UK</channel>
<channel lang="en" xmltv_id="SangatTV.uk" site_id="uk#69042021/sangat">Sangat TV</channel> <channel lang="en" xmltv_id="SangatTV.uk" site_id="uk#69042021/sangat">Sangat TV</channel>
<channel lang="en" xmltv_id="SBNInternational.us" site_id="uk#69043552/sonlife-network-eu">SBN International</channel> <channel lang="en" xmltv_id="SBNInternational.us" site_id="uk#69043552/sonlife-network-eu">SBN International</channel>

View file

@ -26,7 +26,7 @@
<channel lang="ro" xmltv_id="BBCEarthRomania.ro" site_id="bbc-earth">BBC Earth</channel> <channel lang="ro" xmltv_id="BBCEarthRomania.ro" site_id="bbc-earth">BBC Earth</channel>
<channel lang="ro" xmltv_id="BBCWorldNewsEurope.uk" site_id="bbc-world-news">BBC World News</channel> <channel lang="ro" xmltv_id="BBCWorldNewsEurope.uk" site_id="bbc-world-news">BBC World News</channel>
<channel lang="ro" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg">Bloomberg TV</channel> <channel lang="ro" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg">Bloomberg TV</channel>
<channel lang="ro" xmltv_id="BlueHustler.uk" site_id="blue-hustler">Blue Hustler</channel> <channel lang="ro" xmltv_id="BlueHustler.nl" site_id="blue-hustler">Blue Hustler</channel>
<channel lang="ro" xmltv_id="BollywoodHDRussia.ru" site_id="bollywood-hd">Bollywood HD</channel> <channel lang="ro" xmltv_id="BollywoodHDRussia.ru" site_id="bollywood-hd">Bollywood HD</channel>
<channel lang="ro" xmltv_id="BollywoodTV.ro" site_id="bollywood-tv">Bollywood TV</channel> <channel lang="ro" xmltv_id="BollywoodTV.ro" site_id="bollywood-tv">Bollywood TV</channel>
<channel lang="ro" xmltv_id="BoomerangCEE.us" site_id="boomerang">Boomerang</channel> <channel lang="ro" xmltv_id="BoomerangCEE.us" site_id="boomerang">Boomerang</channel>
@ -103,8 +103,8 @@
<channel lang="ro" xmltv_id="HBORomania.ro" site_id="hbo">HBO Romania</channel> <channel lang="ro" xmltv_id="HBORomania.ro" site_id="hbo">HBO Romania</channel>
<channel lang="ro" xmltv_id="HistoryRomania.ro" site_id="history">History România</channel> <channel lang="ro" xmltv_id="HistoryRomania.ro" site_id="history">History România</channel>
<channel lang="ro" xmltv_id="HtMusicChannelRomania.ro" site_id="hit-music-channel">H!t Music Channel</channel> <channel lang="ro" xmltv_id="HtMusicChannelRomania.ro" site_id="hit-music-channel">H!t Music Channel</channel>
<channel lang="ro" xmltv_id="HustlerHD.uk" site_id="hustler-hd">Hustler HD</channel> <channel lang="ro" xmltv_id="HustlerHD.nl" site_id="hustler-hd">Hustler HD</channel>
<channel lang="ro" xmltv_id="HustlerTVEurope.uk" site_id="hustler-tv">Hustler TV</channel> <channel lang="ro" xmltv_id="HustlerTVEurope.nl" site_id="hustler-tv">Hustler TV</channel>
<channel lang="ro" xmltv_id="IneditTV.ro" site_id="inedit-tv">Inedit TV</channel> <channel lang="ro" xmltv_id="IneditTV.ro" site_id="inedit-tv">Inedit TV</channel>
<channel lang="ro" xmltv_id="InvestigationDiscoveryEurope.us" site_id="id-investigation-discovery">Investigation Discovery</channel> <channel lang="ro" xmltv_id="InvestigationDiscoveryEurope.us" site_id="id-investigation-discovery">Investigation Discovery</channel>
<channel lang="ro" xmltv_id="JimJamRomania.ro" site_id="jimjam">JimJam</channel> <channel lang="ro" xmltv_id="JimJamRomania.ro" site_id="jimjam">JimJam</channel>
@ -185,7 +185,7 @@
<channel lang="ro" xmltv_id="RTLKlub.hu" site_id="rtl-klub-hd">RTL Klub</channel> <channel lang="ro" xmltv_id="RTLKlub.hu" site_id="rtl-klub-hd">RTL Klub</channel>
<channel lang="ro" xmltv_id="RTLPlus.hu" site_id="rtl-plus">RTL +</channel> <channel lang="ro" xmltv_id="RTLPlus.hu" site_id="rtl-plus">RTL +</channel>
<channel lang="ro" xmltv_id="RTLZweiGermany.de" site_id="rtl-zwei">RTL Zwei</channel> <channel lang="ro" xmltv_id="RTLZweiGermany.de" site_id="rtl-zwei">RTL Zwei</channel>
<channel lang="ro" xmltv_id="RTNews.ru" site_id="rt-hd">RT HD</channel> <channel lang="ro" xmltv_id="RT.ru" site_id="rt-hd">RT HD</channel>
<channel lang="ro" xmltv_id="Sat1Germany.de" site_id="sat-1">Sat. 1</channel> <channel lang="ro" xmltv_id="Sat1Germany.de" site_id="sat-1">Sat. 1</channel>
<channel lang="ro" xmltv_id="SixxGermany.de" site_id="sixx">Sixx</channel> <channel lang="ro" xmltv_id="SixxGermany.de" site_id="sixx">Sixx</channel>
<channel lang="ro" xmltv_id="SorozatPlus.hu" site_id="sorozat-plusz">Sorozat +</channel> <channel lang="ro" xmltv_id="SorozatPlus.hu" site_id="sorozat-plusz">Sorozat +</channel>

View file

@ -127,7 +127,7 @@
<channel lang="fr" xmltv_id="M6.fr" site_id="m6-12">M6</channel> <channel lang="fr" xmltv_id="M6.fr" site_id="m6-12">M6</channel>
<channel lang="fr" xmltv_id="M6Music.fr" site_id="m6-music-80">M6 Music</channel> <channel lang="fr" xmltv_id="M6Music.fr" site_id="m6-music-80">M6 Music</channel>
<channel lang="fr" xmltv_id="Mangas.fr" site_id="mangas-82">Mangas</channel> <channel lang="fr" xmltv_id="Mangas.fr" site_id="mangas-82">Mangas</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="mcm-87">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="mcm-87">MCM France</channel>
<channel lang="fr" xmltv_id="MCMTop.fr" site_id="mcm-top-86">MCM Top</channel> <channel lang="fr" xmltv_id="MCMTop.fr" site_id="mcm-top-86">MCM Top</channel>
<channel lang="fr" xmltv_id="Melody.fr" site_id="melody-179">Melody</channel> <channel lang="fr" xmltv_id="Melody.fr" site_id="melody-179">Melody</channel>
<channel lang="fr" xmltv_id="Mezzo.fr" site_id="mezzo-88">Mezzo</channel> <channel lang="fr" xmltv_id="Mezzo.fr" site_id="mezzo-88">Mezzo</channel>
@ -191,7 +191,7 @@
<channel lang="fr" xmltv_id="TF1.fr" site_id="tf1-19">TF 1</channel> <channel lang="fr" xmltv_id="TF1.fr" site_id="tf1-19">TF 1</channel>
<channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="tf1-series-films-201">TF 1 Séries Films</channel> <channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="tf1-series-films-201">TF 1 Séries Films</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="tfx-14">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="tfx-14">TFX</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="tiji-115">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="tiji-115">Tiji</channel>
<channel lang="fr" xmltv_id="Tipik.be" site_id="tipik-143">Tipik</channel> <channel lang="fr" xmltv_id="Tipik.be" site_id="tipik-143">Tipik</channel>
<channel lang="fr" xmltv_id="TMC.mc" site_id="tmc-21">TMC</channel> <channel lang="fr" xmltv_id="TMC.mc" site_id="tmc-21">TMC</channel>
<channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="toonami-338">Toonami France</channel> <channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="toonami-338">Toonami France</channel>

View file

@ -35,7 +35,7 @@
<channel lang="pl" xmltv_id="BelsatTV.pl" site_id="belsat-tv-289">Belsat TV</channel> <channel lang="pl" xmltv_id="BelsatTV.pl" site_id="belsat-tv-289">Belsat TV</channel>
<channel lang="pl" xmltv_id="BibelTV.de" site_id="bibel-tv-266">Bibel TV</channel> <channel lang="pl" xmltv_id="BibelTV.de" site_id="bibel-tv-266">Bibel TV</channel>
<channel lang="pl" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg-ang-245">Bloomberg TV Europe</channel> <channel lang="pl" xmltv_id="BloombergTVEMEA.uk" site_id="bloomberg-ang-245">Bloomberg TV Europe</channel>
<channel lang="pl" xmltv_id="BlueHustler.uk" site_id="blue-hustler-280">Blue Hustler Europe</channel> <channel lang="pl" xmltv_id="BlueHustler.nl" site_id="blue-hustler-280">Blue Hustler Europe</channel>
<channel lang="pl" xmltv_id="BollywoodHDRussia.ru" site_id="bollywood-hd-530">Bollywood HD</channel> <channel lang="pl" xmltv_id="BollywoodHDRussia.ru" site_id="bollywood-hd-530">Bollywood HD</channel>
<channel lang="pl" xmltv_id="BoomerangPoland.pl" site_id="boomerang-270">Boomerang Polska</channel> <channel lang="pl" xmltv_id="BoomerangPoland.pl" site_id="boomerang-270">Boomerang Polska</channel>
<channel lang="pl" xmltv_id="BrazzersTVEurope.us" site_id="brazzers-tv-europe-279">Brazzers TV Europe</channel> <channel lang="pl" xmltv_id="BrazzersTVEurope.us" site_id="brazzers-tv-europe-279">Brazzers TV Europe</channel>
@ -57,7 +57,7 @@
<channel lang="pl" xmltv_id="CBSEuropa.pl" site_id="cbs-europa-317">CBS Europa</channel> <channel lang="pl" xmltv_id="CBSEuropa.pl" site_id="cbs-europa-317">CBS Europa</channel>
<channel lang="pl" xmltv_id="CBSRealityPoland.pl" site_id="cbs-reality-318">CBS Reality Polska</channel> <channel lang="pl" xmltv_id="CBSRealityPoland.pl" site_id="cbs-reality-318">CBS Reality Polska</channel>
<channel lang="pl" xmltv_id="CGTN.cn" site_id="cctv-news-291">CGTN</channel> <channel lang="pl" xmltv_id="CGTN.cn" site_id="cctv-news-291">CGTN</channel>
<channel lang="pl" xmltv_id="ChannelOneEuropa.ru" site_id="channel-one-russia-276">Perviy kanal Europa</channel> <channel lang="pl" xmltv_id="ChannelOne.ru" site_id="channel-one-russia-276">Perviy kanal Europa</channel>
<channel lang="pl" xmltv_id="Cinemax2Poland.pl" site_id="cinemax2-58">Cinemax 2 Central Europe</channel> <channel lang="pl" xmltv_id="Cinemax2Poland.pl" site_id="cinemax2-58">Cinemax 2 Central Europe</channel>
<channel lang="pl" xmltv_id="CinemaxPoland.pl" site_id="cinemax-59">Cinemax Central Europe</channel> <channel lang="pl" xmltv_id="CinemaxPoland.pl" site_id="cinemax-59">Cinemax Central Europe</channel>
<channel lang="pl" xmltv_id="ClubMTVEurope.uk" site_id="mtv-dance-481">Club MTV</channel> <channel lang="pl" xmltv_id="ClubMTVEurope.uk" site_id="mtv-dance-481">Club MTV</channel>
@ -68,7 +68,7 @@
<channel lang="pl" xmltv_id="CT1.cz" site_id="ct-1-241">CT 1</channel> <channel lang="pl" xmltv_id="CT1.cz" site_id="ct-1-241">CT 1</channel>
<channel lang="pl" xmltv_id="CT2.cz" site_id="ct-2-243">CT 2</channel> <channel lang="pl" xmltv_id="CT2.cz" site_id="ct-2-243">CT 2</channel>
<channel lang="pl" xmltv_id="DasErste.de" site_id="das-erste-350">Das Erste</channel> <channel lang="pl" xmltv_id="DasErste.de" site_id="das-erste-350">Das Erste</channel>
<channel lang="pl" xmltv_id="DaVinciPoland.de" site_id="da-vinci-learning-83">Da Vinci Polska</channel> <channel lang="pl" xmltv_id="DaVinciPoland.pl" site_id="da-vinci-learning-83">Da Vinci Polska</channel>
<channel lang="pl" xmltv_id="DeutschesMusikFernsehen.de" site_id="deutsches-musik-fernsehen-119">Deutsches Musik Fernsehen</channel> <channel lang="pl" xmltv_id="DeutschesMusikFernsehen.de" site_id="deutsches-musik-fernsehen-119">Deutsches Musik Fernsehen</channel>
<channel lang="pl" xmltv_id="DiscoPoloMusic.pl" site_id="disco-polo-music-191">Disco Polo Music</channel> <channel lang="pl" xmltv_id="DiscoPoloMusic.pl" site_id="disco-polo-music-191">Disco Polo Music</channel>
<channel lang="pl" xmltv_id="DiscoveryChannelGermany.de" site_id="discovery-channel-niem-358">Discovery Channel Deutschland</channel> <channel lang="pl" xmltv_id="DiscoveryChannelGermany.de" site_id="discovery-channel-niem-358">Discovery Channel Deutschland</channel>
@ -120,7 +120,7 @@
<channel lang="pl" xmltv_id="FilmBoxFamily.nl" site_id="filmbox-family-103">FilmBox Family</channel> <channel lang="pl" xmltv_id="FilmBoxFamily.nl" site_id="filmbox-family-103">FilmBox Family</channel>
<!-- <channel lang="pl" xmltv_id="FilmBoxPremiumPoland.pl" site_id="filmbox-premium-85">FilmBox Premium Polska</channel> --> <!-- <channel lang="pl" xmltv_id="FilmBoxPremiumPoland.pl" site_id="filmbox-premium-85">FilmBox Premium Polska</channel> -->
<channel lang="pl" xmltv_id="FokusTV.pl" site_id="fokus-tv-46">Fokus TV</channel> <channel lang="pl" xmltv_id="FokusTV.pl" site_id="fokus-tv-46">Fokus TV</channel>
<channel lang="pl" xmltv_id="Folx.de" site_id="folx-tv-206">Folx</channel> <channel lang="pl" xmltv_id="FolxMusicTelevision.de" site_id="folx-tv-206">Folx</channel>
<channel lang="pl" xmltv_id="FoodNetworkPoland.pl" site_id="polsat-food-157">Food Network Polska</channel> <channel lang="pl" xmltv_id="FoodNetworkPoland.pl" site_id="polsat-food-157">Food Network Polska</channel>
<channel lang="pl" xmltv_id="FoxComedyPoland.pl" site_id="fox-comedy-75">Fox Comedy Polska</channel> <channel lang="pl" xmltv_id="FoxComedyPoland.pl" site_id="fox-comedy-75">Fox Comedy Polska</channel>
<channel lang="pl" xmltv_id="FoxPoland.pl" site_id="fox-127">Fox Polska</channel> <channel lang="pl" xmltv_id="FoxPoland.pl" site_id="fox-127">Fox Polska</channel>
@ -145,8 +145,8 @@
<channel lang="pl" xmltv_id="HistoryPoland.pl" site_id="history-91">History Polska</channel> <channel lang="pl" xmltv_id="HistoryPoland.pl" site_id="history-91">History Polska</channel>
<channel lang="pl" xmltv_id="HomeTV.pl" site_id="tvr-132">Home TV</channel> <channel lang="pl" xmltv_id="HomeTV.pl" site_id="tvr-132">Home TV</channel>
<channel lang="pl" xmltv_id="HRFernsehen.de" site_id="hr-374">HR Fernsehen</channel> <channel lang="pl" xmltv_id="HRFernsehen.de" site_id="hr-374">HR Fernsehen</channel>
<channel lang="pl" xmltv_id="HustlerHD.uk" site_id="hustler-hd-138">Hustler HD Europe</channel> <channel lang="pl" xmltv_id="HustlerHD.nl" site_id="hustler-hd-138">Hustler HD Europe</channel>
<channel lang="pl" xmltv_id="HustlerTVEurope.uk" site_id="hustler-tv-107">Hustler TV Europe</channel> <channel lang="pl" xmltv_id="HustlerTVEurope.nl" site_id="hustler-tv-107">Hustler TV Europe</channel>
<channel lang="pl" xmltv_id="InsightTVUHD.nl" site_id="insight-tv-uhd-682">Insight UHD</channel> <channel lang="pl" xmltv_id="InsightTVUHD.nl" site_id="insight-tv-uhd-682">Insight UHD</channel>
<channel lang="pl" xmltv_id="InspirationTV.us" site_id="inspiration-tv-649">Inspiration TV</channel> <channel lang="pl" xmltv_id="InspirationTV.us" site_id="inspiration-tv-649">Inspiration TV</channel>
<channel lang="pl" xmltv_id="InvestigationDiscoveryPoland.pl" site_id="id-117">Investigation Discovery Polska</channel> <channel lang="pl" xmltv_id="InvestigationDiscoveryPoland.pl" site_id="id-117">Investigation Discovery Polska</channel>
@ -245,11 +245,11 @@
<channel lang="pl" xmltv_id="RFMTV.fr" site_id="rfm-tv-95">RFM TV</channel> <channel lang="pl" xmltv_id="RFMTV.fr" site_id="rfm-tv-95">RFM TV</channel>
<channel lang="pl" xmltv_id="RheinMainTV.de" site_id="rheinmaintv-468">RheinMain TV</channel> <channel lang="pl" xmltv_id="RheinMainTV.de" site_id="rheinmaintv-468">RheinMain TV</channel>
<channel lang="pl" xmltv_id="RomanceTVPoland.de" site_id="romance-tv-129">Romance TV Polska</channel> <channel lang="pl" xmltv_id="RomanceTVPoland.de" site_id="romance-tv-129">Romance TV Polska</channel>
<channel lang="pl" xmltv_id="RTDocumentary.ru" site_id="rt-documentary-474">RT Documentary</channel> <channel lang="pl" xmltv_id="RTDoc.ru" site_id="rt-documentary-474">RT Documentary</channel>
<channel lang="pl" xmltv_id="RTL1025Radiovisione.it" site_id="rtl-102-5-43">RTL 102.5 RadioVisione</channel> <channel lang="pl" xmltv_id="RTL1025Radiovisione.it" site_id="rtl-102-5-43">RTL 102.5 RadioVisione</channel>
<channel lang="pl" xmltv_id="RTLGermany.de" site_id="rtl-401">RTL Deutschland</channel> <channel lang="pl" xmltv_id="RTLGermany.de" site_id="rtl-401">RTL Deutschland</channel>
<channel lang="pl" xmltv_id="RTLZweiGermany.de" site_id="rtl-2-399">RTL Zwei Deutschland</channel> <channel lang="pl" xmltv_id="RTLZweiGermany.de" site_id="rtl-2-399">RTL Zwei Deutschland</channel>
<channel lang="pl" xmltv_id="RTNews.ru" site_id="russia-today-115">RT News</channel> <channel lang="pl" xmltv_id="RT.ru" site_id="russia-today-115">RT News</channel>
<channel lang="pl" xmltv_id="RTRPlaneta.ru" site_id="rtr-planeta-470">RTR Planeta</channel> <channel lang="pl" xmltv_id="RTRPlaneta.ru" site_id="rtr-planeta-470">RTR Planeta</channel>
<channel lang="pl" xmltv_id="RTS1.ch" site_id="rts-un-410">RTS 1</channel> <channel lang="pl" xmltv_id="RTS1.ch" site_id="rts-un-410">RTS 1</channel>
<channel lang="pl" xmltv_id="RTS2.ch" site_id="rts-deux-411">RTS 2</channel> <channel lang="pl" xmltv_id="RTS2.ch" site_id="rts-deux-411">RTS 2</channel>
@ -331,7 +331,7 @@
<channel lang="pl" xmltv_id="UATV.ua" site_id="uatv-549">UA TV</channel> <channel lang="pl" xmltv_id="UATV.ua" site_id="uatv-549">UA TV</channel>
<channel lang="pl" xmltv_id="VH1Europe.uk" site_id="vh1-9">VH1 Polska</channel> <channel lang="pl" xmltv_id="VH1Europe.uk" site_id="vh1-9">VH1 Polska</channel>
<channel lang="pl" xmltv_id="VividRed.us" site_id="vivid-red-hd-627">Vivid Red</channel> <channel lang="pl" xmltv_id="VividRed.us" site_id="vivid-red-hd-627">Vivid Red</channel>
<channel lang="pl" xmltv_id="VividTouch.us" site_id="vivid-touch-636">Vivid Touch</channel> <channel lang="pl" xmltv_id="VividTouch.uk" site_id="vivid-touch-636">Vivid Touch</channel>
<channel lang="pl" xmltv_id="VoxGermany.de" site_id="vox-418">Vox Deutschland</channel> <channel lang="pl" xmltv_id="VoxGermany.de" site_id="vox-418">Vox Deutschland</channel>
<channel lang="pl" xmltv_id="VOXMusicTV.pl" site_id="vox-music-tv-193">Vox Music TV</channel> <channel lang="pl" xmltv_id="VOXMusicTV.pl" site_id="vox-music-tv-193">Vox Music TV</channel>
<channel lang="pl" xmltv_id="WaterPlanet.pl" site_id="water-planet-415">Water Planet</channel> <channel lang="pl" xmltv_id="WaterPlanet.pl" site_id="water-planet-415">Water Planet</channel>

View file

@ -20,7 +20,7 @@
<channel lang="en" xmltv_id="PenthouseGold.us" site_id="UID0461">Penthouse Gold</channel> <channel lang="en" xmltv_id="PenthouseGold.us" site_id="UID0461">Penthouse Gold</channel>
<channel lang="es" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="UID50027">TVE Int</channel> <channel lang="es" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="UID50027">TVE Int</channel>
<channel lang="fr" xmltv_id="13emeRue.fr" site_id="UID2054">13è Rue HD</channel> <channel lang="fr" xmltv_id="13emeRue.fr" site_id="UID2054">13è Rue HD</channel>
<channel lang="fr" xmltv_id="2MMonde.ma" site_id="UID2045">2M Monde</channel> <channel lang="fr" xmltv_id="2MInternational.ma" site_id="UID2045">2M Monde</channel>
<channel lang="fr" xmltv_id="AB3.be" site_id="UID50058">AB3</channel> <channel lang="fr" xmltv_id="AB3.be" site_id="UID50058">AB3</channel>
<channel lang="fr" xmltv_id="ABXplore.be" site_id="UID0231">ABXPLO HD</channel> <channel lang="fr" xmltv_id="ABXplore.be" site_id="UID0231">ABXPLO HD</channel>
<channel lang="fr" xmltv_id="Action.fr" site_id="UID50019">Action</channel> <channel lang="fr" xmltv_id="Action.fr" site_id="UID50019">Action</channel>
@ -108,7 +108,7 @@
<channel lang="fr" xmltv_id="TeleMB.be" site_id="UID2340">Télé MB HD</channel> <channel lang="fr" xmltv_id="TeleMB.be" site_id="UID2340">Télé MB HD</channel>
<channel lang="fr" xmltv_id="Telesambre.be" site_id="UID0117">Télé Sambre</channel> <channel lang="fr" xmltv_id="Telesambre.be" site_id="UID0117">Télé Sambre</channel>
<channel lang="fr" xmltv_id="TF1.fr" site_id="UID50068">TF1</channel> <channel lang="fr" xmltv_id="TF1.fr" site_id="UID50068">TF1</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="UID50095">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="UID50095">Tiji</channel>
<channel lang="fr" xmltv_id="Tipik.be" site_id="UID50059">TIPIK</channel> <channel lang="fr" xmltv_id="Tipik.be" site_id="UID50059">TIPIK</channel>
<channel lang="fr" xmltv_id="TipikVision.be" site_id="UID0025">TIPIK vision</channel> <channel lang="fr" xmltv_id="TipikVision.be" site_id="UID0025">TIPIK vision</channel>
<channel lang="fr" xmltv_id="TMC.fr" site_id="UID2276">TMC HD</channel> <channel lang="fr" xmltv_id="TMC.fr" site_id="UID2276">TMC HD</channel>

View file

@ -8,7 +8,7 @@
<channel lang="en" xmltv_id="BabyTV.uk" site_id="695">BABY TV</channel> <channel lang="en" xmltv_id="BabyTV.uk" site_id="695">BABY TV</channel>
<channel lang="en" xmltv_id="BethelTV.pe" site_id="808">BETHEL</channel> <channel lang="en" xmltv_id="BethelTV.pe" site_id="808">BETHEL</channel>
<channel lang="en" xmltv_id="BoliviaTV.bo" site_id="4055">BOLIVIA TV</channel> <channel lang="en" xmltv_id="BoliviaTV.bo" site_id="4055">BOLIVIA TV</channel>
<channel lang="en" xmltv_id="BrazzersTV.us" site_id="3290">BRAZZERS TV</channel> <channel lang="en" xmltv_id="BrazzersTVEurope.us" site_id="3290">BRAZZERS TV</channel>
<channel lang="en" xmltv_id="CanalI.ve" site_id="967">CANAL I</channel> <channel lang="en" xmltv_id="CanalI.ve" site_id="967">CANAL I</channel>
<channel lang="en" xmltv_id="Colombeia.ve" site_id="2626">COLOMBEIA</channel> <channel lang="en" xmltv_id="Colombeia.ve" site_id="2626">COLOMBEIA</channel>
<channel lang="en" xmltv_id="ConCienciaTV.ve" site_id="2831">CONCIENCIA TV</channel> <channel lang="en" xmltv_id="ConCienciaTV.ve" site_id="2831">CONCIENCIA TV</channel>

View file

@ -164,7 +164,7 @@
<channel lang="en" xmltv_id="TSN1.ca" site_id="715">TSN 1</channel> <channel lang="en" xmltv_id="TSN1.ca" site_id="715">TSN 1</channel>
<channel lang="en" xmltv_id="TV5MondeUS.us" site_id="677">TV5Monde États-Unis</channel> <channel lang="en" xmltv_id="TV5MondeUS.us" site_id="677">TV5Monde États-Unis</channel>
<channel lang="en" xmltv_id="TVOne.us" site_id="366">TV One</channel> <channel lang="en" xmltv_id="TVOne.us" site_id="366">TV One</channel>
<channel lang="en" xmltv_id="TVOntario.ca" site_id="306">TVO</channel> <channel lang="en" xmltv_id="CICADT.ca" site_id="306">TVO</channel>
<channel lang="en" xmltv_id="UnivisionEast.us" site_id="679">Univisión Este</channel> <channel lang="en" xmltv_id="UnivisionEast.us" site_id="679">Univisión Este</channel>
<channel lang="en" xmltv_id="VH1USEast.us" site_id="372">VH1 East</channel> <channel lang="en" xmltv_id="VH1USEast.us" site_id="372">VH1 East</channel>
<channel lang="en" xmltv_id="ViceTV.us" site_id="341">Vice East</channel> <channel lang="en" xmltv_id="ViceTV.us" site_id="341">Vice East</channel>

View file

@ -5,7 +5,7 @@
<channel lang="es" xmltv_id="AMCColombia.co" site_id="532">AMC</channel> <channel lang="es" xmltv_id="AMCColombia.co" site_id="532">AMC</channel>
<channel lang="es" xmltv_id="AnimalPlanetLatinAmerica.us" site_id="382">Animal Planet</channel> <channel lang="es" xmltv_id="AnimalPlanetLatinAmerica.us" site_id="382">Animal Planet</channel>
<channel lang="es" xmltv_id="AXNAndes.us" site_id="384">AXN</channel> <channel lang="es" xmltv_id="AXNAndes.us" site_id="384">AXN</channel>
<channel lang="es" xmltv_id="BrazzersTVXX.us" site_id="564">Brazzers TV XX</channel> <!-- <channel lang="es" xmltv_id="BrazzersTVXX.us" site_id="564">Brazzers TV XX</channel> -->
<channel lang="es" xmltv_id="Cablenoticias.co" site_id="391">Cablenoticias</channel> <channel lang="es" xmltv_id="Cablenoticias.co" site_id="391">Cablenoticias</channel>
<channel lang="es" xmltv_id="Canal1.co" site_id="401">Canal 1</channel> <channel lang="es" xmltv_id="Canal1.co" site_id="401">Canal 1</channel>
<channel lang="es" xmltv_id="CanalCapital.co" site_id="393">Canal Capital</channel> <channel lang="es" xmltv_id="CanalCapital.co" site_id="393">Canal Capital</channel>

View file

@ -2,7 +2,7 @@
<site site="telecablesat.fr"> <site site="telecablesat.fr">
<channels> <channels>
<channel lang="fr" xmltv_id="13emeRue.fr" site_id="2">13eme RUE</channel> <channel lang="fr" xmltv_id="13emeRue.fr" site_id="2">13eme RUE</channel>
<channel lang="fr" xmltv_id="2MMonde.ma" site_id="340">2M Monde</channel> <channel lang="fr" xmltv_id="2MInternational.ma" site_id="340">2M Monde</channel>
<channel lang="fr" xmltv_id="3sat.de" site_id="3">3SAT</channel> <channel lang="fr" xmltv_id="3sat.de" site_id="3">3SAT</channel>
<channel lang="fr" xmltv_id="6ter.fr" site_id="1403">6ter</channel> <channel lang="fr" xmltv_id="6ter.fr" site_id="1403">6ter</channel>
<channel lang="fr" xmltv_id="AB1.fr" site_id="5">AB 1</channel> <channel lang="fr" xmltv_id="AB1.fr" site_id="5">AB 1</channel>
@ -135,7 +135,7 @@
<channel lang="fr" xmltv_id="Gulli.fr" site_id="482">Gulli</channel> <channel lang="fr" xmltv_id="Gulli.fr" site_id="482">Gulli</channel>
<channel lang="fr" xmltv_id="Guyane1ere.gf" site_id="260">Guyane la 1ère</channel> <channel lang="fr" xmltv_id="Guyane1ere.gf" site_id="260">Guyane la 1ère</channel>
<channel lang="fr" xmltv_id="HistoireTV.fr" site_id="88">Histoire TV</channel> <channel lang="fr" xmltv_id="HistoireTV.fr" site_id="88">Histoire TV</channel>
<channel lang="fr" xmltv_id="HustlerTVEurope.uk" site_id="416">Hustler TV</channel> <channel lang="fr" xmltv_id="HustlerTVEurope.nl" site_id="416">Hustler TV</channel>
<channel lang="fr" xmltv_id="I24NewsFrench.il" site_id="781">I24news</channel> <channel lang="fr" xmltv_id="I24NewsFrench.il" site_id="781">I24news</channel>
<channel lang="fr" xmltv_id="InfosportPlus.fr" site_id="94">Infosport+</channel> <channel lang="fr" xmltv_id="InfosportPlus.fr" site_id="94">Infosport+</channel>
<channel lang="fr" xmltv_id="InvestigationDiscoveryFrance.fr" site_id="2184">Discovery Investigation</channel> <channel lang="fr" xmltv_id="InvestigationDiscoveryFrance.fr" site_id="2184">Discovery Investigation</channel>
@ -156,7 +156,7 @@
<channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="328">Martinique la 1ère</channel> <channel lang="fr" xmltv_id="Martinique1ere.mq" site_id="328">Martinique la 1ère</channel>
<channel lang="fr" xmltv_id="Matele.be" site_id="393">MAtélé</channel> <channel lang="fr" xmltv_id="Matele.be" site_id="393">MAtélé</channel>
<channel lang="fr" xmltv_id="Mayotte1ere.yt" site_id="1080">Mayotte la 1ère</channel> <channel lang="fr" xmltv_id="Mayotte1ere.yt" site_id="1080">Mayotte la 1ère</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="121">MCM</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="121">MCM</channel>
<channel lang="fr" xmltv_id="Melody.fr" site_id="265">Melody</channel> <channel lang="fr" xmltv_id="Melody.fr" site_id="265">Melody</channel>
<channel lang="fr" xmltv_id="MelodydAfrique.fr" site_id="2321">Melody d&apos;Afrique</channel> <channel lang="fr" xmltv_id="MelodydAfrique.fr" site_id="2321">Melody d&apos;Afrique</channel>
<channel lang="fr" xmltv_id="MensUPTV.fr" site_id="1452">Men&apos;s UP TV</channel> <channel lang="fr" xmltv_id="MensUPTV.fr" site_id="1452">Men&apos;s UP TV</channel>
@ -243,7 +243,7 @@
<channel lang="fr" xmltv_id="TF1.fr" site_id="192">TF1</channel> <channel lang="fr" xmltv_id="TF1.fr" site_id="192">TF1</channel>
<channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="1404">TF1 Séries Films</channel> <channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="1404">TF1 Séries Films</channel>
<channel lang="fr" xmltv_id="TFX.fr" site_id="446">TFX</channel> <channel lang="fr" xmltv_id="TFX.fr" site_id="446">TFX</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="229">TIJI</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="229">TIJI</channel>
<channel lang="fr" xmltv_id="Tipik.be" site_id="187">Tipik</channel> <channel lang="fr" xmltv_id="Tipik.be" site_id="187">Tipik</channel>
<channel lang="fr" xmltv_id="TMC.fr" site_id="195">TMC</channel> <channel lang="fr" xmltv_id="TMC.fr" site_id="195">TMC</channel>
<channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="2040">Toonami</channel> <channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="2040">Toonami</channel>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<site site="telenettv.be"> <site site="telenettv.be">
<channels> <channels>
<channel lang="nl" xmltv_id="2MMonde.ma" site_id="2mmonde">2M Monde</channel> <channel lang="nl" xmltv_id="2MInternational.ma" site_id="2mmonde">2M Monde</channel>
<channel lang="nl" xmltv_id="AB3.be" site_id="ab3">AB 3</channel> <channel lang="nl" xmltv_id="AB3.be" site_id="ab3">AB 3</channel>
<channel lang="nl" xmltv_id="AlJazeeraEnglish.qa" site_id="aljazeeraeng">Al Jazeera English</channel> <channel lang="nl" xmltv_id="AlJazeeraEnglish.qa" site_id="aljazeeraeng">Al Jazeera English</channel>
<channel lang="nl" xmltv_id="AnimalPlanetNetherlands.nl" site_id="animalplanethd">Animal Planet Europe</channel> <channel lang="nl" xmltv_id="AnimalPlanetNetherlands.nl" site_id="animalplanethd">Animal Planet Europe</channel>
@ -44,7 +44,7 @@
<channel lang="nl" xmltv_id="France4.fr" site_id="france4">France 4</channel> <channel lang="nl" xmltv_id="France4.fr" site_id="france4">France 4</channel>
<channel lang="nl" xmltv_id="France5.fr" site_id="france5">France 5</channel> <channel lang="nl" xmltv_id="France5.fr" site_id="france5">France 5</channel>
<channel lang="nl" xmltv_id="HistoryNetherlands.nl" site_id="history">History Europe</channel> <channel lang="nl" xmltv_id="HistoryNetherlands.nl" site_id="history">History Europe</channel>
<channel lang="nl" xmltv_id="HustlerHD.uk" site_id="hustlerhd">Hustler HD Europe</channel> <channel lang="nl" xmltv_id="HustlerHD.nl" site_id="hustlerhd">Hustler HD Europe</channel>
<channel lang="nl" xmltv_id="KanaalZ.be" site_id="kanaalz">Kanaal Z</channel> <channel lang="nl" xmltv_id="KanaalZ.be" site_id="kanaalz">Kanaal Z</channel>
<channel lang="nl" xmltv_id="Ketnet.be" site_id="ketnet">Ketnet</channel> <channel lang="nl" xmltv_id="Ketnet.be" site_id="ketnet">Ketnet</channel>
<channel lang="nl" xmltv_id="LaTrois.be" site_id="latrois">La Trois</channel> <channel lang="nl" xmltv_id="LaTrois.be" site_id="latrois">La Trois</channel>

View file

@ -22,7 +22,7 @@
<channel lang="en" xmltv_id="DisneyChannelScandinavia.uk" site_id="102">Disney Channel Scandinavia</channel> <channel lang="en" xmltv_id="DisneyChannelScandinavia.uk" site_id="102">Disney Channel Scandinavia</channel>
<channel lang="en" xmltv_id="DisneyJuniorScandinavia.uk" site_id="103">Disney Junior Scandinavia</channel> <channel lang="en" xmltv_id="DisneyJuniorScandinavia.uk" site_id="103">Disney Junior Scandinavia</channel>
<channel lang="en" xmltv_id="DomKino.ru" site_id="95">Dom Kino International</channel> <channel lang="en" xmltv_id="DomKino.ru" site_id="95">Dom Kino International</channel>
<channel lang="en" xmltv_id="Dozhd.ru" site_id="828">Dozhd</channel> <channel lang="en" xmltv_id="TVRain.ru" site_id="828">Dozhd</channel>
<channel lang="en" xmltv_id="DTXRussia.ru" site_id="217">DTX</channel> <channel lang="en" xmltv_id="DTXRussia.ru" site_id="217">DTX</channel>
<channel lang="en" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel> <channel lang="en" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel>
<channel lang="en" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel> <channel lang="en" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel>
@ -52,11 +52,11 @@
<channel lang="en" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel> <channel lang="en" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel>
<channel lang="en" xmltv_id="History2Asia.us" site_id="1236">History 2</channel> <channel lang="en" xmltv_id="History2Asia.us" site_id="1236">History 2</channel>
<channel lang="en" xmltv_id="HistoryRussia.ru" site_id="251">History</channel> <channel lang="en" xmltv_id="HistoryRussia.ru" site_id="251">History</channel>
<channel lang="en" xmltv_id="HustlerTVEurope.uk" site_id="90">Hustler TV</channel> <channel lang="en" xmltv_id="HustlerTVEurope.nl" site_id="90">Hustler TV</channel>
<channel lang="en" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel> <channel lang="en" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel>
<channel lang="en" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="32">Investigation Discovery</channel> <channel lang="en" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="32">Investigation Discovery</channel>
<channel lang="en" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel> <channel lang="en" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel>
<channel lang="en" xmltv_id="KaruselInternational.ru" site_id="75">Karusel</channel> <channel lang="en" xmltv_id="Karusel.ru" site_id="75">Karusel</channel>
<channel lang="en" xmltv_id="KidZoneMini.ee" site_id="1293">Kidzone+</channel> <channel lang="en" xmltv_id="KidZoneMini.ee" site_id="1293">Kidzone+</channel>
<channel lang="en" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel> <channel lang="en" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel>
<channel lang="en" xmltv_id="KIKA.de" site_id="78">KIKA</channel> <channel lang="en" xmltv_id="KIKA.de" site_id="78">KIKA</channel>
@ -81,16 +81,16 @@
<channel lang="en" xmltv_id="NicktoonsScandinavia.nl" site_id="1301">Nicktoons</channel> <channel lang="en" xmltv_id="NicktoonsScandinavia.nl" site_id="1301">Nicktoons</channel>
<channel lang="en" xmltv_id="ntv.de" site_id="145">N-TV</channel> <channel lang="en" xmltv_id="ntv.de" site_id="145">N-TV</channel>
<channel lang="en" xmltv_id="NTVBaltic.ru" site_id="14">NTV Mir Baltic</channel> <channel lang="en" xmltv_id="NTVBaltic.ru" site_id="14">NTV Mir Baltic</channel>
<channel lang="en" xmltv_id="NTVSerial.ru" site_id="1289">NTV Serial</channel> <channel lang="en" xmltv_id="NTVSeries.ru" site_id="1289">NTV Serial</channel>
<channel lang="en" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel> <channel lang="en" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel>
<channel lang="en" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel> <channel lang="en" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel>
<channel lang="en" xmltv_id="PervyyBaltijskyiKanal.ru" site_id="28">Perviy Baltijskyi Kanal</channel> <channel lang="en" xmltv_id="PBKEstonia.ee" site_id="28">Perviy Baltijskyi Kanal</channel>
<channel lang="en" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel> <channel lang="en" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel>
<channel lang="en" xmltv_id="ProSiebenGermany.de" site_id="60">ProSieben</channel> <channel lang="en" xmltv_id="ProSiebenGermany.de" site_id="60">ProSieben</channel>
<channel lang="en" xmltv_id="PyatnitsaInternational.ru" site_id="1304">Pyatnitsa!</channel> <channel lang="en" xmltv_id="FridayInternational.ru" site_id="1304">Pyatnitsa!</channel>
<channel lang="en" xmltv_id="Rai1.it" site_id="86">Rai 1</channel> <channel lang="en" xmltv_id="Rai1.it" site_id="86">Rai 1</channel>
<channel lang="en" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel> <channel lang="en" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel>
<channel lang="en" xmltv_id="RENTVBaltic.ru" site_id="23">REN TV Baltic</channel> <channel lang="en" xmltv_id="RENTVBaltic.lv" site_id="23">REN TV Baltic</channel>
<channel lang="en" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel> <channel lang="en" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel>
<channel lang="en" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel> <channel lang="en" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel>
<channel lang="en" xmltv_id="RTLGermany.de" site_id="20">RTL Deutschland</channel> <channel lang="en" xmltv_id="RTLGermany.de" site_id="20">RTL Deutschland</channel>
@ -102,12 +102,12 @@
<channel lang="en" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel> <channel lang="en" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel>
<channel lang="en" xmltv_id="StingrayDjazz.nl" site_id="1129">Stingray Djazz</channel> <channel lang="en" xmltv_id="StingrayDjazz.nl" site_id="1129">Stingray Djazz</channel>
<channel lang="en" xmltv_id="StingrayiConcerts.ca" site_id="731">Stingray IConcerts</channel> <channel lang="en" xmltv_id="StingrayiConcerts.ca" site_id="731">Stingray IConcerts</channel>
<channel lang="en" xmltv_id="STSBaltic.ru" site_id="1087">STS Baltic</channel> <channel lang="en" xmltv_id="CTCBaltics.ru" site_id="1087">STS Baltic</channel>
<channel lang="en" xmltv_id="SuperRTLGermany.de" site_id="17">Super RTL Deutschland</channel> <channel lang="en" xmltv_id="SuperRTLGermany.de" site_id="17">Super RTL Deutschland</channel>
<channel lang="en" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel> <channel lang="en" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel>
<channel lang="en" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel> <channel lang="en" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel>
<channel lang="en" xmltv_id="TelecafeInternational.ru" site_id="703">Telecafé International</channel> <channel lang="en" xmltv_id="Telecafe.ru" site_id="703">Telecafé International</channel>
<channel lang="en" xmltv_id="TelekanalFutbol.ru" site_id="262">Telekanal Futbol</channel> <channel lang="en" xmltv_id="Football.ru" site_id="262">Telekanal Futbol</channel>
<channel lang="en" xmltv_id="TLCRussia.ru" site_id="823">TLC Russia</channel> <channel lang="en" xmltv_id="TLCRussia.ru" site_id="823">TLC Russia</channel>
<channel lang="en" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel> <channel lang="en" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel>
<channel lang="en" xmltv_id="TravelChannelEMEA.uk" site_id="1222">Travel Channel Europe</channel> <channel lang="en" xmltv_id="TravelChannelEMEA.uk" site_id="1222">Travel Channel Europe</channel>
@ -125,7 +125,7 @@
<channel lang="en" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="255">TVE Internacional Europa</channel> <channel lang="en" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="255">TVE Internacional Europa</channel>
<channel lang="en" xmltv_id="TVN.ee" site_id="140">TVN</channel> <channel lang="en" xmltv_id="TVN.ee" site_id="140">TVN</channel>
<channel lang="en" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel> <channel lang="en" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel>
<channel lang="en" xmltv_id="UsadbaInternational.ru" site_id="737">Usadba International</channel> <channel lang="en" xmltv_id="Usadba.ru" site_id="737">Usadba International</channel>
<channel lang="en" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel> <channel lang="en" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel>
<channel lang="en" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel> <channel lang="en" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel>
<channel lang="en" xmltv_id="ViasatNature.se" site_id="716">Viasat Nature East</channel> <channel lang="en" xmltv_id="ViasatNature.se" site_id="716">Viasat Nature East</channel>

View file

@ -22,7 +22,7 @@
<channel lang="et" xmltv_id="DisneyChannelScandinavia.uk" site_id="102">Disney Channel</channel> <channel lang="et" xmltv_id="DisneyChannelScandinavia.uk" site_id="102">Disney Channel</channel>
<channel lang="et" xmltv_id="DisneyJuniorScandinavia.uk" site_id="103">Disney Junior</channel> <channel lang="et" xmltv_id="DisneyJuniorScandinavia.uk" site_id="103">Disney Junior</channel>
<channel lang="et" xmltv_id="DomKino.ru" site_id="95">Dom Kino</channel> <channel lang="et" xmltv_id="DomKino.ru" site_id="95">Dom Kino</channel>
<channel lang="et" xmltv_id="Dozhd.ru" site_id="828">Dozhd</channel> <channel lang="et" xmltv_id="TVRain.ru" site_id="828">Dozhd</channel>
<channel lang="et" xmltv_id="DTXRussia.ru" site_id="217">DTX</channel> <channel lang="et" xmltv_id="DTXRussia.ru" site_id="217">DTX</channel>
<channel lang="et" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV</channel> <channel lang="et" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV</channel>
<channel lang="et" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel> <channel lang="et" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel>
@ -52,11 +52,11 @@
<channel lang="et" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel> <channel lang="et" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel>
<channel lang="et" xmltv_id="History2Asia.us" site_id="1236">History 2</channel> <channel lang="et" xmltv_id="History2Asia.us" site_id="1236">History 2</channel>
<channel lang="et" xmltv_id="HistoryRussia.ru" site_id="251">History</channel> <channel lang="et" xmltv_id="HistoryRussia.ru" site_id="251">History</channel>
<channel lang="et" xmltv_id="HustlerTVEurope.uk" site_id="90">Hustler TV</channel> <channel lang="et" xmltv_id="HustlerTVEurope.nl" site_id="90">Hustler TV</channel>
<channel lang="et" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel> <channel lang="et" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel>
<channel lang="et" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="32">Investigation Discovery</channel> <channel lang="et" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="32">Investigation Discovery</channel>
<channel lang="et" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel> <channel lang="et" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel>
<channel lang="et" xmltv_id="KaruselInternational.ru" site_id="75">Karusel</channel> <channel lang="et" xmltv_id="Karusel.ru" site_id="75">Karusel</channel>
<channel lang="et" xmltv_id="KidZoneMini.ee" site_id="1293">Kidzone+</channel> <channel lang="et" xmltv_id="KidZoneMini.ee" site_id="1293">Kidzone+</channel>
<channel lang="et" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel> <channel lang="et" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel>
<channel lang="et" xmltv_id="KIKA.de" site_id="78">KIKA</channel> <channel lang="et" xmltv_id="KIKA.de" site_id="78">KIKA</channel>
@ -79,16 +79,16 @@
<channel lang="et" xmltv_id="NicktoonsScandinavia.nl" site_id="1301">Nicktoons</channel> <channel lang="et" xmltv_id="NicktoonsScandinavia.nl" site_id="1301">Nicktoons</channel>
<channel lang="et" xmltv_id="ntv.de" site_id="145">N-TV</channel> <channel lang="et" xmltv_id="ntv.de" site_id="145">N-TV</channel>
<channel lang="et" xmltv_id="NTVBaltic.ru" site_id="14">NTV Mir Baltic</channel> <channel lang="et" xmltv_id="NTVBaltic.ru" site_id="14">NTV Mir Baltic</channel>
<channel lang="et" xmltv_id="NTVSerial.ru" site_id="1289">NTV Serial</channel> <channel lang="et" xmltv_id="NTVSeries.ru" site_id="1289">NTV Serial</channel>
<channel lang="et" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel> <channel lang="et" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel>
<channel lang="et" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel> <channel lang="et" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel>
<channel lang="et" xmltv_id="PervyyBaltijskyiKanal.ru" site_id="28">Perviy Baltijskyi Kanal</channel> <channel lang="et" xmltv_id="PBKEstonia.ee" site_id="28">Perviy Baltijskyi Kanal</channel>
<channel lang="et" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel> <channel lang="et" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel>
<channel lang="et" xmltv_id="ProSiebenGermany.de" site_id="60">ProSieben</channel> <channel lang="et" xmltv_id="ProSiebenGermany.de" site_id="60">ProSieben</channel>
<channel lang="et" xmltv_id="PyatnitsaInternational.ru" site_id="1304">Pyatnitsa!</channel> <channel lang="et" xmltv_id="FridayInternational.ru" site_id="1304">Pyatnitsa!</channel>
<channel lang="et" xmltv_id="Rai1.it" site_id="86">Rai 1</channel> <channel lang="et" xmltv_id="Rai1.it" site_id="86">Rai 1</channel>
<channel lang="et" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel> <channel lang="et" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel>
<channel lang="et" xmltv_id="RENTVBaltic.ru" site_id="23">REN TV</channel> <channel lang="et" xmltv_id="RENTVBaltic.lv" site_id="23">REN TV</channel>
<channel lang="et" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel> <channel lang="et" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel>
<channel lang="et" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel> <channel lang="et" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel>
<channel lang="et" xmltv_id="RTLGermany.de" site_id="20">RTL</channel> <channel lang="et" xmltv_id="RTLGermany.de" site_id="20">RTL</channel>
@ -100,12 +100,12 @@
<channel lang="et" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel> <channel lang="et" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel>
<channel lang="et" xmltv_id="StingrayDjazz.nl" site_id="1129">Stingray Djazz</channel> <channel lang="et" xmltv_id="StingrayDjazz.nl" site_id="1129">Stingray Djazz</channel>
<channel lang="et" xmltv_id="StingrayiConcerts.ca" site_id="731">Stingray IConcerts</channel> <channel lang="et" xmltv_id="StingrayiConcerts.ca" site_id="731">Stingray IConcerts</channel>
<channel lang="et" xmltv_id="STSBaltic.ru" site_id="1087">STS Baltic</channel> <channel lang="et" xmltv_id="CTCBaltics.ru" site_id="1087">STS Baltic</channel>
<channel lang="et" xmltv_id="SuperRTLGermany.de" site_id="17">Super RTL</channel> <channel lang="et" xmltv_id="SuperRTLGermany.de" site_id="17">Super RTL</channel>
<channel lang="et" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel> <channel lang="et" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel>
<channel lang="et" xmltv_id="TBNBaltia.ee" site_id="261">TBN</channel> <channel lang="et" xmltv_id="TBNBaltia.ee" site_id="261">TBN</channel>
<channel lang="et" xmltv_id="TelecafeInternational.ru" site_id="703">Telecafé</channel> <channel lang="et" xmltv_id="Telecafe.ru" site_id="703">Telecafé</channel>
<channel lang="et" xmltv_id="TelekanalFutbol.ru" site_id="262">Telekanal Futbol</channel> <channel lang="et" xmltv_id="Football.ru" site_id="262">Telekanal Futbol</channel>
<channel lang="et" xmltv_id="TLCRussia.ru" site_id="823">TLC</channel> <channel lang="et" xmltv_id="TLCRussia.ru" site_id="823">TLC</channel>
<channel lang="et" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel> <channel lang="et" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel>
<channel lang="et" xmltv_id="TravelChannelEMEA.uk" site_id="1222">Travel Channel</channel> <channel lang="et" xmltv_id="TravelChannelEMEA.uk" site_id="1222">Travel Channel</channel>
@ -123,7 +123,7 @@
<channel lang="et" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="255">TVE</channel> <channel lang="et" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="255">TVE</channel>
<channel lang="et" xmltv_id="TVN.ee" site_id="140">TVN</channel> <channel lang="et" xmltv_id="TVN.ee" site_id="140">TVN</channel>
<channel lang="et" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel> <channel lang="et" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel>
<channel lang="et" xmltv_id="UsadbaInternational.ru" site_id="737">Usadba</channel> <channel lang="et" xmltv_id="Usadba.ru" site_id="737">Usadba</channel>
<channel lang="et" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel> <channel lang="et" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel>
<channel lang="et" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel> <channel lang="et" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel>
<channel lang="et" xmltv_id="ViasatNature.se" site_id="716">Viasat Nature</channel> <channel lang="et" xmltv_id="ViasatNature.se" site_id="716">Viasat Nature</channel>

View file

@ -22,7 +22,7 @@
<channel lang="ru" xmltv_id="DisneyChannelScandinavia.uk" site_id="102">Disney Channel Scandinavia</channel> <channel lang="ru" xmltv_id="DisneyChannelScandinavia.uk" site_id="102">Disney Channel Scandinavia</channel>
<channel lang="ru" xmltv_id="DisneyJuniorScandinavia.uk" site_id="103">Disney Junior Scandinavia</channel> <channel lang="ru" xmltv_id="DisneyJuniorScandinavia.uk" site_id="103">Disney Junior Scandinavia</channel>
<channel lang="ru" xmltv_id="DomKino.ru" site_id="95">Dom Kino International</channel> <channel lang="ru" xmltv_id="DomKino.ru" site_id="95">Dom Kino International</channel>
<channel lang="ru" xmltv_id="Dozhd.ru" site_id="828">Dozhd</channel> <channel lang="ru" xmltv_id="TVRain.ru" site_id="828">Dozhd</channel>
<channel lang="ru" xmltv_id="DTXRussia.ru" site_id="217">DTX Rossiya</channel> <channel lang="ru" xmltv_id="DTXRussia.ru" site_id="217">DTX Rossiya</channel>
<channel lang="ru" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel> <channel lang="ru" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel>
<channel lang="ru" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel> <channel lang="ru" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel>
@ -52,11 +52,11 @@
<channel lang="ru" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel> <channel lang="ru" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel>
<channel lang="ru" xmltv_id="History2Asia.us" site_id="1236">History 2 Asia</channel> <channel lang="ru" xmltv_id="History2Asia.us" site_id="1236">History 2 Asia</channel>
<channel lang="ru" xmltv_id="HistoryRussia.ru" site_id="251">History Russia</channel> <channel lang="ru" xmltv_id="HistoryRussia.ru" site_id="251">History Russia</channel>
<channel lang="ru" xmltv_id="HustlerTVEurope.uk" site_id="90">Hustler TV Europe</channel> <channel lang="ru" xmltv_id="HustlerTVEurope.nl" site_id="90">Hustler TV Europe</channel>
<channel lang="ru" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel> <channel lang="ru" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel>
<channel lang="ru" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="32">Investigation Discovery Rossiya</channel> <channel lang="ru" xmltv_id="InvestigationDiscoveryRussia.ru" site_id="32">Investigation Discovery Rossiya</channel>
<channel lang="ru" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel> <channel lang="ru" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel>
<channel lang="ru" xmltv_id="KaruselInternational.ru" site_id="75">Karusel International</channel> <channel lang="ru" xmltv_id="Karusel.ru" site_id="75">Karusel International</channel>
<channel lang="ru" xmltv_id="KidZoneMini.ee" site_id="1293">Kidzone+</channel> <channel lang="ru" xmltv_id="KidZoneMini.ee" site_id="1293">Kidzone+</channel>
<channel lang="ru" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel> <channel lang="ru" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel>
<channel lang="ru" xmltv_id="KIKA.de" site_id="78">KIKA</channel> <channel lang="ru" xmltv_id="KIKA.de" site_id="78">KIKA</channel>
@ -81,16 +81,16 @@
<channel lang="ru" xmltv_id="NicktoonsScandinavia.nl" site_id="1301">Nicktoons Scandinavia</channel> <channel lang="ru" xmltv_id="NicktoonsScandinavia.nl" site_id="1301">Nicktoons Scandinavia</channel>
<channel lang="ru" xmltv_id="ntv.de" site_id="145">N-TV</channel> <channel lang="ru" xmltv_id="ntv.de" site_id="145">N-TV</channel>
<channel lang="ru" xmltv_id="NTVBaltic.ru" site_id="14">NTV Mir Baltic</channel> <channel lang="ru" xmltv_id="NTVBaltic.ru" site_id="14">NTV Mir Baltic</channel>
<channel lang="ru" xmltv_id="NTVSerial.ru" site_id="1289">NTV Serial</channel> <channel lang="ru" xmltv_id="NTVSeries.ru" site_id="1289">NTV Serial</channel>
<channel lang="ru" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel> <channel lang="ru" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel>
<channel lang="ru" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel> <channel lang="ru" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel>
<channel lang="ru" xmltv_id="PervyyBaltijskyiKanal.ru" site_id="28">Perviy Baltijskyi Kanal</channel> <channel lang="ru" xmltv_id="PBKEstonia.ee" site_id="28">Perviy Baltijskyi Kanal</channel>
<channel lang="ru" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel> <channel lang="ru" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel>
<channel lang="ru" xmltv_id="ProSiebenGermany.de" site_id="60">ProSieben Deutschland</channel> <channel lang="ru" xmltv_id="ProSiebenGermany.de" site_id="60">ProSieben Deutschland</channel>
<channel lang="ru" xmltv_id="PyatnitsaInternational.ru" site_id="1304">Pyatnitsa! International</channel> <channel lang="ru" xmltv_id="FridayInternational.ru" site_id="1304">Pyatnitsa! International</channel>
<channel lang="ru" xmltv_id="Rai1.it" site_id="86">Rai 1</channel> <channel lang="ru" xmltv_id="Rai1.it" site_id="86">Rai 1</channel>
<channel lang="ru" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel> <channel lang="ru" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel>
<channel lang="ru" xmltv_id="RENTVBaltic.ru" site_id="23">REN TV Baltic</channel> <channel lang="ru" xmltv_id="RENTVBaltic.lv" site_id="23">REN TV Baltic</channel>
<channel lang="ru" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel> <channel lang="ru" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel>
<channel lang="ru" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel> <channel lang="ru" xmltv_id="Russia24.ru" site_id="153">Rossiya 24</channel>
<channel lang="ru" xmltv_id="RTLGermany.de" site_id="20">RTL Deutschland</channel> <channel lang="ru" xmltv_id="RTLGermany.de" site_id="20">RTL Deutschland</channel>
@ -102,12 +102,12 @@
<channel lang="ru" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel> <channel lang="ru" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel>
<channel lang="ru" xmltv_id="StingrayDjazz.nl" site_id="1129">Stingray Djazz</channel> <channel lang="ru" xmltv_id="StingrayDjazz.nl" site_id="1129">Stingray Djazz</channel>
<channel lang="ru" xmltv_id="StingrayiConcerts.ca" site_id="731">Stingray IConcerts</channel> <channel lang="ru" xmltv_id="StingrayiConcerts.ca" site_id="731">Stingray IConcerts</channel>
<channel lang="ru" xmltv_id="STSBaltic.ru" site_id="1087">STS Baltic</channel> <channel lang="ru" xmltv_id="CTCBaltics.ru" site_id="1087">STS Baltic</channel>
<channel lang="ru" xmltv_id="SuperRTLGermany.de" site_id="17">Super RTL Deutschland</channel> <channel lang="ru" xmltv_id="SuperRTLGermany.de" site_id="17">Super RTL Deutschland</channel>
<channel lang="ru" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel> <channel lang="ru" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel>
<channel lang="ru" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel> <channel lang="ru" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel>
<channel lang="ru" xmltv_id="TelecafeInternational.ru" site_id="703">Telecafé International</channel> <channel lang="ru" xmltv_id="Telecafe.ru" site_id="703">Telecafé International</channel>
<channel lang="ru" xmltv_id="TelekanalFutbol.ru" site_id="262">Telekanal Futbol</channel> <channel lang="ru" xmltv_id="Football.ru" site_id="262">Telekanal Futbol</channel>
<channel lang="ru" xmltv_id="TLCRussia.ru" site_id="823">TLC Russia</channel> <channel lang="ru" xmltv_id="TLCRussia.ru" site_id="823">TLC Russia</channel>
<channel lang="ru" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel> <channel lang="ru" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel>
<channel lang="ru" xmltv_id="TravelChannelEMEA.uk" site_id="1222">Travel Channel Europe</channel> <channel lang="ru" xmltv_id="TravelChannelEMEA.uk" site_id="1222">Travel Channel Europe</channel>
@ -125,7 +125,7 @@
<channel lang="ru" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="255">TVE Internacional Europa</channel> <channel lang="ru" xmltv_id="TVEInternacionalEuropeAsia.es" site_id="255">TVE Internacional Europa</channel>
<channel lang="ru" xmltv_id="TVN.ee" site_id="140">TVN</channel> <channel lang="ru" xmltv_id="TVN.ee" site_id="140">TVN</channel>
<channel lang="ru" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel> <channel lang="ru" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel>
<channel lang="ru" xmltv_id="UsadbaInternational.ru" site_id="737">Usadba International</channel> <channel lang="ru" xmltv_id="Usadba.ru" site_id="737">Usadba International</channel>
<channel lang="ru" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel> <channel lang="ru" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel>
<channel lang="ru" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel> <channel lang="ru" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel>
<channel lang="ru" xmltv_id="ViasatNature.se" site_id="716">Viasat Nature East</channel> <channel lang="ru" xmltv_id="ViasatNature.se" site_id="716">Viasat Nature East</channel>

View file

@ -3,6 +3,7 @@
<channels> <channels>
<channel lang="fi" xmltv_id="AlfaTV.fi" site_id="117">AlfaTV</channel> <channel lang="fi" xmltv_id="AlfaTV.fi" site_id="117">AlfaTV</channel>
<channel lang="fi" xmltv_id="AnimalPlanetFinland.fi" site_id="9">Animal Planet</channel> <channel lang="fi" xmltv_id="AnimalPlanetFinland.fi" site_id="9">Animal Planet</channel>
<channel lang="fi" xmltv_id="AVA.fi" site_id="60">AVA</channel>
<channel lang="fi" xmltv_id="CMoreFirst.se" site_id="17">C More First</channel> <channel lang="fi" xmltv_id="CMoreFirst.se" site_id="17">C More First</channel>
<channel lang="fi" xmltv_id="CMoreHits.se" site_id="18">C More Hits</channel> <channel lang="fi" xmltv_id="CMoreHits.se" site_id="18">C More Hits</channel>
<channel lang="fi" xmltv_id="CMoreJuniori.fi" site_id="74">C More Juniori</channel> <channel lang="fi" xmltv_id="CMoreJuniori.fi" site_id="74">C More Juniori</channel>
@ -15,7 +16,11 @@
<channel lang="fi" xmltv_id="DisneyChannelScandinavia.uk" site_id="46">Disney Channel Scandinavia</channel> <channel lang="fi" xmltv_id="DisneyChannelScandinavia.uk" site_id="46">Disney Channel Scandinavia</channel>
<channel lang="fi" xmltv_id="Eurosport1Finland.fi" site_id="49">Eurosport 1 Finland</channel> <channel lang="fi" xmltv_id="Eurosport1Finland.fi" site_id="49">Eurosport 1 Finland</channel>
<channel lang="fi" xmltv_id="Eurosport1Sweden.se" site_id="50">Eurosport 1 Sverige</channel> <channel lang="fi" xmltv_id="Eurosport1Sweden.se" site_id="50">Eurosport 1 Sverige</channel>
<channel lang="fi" xmltv_id="FoxFinland.fi" site_id="77">Fox</channel>
<channel lang="fi" xmltv_id="Frii.fi" site_id="104">Frii</channel>
<channel lang="fi" xmltv_id="Hero.fi" site_id="103">Hero</channel>
<channel lang="fi" xmltv_id="Jim.fi" site_id="56">Jim</channel> <channel lang="fi" xmltv_id="Jim.fi" site_id="56">Jim</channel>
<channel lang="fi" xmltv_id="Kutonen.fi" site_id="64">Kutonen</channel>
<channel lang="fi" xmltv_id="Liv.fi" site_id="63">Liv</channel> <channel lang="fi" xmltv_id="Liv.fi" site_id="63">Liv</channel>
<channel lang="fi" xmltv_id="MTV3.fi" site_id="3">MTV 3</channel> <channel lang="fi" xmltv_id="MTV3.fi" site_id="3">MTV 3</channel>
<channel lang="fi" xmltv_id="MTVGlobal.cz" site_id="32">MTV Nordic</channel> <channel lang="fi" xmltv_id="MTVGlobal.cz" site_id="32">MTV Nordic</channel>
@ -26,7 +31,7 @@
<channel lang="fi" xmltv_id="Sjuan.se" site_id="27">Sjuan</channel> <channel lang="fi" xmltv_id="Sjuan.se" site_id="27">Sjuan</channel>
<channel lang="fi" xmltv_id="Sub.fi" site_id="5">Sub</channel> <channel lang="fi" xmltv_id="Sub.fi" site_id="5">Sub</channel>
<channel lang="fi" xmltv_id="TaivasTV7.fi" site_id="65">Taivas TV7</channel> <channel lang="fi" xmltv_id="TaivasTV7.fi" site_id="65">Taivas TV7</channel>
<channel lang="fi" xmltv_id="TLCSweden.se" site_id="12">TLC Sverige</channel> <channel lang="fi" xmltv_id="TLCFinland.fi" site_id="12">TLC</channel>
<channel lang="fi" xmltv_id="TV4.se" site_id="26">TV 4</channel> <channel lang="fi" xmltv_id="TV4.se" site_id="26">TV 4</channel>
<channel lang="fi" xmltv_id="TV5.fi" site_id="88">TV 5</channel> <channel lang="fi" xmltv_id="TV5.fi" site_id="88">TV 5</channel>
<channel lang="fi" xmltv_id="VFilmAction.se" site_id="35">V Film Action</channel> <channel lang="fi" xmltv_id="VFilmAction.se" site_id="35">V Film Action</channel>

View file

@ -67,7 +67,7 @@
<channel lang="id" xmltv_id="RCTI.id" site_id="RCTI">RCTI</channel> <channel lang="id" xmltv_id="RCTI.id" site_id="RCTI">RCTI</channel>
<channel lang="id" xmltv_id="RockEntertainment.sg" site_id="RTLK">Rock Entertainment HD</channel> <channel lang="id" xmltv_id="RockEntertainment.sg" site_id="RTLK">Rock Entertainment HD</channel>
<channel lang="id" xmltv_id="RajawaliTV.id" site_id="BCH">RTV</channel> <channel lang="id" xmltv_id="RajawaliTV.id" site_id="BCH">RTV</channel>
<channel lang="id" xmltv_id="RTNews.ru" site_id="RUSK">Russia Today</channel> <channel lang="id" xmltv_id="RT.ru" site_id="RUSK">Russia Today</channel>
<channel lang="id" xmltv_id="SCTV.id" site_id="SCTV">SCTV</channel> <channel lang="id" xmltv_id="SCTV.id" site_id="SCTV">SCTV</channel>
<channel lang="id" xmltv_id="TMusic.id" site_id="ALG">T-Music</channel> <channel lang="id" xmltv_id="TMusic.id" site_id="ALG">T-Music</channel>
<channel lang="id" xmltv_id="Thrill.hk" site_id="THR">Thrill</channel> <channel lang="id" xmltv_id="Thrill.hk" site_id="THR">Thrill</channel>

View file

@ -95,7 +95,7 @@
<channel lang="tr" xmltv_id="QazaqTV.kz" site_id="173">Qazaq TV</channel> <channel lang="tr" xmltv_id="QazaqTV.kz" site_id="173">Qazaq TV</channel>
<channel lang="tr" xmltv_id="QuranTV.sa" site_id="2111">Quran TV</channel> <channel lang="tr" xmltv_id="QuranTV.sa" site_id="2111">Quran TV</channel>
<channel lang="tr" xmltv_id="Russia24.ru" site_id="1762">Rossiya 24</channel> <channel lang="tr" xmltv_id="Russia24.ru" site_id="1762">Rossiya 24</channel>
<channel lang="tr" xmltv_id="RTGInternational.ru" site_id="310">RTG International</channel> <channel lang="tr" xmltv_id="RTGint.ru" site_id="310">RTG International</channel>
<channel lang="tr" xmltv_id="SaudiTV.sa" site_id="2118">Saudi TV</channel> <channel lang="tr" xmltv_id="SaudiTV.sa" site_id="2118">Saudi TV</channel>
<channel lang="tr" xmltv_id="ScienceVieTV.fr" site_id="269">Science &amp; Vie TV</channel> <channel lang="tr" xmltv_id="ScienceVieTV.fr" site_id="269">Science &amp; Vie TV</channel>
<channel lang="tr" xmltv_id="ShowTV.tr" site_id="1417">Show TV</channel> <channel lang="tr" xmltv_id="ShowTV.tr" site_id="1417">Show TV</channel>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<site site="tv.blue.ch"> <site site="tv.blue.ch">
<channels> <channels>
<channel lang="ar" xmltv_id="2MMonde.ma" site_id="3">2M Monde</channel> <channel lang="ar" xmltv_id="2MInternational.ma" site_id="3">2M Monde</channel>
<channel lang="ar" xmltv_id="Alarabiya.ae" site_id="13">Alarabiya</channel> <channel lang="ar" xmltv_id="Alarabiya.ae" site_id="13">Alarabiya</channel>
<channel lang="ar" xmltv_id="AlJazeeraChannel.qa" site_id="14">Aljazeera Channel</channel> <channel lang="ar" xmltv_id="AlJazeeraChannel.qa" site_id="14">Aljazeera Channel</channel>
<channel lang="ar" xmltv_id="AlMasriyah.eg" site_id="154">Al Masriyah</channel> <channel lang="ar" xmltv_id="AlMasriyah.eg" site_id="154">Al Masriyah</channel>
@ -63,7 +63,7 @@
<channel lang="de" xmltv_id="Eurosport1Germany.de" site_id="167">Eurosport 1 Germany</channel> <channel lang="de" xmltv_id="Eurosport1Germany.de" site_id="167">Eurosport 1 Germany</channel>
<channel lang="de" xmltv_id="Eurosport2.fr" site_id="170">Eurosport 2</channel> <channel lang="de" xmltv_id="Eurosport2.fr" site_id="170">Eurosport 2</channel>
<channel lang="de" xmltv_id="FixFoxi.de" site_id="1792">Fix &amp; Foxi</channel> <channel lang="de" xmltv_id="FixFoxi.de" site_id="1792">Fix &amp; Foxi</channel>
<channel lang="de" xmltv_id="Folx.de" site_id="180">Folx</channel> <channel lang="de" xmltv_id="FolxMusicTelevision.de" site_id="180">Folx</channel>
<channel lang="de" xmltv_id="GameTV.ch" site_id="1224">Game TV</channel> <channel lang="de" xmltv_id="GameTV.ch" site_id="1224">Game TV</channel>
<channel lang="de" xmltv_id="GeoTV.de" site_id="1333">Geo TV</channel> <channel lang="de" xmltv_id="GeoTV.de" site_id="1333">Geo TV</channel>
<channel lang="de" xmltv_id="GoldstarTVGermany.de" site_id="1786">Goldstar TV</channel> <channel lang="de" xmltv_id="GoldstarTVGermany.de" site_id="1786">Goldstar TV</channel>
@ -110,7 +110,7 @@
<channel lang="de" xmltv_id="NitroGermany.de" site_id="363">Nitro Deutschland</channel> <channel lang="de" xmltv_id="NitroGermany.de" site_id="363">Nitro Deutschland</channel>
<channel lang="de" xmltv_id="ntv.de" site_id="297">N-TV</channel> <channel lang="de" xmltv_id="ntv.de" site_id="297">N-TV</channel>
<channel lang="de" xmltv_id="One.de" site_id="147">One</channel> <channel lang="de" xmltv_id="One.de" site_id="147">One</channel>
<channel lang="de" xmltv_id="One1MusicTV.de" site_id="1790">One 1 Music TV</channel> <channel lang="de" xmltv_id="OneMusicTelevision.de" site_id="1790">One 1 Music TV</channel>
<channel lang="de" xmltv_id="ORF1.at" site_id="303">ORF 1</channel> <channel lang="de" xmltv_id="ORF1.at" site_id="303">ORF 1</channel>
<channel lang="de" xmltv_id="ORF2.at" site_id="302">ORF 2</channel> <channel lang="de" xmltv_id="ORF2.at" site_id="302">ORF 2</channel>
<channel lang="de" xmltv_id="ORFIII.at" site_id="1222">ORF III</channel> <channel lang="de" xmltv_id="ORFIII.at" site_id="1222">ORF III</channel>
@ -197,7 +197,7 @@
<channel lang="de" xmltv_id="ZDF.de" site_id="656">ZDF</channel> <channel lang="de" xmltv_id="ZDF.de" site_id="656">ZDF</channel>
<channel lang="de" xmltv_id="ZDFinfo.de" site_id="658">ZDF Info</channel> <channel lang="de" xmltv_id="ZDFinfo.de" site_id="658">ZDF Info</channel>
<channel lang="de" xmltv_id="ZDFneo.de" site_id="659">ZDF Neo</channel> <channel lang="de" xmltv_id="ZDFneo.de" site_id="659">ZDF Neo</channel>
<channel lang="de" xmltv_id="Zwei2MusicTV.de" site_id="1791">Zwei 2 Music TV</channel> <channel lang="de" xmltv_id="ZweiMusicTelevision.de" site_id="1791">Zwei 2 Music TV</channel>
<channel lang="el" xmltv_id="ERTWorld.gr" site_id="153">ERT World</channel> <channel lang="el" xmltv_id="ERTWorld.gr" site_id="153">ERT World</channel>
<channel lang="el" xmltv_id="RIKSat.cy" site_id="351">RIK Sat</channel> <channel lang="el" xmltv_id="RIKSat.cy" site_id="351">RIK Sat</channel>
<channel lang="en" xmltv_id="4Seven.uk" site_id="1678">4Seven</channel> <channel lang="en" xmltv_id="4Seven.uk" site_id="1678">4Seven</channel>
@ -266,7 +266,7 @@
<channel lang="en" xmltv_id="PBSAmerica.uk" site_id="1404">PBS America</channel> <channel lang="en" xmltv_id="PBSAmerica.uk" site_id="1404">PBS America</channel>
<channel lang="en" xmltv_id="PickUK.uk" site_id="1677">Pick UK</channel> <channel lang="en" xmltv_id="PickUK.uk" site_id="1677">Pick UK</channel>
<channel lang="en" xmltv_id="QuestUK.uk" site_id="1604">Quest UK</channel> <channel lang="en" xmltv_id="QuestUK.uk" site_id="1604">Quest UK</channel>
<channel lang="en" xmltv_id="RTNews.ru" site_id="373">RT News</channel> <channel lang="en" xmltv_id="RT.ru" site_id="373">RT News</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="390">Sky News International</channel> <channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="390">Sky News International</channel>
<channel lang="en" xmltv_id="SmithsonianChannelUK.uk" site_id="1490">Smithsonian Channel UK</channel> <channel lang="en" xmltv_id="SmithsonianChannelUK.uk" site_id="1490">Smithsonian Channel UK</channel>
<channel lang="en" xmltv_id="StingrayFestival4K.ca" site_id="1257">Stingray Festival 4K</channel> <channel lang="en" xmltv_id="StingrayFestival4K.ca" site_id="1257">Stingray Festival 4K</channel>
@ -362,7 +362,7 @@
<channel lang="fr" xmltv_id="M6Switzerland.ch" site_id="249">M6 Suisse</channel> <channel lang="fr" xmltv_id="M6Switzerland.ch" site_id="249">M6 Suisse</channel>
<channel lang="fr" xmltv_id="Mangas.fr" site_id="252">Mangas</channel> <channel lang="fr" xmltv_id="Mangas.fr" site_id="252">Mangas</channel>
<channel lang="fr" xmltv_id="MaxTV.ch" site_id="253">Max TV</channel> <channel lang="fr" xmltv_id="MaxTV.ch" site_id="253">Max TV</channel>
<channel lang="fr" xmltv_id="MCMFrance.fr" site_id="1532">MCM France</channel> <channel lang="fr" xmltv_id="MCM.fr" site_id="1532">MCM France</channel>
<channel lang="fr" xmltv_id="MCMTop.fr" site_id="255">MCM Top</channel> <channel lang="fr" xmltv_id="MCMTop.fr" site_id="255">MCM Top</channel>
<channel lang="fr" xmltv_id="Melody.fr" site_id="1761">Melody</channel> <channel lang="fr" xmltv_id="Melody.fr" site_id="1761">Melody</channel>
<channel lang="fr" xmltv_id="Mezzo.fr" site_id="258">Mezzo</channel> <channel lang="fr" xmltv_id="Mezzo.fr" site_id="258">Mezzo</channel>
@ -416,7 +416,7 @@
<channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="199">TF 1 Séries Films</channel> <channel lang="fr" xmltv_id="TF1SeriesFilms.fr" site_id="199">TF 1 Séries Films</channel>
<channel lang="fr" xmltv_id="TF1Switzerland.ch" site_id="601">TF 1 Suisse</channel> <channel lang="fr" xmltv_id="TF1Switzerland.ch" site_id="601">TF 1 Suisse</channel>
<channel lang="fr" xmltv_id="TFXSwitzerland.ch" site_id="295">TFX Suisse</channel> <channel lang="fr" xmltv_id="TFXSwitzerland.ch" site_id="295">TFX Suisse</channel>
<channel lang="fr" xmltv_id="Tiji.fr" site_id="605">Tiji</channel> <channel lang="fr" xmltv_id="TiJi.fr" site_id="605">Tiji</channel>
<channel lang="fr" xmltv_id="TMCSwitzerland.ch" site_id="609">TMC Suisse</channel> <channel lang="fr" xmltv_id="TMCSwitzerland.ch" site_id="609">TMC Suisse</channel>
<channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="1330">Toonami France</channel> <channel lang="fr" xmltv_id="ToonamiFrance.fr" site_id="1330">Toonami France</channel>
<channel lang="fr" xmltv_id="ToutelHistoire.fr" site_id="615">Toute l&apos;Histoire</channel> <channel lang="fr" xmltv_id="ToutelHistoire.fr" site_id="615">Toute l&apos;Histoire</channel>
@ -544,8 +544,8 @@
<channel lang="ro" xmltv_id="Digi24.ro" site_id="1650">Digi 24</channel> <channel lang="ro" xmltv_id="Digi24.ro" site_id="1650">Digi 24</channel>
<channel lang="ro" xmltv_id="ProTVInternational.ro" site_id="321">Pro TV International</channel> <channel lang="ro" xmltv_id="ProTVInternational.ro" site_id="321">Pro TV International</channel>
<channel lang="ro" xmltv_id="TVRInternational.ro" site_id="631">TVR International</channel> <channel lang="ro" xmltv_id="TVRInternational.ro" site_id="631">TVR International</channel>
<channel lang="ru" xmltv_id="ChannelOneEuropa.ru" site_id="90">Perviy kanal Europa</channel> <channel lang="ru" xmltv_id="ChannelOne.ru" site_id="90">Perviy kanal Europa</channel>
<channel lang="ru" xmltv_id="KaruselInternational.ru" site_id="1676">Karusel International</channel> <channel lang="ru" xmltv_id="Karusel.ru" site_id="1676">Karusel International</channel>
<channel lang="ru" xmltv_id="NashKinomir.de" site_id="229">Nash Kinomir</channel> <channel lang="ru" xmltv_id="NashKinomir.de" site_id="229">Nash Kinomir</channel>
<channel lang="ru" xmltv_id="OstWest.de" site_id="922">Ost West</channel> <channel lang="ru" xmltv_id="OstWest.de" site_id="922">Ost West</channel>
<channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="366">RTR Planeta</channel> <channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="366">RTR Planeta</channel>

View file

@ -7,8 +7,8 @@
<channel lang="lv" xmltv_id="Eurosport2.fr" site_id="eurosport-2">Eurosport 2</channel> <channel lang="lv" xmltv_id="Eurosport2.fr" site_id="eurosport-2">Eurosport 2</channel>
<channel lang="lv" xmltv_id="LTV1.lv" site_id="ltv1">LTV 1</channel> <channel lang="lv" xmltv_id="LTV1.lv" site_id="ltv1">LTV 1</channel>
<channel lang="lv" xmltv_id="LTV7.lv" site_id="ltv7">LTV 7</channel> <channel lang="lv" xmltv_id="LTV7.lv" site_id="ltv7">LTV 7</channel>
<channel lang="lv" xmltv_id="ChannelOneEuropa.ru" site_id="pbk-1">Perviy kanal</channel> <channel lang="lv" xmltv_id="ChannelOne.ru" site_id="pbk-1">Perviy kanal</channel>
<channel lang="lv" xmltv_id="RENTVBaltic.ru" site_id="rentv-baltic">REN TV Baltic</channel> <channel lang="lv" xmltv_id="RENTVBaltic.lv" site_id="rentv-baltic">REN TV Baltic</channel>
<channel lang="lv" xmltv_id="TV1000East.ru" site_id="tv1000-cee">TV 1000 CEE</channel> <channel lang="lv" xmltv_id="TV1000East.ru" site_id="tv1000-cee">TV 1000 CEE</channel>
<channel lang="lv" xmltv_id="TV1000RusskoeKino.ru" site_id="tv1000-kino">TV 1000 Russkoe Kino</channel> <channel lang="lv" xmltv_id="TV1000RusskoeKino.ru" site_id="tv1000-kino">TV 1000 Russkoe Kino</channel>
<channel lang="lv" xmltv_id="TV3Film.lv" site_id="tv3-film">TV 3 Film</channel> <channel lang="lv" xmltv_id="TV3Film.lv" site_id="tv3-film">TV 3 Film</channel>

View file

@ -72,7 +72,7 @@
<channel lang="sv" xmltv_id="HistorySweden.se" site_id="history-dh">Histrory HD</channel> <channel lang="sv" xmltv_id="HistorySweden.se" site_id="history-dh">Histrory HD</channel>
<channel lang="sv" xmltv_id="HorseCountryTVSweden.se" site_id="horse-country-tv">Horse &amp; Country TV</channel> <channel lang="sv" xmltv_id="HorseCountryTVSweden.se" site_id="horse-country-tv">Horse &amp; Country TV</channel>
<channel lang="sv" xmltv_id="HRT1.hr" site_id="hrt1">HRT1</channel> <channel lang="sv" xmltv_id="HRT1.hr" site_id="hrt1">HRT1</channel>
<channel lang="sv" xmltv_id="HustlerHD.uk" site_id="hustler-tv">Hustler TV</channel> <channel lang="sv" xmltv_id="HustlerHD.nl" site_id="hustler-tv">Hustler TV</channel>
<channel lang="sv" xmltv_id="InvestigationDiscoverySweden.se" site_id="investigation-discovery">Investigation Discovery</channel> <channel lang="sv" xmltv_id="InvestigationDiscoverySweden.se" site_id="investigation-discovery">Investigation Discovery</channel>
<channel lang="sv" xmltv_id="Kanal10.se" site_id="kanal-10">Kanal 10</channel> <channel lang="sv" xmltv_id="Kanal10.se" site_id="kanal-10">Kanal 10</channel>
<channel lang="sv" xmltv_id="Kanal11.se" site_id="kanal-11">Kanal 11</channel> <channel lang="sv" xmltv_id="Kanal11.se" site_id="kanal-11">Kanal 11</channel>
@ -157,7 +157,7 @@
<channel lang="sv" xmltv_id="ViasatExplore.se" site_id="viasat-explore">Viasat Explore</channel> <channel lang="sv" xmltv_id="ViasatExplore.se" site_id="viasat-explore">Viasat Explore</channel>
<channel lang="sv" xmltv_id="ViasatHistoryHD.se" site_id="viasat-history">Viasat History</channel> <channel lang="sv" xmltv_id="ViasatHistoryHD.se" site_id="viasat-history">Viasat History</channel>
<channel lang="sv" xmltv_id="ViasatNature.se" site_id="viasat-nature">Viasat Nature</channel> <channel lang="sv" xmltv_id="ViasatNature.se" site_id="viasat-nature">Viasat Nature</channel>
<channel lang="sv" xmltv_id="ViasatSport.se" site_id="viasat-sport-hd">Viasat Sport HD</channel> <channel lang="sv" xmltv_id="ViasatSportEast.ru" site_id="viasat-sport-hd">Viasat Sport HD</channel>
<channel lang="sv" xmltv_id="VoxGermany.de" site_id="vox">VOX</channel> <channel lang="sv" xmltv_id="VoxGermany.de" site_id="vox">VOX</channel>
<channel lang="sv" xmltv_id="VSeries.se" site_id="v-series">V Series</channel> <channel lang="sv" xmltv_id="VSeries.se" site_id="v-series">V Series</channel>
<channel lang="sv" xmltv_id="VSport1Sweden.se" site_id="v-sport-1">V Sport 1</channel> <channel lang="sv" xmltv_id="VSport1Sweden.se" site_id="v-sport-1">V Sport 1</channel>

View file

@ -4,10 +4,10 @@
<channel lang="ru" xmltv_id="31Kanal.kz" site_id="162#31-kanal-429">31 Kanal</channel> <channel lang="ru" xmltv_id="31Kanal.kz" site_id="162#31-kanal-429">31 Kanal</channel>
<channel lang="ru" xmltv_id="AlmatyTV.kz" site_id="162#almaty-189">Almaty TV</channel> <channel lang="ru" xmltv_id="AlmatyTV.kz" site_id="162#almaty-189">Almaty TV</channel>
<channel lang="ru" xmltv_id="AtamekenBusiness.kz" site_id="163#atameken-business-1264">Atameken Business</channel> <channel lang="ru" xmltv_id="AtamekenBusiness.kz" site_id="163#atameken-business-1264">Atameken Business</channel>
<channel lang="ru" xmltv_id="ChannelOneEurasia.kz" site_id="163#400">Perviy kanal Evrasia</channel> <!-- <channel lang="ru" xmltv_id="ChannelOneEurasia.kz" site_id="163#400">Perviy kanal Evrasia</channel> -->
<channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="163#rtr-planeta-sng-784">RTR Planeta</channel> <channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="163#rtr-planeta-sng-784">RTR Planeta</channel>
<channel lang="ru" xmltv_id="SetantaSportsUkraine.ua" site_id="162#setanta-sport-1099">Setanta Sports Ukraine</channel> <channel lang="ru" xmltv_id="SetantaSportsUkraine.ua" site_id="162#setanta-sport-1099">Setanta Sports Ukraine</channel>
<channel lang="ru" xmltv_id="STSInternational.ru" site_id="162#sts-international-441">STS International</channel> <channel lang="ru" xmltv_id="CTCInternational.ru" site_id="162#sts-international-441">STS International</channel>
<channel lang="ru" xmltv_id="TNTInternational.ru" site_id="163#tnt-international-1240">TNT International</channel> <channel lang="ru" xmltv_id="TNTInternational.ru" site_id="163#tnt-international-1240">TNT International</channel>
</channels> </channels>
</site> </site>

View file

@ -2,9 +2,9 @@
<site site="tv.yandex.ru"> <site site="tv.yandex.ru">
<channels> <channels>
<channel lang="ru" xmltv_id="1HDMusicTelevision.ru" site_id="213#1hd-99">1HD Music TV</channel> <channel lang="ru" xmltv_id="1HDMusicTelevision.ru" site_id="213#1hd-99">1HD Music TV</channel>
<channel lang="ru" xmltv_id="24Krim.ru" site_id="977#krym-24-1376">24 Krim</channel> <channel lang="ru" xmltv_id="Crimea24.ru" site_id="977#krym-24-1376">24 Krim</channel>
<channel lang="ru" xmltv_id="365dneiTV.ru" site_id="213#365-dney-tv-470">365 dnei TV</channel> <channel lang="ru" xmltv_id="365daysTV.ru" site_id="213#365-dney-tv-470">365 dnei TV</channel>
<channel lang="ru" xmltv_id="5Kanal.ru" site_id="213#pyatyy-kanal-12">5 Kanal</channel> <channel lang="ru" xmltv_id="Channel5.ru" site_id="213#pyatyy-kanal-12">5 Kanal</channel>
<channel lang="ru" xmltv_id="7tv.ru" site_id="213#7-tv-1241">7 TV</channel> <channel lang="ru" xmltv_id="7tv.ru" site_id="213#7-tv-1241">7 TV</channel>
<channel lang="ru" xmltv_id="9Volna.ru" site_id="1104#acb-tv-179">9 Volna</channel> <channel lang="ru" xmltv_id="9Volna.ru" site_id="1104#acb-tv-179">9 Volna</channel>
<channel lang="ru" xmltv_id="A1.ru" site_id="213#a1-237">A1</channel> <channel lang="ru" xmltv_id="A1.ru" site_id="213#a1-237">A1</channel>
@ -28,8 +28,8 @@
<channel lang="ru" xmltv_id="BollywoodHDRussia.ru" site_id="213#bollywood-hd-1105">Bollywood HD</channel> <channel lang="ru" xmltv_id="BollywoodHDRussia.ru" site_id="213#bollywood-hd-1105">Bollywood HD</channel>
<channel lang="ru" xmltv_id="BigAsia.ru" site_id="213#bolshaya-aziya-116">Bolshaya Aziya</channel> <channel lang="ru" xmltv_id="BigAsia.ru" site_id="213#bolshaya-aziya-116">Bolshaya Aziya</channel>
<channel lang="ru" xmltv_id="BoomerangCEE.us" site_id="213#boomerang-741">Boomerang Central &amp; Eastern Europe</channel> <channel lang="ru" xmltv_id="BoomerangCEE.us" site_id="213#boomerang-741">Boomerang Central &amp; Eastern Europe</channel>
<channel lang="ru" xmltv_id="BridgeTV.ru" site_id="213#bridge-tv-102">Bridge TV</channel> <channel lang="ru" xmltv_id="BRIDGE.ru" site_id="213#bridge-tv-102">Bridge TV</channel>
<channel lang="ru" xmltv_id="BridgeTVRusskiyHit.ru" site_id="213#bridge-tv-russkiy-hit-608">Bridge TV Russkiy Hit</channel> <channel lang="ru" xmltv_id="BRIDGERussianHit.ru" site_id="213#bridge-tv-russkiy-hit-608">Bridge TV Russkiy Hit</channel>
<channel lang="ru" xmltv_id="CartoonNetworkRussia.ru" site_id="213#cartoon-network-612">Cartoon Network Russia &amp; South East Europe</channel> <channel lang="ru" xmltv_id="CartoonNetworkRussia.ru" site_id="213#cartoon-network-612">Cartoon Network Russia &amp; South East Europe</channel>
<channel lang="ru" xmltv_id="CBSRealityEurope.us" site_id="213#cbs-reality-729">CBS Reality Europe</channel> <channel lang="ru" xmltv_id="CBSRealityEurope.us" site_id="213#cbs-reality-729">CBS Reality Europe</channel>
<channel lang="ru" xmltv_id="Che.ru" site_id="213#che-50">Che!</channel> <channel lang="ru" xmltv_id="Che.ru" site_id="213#che-50">Che!</channel>
@ -46,8 +46,8 @@
<channel lang="ru" xmltv_id="Domashniy.ru" site_id="213#domashniy-5">Domashniy</channel> <channel lang="ru" xmltv_id="Domashniy.ru" site_id="213#domashniy-5">Domashniy</channel>
<channel lang="ru" xmltv_id="DomKino.ru" site_id="213#dom-kino-715">Dom Kino</channel> <channel lang="ru" xmltv_id="DomKino.ru" site_id="213#dom-kino-715">Dom Kino</channel>
<channel lang="ru" xmltv_id="DomKinoPremium.ru" site_id="213#dom-kino-premium-1213">Dom Kino Premium</channel> <channel lang="ru" xmltv_id="DomKinoPremium.ru" site_id="213#dom-kino-premium-1213">Dom Kino Premium</channel>
<channel lang="ru" xmltv_id="Dozhd.ru" site_id="213#dojd-101">Dozhd</channel> <channel lang="ru" xmltv_id="TVRain.ru" site_id="213#dojd-101">Dozhd</channel>
<channel lang="ru" xmltv_id="Draiv.ru" site_id="213#drayv-573">Draiv</channel> <channel lang="ru" xmltv_id="Drive.ru" site_id="213#drayv-573">Draiv</channel>
<channel lang="ru" xmltv_id="DTXRussia.ru" site_id="213#dtx-1146">DTX Rossiya</channel> <channel lang="ru" xmltv_id="DTXRussia.ru" site_id="213#dtx-1146">DTX Rossiya</channel>
<channel lang="ru" xmltv_id="DWEnglish.de" site_id="213#deutsche-welle-122">DW English</channel> <channel lang="ru" xmltv_id="DWEnglish.de" site_id="213#deutsche-welle-122">DW English</channel>
<channel lang="ru" xmltv_id="Eda.ru" site_id="213#eda-64">Eda</channel> <channel lang="ru" xmltv_id="Eda.ru" site_id="213#eda-64">Eda</channel>
@ -81,7 +81,7 @@
<channel lang="ru" xmltv_id="Istoriya.ru" site_id="213#istoriya-794">Istoriya</channel> <channel lang="ru" xmltv_id="Istoriya.ru" site_id="213#istoriya-794">Istoriya</channel>
<channel lang="ru" xmltv_id="Izvestia.ru" site_id="213#izvestiya-96">Izvestia TV</channel> <channel lang="ru" xmltv_id="Izvestia.ru" site_id="213#izvestiya-96">Izvestia TV</channel>
<channel lang="ru" xmltv_id="JimJamRussia.ru" site_id="213#jimjam-569">JimJam Rossiya</channel> <channel lang="ru" xmltv_id="JimJamRussia.ru" site_id="213#jimjam-569">JimJam Rossiya</channel>
<channel lang="ru" xmltv_id="KaleidoskopTV.ru" site_id="213#kaleydoskop-tv-232">Kaleidoskop TV</channel> <channel lang="ru" xmltv_id="KaleidoscopeTV.ru" site_id="213#kaleydoskop-tv-232">Kaleidoskop TV</channel>
<channel lang="ru" xmltv_id="DisneyChannelRussia.ru" site_id="213#kanal-disney-4">Kanal Disney</channel> <channel lang="ru" xmltv_id="DisneyChannelRussia.ru" site_id="213#kanal-disney-4">Kanal Disney</channel>
<channel lang="ru" xmltv_id="KapitanFantastika.ru" site_id="213#ginger-hd-1166">Kapitan Fantastika</channel> <channel lang="ru" xmltv_id="KapitanFantastika.ru" site_id="213#ginger-hd-1166">Kapitan Fantastika</channel>
<channel lang="ru" xmltv_id="Karusel.ru" site_id="213#karusel-20">Karusel</channel> <channel lang="ru" xmltv_id="Karusel.ru" site_id="213#karusel-20">Karusel</channel>
@ -98,12 +98,12 @@
<channel lang="ru" xmltv_id="KinoTV.ru" site_id="213#kino-tv-795">Kino TV</channel> <channel lang="ru" xmltv_id="KinoTV.ru" site_id="213#kino-tv-795">Kino TV</channel>
<channel lang="ru" xmltv_id="Komediynoe.ru" site_id="213#kinopokaz-hd-2-678">Komediynoe</channel> <channel lang="ru" xmltv_id="Komediynoe.ru" site_id="213#kinopokaz-hd-2-678">Komediynoe</channel>
<channel lang="ru" xmltv_id="KonniyMir.ru" site_id="213#konnyy-mir-1184">Konniy Mir</channel> <channel lang="ru" xmltv_id="KonniyMir.ru" site_id="213#konnyy-mir-1184">Konniy Mir</channel>
<channel lang="ru" xmltv_id="KrasnayaLiniya.ru" site_id="213#krasnaya-liniya-208">Krasnaya Liniya</channel> <channel lang="ru" xmltv_id="RedLine.ru" site_id="213#krasnaya-liniya-208">Krasnaya Liniya</channel>
<channel lang="ru" xmltv_id="KrikTV.ru" site_id="11171#krik-tv-199">Krik TV</channel> <channel lang="ru" xmltv_id="KrikTV.ru" site_id="11171#krik-tv-199">Krik TV</channel>
<channel lang="ru" xmltv_id="Ktoestkto.ru" site_id="213#kto-est-kto-685">Kto est kto</channel> <channel lang="ru" xmltv_id="Ktoestkto.ru" site_id="213#kto-est-kto-685">Kto est kto</channel>
<channel lang="ru" xmltv_id="Kuban24Orbita.ru" site_id="35#kuban-24-orbita-1103">Kuban 24 Orbita</channel> <channel lang="ru" xmltv_id="Kuban24.ru" site_id="35#kuban-24-orbita-1103">Kuban 24 Orbita</channel>
<channel lang="ru" xmltv_id="KuhnyaTV.ru" site_id="213#kuhnya-tv-618">Kuhnya TV</channel> <channel lang="ru" xmltv_id="KuhnyaTV.ru" site_id="213#kuhnya-tv-618">Kuhnya TV</channel>
<channel lang="ru" xmltv_id="KuraiTV.ru" site_id="172#kuray-752">Kurai TV</channel> <channel lang="ru" xmltv_id="KurajTV.ru" site_id="172#kuray-752">Kurai TV</channel>
<channel lang="ru" xmltv_id="KVNTV.ru" site_id="213#kvn-tv-1192">KVN TV</channel> <channel lang="ru" xmltv_id="KVNTV.ru" site_id="213#kvn-tv-1192">KVN TV</channel>
<channel lang="ru" xmltv_id="LaMinor.ru" site_id="213#lya-minor-tv-472">La Minor</channel> <channel lang="ru" xmltv_id="LaMinor.ru" site_id="213#lya-minor-tv-472">La Minor</channel>
<channel lang="ru" xmltv_id="LDPRTV.ru" site_id="213#ldpr-tv-1107">LDPR TV</channel> <channel lang="ru" xmltv_id="LDPRTV.ru" site_id="213#ldpr-tv-1107">LDPR TV</channel>
@ -126,10 +126,10 @@
<channel lang="ru" xmltv_id="MezzoLiveHD.fr" site_id="213#mezzo-live-hd-702">Mezzo Live HD</channel> <channel lang="ru" xmltv_id="MezzoLiveHD.fr" site_id="213#mezzo-live-hd-702">Mezzo Live HD</channel>
<channel lang="ru" xmltv_id="Mir.ru" site_id="213#mir-54">Mir</channel> <channel lang="ru" xmltv_id="Mir.ru" site_id="213#mir-54">Mir</channel>
<channel lang="ru" xmltv_id="Mir24.ru" site_id="213#mir-24-98">Mir 24</channel> <channel lang="ru" xmltv_id="Mir24.ru" site_id="213#mir-24-98">Mir 24</channel>
<channel lang="ru" xmltv_id="MirBelogoryaTV.ru" site_id="213#mir-belogorya-204">Mir Belogorya TV</channel> <channel lang="ru" xmltv_id="MirBelogorya.ru" site_id="213#mir-belogorya-204">Mir Belogorya TV</channel>
<channel lang="ru" xmltv_id="MirSeriala.ru" site_id="213#mir-seriala-209">Mir Seriala</channel> <channel lang="ru" xmltv_id="MirSeriala.ru" site_id="213#mir-seriala-209">Mir Seriala</channel>
<channel lang="ru" xmltv_id="Moskva24.ru" site_id="213#moskva-24-73">Moskva 24</channel> <channel lang="ru" xmltv_id="Moskva24.ru" site_id="213#moskva-24-73">Moskva 24</channel>
<channel lang="ru" xmltv_id="MoskvaTelekanal.ru" site_id="213#moskva-doverie-641">Moskva Telekanal</channel> <channel lang="ru" xmltv_id="Moskva.ru" site_id="213#moskva-doverie-641">Moskva Telekanal</channel>
<channel lang="ru" xmltv_id="MoyaPlaneta.ru" site_id="213#moya-planeta-653">Moya Planeta</channel> <channel lang="ru" xmltv_id="MoyaPlaneta.ru" site_id="213#moya-planeta-653">Moya Planeta</channel>
<channel lang="ru" xmltv_id="MTVHitsEurope.uk" site_id="213#mtv-hits-international-1207">MTV Hits Europe</channel> <channel lang="ru" xmltv_id="MTVHitsEurope.uk" site_id="213#mtv-hits-international-1207">MTV Hits Europe</channel>
<channel lang="ru" xmltv_id="MTVLive.uk" site_id="213#mtv-live-international-hd-513">MTV Live HD</channel> <channel lang="ru" xmltv_id="MTVLive.uk" site_id="213#mtv-live-international-hd-513">MTV Live HD</channel>
@ -158,16 +158,16 @@
<channel lang="ru" xmltv_id="NovoeRadio.ru" site_id="213#novoe-radio-1374">Novoe Radio</channel> <channel lang="ru" xmltv_id="NovoeRadio.ru" site_id="213#novoe-radio-1374">Novoe Radio</channel>
<channel lang="ru" xmltv_id="NST.ru" site_id="213#nastoyashchee-strashnoe-televidenie-577">NST</channel> <channel lang="ru" xmltv_id="NST.ru" site_id="213#nastoyashchee-strashnoe-televidenie-577">NST</channel>
<channel lang="ru" xmltv_id="NTV.ru" site_id="213#ntv-11">NTV</channel> <channel lang="ru" xmltv_id="NTV.ru" site_id="213#ntv-11">NTV</channel>
<channel lang="ru" xmltv_id="NTVPravo.ru" site_id="213#ntv-pravo-92">NTV Pravo</channel> <channel lang="ru" xmltv_id="NTVLaw.ru" site_id="213#ntv-pravo-92">NTV Pravo</channel>
<channel lang="ru" xmltv_id="NTVSerial.ru" site_id="213#ntv-serial-93">NTV Serial</channel> <channel lang="ru" xmltv_id="NTVSeries.ru" site_id="213#ntv-serial-93">NTV Serial</channel>
<channel lang="ru" xmltv_id="NTVStyl.ru" site_id="213#ntv-stil-94">NTV Styl</channel> <channel lang="ru" xmltv_id="NTVStyle.ru" site_id="213#ntv-stil-94">NTV Styl</channel>
<channel lang="ru" xmltv_id="O2.ru" site_id="213#o2tv-107">O!2</channel> <channel lang="ru" xmltv_id="o2tv.ru" site_id="213#o2tv-107">O!2</channel>
<channel lang="ru" xmltv_id="OceanTV.ru" site_id="213#ocean-tv-71">Ocean TV</channel> <channel lang="ru" xmltv_id="OceanTV.ru" site_id="213#ocean-tv-71">Ocean TV</channel>
<channel lang="ru" xmltv_id="OhotnikiRybolov.ru" site_id="213#ohotnik-i-rybolov-hd-1185">Ohotnik i Rybolov</channel> <channel lang="ru" xmltv_id="Ohotnikirybolov.ru" site_id="213#ohotnik-i-rybolov-hd-1185">Ohotnik i Rybolov</channel>
<channel lang="ru" xmltv_id="OkhotaiRybalka.ru" site_id="213#ohota-i-rybalka-621">Okhota i Rybalka</channel> <channel lang="ru" xmltv_id="OkhotaiRybalka.ru" site_id="213#ohota-i-rybalka-621">Okhota i Rybalka</channel>
<channel lang="ru" xmltv_id="Oruzhie.ru" site_id="213#orujie-511">Oruzhie</channel> <channel lang="ru" xmltv_id="Oruzhie.ru" site_id="213#orujie-511">Oruzhie</channel>
<channel lang="ru" xmltv_id="Ostrosyuzhetnoye.ru" site_id="213#ostrosyujetnoe-hd-1149">Ostrosyuzhetnoye</channel> <channel lang="ru" xmltv_id="Ostrosyuzhetnoye.ru" site_id="213#ostrosyujetnoe-hd-1149">Ostrosyuzhetnoye</channel>
<channel lang="ru" xmltv_id="OtkritiyMir.ru" site_id="213#otkrytyy-mir-1199">Otkritiy Mir</channel> <channel lang="ru" xmltv_id="OtkritiyMirZdorove.ru" site_id="213#otkrytyy-mir-1199">Otkritiy Mir</channel>
<channel lang="ru" xmltv_id="OTR.ru" site_id="213#obshchestvennoe-televidenie-rossii-51">OTR</channel> <channel lang="ru" xmltv_id="OTR.ru" site_id="213#obshchestvennoe-televidenie-rossii-51">OTR</channel>
<channel lang="ru" xmltv_id="ParamountChannelRussia.ru" site_id="213#paramount-channel-1209">Paramount Channel Russia</channel> <channel lang="ru" xmltv_id="ParamountChannelRussia.ru" site_id="213#paramount-channel-1209">Paramount Channel Russia</channel>
<channel lang="ru" xmltv_id="ParamountComedyRussia.ru" site_id="213#paramount-comedy-733">Paramount Comedy Russia</channel> <channel lang="ru" xmltv_id="ParamountComedyRussia.ru" site_id="213#paramount-comedy-733">Paramount Comedy Russia</channel>
@ -175,26 +175,26 @@
<channel lang="ru" xmltv_id="Pobeda.ru" site_id="213#pobeda-1355">Pobeda</channel> <channel lang="ru" xmltv_id="Pobeda.ru" site_id="213#pobeda-1355">Pobeda</channel>
<channel lang="ru" xmltv_id="Poehali.ru" site_id="213#poehali-1246">Poehali!</channel> <channel lang="ru" xmltv_id="Poehali.ru" site_id="213#poehali-1246">Poehali!</channel>
<channel lang="ru" xmltv_id="Priklyucheniya.ru" site_id="213#priklyucheniya-hd-499">Priklyucheniya</channel> <channel lang="ru" xmltv_id="Priklyucheniya.ru" site_id="213#priklyucheniya-hd-499">Priklyucheniya</channel>
<channel lang="ru" xmltv_id="ProdvizhenieMoskva.ru" site_id="213#prodvijenie-159">Prodvizhenie Moskva</channel> <channel lang="ru" xmltv_id="Prodvizhenie.ru" site_id="213#prodvijenie-159">Prodvizhenie Moskva</channel>
<channel lang="ru" xmltv_id="Psikhologiya21.ru" site_id="213#psihologiya-21-538">Psikhologiya 21</channel> <channel lang="ru" xmltv_id="Psikhologiya21.ru" site_id="213#psihologiya-21-538">Psikhologiya 21</channel>
<channel lang="ru" xmltv_id="Pyatnitsa.ru" site_id="213#pyatnica-42">Pyatnitsa!</channel> <channel lang="ru" xmltv_id="Friday.ru" site_id="213#pyatnica-42">Pyatnitsa!</channel>
<channel lang="ru" xmltv_id="RadostMoya.ru" site_id="213#radost-moya-185">Radost Moya</channel> <channel lang="ru" xmltv_id="RadostMoya.ru" site_id="213#radost-moya-185">Radost Moya</channel>
<channel lang="ru" xmltv_id="Ratnik.ru" site_id="213#ratnik-110">Ratnik</channel> <channel lang="ru" xmltv_id="Ratnik.ru" site_id="213#ratnik-110">Ratnik</channel>
<channel lang="ru" xmltv_id="RBKTV.ru" site_id="213#rbk-18">RBK TV</channel> <channel lang="ru" xmltv_id="RBKTV.ru" site_id="213#rbk-18">RBK TV</channel>
<channel lang="ru" xmltv_id="RENTV.ru" site_id="213#ren-30">REN TV</channel> <channel lang="ru" xmltv_id="RENTV.ru" site_id="213#ren-30">REN TV</channel>
<channel lang="ru" xmltv_id="Retro.ru" site_id="213#retro-tv-382">Retro</channel> <channel lang="ru" xmltv_id="Retro.ru" site_id="213#retro-tv-382">Retro</channel>
<channel lang="ru" xmltv_id="RGVKDagestan.ru" site_id="213#dagestan-142">RGVK Dagestan</channel> <channel lang="ru" xmltv_id="Dagestan.ru" site_id="213#dagestan-142">RGVK Dagestan</channel>
<channel lang="ru" xmltv_id="RodnoeKino.ru" site_id="213#rodnoe-kino-386">Rodnoe Kino</channel> <channel lang="ru" xmltv_id="RodnoeKino.ru" site_id="213#rodnoe-kino-386">Rodnoe Kino</channel>
<channel lang="ru" xmltv_id="Russia1.ru" site_id="213#rossiya-1-31">Rossiya 1</channel> <channel lang="ru" xmltv_id="Russia1.ru" site_id="213#rossiya-1-31">Rossiya 1</channel>
<channel lang="ru" xmltv_id="Russia24.ru" site_id="213#rossiya-24-3">Rossiya 24</channel> <channel lang="ru" xmltv_id="Russia24.ru" site_id="213#rossiya-24-3">Rossiya 24</channel>
<channel lang="ru" xmltv_id="RussiaK.ru" site_id="213#kultura-14">Rossiya K</channel> <channel lang="ru" xmltv_id="RussiaK.ru" site_id="213#kultura-14">Rossiya K</channel>
<channel lang="ru" xmltv_id="RTDoc.ru" site_id="213#rtd-82">RT Doc</channel> <channel lang="ru" xmltv_id="RTD.ru" site_id="213#rtd-82">RTД</channel>
<channel lang="ru" xmltv_id="RTDocumentary.ru" site_id="213#rt-doc-1258">RT Documentary</channel> <channel lang="ru" xmltv_id="RTDoc.ru" site_id="213#rt-doc-1258">RT Doc</channel>
<channel lang="ru" xmltv_id="RTGHD.ru" site_id="213#russian-travel-guide-168">RTG HD</channel> <channel lang="ru" xmltv_id="RTGHD.ru" site_id="213#russian-travel-guide-168">RTG HD</channel>
<channel lang="ru" xmltv_id="RTGInternational.ru" site_id="213#rtg-international-1169">RTG International</channel> <channel lang="ru" xmltv_id="RTGint.ru" site_id="213#rtg-international-1169">RTG International</channel>
<channel lang="ru" xmltv_id="RTGTV.ru" site_id="213#russian-travel-guide-638">RTG TV</channel> <channel lang="ru" xmltv_id="RTGTV.ru" site_id="213#russian-travel-guide-638">RTG TV</channel>
<channel lang="ru" xmltv_id="RTNews.ru" site_id="213#russia-today-70">RT News</channel> <channel lang="ru" xmltv_id="RT.ru" site_id="213#russia-today-70">RT News</channel>
<channel lang="ru" xmltv_id="RusskijExtrem.ru" site_id="213#russkiy-ekstrim-523">Russkij Extrem</channel> <channel lang="ru" xmltv_id="RussianExtremeRetro.ru" site_id="213#russkiy-ekstrim-523">Russkij Extrem</channel>
<channel lang="ru" xmltv_id="RusskiyBestseller.ru" site_id="213#russkiy-bestseller-771">Russkiy Bestseller</channel> <channel lang="ru" xmltv_id="RusskiyBestseller.ru" site_id="213#russkiy-bestseller-771">Russkiy Bestseller</channel>
<channel lang="ru" xmltv_id="RusskiyDetektiv.ru" site_id="213#russkiy-detektiv-1137">Russkiy Detektiv</channel> <channel lang="ru" xmltv_id="RusskiyDetektiv.ru" site_id="213#russkiy-detektiv-1137">Russkiy Detektiv</channel>
<channel lang="ru" xmltv_id="RusskiyIllusion.ru" site_id="213#russkiy-illyuzion-402">Russkiy Illusion</channel> <channel lang="ru" xmltv_id="RusskiyIllusion.ru" site_id="213#russkiy-illyuzion-402">Russkiy Illusion</channel>
@ -210,33 +210,33 @@
<channel lang="ru" xmltv_id="SonyChannelRussia.us" site_id="213#sony-channel-493">Sony Channel Russia</channel> <channel lang="ru" xmltv_id="SonyChannelRussia.us" site_id="213#sony-channel-493">Sony Channel Russia</channel>
<channel lang="ru" xmltv_id="SonySciFiRussia.us" site_id="213#sony-sci-fi-576">Sony Sci-Fi Russia</channel> <channel lang="ru" xmltv_id="SonySciFiRussia.us" site_id="213#sony-sci-fi-576">Sony Sci-Fi Russia</channel>
<channel lang="ru" xmltv_id="SonyTurbo.ru" site_id="213#sony-turbo-744">Sony Turbo</channel> <channel lang="ru" xmltv_id="SonyTurbo.ru" site_id="213#sony-turbo-744">Sony Turbo</channel>
<channel lang="ru" xmltv_id="SovershennoSekretnoTV.ru" site_id="213#sovershenno-sekretno-57">Sovershenno Sekretno TV</channel> <channel lang="ru" xmltv_id="TopSecret.ru" site_id="213#sovershenno-sekretno-57">Sovershenno Sekretno TV</channel>
<channel lang="ru" xmltv_id="Soyuz.ru" site_id="213#soyuz-108">Soyuz</channel> <channel lang="ru" xmltv_id="Soyuz.ru" site_id="213#soyuz-108">Soyuz</channel>
<channel lang="ru" xmltv_id="StingrayCMusic.ca" site_id="213#c-music-tv-496">Stingray CMusic</channel> <channel lang="ru" xmltv_id="StingrayCMusic.ca" site_id="213#c-music-tv-496">Stingray CMusic</channel>
<channel lang="ru" xmltv_id="StingrayiConcerts.ca" site_id="213#stingray-iconcerts-739">Stingray IConcerts</channel> <channel lang="ru" xmltv_id="StingrayiConcerts.ca" site_id="213#stingray-iconcerts-739">Stingray IConcerts</channel>
<channel lang="ru" xmltv_id="StranaFMTV.ru" site_id="213#strana-fm-1251">Strana FM TV</channel> <channel lang="ru" xmltv_id="StranaFM.ru" site_id="213#strana-fm-1251">Strana FM TV</channel>
<channel lang="ru" xmltv_id="STS.ru" site_id="213#sts-8">STS</channel> <channel lang="ru" xmltv_id="CTC.ru" site_id="213#sts-8">STS</channel>
<channel lang="ru" xmltv_id="STSLove.ru" site_id="213#sts-love-104">STS Love</channel> <channel lang="ru" xmltv_id="CTCLove.ru" site_id="213#sts-love-104">STS Love</channel>
<channel lang="ru" xmltv_id="T24.ru" site_id="213#tehno-24-1109">T24</channel> <channel lang="ru" xmltv_id="T24.ru" site_id="213#tehno-24-1109">T24</channel>
<channel lang="ru" xmltv_id="TaynyGalaktiki.ru" site_id="213#tayny-galaktiki-736">Tayny Galaktiki</channel> <channel lang="ru" xmltv_id="TaynyGalaktiki.ru" site_id="213#tayny-galaktiki-736">Tayny Galaktiki</channel>
<channel lang="ru" xmltv_id="TBN.ru" site_id="213#tbn-601">TBN Rossiya</channel> <channel lang="ru" xmltv_id="TBN.ru" site_id="213#tbn-601">TBN Rossiya</channel>
<channel lang="ru" xmltv_id="TDK.ru" site_id="213#tdk-78">TDK</channel> <channel lang="ru" xmltv_id="TDK.ru" site_id="213#tdk-78">TDK</channel>
<channel lang="ru" xmltv_id="Telecafe.ru" site_id="213#telekafe-443">Telecafé</channel> <channel lang="ru" xmltv_id="Telecafe.ru" site_id="213#telekafe-443">Telecafé</channel>
<channel lang="ru" xmltv_id="Telekanal2x2.ru" site_id="213#2x2-29">Telekanal 2x2</channel> <channel lang="ru" xmltv_id="2x2.ru" site_id="213#2x2-29">Telekanal 2x2</channel>
<channel lang="ru" xmltv_id="Telekanal360deg.ru" site_id="213#360-95">Telekanal 360°</channel> <channel lang="ru" xmltv_id="360deg.ru" site_id="213#360-95">Telekanal 360°</channel>
<channel lang="ru" xmltv_id="TelekanalDoktor.ru" site_id="213#doktor-1245">Telekanal Doktor</channel> <channel lang="ru" xmltv_id="Doctor.ru" site_id="213#doktor-1245">Telekanal Doktor</channel>
<channel lang="ru" xmltv_id="TelekanalFutbol.ru" site_id="213#futbol-105">Telekanal Futbol</channel> <channel lang="ru" xmltv_id="Football.ru" site_id="213#futbol-105">Telekanal Futbol</channel>
<channel lang="ru" xmltv_id="TelekanalNadezhda.us" site_id="213#nadejda-127">Telekanal Nadezhda</channel> <channel lang="ru" xmltv_id="HopeTV.ru" site_id="213#nadejda-127">Telekanal Nadezhda</channel>
<channel lang="ru" xmltv_id="TelekanalO.ru" site_id="213#o-1225">Telekanal O!</channel> <channel lang="ru" xmltv_id="O.ru" site_id="213#o-1225">Telekanal O!</channel>
<channel lang="ru" xmltv_id="TelekanalSpas.ru" site_id="213#spas-52">Telekanal Spas</channel> <channel lang="ru" xmltv_id="Spas.ru" site_id="213#spas-52">Telekanal Spas</channel>
<channel lang="ru" xmltv_id="TelekanalTeatr.ru" site_id="213#teatr-737">Telekanal Teatr</channel> <channel lang="ru" xmltv_id="TelekanalTeatr.ru" site_id="213#teatr-737">Telekanal Teatr</channel>
<channel lang="ru" xmltv_id="TelekanalZvezda.ru" site_id="213#zvezda-15">Telekanal Zvezda</channel> <channel lang="ru" xmltv_id="Zvezda.ru" site_id="213#zvezda-15">Telekanal Zvezda</channel>
<channel lang="ru" xmltv_id="Teleputeshestviya.ru" site_id="213#teleputeshestviya-697">Teleputeshestviya</channel> <channel lang="ru" xmltv_id="Teleputeshestviya.ru" site_id="213#teleputeshestviya-697">Teleputeshestviya</channel>
<channel lang="ru" xmltv_id="TLCRussia.ru" site_id="213#tlc-533">TLC Russia</channel> <channel lang="ru" xmltv_id="TLCRussia.ru" site_id="213#tlc-533">TLC Russia</channel>
<channel lang="ru" xmltv_id="TNT.ru" site_id="213#tnt-33">TNT</channel> <channel lang="ru" xmltv_id="TNT.ru" site_id="213#tnt-33">TNT</channel>
<channel lang="ru" xmltv_id="TNT4.ru" site_id="213#tnt4-56">TNT 4</channel> <channel lang="ru" xmltv_id="TNT4.ru" site_id="213#tnt4-56">TNT 4</channel>
<channel lang="ru" xmltv_id="TNTMusic.ru" site_id="213#tnt-music-655">TNT Music</channel> <channel lang="ru" xmltv_id="TNTMusic.ru" site_id="213#tnt-music-655">TNT Music</channel>
<channel lang="ru" xmltv_id="TNVPlaneta.ru" site_id="213#tnv-planeta-188">TNV Planeta</channel> <channel lang="ru" xmltv_id="TNVPlanet.ru" site_id="213#tnv-planeta-188">TNV Planeta</channel>
<channel lang="ru" xmltv_id="TNVTatarstan.ru" site_id="213#tnv-446">TNV Tatarstan</channel> <channel lang="ru" xmltv_id="TNVTatarstan.ru" site_id="213#tnv-446">TNV Tatarstan</channel>
<channel lang="ru" xmltv_id="TochkaTV.ru" site_id="213#tochkatv-68">Tochka TV</channel> <channel lang="ru" xmltv_id="TochkaTV.ru" site_id="213#tochkatv-68">Tochka TV</channel>
<channel lang="ru" xmltv_id="TravelChannelEMEA.uk" site_id="213#travel-channel-617">Travel Channel Europe</channel> <channel lang="ru" xmltv_id="TravelChannelEMEA.uk" site_id="213#travel-channel-617">Travel Channel Europe</channel>
@ -250,7 +250,7 @@
<channel lang="ru" xmltv_id="TVCentr.ru" site_id="213#tv-centr-32">TV Centr</channel> <channel lang="ru" xmltv_id="TVCentr.ru" site_id="213#tv-centr-32">TV Centr</channel>
<channel lang="ru" xmltv_id="TVGuberniya.ru" site_id="193#tv-guberniya-1081">TV Guberniya</channel> <channel lang="ru" xmltv_id="TVGuberniya.ru" site_id="193#tv-guberniya-1081">TV Guberniya</channel>
<channel lang="ru" xmltv_id="TVMChannel.ru" site_id="213#tvmchannel-112">TVMChannel</channel> <channel lang="ru" xmltv_id="TVMChannel.ru" site_id="213#tvmchannel-112">TVMChannel</channel>
<channel lang="ru" xmltv_id="TVStart.ru" site_id="213#start-103">TV Start</channel> <channel lang="ru" xmltv_id="Start.ru" site_id="213#start-103">TV Start</channel>
<channel lang="ru" xmltv_id="TVXXI.lv" site_id="213#tv-xxi-492">TV XXI</channel> <channel lang="ru" xmltv_id="TVXXI.lv" site_id="213#tv-xxi-492">TV XXI</channel>
<channel lang="ru" xmltv_id="U.ru" site_id="213#yu-40">U</channel> <channel lang="ru" xmltv_id="U.ru" site_id="213#yu-40">U</channel>
<channel lang="ru" xmltv_id="Udmurtiya.ru" site_id="213#udmurtiya-214">Udmurtiya</channel> <channel lang="ru" xmltv_id="Udmurtiya.ru" site_id="213#udmurtiya-214">Udmurtiya</channel>
@ -262,7 +262,7 @@
<channel lang="ru" xmltv_id="ViasatExplore.se" site_id="213#viasat-explore-579">Viasat Explore Russia</channel> <channel lang="ru" xmltv_id="ViasatExplore.se" site_id="213#viasat-explore-579">Viasat Explore Russia</channel>
<channel lang="ru" xmltv_id="ViasatHistory.se" site_id="213#viasat-history-478">Viasat History</channel> <channel lang="ru" xmltv_id="ViasatHistory.se" site_id="213#viasat-history-478">Viasat History</channel>
<channel lang="ru" xmltv_id="ViasatNature.se" site_id="213#viasat-nature-cee-684">Viasat Nature East</channel> <channel lang="ru" xmltv_id="ViasatNature.se" site_id="213#viasat-nature-cee-684">Viasat Nature East</channel>
<channel lang="ru" xmltv_id="ViasatSport.se" site_id="213#viasat-sport-548">Viasat Sport East</channel> <channel lang="ru" xmltv_id="ViasatSportEast.ru" site_id="213#viasat-sport-548">Viasat Sport East</channel>
<channel lang="ru" xmltv_id="VIPComedy.ru" site_id="213#vip-comedy-777">VIP Comedy</channel> <channel lang="ru" xmltv_id="VIPComedy.ru" site_id="213#vip-comedy-777">VIP Comedy</channel>
<channel lang="ru" xmltv_id="VIPMegahit.ru" site_id="213#vip-megahit-778">VIP Megahit</channel> <channel lang="ru" xmltv_id="VIPMegahit.ru" site_id="213#vip-megahit-778">VIP Megahit</channel>
<channel lang="ru" xmltv_id="VIPPremiere.ru" site_id="213#vip-premiere-779">VIP Premiere</channel> <channel lang="ru" xmltv_id="VIPPremiere.ru" site_id="213#vip-premiere-779">VIP Premiere</channel>
@ -271,7 +271,7 @@
<channel lang="ru" xmltv_id="VoprosyiOtvety.ru" site_id="213#voprosy-i-otvety-501">Voprosy i Otvety</channel> <channel lang="ru" xmltv_id="VoprosyiOtvety.ru" site_id="213#voprosy-i-otvety-501">Voprosy i Otvety</channel>
<channel lang="ru" xmltv_id="Vremya.ru" site_id="213#vremya-649">Vremya</channel> <channel lang="ru" xmltv_id="Vremya.ru" site_id="213#vremya-649">Vremya</channel>
<channel lang="ru" xmltv_id="WorldFashionChannelRussia.ru" site_id="213#world-fashion-channel-88">World Fashion Channel Russia</channel> <channel lang="ru" xmltv_id="WorldFashionChannelRussia.ru" site_id="213#world-fashion-channel-88">World Fashion Channel Russia</channel>
<channel lang="ru" xmltv_id="YamalRegion.ru" site_id="58#yamal-region-529">Yamal Region</channel> <channel lang="ru" xmltv_id="Yamal.ru" site_id="58#yamal-region-529">Yamal Region</channel>
<channel lang="ru" xmltv_id="Yurgan.ru" site_id="213#yurgan-138">Yurgan</channel> <channel lang="ru" xmltv_id="Yurgan.ru" site_id="213#yurgan-138">Yurgan</channel>
<channel lang="ru" xmltv_id="ZagorodnayaZhizn.ru" site_id="213#zagorodnaya-jizn-390">Zagorodnaya Zhizn</channel> <channel lang="ru" xmltv_id="ZagorodnayaZhizn.ru" site_id="213#zagorodnaya-jizn-390">Zagorodnaya Zhizn</channel>
<channel lang="ru" xmltv_id="Zagorodnyy.ru" site_id="213#zagorodnyy-666">Zagorodny</channel> <channel lang="ru" xmltv_id="Zagorodnyy.ru" site_id="213#zagorodnyy-666">Zagorodny</channel>

View file

@ -13,7 +13,7 @@
<channel lang="sv" xmltv_id="BBCBritNordic.uk" site_id="bbc-brit">BBC Brit</channel> <channel lang="sv" xmltv_id="BBCBritNordic.uk" site_id="bbc-brit">BBC Brit</channel>
<channel lang="sv" xmltv_id="BBCEarthNordic.uk" site_id="bbc-earth">BBC Earth</channel> <channel lang="sv" xmltv_id="BBCEarthNordic.uk" site_id="bbc-earth">BBC Earth</channel>
<channel lang="sv" xmltv_id="BBCWorldNewsEurope.uk" site_id="bbc-world-news">BBC World News</channel> <channel lang="sv" xmltv_id="BBCWorldNewsEurope.uk" site_id="bbc-world-news">BBC World News</channel>
<channel lang="sv" xmltv_id="BlueHustler.uk" site_id="blue-hustler">Blue Hustler</channel> <channel lang="sv" xmltv_id="BlueHustler.nl" site_id="blue-hustler">Blue Hustler</channel>
<channel lang="sv" xmltv_id="BoomerangNordic.uk" site_id="boomerang">Boomerang</channel> <channel lang="sv" xmltv_id="BoomerangNordic.uk" site_id="boomerang">Boomerang</channel>
<channel lang="sv" xmltv_id="Canal24Horas.es" site_id="canal-24h">Canal 24H</channel> <channel lang="sv" xmltv_id="Canal24Horas.es" site_id="canal-24h">Canal 24H</channel>
<channel lang="sv" xmltv_id="CartoonNetworkSweden.se" site_id="cartoon-network">Cartoon Network</channel> <channel lang="sv" xmltv_id="CartoonNetworkSweden.se" site_id="cartoon-network">Cartoon Network</channel>
@ -87,7 +87,7 @@
<channel lang="sv" xmltv_id="HorseCountryTV.uk" site_id="horse-country">Horse &amp; Country (UK)</channel> <channel lang="sv" xmltv_id="HorseCountryTV.uk" site_id="horse-country">Horse &amp; Country (UK)</channel>
<channel lang="sv" xmltv_id="HorseCountryTVSweden.se" site_id="horse-country-tv">Horse &amp; Country TV</channel> <channel lang="sv" xmltv_id="HorseCountryTVSweden.se" site_id="horse-country-tv">Horse &amp; Country TV</channel>
<channel lang="sv" xmltv_id="HRT1.hr" site_id="hrt1">HRT1</channel> <channel lang="sv" xmltv_id="HRT1.hr" site_id="hrt1">HRT1</channel>
<channel lang="sv" xmltv_id="HustlerTVEurope.uk" site_id="hustler-tv">Hustler TV</channel> <channel lang="sv" xmltv_id="HustlerTVEurope.nl" site_id="hustler-tv">Hustler TV</channel>
<channel lang="sv" xmltv_id="InvestigationDiscoverySweden.se" site_id="id">ID</channel> <channel lang="sv" xmltv_id="InvestigationDiscoverySweden.se" site_id="id">ID</channel>
<channel lang="sv" xmltv_id="Kanal10.se" site_id="kanal-10">Kanal 10</channel> <channel lang="sv" xmltv_id="Kanal10.se" site_id="kanal-10">Kanal 10</channel>
<channel lang="sv" xmltv_id="Kanal11.se" site_id="kanal-11">Kanal 11</channel> <channel lang="sv" xmltv_id="Kanal11.se" site_id="kanal-11">Kanal 11</channel>
@ -195,7 +195,7 @@
<channel lang="sv" xmltv_id="ViasatHistoryHD.se" site_id="viasat-history-hd-1">Viasat History HD</channel> <channel lang="sv" xmltv_id="ViasatHistoryHD.se" site_id="viasat-history-hd-1">Viasat History HD</channel>
<channel lang="sv" xmltv_id="ViasatNature.se" site_id="viasat-nature">Viasat Nature</channel> <channel lang="sv" xmltv_id="ViasatNature.se" site_id="viasat-nature">Viasat Nature</channel>
<channel lang="sv" xmltv_id="ViasatNatureHD.se" site_id="viasat-nature-hd">Viasat Nature HD</channel> <channel lang="sv" xmltv_id="ViasatNatureHD.se" site_id="viasat-nature-hd">Viasat Nature HD</channel>
<channel lang="sv" xmltv_id="ViasatSport.se" site_id="viasat-sport">Viasat Sport</channel> <channel lang="sv" xmltv_id="ViasatSportEast.ru" site_id="viasat-sport">Viasat Sport</channel>
<channel lang="sv" xmltv_id="VoxAustria.at" site_id="vox">VOX</channel> <channel lang="sv" xmltv_id="VoxAustria.at" site_id="vox">VOX</channel>
<channel lang="sv" xmltv_id="VSeries.se" site_id="viasat-series">Viasat Series</channel> <channel lang="sv" xmltv_id="VSeries.se" site_id="viasat-series">Viasat Series</channel>
<channel lang="sv" xmltv_id="VSportExtra.se" site_id="v-sport-extra">V Sport Extra</channel> <channel lang="sv" xmltv_id="VSportExtra.se" site_id="v-sport-extra">V Sport Extra</channel>

View file

@ -36,10 +36,10 @@
<channel lang="sl" xmltv_id="CGTN.cn" site_id="125">CGTN</channel> <channel lang="sl" xmltv_id="CGTN.cn" site_id="125">CGTN</channel>
<channel lang="sl" xmltv_id="CineStarTV1Serbia.rs" site_id="1000085">CineStar TV 1</channel> <channel lang="sl" xmltv_id="CineStarTV1Serbia.rs" site_id="1000085">CineStar TV 1</channel>
<channel lang="sl" xmltv_id="CineStarTVActionSerbia.rs" site_id="1000427">CineStar TV Action</channel> <channel lang="sl" xmltv_id="CineStarTVActionSerbia.rs" site_id="1000427">CineStar TV Action</channel>
<channel lang="sl" xmltv_id="CineStarTVComedy.hr" site_id="1000617">CineStar TV Comedy</channel> <channel lang="sl" xmltv_id="CineStarTVComedyCroatia.hr" site_id="1000617">CineStar TV Comedy</channel>
<channel lang="sl" xmltv_id="CineStarTVFantasy.hr" site_id="1000618">CineStar TV Fantasy</channel> <channel lang="sl" xmltv_id="CineStarTVFantasyCroatia.hr" site_id="1000618">CineStar TV Fantasy</channel>
<channel lang="sl" xmltv_id="CineStarTVPremiere1.hr" site_id="1000431">CineStar TV Premiere 1</channel> <channel lang="sl" xmltv_id="CineStarTVPremiere1Croatia.hr" site_id="1000431">CineStar TV Premiere 1</channel>
<channel lang="sl" xmltv_id="CineStarTVPremiere2.hr" site_id="1000430">CineStar TV Premiere 2</channel> <channel lang="sl" xmltv_id="CineStarTVPremiere2Croatia.hr" site_id="1000430">CineStar TV Premiere 2</channel>
<channel lang="sl" xmltv_id="ClubMTVEurope.uk" site_id="126">Club MTV</channel> <channel lang="sl" xmltv_id="ClubMTVEurope.uk" site_id="126">Club MTV</channel>
<channel lang="sl" xmltv_id="CMCTV.hr" site_id="1000156">CMC TV</channel> <channel lang="sl" xmltv_id="CMCTV.hr" site_id="1000156">CMC TV</channel>
<channel lang="sl" xmltv_id="CNNInternationalEurope.us" site_id="25">CNN</channel> <channel lang="sl" xmltv_id="CNNInternationalEurope.us" site_id="25">CNN</channel>
@ -103,15 +103,15 @@
<channel lang="sl" xmltv_id="History2Poland.pl" site_id="1000619">H2 HD</channel> <channel lang="sl" xmltv_id="History2Poland.pl" site_id="1000619">H2 HD</channel>
<channel lang="sl" xmltv_id="HRT1.hr" site_id="105">HRT 1</channel> <channel lang="sl" xmltv_id="HRT1.hr" site_id="105">HRT 1</channel>
<channel lang="sl" xmltv_id="HRT2.hr" site_id="106">HRT 2</channel> <channel lang="sl" xmltv_id="HRT2.hr" site_id="106">HRT 2</channel>
<channel lang="sl" xmltv_id="HustlerHD.uk" site_id="1000306">Hustler HD</channel> <channel lang="sl" xmltv_id="HustlerHD.nl" site_id="1000306">Hustler HD</channel>
<channel lang="sl" xmltv_id="HustlerTVEurope.uk" site_id="1000018">Hustler TV</channel> <channel lang="sl" xmltv_id="HustlerTVEurope.nl" site_id="1000018">Hustler TV</channel>
<channel lang="sl" xmltv_id="JimJamEurope.uk" site_id="1000509">JimJam</channel> <channel lang="sl" xmltv_id="JimJamEurope.uk" site_id="1000509">JimJam</channel>
<channel lang="sl" xmltv_id="JugotonTV.hr" site_id="1000285">Jugoton TV</channel> <channel lang="sl" xmltv_id="JugotonTV.hr" site_id="1000285">Jugoton TV</channel>
<channel lang="sl" xmltv_id="kabeleins.de" site_id="61">Kabel Eins</channel> <channel lang="sl" xmltv_id="kabeleins.de" site_id="61">Kabel Eins</channel>
<channel lang="sl" xmltv_id="Kanal5.mk" site_id="1000268">Kanal 5</channel> <channel lang="sl" xmltv_id="Kanal5.mk" site_id="1000268">Kanal 5</channel>
<channel lang="sl" xmltv_id="KanalA.si" site_id="1000370">Kanal A</channel> <channel lang="sl" xmltv_id="KanalA.si" site_id="1000370">Kanal A</channel>
<channel lang="sl" xmltv_id="Kanali7.al" site_id="1000174">Kanali 7</channel> <channel lang="sl" xmltv_id="Kanali7.al" site_id="1000174">Kanali 7</channel>
<channel lang="sl" xmltv_id="KaruselInternational.ru" site_id="1000273">Karusel</channel> <channel lang="sl" xmltv_id="Karusel.ru" site_id="1000273">Karusel</channel>
<channel lang="sl" xmltv_id="KCN1.rs" site_id="1000078">K CN 1</channel> <channel lang="sl" xmltv_id="KCN1.rs" site_id="1000078">K CN 1</channel>
<channel lang="sl" xmltv_id="KCN2.rs" site_id="1000103">K CN 2</channel> <channel lang="sl" xmltv_id="KCN2.rs" site_id="1000103">K CN 2</channel>
<channel lang="sl" xmltv_id="KCN3.rs" site_id="2000000046">K CN 3</channel> <channel lang="sl" xmltv_id="KCN3.rs" site_id="2000000046">K CN 3</channel>
@ -155,7 +155,7 @@
<channel lang="sl" xmltv_id="OTO.si" site_id="1000365">Oto</channel> <channel lang="sl" xmltv_id="OTO.si" site_id="1000365">Oto</channel>
<channel lang="sl" xmltv_id="OTV.hr" site_id="1000190">OTV</channel> <channel lang="sl" xmltv_id="OTV.hr" site_id="1000190">OTV</channel>
<channel lang="sl" xmltv_id="OTVValentino.ba" site_id="1000073">OTV Valentino</channel> <channel lang="sl" xmltv_id="OTVValentino.ba" site_id="1000073">OTV Valentino</channel>
<channel lang="sl" xmltv_id="ChannelOneEuropa.ru" site_id="1000272">Perviy kanal</channel> <channel lang="sl" xmltv_id="ChannelOne.ru" site_id="1000272">Perviy kanal</channel>
<channel lang="sl" xmltv_id="PeTV.si" site_id="1000101">PeTV</channel> <channel lang="sl" xmltv_id="PeTV.si" site_id="1000101">PeTV</channel>
<channel lang="sl" xmltv_id="PinkExtra.rs" site_id="1000095">Pink Extra</channel> <channel lang="sl" xmltv_id="PinkExtra.rs" site_id="1000095">Pink Extra</channel>
<channel lang="sl" xmltv_id="PinkFilm.rs" site_id="1000096">Pink Film</channel> <channel lang="sl" xmltv_id="PinkFilm.rs" site_id="1000096">Pink Film</channel>
@ -184,12 +184,12 @@
<channel lang="sl" xmltv_id="RTLII.hu" site_id="71">RTL II</channel> <channel lang="sl" xmltv_id="RTLII.hu" site_id="71">RTL II</channel>
<channel lang="sl" xmltv_id="RTLKockica.hr" site_id="1000355">RTL Kockica</channel> <channel lang="sl" xmltv_id="RTLKockica.hr" site_id="1000355">RTL Kockica</channel>
<channel lang="sl" xmltv_id="RTLLivingGermany.de" site_id="1000323">RTL Living</channel> <channel lang="sl" xmltv_id="RTLLivingGermany.de" site_id="1000323">RTL Living</channel>
<channel lang="sl" xmltv_id="RTNews.ru" site_id="2000000028">RT</channel> <channel lang="sl" xmltv_id="RT.ru" site_id="2000000028">RT</channel>
<channel lang="sl" xmltv_id="RTRSTV.ba" site_id="1000185">RTRS TV</channel> <channel lang="sl" xmltv_id="RTRSTV.ba" site_id="1000185">RTRS TV</channel>
<channel lang="sl" xmltv_id="RTS1.rs" site_id="1000211">RTS 1</channel> <channel lang="sl" xmltv_id="RTS1.rs" site_id="1000211">RTS 1</channel>
<channel lang="sl" xmltv_id="RTS2.rs" site_id="1000212">RTS 2</channel> <channel lang="sl" xmltv_id="RTS2.rs" site_id="1000212">RTS 2</channel>
<channel lang="sl" xmltv_id="RTSKlasika.rs" site_id="108">RTS Klasika</channel> <channel lang="sl" xmltv_id="RTSKlasika.rs" site_id="108">RTS Klasika</channel>
<channel lang="sl" xmltv_id="RTViEurope.ru" site_id="1000666">RTVi Europe</channel> <channel lang="sl" xmltv_id="RTVi.ru" site_id="1000666">RTVi Europe</channel>
<channel lang="sl" xmltv_id="RTVVikom.ba" site_id="1000188">RTV Vikom</channel> <channel lang="sl" xmltv_id="RTVVikom.ba" site_id="1000188">RTV Vikom</channel>
<channel lang="sl" xmltv_id="Sat1Germany.de" site_id="72">Sat. 1</channel> <channel lang="sl" xmltv_id="Sat1Germany.de" site_id="72">Sat. 1</channel>
<channel lang="sl" xmltv_id="ScifiSerbia.rs" site_id="1000614">Scifi Srbija</channel> <channel lang="sl" xmltv_id="ScifiSerbia.rs" site_id="1000614">Scifi Srbija</channel>
@ -207,7 +207,7 @@
<channel lang="sl" xmltv_id="SuperOneHD.hu" site_id="1000342">SuperOne HD</channel> <channel lang="sl" xmltv_id="SuperOneHD.hu" site_id="1000342">SuperOne HD</channel>
<channel lang="sl" xmltv_id="SuperRTLGermany.de" site_id="73">Super RTL</channel> <channel lang="sl" xmltv_id="SuperRTLGermany.de" site_id="73">Super RTL</channel>
<channel lang="sl" xmltv_id="T2Info.si" site_id="1000543">T-2 Info</channel> <channel lang="sl" xmltv_id="T2Info.si" site_id="1000543">T-2 Info</channel>
<channel lang="sl" xmltv_id="TelecafeInternational.ru" site_id="1000456">Telecafé</channel> <channel lang="sl" xmltv_id="Telecafe.ru" site_id="1000456">Telecafé</channel>
<channel lang="sl" xmltv_id="TelmaTV.mk" site_id="1000226">Telma</channel> <channel lang="sl" xmltv_id="TelmaTV.mk" site_id="1000226">Telma</channel>
<channel lang="sl" xmltv_id="TLCBalkan.us" site_id="1000763">TLC</channel> <channel lang="sl" xmltv_id="TLCBalkan.us" site_id="1000763">TLC</channel>
<channel lang="sl" xmltv_id="TlnovelasEuropa.mx" site_id="100">Tlnovelas</channel> <channel lang="sl" xmltv_id="TlnovelasEuropa.mx" site_id="100">Tlnovelas</channel>

View file

@ -4,7 +4,7 @@
<channel lang="uk" xmltv_id="1Plus1.ua" site_id="1plus1">1+1</channel> <channel lang="uk" xmltv_id="1Plus1.ua" site_id="1plus1">1+1</channel>
<channel lang="uk" xmltv_id="24Kanal.ua" site_id="telekanal_novostej_24">24 Kanal</channel> <channel lang="uk" xmltv_id="24Kanal.ua" site_id="telekanal_novostej_24">24 Kanal</channel>
<channel lang="uk" xmltv_id="2Plus2.ua" site_id="2plus2">2+2</channel> <channel lang="uk" xmltv_id="2Plus2.ua" site_id="2plus2">2+2</channel>
<channel lang="uk" xmltv_id="34Telekanal.ua" site_id="34kanal">34 Telekanal</channel> <channel lang="uk" xmltv_id="Channel34.ua" site_id="34kanal">34 Telekanal</channel>
<channel lang="uk" xmltv_id="5Kanal.ua" site_id="5kanal">5 Kanal</channel> <channel lang="uk" xmltv_id="5Kanal.ua" site_id="5kanal">5 Kanal</channel>
<channel lang="uk" xmltv_id="8Kanal.ua" site_id="8_kanal">8 Kanal</channel> <channel lang="uk" xmltv_id="8Kanal.ua" site_id="8_kanal">8 Kanal</channel>
<channel lang="uk" xmltv_id="AjaraTV.ge" site_id="ajara_tv">Ajara TV</channel> <channel lang="uk" xmltv_id="AjaraTV.ge" site_id="ajara_tv">Ajara TV</channel>
@ -67,7 +67,7 @@
<channel lang="uk" xmltv_id="NTN.ua" site_id="ntn">NTN</channel> <channel lang="uk" xmltv_id="NTN.ua" site_id="ntn">NTN</channel>
<channel lang="uk" xmltv_id="ObozrevatelTV.ua" site_id="obozrevatel">Obozrevatel TV</channel> <channel lang="uk" xmltv_id="ObozrevatelTV.ua" site_id="obozrevatel">Obozrevatel TV</channel>
<channel lang="uk" xmltv_id="Oce.ua" site_id="otse">Oce</channel> <channel lang="uk" xmltv_id="Oce.ua" site_id="otse">Oce</channel>
<channel lang="uk" xmltv_id="OhotnikiRybolov.ru" site_id="ohotnik_rybolov">Ohotnik i Rybolov</channel> <channel lang="uk" xmltv_id="Ohotnikirybolov.ru" site_id="ohotnik_rybolov">Ohotnik i Rybolov</channel>
<channel lang="uk" xmltv_id="OTBGalychyna.ua" site_id="galicsina_otb">OTB Galychyna</channel> <channel lang="uk" xmltv_id="OTBGalychyna.ua" site_id="galicsina_otb">OTB Galychyna</channel>
<channel lang="uk" xmltv_id="ParamountComedyUkraine.ua" site_id="paramount_comedy">Paramount Comedy</channel> <channel lang="uk" xmltv_id="ParamountComedyUkraine.ua" site_id="paramount_comedy">Paramount Comedy</channel>
<channel lang="uk" xmltv_id="PershiyDiloviy.ua" site_id="pervyj-delovoj">Pershiy Diloviy</channel> <channel lang="uk" xmltv_id="PershiyDiloviy.ua" site_id="pervyj-delovoj">Pershiy Diloviy</channel>
@ -75,7 +75,7 @@
<channel lang="uk" xmltv_id="PlusPlus.ua" site_id="plus_plus">Plus Plus</channel> <channel lang="uk" xmltv_id="PlusPlus.ua" site_id="plus_plus">Plus Plus</channel>
<channel lang="uk" xmltv_id="Polsat.pl" site_id="polsat">Polsat</channel> <channel lang="uk" xmltv_id="Polsat.pl" site_id="polsat">Polsat</channel>
<channel lang="uk" xmltv_id="Pryamyy.ua" site_id="pryamoj">Pryamyy</channel> <channel lang="uk" xmltv_id="Pryamyy.ua" site_id="pryamoj">Pryamyy</channel>
<channel lang="uk" xmltv_id="Pyatnitsa.ru" site_id="pyatnitsa">Pyatnitsa!</channel> <channel lang="uk" xmltv_id="Friday.ru" site_id="pyatnitsa">Pyatnitsa!</channel>
<channel lang="uk" xmltv_id="RussiaK.ru" site_id="kultura_rossiya_k">Rossiya K</channel> <channel lang="uk" xmltv_id="RussiaK.ru" site_id="kultura_rossiya_k">Rossiya K</channel>
<channel lang="uk" xmltv_id="Ryzhiy.ru" site_id="riziy">Ryzhiy</channel> <channel lang="uk" xmltv_id="Ryzhiy.ru" site_id="riziy">Ryzhiy</channel>
<channel lang="uk" xmltv_id="SetantaSportsUkraine.ua" site_id="setanta_sports_ukraine">Setanta Sports Ukraine</channel> <channel lang="uk" xmltv_id="SetantaSportsUkraine.ua" site_id="setanta_sports_ukraine">Setanta Sports Ukraine</channel>
@ -83,15 +83,15 @@
<channel lang="uk" xmltv_id="SonySciFiRussia.us" site_id="sony_sci_fi">Sony Sci-Fi</channel> <channel lang="uk" xmltv_id="SonySciFiRussia.us" site_id="sony_sci_fi">Sony Sci-Fi</channel>
<channel lang="uk" xmltv_id="StarCinema.ua" site_id="star_cinema">Star Cinema</channel> <channel lang="uk" xmltv_id="StarCinema.ua" site_id="star_cinema">Star Cinema</channel>
<channel lang="uk" xmltv_id="StarFamily.ua" site_id="star_family">Star Family</channel> <channel lang="uk" xmltv_id="StarFamily.ua" site_id="star_family">Star Family</channel>
<channel lang="uk" xmltv_id="STS.ru" site_id="sts">STS</channel> <channel lang="uk" xmltv_id="CTC.ru" site_id="sts">STS</channel>
<channel lang="uk" xmltv_id="TelekanalSpas.ru" site_id="spas">Telekanal Spas</channel> <channel lang="uk" xmltv_id="Spas.ru" site_id="spas">Telekanal Spas</channel>
<channel lang="uk" xmltv_id="TelekanalSTB.ua" site_id="stb">Telekanal STB</channel> <channel lang="uk" xmltv_id="STB.ua" site_id="stb">Telekanal STB</channel>
<channel lang="uk" xmltv_id="TelekanalUkraina.ua" site_id="ukraina">Telekanal Ukraina</channel> <!-- <channel lang="uk" xmltv_id="TelekanalUkraina.ua" site_id="ukraina">Telekanal Ukraina</channel> -->
<channel lang="uk" xmltv_id="TET.ua" site_id="tet">TET</channel> <channel lang="uk" xmltv_id="TET.ua" site_id="tet">TET</channel>
<channel lang="uk" xmltv_id="TravelChannelEMEA.uk" site_id="travel_channel">Travel Channel</channel> <channel lang="uk" xmltv_id="TravelChannelEMEA.uk" site_id="travel_channel">Travel Channel</channel>
<channel lang="uk" xmltv_id="TV1000ActionEast.ru" site_id="tv_1000_action_east">TV 1000 Action</channel> <channel lang="uk" xmltv_id="TV1000ActionEast.ru" site_id="tv_1000_action_east">TV 1000 Action</channel>
<channel lang="uk" xmltv_id="TV1000East.ru" site_id="tv1000_east">TV 1000 East</channel> <channel lang="uk" xmltv_id="TV1000East.ru" site_id="tv1000_east">TV 1000 East</channel>
<channel lang="uk" xmltv_id="TV1000WorldKino.se" site_id="tv1000_world_kino">TV 1000 World Kino</channel> <channel lang="uk" xmltv_id="TV1000WorldKino.ru" site_id="tv1000_world_kino">TV 1000 World Kino</channel>
<channel lang="uk" xmltv_id="TV3.ru" site_id="tv3">TV 3</channel> <channel lang="uk" xmltv_id="TV3.ru" site_id="tv3">TV 3</channel>
<channel lang="uk" xmltv_id="TV4.ua" site_id="tv_4">TV-4</channel> <channel lang="uk" xmltv_id="TV4.ua" site_id="tv_4">TV-4</channel>
<channel lang="uk" xmltv_id="TV5.ua" site_id="tv_5">TV 5</channel> <channel lang="uk" xmltv_id="TV5.ua" site_id="tv_5">TV 5</channel>
@ -108,7 +108,7 @@
<channel lang="uk" xmltv_id="ViasatExplore.se" site_id="viasat_explore">Viasat Explore</channel> <channel lang="uk" xmltv_id="ViasatExplore.se" site_id="viasat_explore">Viasat Explore</channel>
<channel lang="uk" xmltv_id="ViasatHistory.se" site_id="viasat_history">Viasat History</channel> <channel lang="uk" xmltv_id="ViasatHistory.se" site_id="viasat_history">Viasat History</channel>
<channel lang="uk" xmltv_id="ViasatNature.se" site_id="viasat_nature">Viasat Nature</channel> <channel lang="uk" xmltv_id="ViasatNature.se" site_id="viasat_nature">Viasat Nature</channel>
<channel lang="uk" xmltv_id="ViasatSport.se" site_id="viasat_sport">Viasat Sport</channel> <channel lang="uk" xmltv_id="ViasatSportEast.ru" site_id="viasat_sport">Viasat Sport</channel>
<channel lang="uk" xmltv_id="VIPComedy.ru" site_id="vip_comedy">VIP Comedy</channel> <channel lang="uk" xmltv_id="VIPComedy.ru" site_id="vip_comedy">VIP Comedy</channel>
<channel lang="uk" xmltv_id="XSport.ua" site_id="xsport">X Sport</channel> <channel lang="uk" xmltv_id="XSport.ua" site_id="xsport">X Sport</channel>
<channel lang="uk" xmltv_id="Zhivi.ru" site_id="jivi">Zhivi!</channel> <channel lang="uk" xmltv_id="Zhivi.ru" site_id="jivi">Zhivi!</channel>

View file

@ -2,7 +2,7 @@
<site site="tvhebdo.com"> <site site="tvhebdo.com">
<channels> <channels>
<channel lang="en" xmltv_id="CPACEnglish.ca" site_id="cpae/CPAE">CPAC English</channel> <channel lang="en" xmltv_id="CPACEnglish.ca" site_id="cpae/CPAE">CPAC English</channel>
<channel lang="fr" xmltv_id="2MMonde.ma" site_id="2m/2M">2M</channel> <channel lang="fr" xmltv_id="2MInternational.ma" site_id="2m/2M">2M</channel>
<channel lang="fr" xmltv_id="ABCSpark.ca" site_id="spar/SPARK">SPARK</channel> <channel lang="fr" xmltv_id="ABCSpark.ca" site_id="spar/SPARK">SPARK</channel>
<channel lang="fr" xmltv_id="ABCSparkHD.ca" site_id="spar/SPARKHD">ABC Sparks HD</channel> <channel lang="fr" xmltv_id="ABCSparkHD.ca" site_id="spar/SPARKHD">ABC Sparks HD</channel>
<channel lang="fr" xmltv_id="addikTV.ca" site_id="myst/ADDIK">addikTV</channel> <channel lang="fr" xmltv_id="addikTV.ca" site_id="myst/ADDIK">addikTV</channel>
@ -288,7 +288,7 @@
<channel lang="fr" xmltv_id="TeletoonFrench.ca" site_id="ttf/TOONF">TOONF</channel> <channel lang="fr" xmltv_id="TeletoonFrench.ca" site_id="ttf/TOONF">TOONF</channel>
<channel lang="fr" xmltv_id="TeletoonHDEnglish.ca" site_id="tta/TTA">TOON A HD</channel> <channel lang="fr" xmltv_id="TeletoonHDEnglish.ca" site_id="tta/TTA">TOON A HD</channel>
<channel lang="fr" xmltv_id="TeletoonHDFrench.ca" site_id="ttf/TTF">TTF HD</channel> <channel lang="fr" xmltv_id="TeletoonHDFrench.ca" site_id="ttf/TTF">TTF HD</channel>
<channel lang="fr" xmltv_id="TFO.ca" site_id="tfo/TFO">TFO</channel> <channel lang="fr" xmltv_id="CHLFTV.ca" site_id="tfo/TFO">TFO</channel>
<channel lang="fr" xmltv_id="TFOHD.ca" site_id="tfo/TFOHD">TFO HD</channel> <channel lang="fr" xmltv_id="TFOHD.ca" site_id="tfo/TFOHD">TFO HD</channel>
<channel lang="fr" xmltv_id="TGCom24.it" site_id="tg24/TG24">TGCOM 24</channel> <channel lang="fr" xmltv_id="TGCom24.it" site_id="tg24/TG24">TGCOM 24</channel>
<channel lang="fr" xmltv_id="TheShoppingChannel.ca" site_id="tsc/SHOP">The Shopping Channel</channel> <channel lang="fr" xmltv_id="TheShoppingChannel.ca" site_id="tsc/SHOP">The Shopping Channel</channel>

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