From 0449b094d56cfb07975e0f995bfa5fe6575c4ad5 Mon Sep 17 00:00:00 2001 From: Amy Gao Date: Mon, 21 Dec 2020 16:39:26 -0500 Subject: [PATCH] added benchmark code for individual page requests --- newCrawler/crawl.js | 14 +- newCrawler/debug.log | 74 +- newCrawler/failed_links_list.json | 328 +- newCrawler/link_title_list.json | 7466 +---------------------------- newCrawler/package-lock.json | 1243 +++++ 5 files changed, 1302 insertions(+), 7823 deletions(-) diff --git a/newCrawler/crawl.js b/newCrawler/crawl.js index dffc942..7139d72 100644 --- a/newCrawler/crawl.js +++ b/newCrawler/crawl.js @@ -11,6 +11,7 @@ const Apify = require('apify'); const path = require('path'); var { Readability } = require('@mozilla/readability'); var JSDOM = require('jsdom').JSDOM; +const { performance } = require('perf_hooks'); var fs = require('fs'); var util = require('util'); @@ -100,6 +101,7 @@ Apify.main(async () => { useChrome: false, }, handlePageFunction: async ({ request, page }) => { + const t2 = performance.now(); const title = await page.title(); // Get the title of the page. let domainNameIndex = 5; let general_regex = /(http(s)?:\/\/((w|W){3}\.)?)([^.]+)((\.[a-zA-Z]+)+)/; @@ -195,7 +197,9 @@ Apify.main(async () => { } // Add this list to the dict. output_dict[request.url] = elem; - + const t3 = performance.now(); + // Log the time for this request. + console.log(`Call to "${request.url}" took ${t3/1000.0 - t2/1000.0} seconds.`); // Enqueue the deeper URLs to crawl. await Apify.utils.enqueueLinks({ page, selector: 'a', pseudoUrls, requestQueue }); }, @@ -203,14 +207,20 @@ Apify.main(async () => { maxRequestsPerCrawl: 20, maxConcurrency: 10, }); + + const t0 = performance.now(); // Run the crawler. await crawler.run(); + const t1 = performance.now(); + // Log the time to run the crawler. + console.log(`Call to run Crawler took ${t1/1000.0 - t0/1000.0} milliseconds.`); // Delete the apify storage. // Note: If the apify_storage file is not removed, it doesn't crawl // during subsequent runs. // Implementation of rmdir. - console.log(JSON.stringify(output_dict)); + // console.log(JSON.stringify(output_dict)); + const rmDir = function (dirPath, removeSelf) { if (removeSelf === undefined) removeSelf = true; diff --git a/newCrawler/debug.log b/newCrawler/debug.log index c2e221e..9f834f3 100644 --- a/newCrawler/debug.log +++ b/newCrawler/debug.log @@ -1,33 +1,49 @@ INFO: System info {"apifyVersion":"0.19.1","apifyClientVersion":"0.5.26","osType":"Darwin","nodeVersion":"v12.18.3"} -WARNING: Neither APIFY_LOCAL_STORAGE_DIR nor APIFY_TOKEN environment variable is set, defaulting to APIFY_LOCAL_STORAGE_DIR="/Volumes/Raiyan-External-HDD/School/University/Work-Study/Repositories/mediacat-domain-crawler/newCrawler/apify_storage" -[ - 'https://www.cnn.com/', - 'https://www.aljazeera.com/', - 'https://www.nytimes.com/' -] +WARNING: Neither APIFY_LOCAL_STORAGE_DIR nor APIFY_TOKEN environment variable is set, defaulting to APIFY_LOCAL_STORAGE_DIR="/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/apify_storage" +[ 'https://www.aljazeera.com/news/' ] INFO: AutoscaledPool: Setting max memory of this run to 2048 MB. Use the APIFY_MEMORY_MBYTES environment variable to override it. INFO: AutoscaledPool state {"currentConcurrency":0,"desiredConcurrency":2,"systemStatus":{"isSystemIdle":true,"memInfo":{"isOverloaded":false,"limitRatio":0.2,"actualRatio":null},"eventLoopInfo":{"isOverloaded":false,"limitRatio":0.4,"actualRatio":null},"cpuInfo":{"isOverloaded":false,"limitRatio":0.4,"actualRatio":null},"clientInfo":{"isOverloaded":false,"limitRatio":0.3,"actualRatio":null}}} INFO: Launching Puppeteer {"headless":true,"stealth":false,"useChrome":false,"args":["--no-sandbox","--user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.79 Safari/537.36"],"timeout":15000,"defaultViewport":{"width":1366,"height":768}} -Title of "https://www.aljazeera.com/" is "Breaking News, World News and Video from Al Jazeera" -Title of "https://www.cnn.com/" is "CNN - Breaking News, Latest News and Videos" -Title of "https://www.nytimes.com/" is "The New York Times - Breaking News, US News, World News and Videos" -Title of "https://www.aljazeera.com/news/" is "News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/africa/" is "Africa News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/middle-east/" is "Middle East News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/latin-america/" is "Latin America News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/asia/" is "Asia News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/live" is "LIVE - Al Jazeera English News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/us-canada/" is "US & Canada News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/asia-pacific/" is "Asia Pacific News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/features/" is "Features | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/europe/" is "Europe News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/us-elections-2020/" is "US Elections 2020 News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/economy/" is "Economy News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/opinion/" is "Opinion | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/videos/" is "Videos News | Today's latest from Al Jazeera" -Title of "https://www.aljazeera.com/investigations/" is "Investigations News | Today's latest from Al Jazeera" -Title of "https://www.cnn.com/privacy" is "CNN Privacy Statement - CNN" -Title of "https://www.cnn.com/terms" is "CNN Terms of Use - CNN" -Title of "https://www.cnn.com/us" is "US News – Top national stories and latest headlines - CNN" -INFO: BasicCrawler: Crawler reached the maxRequestsPerCrawl limit of 20 requests and will shut down soon. Requests that are in progress will be allowed to finish. -INFO: BasicCrawler: Earlier, the crawler reached the maxRequestsPerCrawl limit of 20 requests and all requests that were in progress at that time have now finished. In total, the crawler processed 21 requests and will shut down. +INFO: Crawler request statistics: {"avgDurationMillis":null,"perMinute":0,"finished":0,"failed":0,"retryHistogram":[]} +INFO: AutoscaledPool state {"currentConcurrency":4,"desiredConcurrency":2,"systemStatus":{"isSystemIdle":false,"memInfo":{"isOverloaded":true,"limitRatio":0.2,"actualRatio":1},"eventLoopInfo":{"isOverloaded":false,"limitRatio":0.4,"actualRatio":0.039},"cpuInfo":{"isOverloaded":false,"limitRatio":0.4,"actualRatio":0},"clientInfo":{"isOverloaded":false,"limitRatio":0.3,"actualRatio":0}}} +ERROR: BasicCrawler: handleRequestFunction failed, reclaiming failed request back to the list or queue {"url":"https://www.aljazeera.com/news/2020/12/18/us-muslims-press-organization-of-islamic-cooperation-on-china","retryCount":1,"id":"08gT7tqg6RvqM6b"} + TimeoutError: Navigation timeout of 60000 ms exceeded + at /Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/LifecycleWatcher.js:142:21 + -- ASYNC -- + at Frame. (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/helper.js:111:15) + at Page.goto (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/Page.js:675:49) + at Page. (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/helper.js:112:23) + at gotoExtended (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/puppeteer_utils.js:473:15) + at PuppeteerCrawler._defaultGotoFunction (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/crawlers/puppeteer_crawler.js:365:46) + at PuppeteerCrawler._handleRequestFunction (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/crawlers/puppeteer_crawler.js:325:35) + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at async /Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/utils.js:409:20 +ERROR: BasicCrawler: handleRequestFunction failed, reclaiming failed request back to the list or queue {"url":"https://www.aljazeera.com/news/2020/12/11/china-visa","retryCount":1,"id":"bCtLGC9H7yxQnv9"} + TimeoutError: Navigation timeout of 60000 ms exceeded + at /Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/LifecycleWatcher.js:142:21 + -- ASYNC -- + at Frame. (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/helper.js:111:15) + at Page.goto (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/Page.js:675:49) + at Page. (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/helper.js:112:23) + at gotoExtended (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/puppeteer_utils.js:473:15) + at PuppeteerCrawler._defaultGotoFunction (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/crawlers/puppeteer_crawler.js:365:46) + at PuppeteerCrawler._handleRequestFunction (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/crawlers/puppeteer_crawler.js:325:35) + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at async /Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/utils.js:409:20 +ERROR: BasicCrawler: handleRequestFunction failed, reclaiming failed request back to the list or queue {"url":"https://www.aljazeera.com/news/2020/12/18/in-wake-of-election-loss-trumps-enemies-list-keeps-expanding","retryCount":1,"id":"k4moHyQJ6b5YJCc"} + TimeoutError: Navigation timeout of 60000 ms exceeded + at /Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/LifecycleWatcher.js:142:21 + -- ASYNC -- + at Frame. (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/helper.js:111:15) + at Page.goto (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/Page.js:675:49) + at Page. (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/node_modules/puppeteer/lib/helper.js:112:23) + at gotoExtended (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/puppeteer_utils.js:473:15) + at PuppeteerCrawler._defaultGotoFunction (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/crawlers/puppeteer_crawler.js:365:46) + at PuppeteerCrawler._handleRequestFunction (/Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/crawlers/puppeteer_crawler.js:325:35) + at runMicrotasks () + at processTicksAndRejections (internal/process/task_queues.js:97:5) + at async /Users/Amy0127/Desktop/Mediacat/mediacat-domain-crawler/newCrawler/node_modules/apify/build/utils.js:409:20 +Title of "https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result" is "Trump campaign will again ask top court to upend election result | Donald Trump News | Al Jazeera" +Call to "https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result" took 0.9164294899702128 seconds. +Title of "https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot" is "Trump has a Russia ‘blind spot’, says US Senator Romney | Cybercrime News | Al Jazeera" +Call to "https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot" took 1.1262937870025667 seconds. diff --git a/newCrawler/failed_links_list.json b/newCrawler/failed_links_list.json index 9799dfd..445955f 100644 --- a/newCrawler/failed_links_list.json +++ b/newCrawler/failed_links_list.json @@ -1,327 +1 @@ -{ - "ajplus":[ - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/", - "http://ajplus.net/" - ], - "instagram":[ - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://instagram.com/cnn", - "https://instagram.com/cnn", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://www.instagram.com/aljazeeraenglish/?hl=en", - "https://instagram.com/cnn", - "https://instagram.com/cnn", - "https://instagram.com/cnn", - "https://instagram.com/cnn", - "https://instagram.com/cnn", - "https://instagram.com/cnn" - ], - "youtube":[ - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish", - "https://www.youtube.com/aljazeeraenglish" - ], - "facebook":[ - "http://www.facebook.com/aljazeera", - "https://facebook.com/CNN", - "https://facebook.com/CNN", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "http://www.facebook.com/aljazeera", - "https://facebook.com/CNN", - "https://facebook.com/CNN", - "https://facebook.com/CNN", - "https://facebook.com/CNN", - "https://facebook.com/CNN", - "https://facebook.com/CNN" - ], - "bleacherreport":[ - "http://bleacherreport.com/", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football", - "http://bleacherreport.com/?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "https://bleacherreport.com/articles/2917731-tiger-woods-off-to-hot-start-at-2020-masters-after-shooting-4-under-in-round-1?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "https://bleacherreport.com/articles/2917731-tiger-woods-off-to-hot-start-at-2020-masters-after-shooting-4-under-in-round-1?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "https://bleacherreport.com/articles/2917524-how-does-trevor-bauers-2020-cy-young-victory-impact-free-agency?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "https://bleacherreport.com/articles/2916969-complete-guide-to-the-2020-masters-at-augusta-national", - "https://bleacherreport.com/articles/2914354-mlb-cy-young-award-2020-shane-bieber-trevor-bauer-named-al-nl-winners?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "https://bleacherreport.com/articles/2917330-cameron-champ-brings-his-family-legacy-to-masters-debut?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "https://bleacherreport.com/articles/2917583-lakers-announce-home-games-will-be-held-without-fans-until-further-notice?utm_source=cnn.com&utm_medium=referral&utm_campaign=editorial", - "http://bleacherreport.com/", - "http://bleacherreport.com/nfl", - "http://bleacherreport.com/college-football", - "http://bleacherreport.com/nba", - "http://bleacherreport.com/mlb", - "http://bleacherreport.com/world-football" - ], - "turnerjobs":[ - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299", - "https://www.turnerjobs.com/search-jobs?orgIds=1174&ac=19299" - ], - "cnnnewsource":[ - "http://cnnnewsource.com/", - "http://cnnnewsource.com/", - "http://cnnnewsource.com/", - "http://cnnnewsource.com/" - ], - "nyt":[ - "http://nyt.qualtrics.com/jfe/form/SV_eFJmKj9v0krSE0l" - ], - "nytco":[ - "https://www.nytco.com/", - "https://www.nytco.com/careers/" - ], - "nytmediakit":[ - "https://nytmediakit.com/" - ], - "tbrandstudio":[ - "http://www.tbrandstudio.com/" - ], - "warnermediaprivacy":[ - "https://www.warnermediaprivacy.com/affiliates/", - "https://www.warnermediaprivacy.com/affiliates/", - "https://www.warnermediaprivacy.com/affiliates/", - "https://www.warnermediaprivacy.com/opt-out", - "https://www.warnermediaprivacy.com/affiliates/", - "https://www.warnermediaprivacy.com/affiliates/", - "https://www.warnermediaprivacy.com/", - "https://www.warnermediaprivacy.com/" - ], - "networkadvertising":[ - "https://www.networkadvertising.org/understanding-online-advertising/what-are-my-options" - ], - "optout":[ - "https://optout.aboutads.info/?c=2&lang=EN" - ], - "youradchoices":[ - "https://youradchoices.com/appchoices" - ], - "macromedia":[ - "https://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.html" - ], - "developers":[ - "https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage" - ], - "tools":[ - "https://tools.google.com/dlpage/gaoptout?hl=en" - ], - "nielsen":[ - "https://www.nielsen.com/us/en/legal/privacy-statement/digital-measurement/" - ], - "wnep":[ - "https://www.wnep.com/article/news/local/schuylkill-county/handing-out-lunches-to-veterans-at-yuengling-brewery/523-1261ceee-5105-4141-b94d-33231694ca53", - "https://www.wnep.com/article/news/local/schuylkill-county/handing-out-lunches-to-veterans-at-yuengling-brewery/523-1261ceee-5105-4141-b94d-33231694ca53" - ], - "wsmv":[ - "https://www.wsmv.com/news/bulgers_beat/life-long-sports-fan-nearly-loses-his-holy-grail/article_a37ed418-2476-11eb-ad3f-8769bf17bcd5.html?block_id=998329" - ], - "fox43":[ - "https://www.fox43.com/article/news/local/cumberland-county/operation-troop-support-to-send-troops-holiday-care-packages/521-7ea70a01-e3c0-4c68-aa9f-3125c269d120" - ], - "scnow":[ - "https://scnow.com/news/local/florence-celebrates-veterans-while-the-sun-shines/article_c0506f52-2386-11eb-a53c-5b46ab9f8d3c.html#tracking-source=home-top-story-1" - ], - "greensboro":[ - "https://greensboro.com/community/rockingham_now/news/county-will-be-ready-when-a-vaccine-arrives-but-cases-mount/article_8ec4ed4e-235b-11eb-9df2-27ee7587a6a8.html#tracking-source=home-top-story-1" - ], - "wlos":[ - "https://wlos.com/news/local/mountain-company-to-play-significant-role-in-covid-19-vaccine-distribution" - ], - "cbs46":[ - "https://www.cbs46.com/news/kemp-announces-ga-1-state-for-business-for-8th-straight-year/article_79d397c4-24ea-11eb-afae-d735dd525fa7.html?block_id=994626" - ], - "philadelphia":[ - "https://philadelphia.cbslocal.com/2020/11/12/9-month-pregnant-woman-delivers-baby-following-emergency-c-section-after-shot-in-kensington/" - ], - "auburnpub":[ - "https://auburnpub.com/lifestyles/fresh-inside-and-out-auburn-bakery-to-rebuild-with-drive-thru-more/article_afd70f12-7646-535b-8500-a679ed154466.html#tracking-source=home-top-story" - ], - "wfsb":[ - "https://www.wfsb.com/news/serious-crash-shuts-down-wethersfield-road-brings-down-power-lines/article_9b942064-2507-11eb-bd98-679cb23a0dff.html?block_id=994091" - ], - "wqad":[ - "https://www.wqad.com/article/news/politics/elections/partisan-plots-the-history-of-an-illinois-small-towns-rival-party-cemeteries/526-db30958f-0bb6-4238-bdcd-e6fa520c7dc5", - "https://www.wqad.com/article/news/politics/elections/partisan-plots-the-history-of-an-illinois-small-towns-rival-party-cemeteries/526-db30958f-0bb6-4238-bdcd-e6fa520c7dc5" - ], - "wdsu":[ - "https://www.wdsu.com/article/family-follows-clues-from-mysterious-metairie-death-uncovers-cross-country-crime-spree/34642488" - ], - "wapt":[ - "https://www.wapt.com/article/air-force-veteran-celebrates-birthdays-with-daring-adventures/34645774" - ], - "wowt":[ - "https://www.wowt.com/2020/11/12/therapists-turn-to-creativity-juggling-covid-seasonal-affective-disorder/" - ], - "kshb":[ - "https://www.kshb.com/news/local-news/bikewalkkc-raises-awareness-of-traffic-violence" - ], - "minnesota":[ - "https://minnesota.cbslocal.com/2020/11/11/teachers-substitutes-and-bus-drivers-staff-shortages-hit-schools-amid-covid-surge/" - ], - "kmov":[ - "https://www.kmov.com/news/air-force-band-performs-digital-concert-to-honor-veterans/article_d59abfce-2468-11eb-a4b8-73e945bfc46e.html?block_id=991244" - ], - "5newsonline":[ - "https://www.5newsonline.com/article/news/health/coronavirus/arkansas-schools-run-low-masks-kids-forget/91-5c3ca4fd-ee6f-425c-9934-6099371e698b" - ], - "stltoday":[ - "https://www.stltoday.com/news/local/metro/dentists-dental-students-give-st-louis-area-veterans-a-reason-to-smile/article_95a50fc5-4509-56f4-86eb-23df3f5631af.html" - ], - "kare11":[ - "https://www.kare11.com/article/news/health/coronavirus/pregnant-teacher-battling-covid-19-asks-parents-to-be-patient-during-distance-learning/89-c2582cbc-7bed-4976-9a80-317d5f870c54" - ], - "kptv":[ - "https://www.kptv.com/news/downtown-portland-businesses-boarded-up-for-election-day-begin-clean-up-others-hesitate/article_b3b960b4-24a3-11eb-9197-4b188940088c.html?block_id=994645", - "https://www.kptv.com/news/downtown-portland-businesses-boarded-up-for-election-day-begin-clean-up-others-hesitate/article_b3b960b4-24a3-11eb-9197-4b188940088c.html?block_id=994645" - ], - "ksbw":[ - "https://www.ksbw.com/article/bigfoot-found-stolen-bigfoot-museum-statue-captured-by-scotts-valley-police-department/34657534" - ], - "tucson":[ - "https://tucson.com/news/local/arizonans-with-developmental-disabilities-were-promised-help-instead-they-face-delays-and-denials/article_21612a00-1d2b-11eb-be44-6f586b6e7df4.html#tracking-source=home-top-story-1" - ], - "koat":[ - "https://www.koat.com/article/navajo-nation-hosts-virtual-event-to-honor-veterans/34648409" - ], - "ravallirepublic":[ - "https://ravallirepublic.com/news/state-and-regional/article_be71e335-47eb-547d-88c7-0207efdd10d5.html#tracking-source=home-the-latest" - ], - "missoulian":[ - "https://missoulian.com/news/local/missoula-police-chief-to-address-fatal-shooting/article_720345eb-b314-5f14-b6a1-023738d2a679.html#tracking-source=home-top-story-1" - ], - "eastidahonews":[ - "https://www.eastidahonews.com/2020/11/firefighters-extinguish-fire-at-ririe-potato-plant/" - ], - "lebanon-express":[ - "https://lebanon-express.com/news/veterans-day-reverse-parade-a-joyful-celebration-of-heroes/article_4fa9c220-0599-578c-8ab0-c9d55dbf636f.html#tracking-source=home-top-story" - ], - "ktnv":[ - "https://www.ktnv.com/news/clark-county-and-rtc-seek-public-input-on-development-options-for-maryland-parkway-corridor" - ], - "ksl":[ - "https://www.ksl.com/article/50046811/traction-laws-reinstated-in-cottonwood-canyons-us-highway-8991-reopens-in-sardine-canyon" - ], - "lendingtree":[ - "https://www.lendingtree.com/?esourceid=6163146&cchannel=bd&siteid=header-homepage&csource=cnn" - ], - "ck":[ - "https://ck.lendingtree.com/?a=343&c=2546&p=r&s1=sections&mtaid=A944E&ctype=sectionfronts&cmethod=refiform&rcode=10005&ccreative=refiratesat239calculate_cabinbarn&placement_name=sectionfronts&ad_headline=refiratesat239calculate&ad_image_name=cabinbarn", - "https://ck.lendingtree.com/?a=343&c=2546&p=r&s1=sections&mtaid=A944E&ctype=sectionfronts&cmethod=refiform&rcode=10005&ccreative=refiratesat239calculate_cabinbarn&placement_name=sectionfronts&ad_headline=refiratesat239calculate&ad_image_name=cabinbarn", - "https://ck.lendingtree.com/?a=343&c=2546&p=r&s1=sections&mtaid=A944E&ctype=sectionfronts&cmethod=refiform&rcode=10005&ccreative=skippaymentrefi_cabinbarn&placement_name=sectionfronts&ad_headline=skippaymentrefi&ad_image_name=cabinbarn", - "https://ck.lendingtree.com/?a=343&c=2514&p=r&s1=sections&mtaid=5A979&ctype=sectionfronts&cmethod=cashoutrefiform&rcode=10005&ccreative=savethoucashout_cabinbarn&placement_name=sectionfronts&ad_headline=savethoucashout&ad_image_name=cabinbarn" - ], - "comparecards":[ - "https://www.comparecards.com/guide/freedom-flex?esourceid=6446906&utm_source=cnn&utm_medium=native&pla=cnn.com&bdst=rv&acqs=prospecting&utm_campaign=sectionfront&grp=flex-adv&tar=sectionfront&utm_content=spend+500+get+200+with+one+of+these+cards&adt=cardandcash&mtaid=8631C&ad_group_name=flex-adv&ad_position=1&campaign_name=sectionfront_flex-adv&placement_name=sectionfront&ad_headline=spend+500+get+200+with+one+of+these+cards&ad_image_name=cardandcash", - "https://www.comparecards.com/guide/freedom-flex?esourceid=6446906&utm_source=cnn&utm_medium=native&pla=cnn.com&bdst=rv&acqs=prospecting&utm_campaign=sectionfront&grp=flex-adv&tar=sectionfront&utm_content=spend+500+get+200+with+this+card&adt=brunetteredcardbluecc&mtaid=8631C&ad_group_name=flex-adv&ad_position=1&campaign_name=sectionfront_flex-adv&placement_name=sectionfront&ad_headline=spend+500+get+200+with+this+card&ad_image_name=brunetteredcardbluecc", - "https://www.comparecards.com/guide/freedom-flex?esourceid=6446906&utm_source=cnn&utm_medium=native&pla=cnn.com&bdst=rv&acqs=prospecting&utm_campaign=sectionfront&grp=flex-adv&tar=sectionfront&utm_content=spend+500+get+200+with+this+card&adt=brunetteredcardbluecc&mtaid=8631C&ad_group_name=flex-adv&ad_position=1&campaign_name=sectionfront_flex-adv&placement_name=sectionfront&ad_headline=spend+500+get+200+with+this+card&ad_image_name=brunetteredcardbluecc", - "https://www.comparecards.com/guide/pay-0-interest-2022?esourceid=6422486&utm_source=cnn&utm_medium=native&pla=cnn.com&bdst=rv&acqs=prospecting&utm_campaign=sectionfront&grp=pay-0-2022-hp&tar=sectionfront&utm_content=4+cards+charging+0+interest+until+2022&adt=brunetteredcardbluecc&mtaid=8631C&ad_group_name=pay-0-2022-hp&ad_position=2&campaign_name=sectionfront_pay-0-2022-hp&placement_name=sectionfront&ad_headline=4+cards+charging+0+interest+until+2022&ad_image_name=brunetteredcardbluecc", - "https://www.comparecards.com/guide/best-credit-card-offers?esourceid=6443306&utm_source=cnn&utm_medium=native&pla=cnn.com&bdst=rv&acqs=prospecting&utm_campaign=sectionfront&grp=cat-best&tar=sectionfront&utm_content=results+are+in+best+credit+cards+of+2020&adt=brunetteredcardbluecc&mtaid=8631C&ad_group_name=cat-best&ad_position=3&campaign_name=sectionfront_cat-best&placement_name=sectionfront&ad_headline=results+are+in+best+credit+cards+of+2020&ad_image_name=brunetteredcardbluecc" - ], - "fool":[ - "http://www.fool.com/?utm_source=cnn&utm_medium=cnndirect", - "https://www.fool.com/mms/mark/sa-earlybird?utm_source=cnn&utm_medium=contentmarketing&utm_campaign=sar-earlybird-oct2020&paid=8969&waid=8969&aid=8969&psource=esaccnwdg0210097&source=esaccnwdg0210097&wsource=esaccnwdg0210097", - "https://www.fool.com/mms/mark/sa-earlybird?utm_source=cnn&utm_medium=contentmarketing&utm_campaign=sar-earlybird-oct2020&paid=8969&waid=8969&aid=8969&psource=esaccnwdg0210097&source=esaccnwdg0210097&wsource=esaccnwdg0210097", - "https://www.fool.com/mms/mark/a-sa-5g-sc?utm_source=cnn&utm_medium=contentmarketing&utm_campaign=5gsa-supercycle&paid=9467&waid=9467&aid=9467&psource=esaccnwdg0210096&source=esaccnwdg0210096&wsource=esaccnwdg0210096", - "https://www.fool.com/mms/mark/e-sa-5-stocks-under-50-henry?utm_source=cnn&utm_medium=contentmarketing&utm_campaign=5stocksunder50-henry-july2020&paid=9394&waid=9394&aid=9394&psource=esaccnwdg0210094&source=esaccnwdg0210094&wsource=esaccnwdg0210094" - ] -} \ No newline at end of file +{"ajplus":["http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/","http://ajplus.net/"],"instagram":["https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en","https://www.instagram.com/aljazeeraenglish/?hl=en"],"youtube":["https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish","https://www.youtube.com/aljazeeraenglish"],"facebook":["http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2F9uver","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Frmwd9","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fbec2c","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fcz9x4","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2F26p3u","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fnkb3n","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fugmt4","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fc6hu7","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fc4z2b","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fgx4f8","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fujwvl","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2F2e4uw","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fdq34z","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fr54p3","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2F67us3","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Ff8wlw","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2F9nx4l","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Ftnnzx","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fxkwx2","http://www.facebook.com/aljazeera","https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Faje.io%2Fy67x3","http://www.facebook.com/aljazeera"],"adlightning":["https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/","https://www.adlightning.com/"],"yahoo":["https://yahoo.com/"],"pfe-pfizercom-d8-prod":["https://pfe-pfizercom-d8-prod.s3.amazonaws.com/2020-12/COVID%2019%20Vaccine%20Production%20Distribution%20Statement%20121720.pdf?4wHzYChTc372dnYNHNosah.vSQ7BDMw_"]} \ No newline at end of file diff --git a/newCrawler/link_title_list.json b/newCrawler/link_title_list.json index a5910ee..eb33d91 100644 --- a/newCrawler/link_title_list.json +++ b/newCrawler/link_title_list.json @@ -1,7465 +1 @@ -{ - "https://www.aljazeera.com/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

By using this site, you agree to the Privacy Policy and Terms of Service.

", - "article_text":"By using this site, you agree to the Privacy Policy and Terms of Service.", - "article_len":73, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/ethiopia-pm-claims-major-advance-in-tigray-region" - }, - { - "title":"Explainer: What is happening in Ethiopia’s Tigray region?", - "url":"https://www.aljazeera.com/news/2020/11/6/explainer-what-is-happening-in-ethiopias-tigray-region" - }, - { - "title":"camera", - "url":"https://www.aljazeera.com/gallery/2020/11/10/in-pictures-ethiopias-tigray-conflict-risks-spreading-south/" - }, - { - "title":"play", - "url":"https://www.aljazeera.com/program/witness/2020/11/11/finding-selam-a-gateway-into-ethiopias-complicated-history/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/un-expert-calls-for-immediate-lifting-of-sanctions-against-qatar" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/at-least-74-migrants-dead-in-devastating-shipwreck-off-libya" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/a-big-bank-says-tax-remote-workers-to-rebuild-economy-from-covid" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/turkey-warns-armenia-against-breaking-nagorno-karabakh-truce" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/for-biden-tough-china-trade-tech-questions-may-have-to-wait" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/canada-announces-pathway-residency-hong-kong-youth" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/animal-rights-groups-call-for-mink-farm-shutdown-amid-covid-fears" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/baby-six-months-dies-hours-after-being-saved-from-mediterranean" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"Trump blocks US investment in firms linked to Chinese military", - "url":"https://www.aljazeera.com/news/2020/11/12/trump-blocks-us-investment-in-firms-linked-to-chinese-military" - }, - { - "title":"Keep dancing: US judge extends TikTok deadline amid Trump battle", - "url":"https://www.aljazeera.com/economy/2020/11/12/keep-dancing-us-issues-stay-in-trump-tiktok-battle" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/why-is-trumps-lawyer-fighting-against-womens-rights-in-poland/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/donald-trump-is-the-truest-face-of-the-united-states/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/how-social-media-regulations-are-silencing-dissent-in-africa/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/11/on-freedom-of-speech-and-islamist-separatism/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/11/nigerian-protests-a-once-in-a-generation-moment-for-change/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/10/saudi-arabias-image-building-efforts-suffered-another-set-back/" - }, - { - "title":"Former Amazon.com employee sues over COVID worker safety issues", - "url":"https://www.aljazeera.com/economy/2020/11/12/former-amazon-com-employee-sues-over-covid-worker-safety-issues" - }, - { - "title":"More world leaders than US Republicans congratulate Biden", - "url":"https://www.aljazeera.com/news/2020/11/12/more-world-leaders-congratulate-biden-than-us-republicans" - }, - { - "title":"A ‘tool to terrorise’: Bahrain’s use of citizenship revocation", - "url":"https://www.aljazeera.com/news/2020/11/12/bahrain-activists-condemn-citizenship-revocation-against-dissent" - }, - { - "title":"Chinese President Xi personally halted $37bn Ant IPO: Report", - "url":"https://www.aljazeera.com/economy/2020/11/12/chinese-president-xi-personally-halted-ant-group-ipo-report" - }, - { - "title":"Women, opposition lose seats in Jordan election", - "url":"https://www.aljazeera.com/news/2020/11/12/women-lose-seats-in-jordan-vote" - }, - { - "title":"Democratic losses in the House create a dilemma for Nancy Pelosi", - "url":"https://www.aljazeera.com/news/2020/11/11/democrats-losses-in-the-house-create-a-dilemma-for-pelosi" - }, - { - "title":"Biden denied key US intel briefings as Trump delays transition", - "url":"https://www.aljazeera.com/news/2020/11/12/biden-denied-key-us-intel-briefings-as-trump-delays-transition" - }, - { - "title":"Germany: Robbers drill into vault, steal 6.5 million euros", - "url":"https://www.aljazeera.com/news/2020/11/11/germany-robbers-drill-into-vault-steal-6-5m-euros" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Go back to preferences", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.cnn.com/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

By using this site, you agree to the Privacy Policy and Terms of Service.

", - "article_text":"By using this site, you agree to the Privacy Policy and Terms of Service.", - "article_len":73, - "domain":"https://www.cnn.com/", - "found_urls":[ - { - "title":"Privacy Policy", - "url":"https://www.cnn.com/privacy" - }, - { - "title":"Terms of Service", - "url":"https://www.cnn.com/terms" - }, - { - "title":"visit the US section", - "url":"https://www.cnn.com/us" - }, - { - "title":"visit the World section", - "url":"https://www.cnn.com/world" - }, - { - "title":"visit the Politics section", - "url":"https://www.cnn.com/politics" - }, - { - "title":"visit the Business section", - "url":"https://www.cnn.com/business" - }, - { - "title":"visit the Opinion section", - "url":"https://www.cnn.com/opinions" - }, - { - "title":"visit the Health section", - "url":"https://www.cnn.com/health" - }, - { - "title":"visit the Entertainment section", - "url":"https://www.cnn.com/entertainment" - }, - { - "title":"visit the Style section", - "url":"https://www.cnn.com/style" - }, - { - "title":"visit the Travel section", - "url":"https://www.cnn.com/travel" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/videos" - }, - { - "title":"Live TV", - "url":"http://cnn.it/go2" - }, - { - "title":"U.S.", - "url":"https://us.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"International", - "url":"https://edition.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Arabic", - "url":"https://arabic.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Español", - "url":"https://cnnespanol.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"visit the Crime + Justice section", - "url":"https://www.cnn.com/specials/us/crime-and-justice" - }, - { - "title":"visit the Energy + Environment section", - "url":"https://www.cnn.com/specials/us/energy-and-environment" - }, - { - "title":"visit the Extreme Weather section", - "url":"https://www.cnn.com/specials/us/extreme-weather" - }, - { - "title":"visit the Space + Science section", - "url":"https://www.cnn.com/specials/space-science" - }, - { - "title":"visit the Africa section", - "url":"https://www.cnn.com/africa" - }, - { - "title":"visit the Americas section", - "url":"https://www.cnn.com/americas" - }, - { - "title":"visit the Asia section", - "url":"https://www.cnn.com/asia" - }, - { - "title":"visit the Australia section", - "url":"https://www.cnn.com/australia" - }, - { - "title":"visit the China section", - "url":"https://www.cnn.com/china" - }, - { - "title":"visit the Europe section", - "url":"https://www.cnn.com/europe" - }, - { - "title":"visit the India section", - "url":"https://www.cnn.com/india" - }, - { - "title":"visit the Middle East section", - "url":"https://www.cnn.com/middle-east" - }, - { - "title":"visit the United Kingdom section", - "url":"https://www.cnn.com/uk" - }, - { - "title":"visit the 2020 Election section", - "url":"https://www.cnn.com/election/2020" - }, - { - "title":"visit the Facts First section", - "url":"https://www.cnn.com/specials/politics/fact-check-politics" - }, - { - "title":"visit the Election 101 section", - "url":"https://www.cnn.com/specials/politics/elections-101" - }, - { - "title":"visit the Markets section", - "url":"https://money.cnn.com/data/markets/" - }, - { - "title":"visit the Tech section", - "url":"https://www.cnn.com/business/tech" - }, - { - "title":"visit the Media section", - "url":"https://www.cnn.com/business/media" - }, - { - "title":"visit the Success section", - "url":"https://www.cnn.com/business/success" - }, - { - "title":"visit the Perspectives section", - "url":"https://www.cnn.com/business/perspectives" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/business/videos" - }, - { - "title":"visit the Political Op-Eds section", - "url":"https://www.cnn.com/specials/opinion/opinion-politics" - }, - { - "title":"visit the Social Commentary section", - "url":"https://www.cnn.com/specials/opinion/opinion-social-issues" - }, - { - "title":"visit the Food section", - "url":"https://www.cnn.com/specials/health/food-diet" - }, - { - "title":"visit the Fitness section", - "url":"https://www.cnn.com/specials/health/fitness-excercise" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/health/wellness" - }, - { - "title":"visit the Parenting section", - "url":"https://www.cnn.com/specials/health/parenting" - }, - { - "title":"visit the Vital Signs section", - "url":"https://www.cnn.com/specials/health/vital-signs" - }, - { - "title":"visit the Stars section", - "url":"https://www.cnn.com/entertainment/celebrities" - }, - { - "title":"visit the Screen section", - "url":"https://www.cnn.com/entertainment/movies" - }, - { - "title":"visit the Binge section", - "url":"https://www.cnn.com/entertainment/tv-shows" - }, - { - "title":"visit the Culture section", - "url":"https://www.cnn.com/entertainment/culture" - }, - { - "title":"visit the Innovate section", - "url":"https://www.cnn.com/specials/tech/innovate" - }, - { - "title":"visit the Gadget section", - "url":"https://www.cnn.com/specials/tech/gadget" - }, - { - "title":"visit the Foreseeable Future section", - "url":"https://www.cnn.com/specials/tech/foreseeable-future" - }, - { - "title":"visit the Mission: Ahead section", - "url":"https://www.cnn.com/specials/tech/mission-ahead" - }, - { - "title":"visit the Upstarts section", - "url":"https://www.cnn.com/specials/tech/upstarts" - }, - { - "title":"visit the Work Transformed section", - "url":"https://www.cnn.com/specials/tech/work-transformed" - }, - { - "title":"visit the Innovative Cities section", - "url":"https://www.cnn.com/specials/tech/innovative-cities" - }, - { - "title":"visit the Arts section", - "url":"https://www.cnn.com/style/arts" - }, - { - "title":"visit the Design section", - "url":"https://www.cnn.com/style/design" - }, - { - "title":"visit the Fashion section", - "url":"https://www.cnn.com/style/fashion" - }, - { - "title":"visit the Architecture section", - "url":"https://www.cnn.com/style/architecture" - }, - { - "title":"visit the Luxury section", - "url":"https://www.cnn.com/style/luxury" - }, - { - "title":"visit the Beauty section", - "url":"https://www.cnn.com/style/beauty" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/style/videos" - }, - { - "title":"visit the Destinations section", - "url":"https://www.cnn.com/travel/destinations" - }, - { - "title":"visit the Food and Drink section", - "url":"https://www.cnn.com/travel/food-and-drink" - }, - { - "title":"visit the Stay section", - "url":"https://www.cnn.com/travel/stay" - }, - { - "title":"visit the News section", - "url":"https://www.cnn.com/travel/news" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/travel/videos" - }, - { - "title":"visit the Olympics section", - "url":"https://www.cnn.com/specials/sport/winter-olympics-2018" - }, - { - "title":"visit the Live TV section", - "url":"https://cnn.it/go2" - }, - { - "title":"visit the Digital Studios section", - "url":"https://www.cnn.com/specials/digital-studios" - }, - { - "title":"visit the CNN Films section", - "url":"https://www.cnn.com/specials/videos/digital-shorts" - }, - { - "title":"visit the HLN section", - "url":"https://www.cnn.com/specials/videos/hln" - }, - { - "title":"visit the TV Schedule section", - "url":"https://www.cnn.com/tv/schedule/cnn" - }, - { - "title":"visit the TV Shows A-Z section", - "url":"https://www.cnn.com/specials/tv/all-shows" - }, - { - "title":"visit the CNNVR section", - "url":"https://www.cnn.com/vr" - }, - { - "title":"visit the Coupons section", - "url":"https://coupons.cnn.com/" - }, - { - "title":"visit the CNN Underscored section", - "url":"https://www.cnn.com/cnn-underscored/" - }, - { - "title":"visit the Explore section", - "url":"https://www.cnn.com/specials/cnn-underscored/explore/" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/cnn-underscored/wellness/" - }, - { - "title":"visit the Gadgets section", - "url":"https://www.cnn.com/specials/cnn-underscored/gadgets/" - }, - { - "title":"visit the Lifestyle section", - "url":"https://www.cnn.com/specials/cnn-underscored/lifestyle/" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/?utm_source=cnn.com&utm_medium=referral&utm_campaign=navbar" - }, - { - "title":"visit the More section", - "url":"https://www.cnn.com/more" - }, - { - "title":"visit the Photos section", - "url":"https://www.cnn.com/specials/photos" - }, - { - "title":"visit the Longform section", - "url":"https://www.cnn.com/specials/cnn-longform" - }, - { - "title":"visit the Investigations section", - "url":"https://www.cnn.com/specials/cnn-investigates" - }, - { - "title":"visit the CNN Profiles section", - "url":"https://www.cnn.com/specials/profiles" - }, - { - "title":"visit the CNN Leadership section", - "url":"https://www.cnn.com/specials/more/cnn-leadership" - }, - { - "title":"visit the CNN Newsletters section", - "url":"https://www.cnn.com/email/subscription" - }, - { - "title":"visit the Weather section", - "url":"https://www.cnn.com/weather" - }, - { - "title":"visit the Climate section", - "url":"https://www.cnn.com/specials/world/cnn-climate" - }, - { - "title":"visit the Storm Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/gonzalo-storm-path-tracker/index.html" - }, - { - "title":"visit the Wildfire Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/wildfire-and-air-quality-tracker/" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/specials/weather/weather-video" - }, - { - "title":"", - "url":"https://twitter.com/CNN" - }, - { - "title":"TRENDING: Unemployment", - "url":"https://www.cnn.com/2020/11/12/economy/unemployment-benefits-coronavirus/index.html" - }, - { - "title":"Post-election audits", - "url":"https://www.cnn.com/2020/11/12/politics/arizona-audits-no-fraud/index.html" - }, - { - "title":"Alex Trebek's wife", - "url":"https://www.cnn.com/2020/11/12/entertainment/alex-trebek-jean-posting/index.html" - }, - { - "title":"The Masters", - "url":"https://www.cnn.com/2020/11/12/golf/golf-masters-woods-casey-dechambeau-spt-intl/index.html" - }, - { - "title":"Ghana's former president", - "url":"https://www.cnn.com/2020/11/12/africa/jerry-rawlings-ghana-death-intl/index.html" - }, - { - "title":"Rapper 'Mo3' killed", - "url":"https://www.cnn.com/2020/11/12/us/melvin-noble-mo3-homicide-trnd/index.html" - }, - { - "title":"PS5", - "url":"https://www.cnn.com/2020/11/12/business/ps5-walmart-best-buy/index.html" - }, - { - "title":"5 charts show the scale of the fall Covid-19 surge", - "url":"https://www.cnn.com/2020/11/12/health/coronavirus-fall-surge-statistics/index.html" - }, - { - "title":"breaking California becomes second US state to top 1 million Covid-19 cases, after Texas", - "url":"https://www.cnn.com/2020/11/12/us/california-one-million-covid-cases/index.html" - }, - { - "title":"See Fed chairman's warning about the economy", - "url":"https://www.cnn.com/videos/business/2020/11/12/jerome-powell-federal-reserve-covid-19-vpx.cnn" - }, - { - "title":"CDC projects up to 282,000 total Covid-19 deaths in the US by December, new forecast shows", - "url":"https://www.cnn.com/2020/11/12/health/us-coronavirus-thursday/index.html" - }, - { - "title":"Live updates States shatter Covid-19 records as US reports more than 10.4 million cases and 240,000 deaths", - "url":"https://www.cnn.com/world/live-news/coronavirus-pandemic-11-12-20-intl/h_4f0e7093337d282647f59eec8f2de32b" - }, - { - "title":"See how CNN reporter had to quarantine in Japan upon arrival", - "url":"https://www.cnn.com/videos/travel/2020/11/12/covid-19-coronavirus-japan-travel-quarantine-wang-intl-ldn-vpx.cnn" - }, - { - "title":"Chicago issues stay-at-home advisory and tells residents to cancel traditional Thanksgiving celebrations", - "url":"https://www.cnn.com/2020/11/12/us/chicago-thanksgiving-stay-home-covid-trnd/index.html" - }, - { - "title":"THE ROAD TO 270279217270Updated 6:58 p.m. ET, Nov. 12", - "url":"https://www.cnn.com/election/2020/results/president?iid=politics_election_bop" - }, - { - "title":"CNN PRESIDENTIAL PROJECTIONS*/}Updated 6:58 p.m. ET, Nov. 12BIDENWinFlipTRUMPWinFlip", - "url":"https://www.cnn.com/election/2020/results/president?iid=politics_election_national_map" - }, - { - "title":"Trump's eldest children split on his path forward", - "url":"https://www.cnn.com/2020/11/12/politics/trump-ivanka-jared-kushner-donald-jr-eric/index.html" - }, - { - "title":"'Dejected' Trump waffles over waging baseless election fight", - "url":"https://www.cnn.com/2020/11/12/politics/trump-election-future-white-house/index.html" - }, - { - "title":" Don Lemon calls out Trump children's 'bizarre' tweets ", - "url":"https://www.cnn.com/videos/politics/2020/11/12/trump-children-eric-ivanka-don-jr-spread-election-misinformation-ctn-vpx.cnn" - }, - { - "title":"These Republicans are publicly recognizing Biden's legitimacy as President-elect", - "url":"https://www.cnn.com/2020/11/12/politics/republicans-recognizing-biden-legitimacy-president-elect/index.html" - }, - { - "title":"Trump bans US investments that would aid China's military", - "url":"http://www.cnn.com/2020/11/12/investing/trump-bans-us-investments-china-military/index.html" - }, - { - "title":"Why Trump is bashing Fox on Twitter", - "url":"https://www.cnn.com/videos/politics/2020/11/12/fox-news-trump-relationship-stelter-nr-vpx.cnn" - }, - { - "title":"The economy as we knew it might be over, Fed Chairman says", - "url":"http://www.cnn.com/2020/11/12/economy/economy-after-covid-powell/index.html" - }, - { - "title":"Here's a loophole on how Trump may be able to pardon himself", - "url":"https://www.cnn.com/videos/politics/2020/11/12/pardons-trump-himself-vpx.cnn" - }, - { - "title":"Two top Homeland Security officials forced to resign by White House", - "url":"https://www.cnn.com/2020/11/12/politics/dhs-officials-forced-resign-white-house/index.html" - }, - { - "title":"GOP sees Trump's election challenges as likely to fail and urges White House to take steps towards transition ", - "url":"https://www.cnn.com/2020/11/12/politics/gop-strategy-trump-transition/index.html" - }, - { - "title":"Ana Navarro calls out GOP senators: They know Trump lost", - "url":"https://www.cnn.com/videos/politics/2020/11/12/ana-navarro-gop-senators-know-biden-is-president-elect-sot-nr-vpx.cnn" - }, - { - "title":"Live updates Judy Shelton expected to be confirmed to the Federal Reserve next week ", - "url":"https://www.cnn.com/politics/live-news/biden-trump-us-election-news-11-12-20/h_be6a00cdaee71e33cb50f7c7737f6b1e" - }, - { - "title":"Top US general stands firm with Pentagon in turmoil", - "url":"https://www.cnn.com/2020/11/12/politics/mark-milley-pentagon-turmoil/index.html" - }, - { - "title":"GA secretary of state in quarantine as state prepares full by-hand count of ballots", - "url":"https://www.cnn.com/2020/11/12/politics/georgia-secretary-of-state-coronavirus-brad-raffensperger/index.html" - }, - { - "title":"Opinion: Trump's Defense Department purge threatens our security", - "url":"https://www.cnn.com/2020/11/12/opinions/donald-trump-defense-department-transition-taylor/index.html" - }, - { - "title":"Track Covid-19 cases", - "url":"https://www.cnn.com/interactive/2020/health/coronavirus-us-maps-and-cases/" - }, - { - "title":"When Moderna expects to know if vaccine works", - "url":"https://www.cnn.com/2020/11/11/health/moderna-vaccine-november-results/index.html" - }, - { - "title":"Choosing a face mask", - "url":"https://www.cnn.com/2020/11/11/health/cdc-face-mask-guidelines-wellness/index.html" - }, - { - "title":"Sinéad O'Connor to enter a year-long treatment program for trauma and addiction", - "url":"https://www.cnn.com/2020/11/12/entertainment/sinad-oconnor-treatment-program-trnd/index.html" - }, - { - "title":"Bad news for home buyers: Prices are going up", - "url":"https://www.cnn.com/2020/11/12/success/home-prices-rising/index.html" - }, - { - "title":"'Bachelor in Paradise' contestant is pregnant", - "url":"https://www.cnn.com/videos/entertainment/2020/11/12/krystal-nielson-bachelor-in-paradise-pregnant-orig-jk.cnn" - }, - { - "title":"Maine wedding outbreak offers a cautionary Covid-19 tale for the holidays", - "url":"https://www.cnn.com/2020/11/12/health/maine-wedding-holidays-covid/index.html" - }, - { - "title":"See what daughter did after her dad was hit by an 8,000-pound boulder during a hike", - "url":"https://www.cnn.com/videos/us/2020/11/11/pastor-survives-boulder-hike-pkg-vpx.ktvk-kpho" - }, - { - "title":"Snowplow driver finds 2 dead bodies on the side of a California highway near Yosemite", - "url":"https://www.cnn.com/2020/11/12/us/california-snowplow-driver-homicide-trnd/index.html" - }, - { - "title":"Watch Justin Bieber make his debut at the CMA Awards", - "url":"https://www.cnn.com/videos/entertainment/2020/11/12/country-music-cma-awards-2020-highlights-eg-orig.cnn" - }, - { - "title":"Judge dismisses Trump campaign's lawsuit against CNN", - "url":"https://www.cnn.com/2020/11/12/media/trump-campaign-cnn-lawsuit-dismissed/index.html" - }, - { - "title":"\"WASHINGTON,", - "url":"https://www.cnn.com/2020/11/12/politics/ron-klain-biden-chief-of-staff/index.html" - }, - { - "title":"What Trump's kids want him to do now", - "url":"https://www.cnn.com/videos/politics/2020/11/12/trump-children-post-election-nr-vpx.cnn" - }, - { - "title":"Opinion: The GOP is Trump's prisoner", - "url":"https://www.cnn.com/2020/11/12/opinions/republicans-are-trumps-prisoners-stanley/index.html" - }, - { - "title":"Anderson Cooper: That's an actual quote from a GOP official", - "url":"https://www.cnn.com/videos/politics/2020/11/12/trump-2020-election-anderson-cooper-kth-ac360-vpx.cnn" - }, - { - "title":"As Trump wrestles with defeat, pardons loom for allies and himself", - "url":"https://www.cnn.com/2020/11/12/politics/trump-pardons-loom-defeat/index.html" - }, - { - "title":"Senior Republican senators say Biden should have access to classified briefings ", - "url":"https://www.cnn.com/2020/11/12/politics/republican-senators-biden-classified-briefings/index.html" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/2020/11/12/entertainment/celebrity-moonlighting-plc/index.html" - }, - { - "title":"Emma Roberts becomes first pregnant Cosmopolitan cover star", - "url":"https://www.cnn.com/style/article/emma-roberts-cosmopolitan-cover-scli-intl/index.html" - }, - { - "title":"Kaley Cuoco talks filming 'Big Bang Theory' sex scenes with her ex", - "url":"https://www.cnn.com/2020/11/12/entertainment/kaley-cuoco-sex-scenes-trnd/index.html" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/2020/11/12/us/nyc-injured-swan-trnd/index.html" - }, - { - "title":"\"NASHVILLE,", - "url":"https://www.cnn.com/2020/11/12/entertainment/maren-morris-black-women-cma/index.html" - }, - { - "title":"\"A", - "url":"https://www.cnn.com/2020/11/12/asia/japanese-monster-wolf-robots-intl-hnk/index.html" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/us/2020/11/10/matterhorn-disney-backyard-roller-coaster-orig-jk.cnn" - }, - { - "title":"\"Melanie", - "url":"https://www.cnn.com/2020/11/12/success/small-businesses-coronavirus-new-stimulus/index.html" - }, - { - "title":"Gun sales expected to soar after Biden's win", - "url":"https://www.cnn.com/2020/11/12/business/gun-sales-joe-biden/index.html" - }, - { - "title":"First Rivian electric pickups will sell for $75,000", - "url":"https://www.cnn.com/2020/11/12/success/rivian-electric-pickup-suv-order/index.html" - }, - { - "title":"CNN Underscored", - "url":"http://www.cnn.com/cnn-underscored/?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/2020/11/10/cnn-underscored/oprahs-favorite-things-2020-holiday/index.html" - }, - { - "title":"36 gorgeous gift options at Nordstrom under $100", - "url":"https://www.cnn.com/2020/11/10/cnn-underscored/nordstrom-gifts-under-100/index.html?iid=CNNUnderscoredHPcontainer&iid_retailer=nordstrom" - }, - { - "title":"Traveling for Thanksgiving? Here's what to buy to stay safe", - "url":"https://www.cnn.com/2020/11/12/cnn-underscored/stay-safe-when-flying-covid-19/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"Why Apple's HomePod Mini is a no-brainer purchase", - "url":"https://www.cnn.com/2020/11/12/cnn-underscored/homepod-mini-review/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"Amazon's Holiday Dash is here and the deals are amazing", - "url":"https://www.cnn.com/2020/11/03/cnn-underscored/amazon-holiday-deals-gifts/index.html?iid=CNNUnderscoredHPcontainer&iid_retailer=amazon" - }, - { - "title":"37 gifts for even the pickiest men on your holiday list", - "url":"https://www.cnn.com/2020/10/23/cnn-underscored/gift-ideas-for-him/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"The best coffee products to upgrade your morning cup", - "url":"http://www.cnn.com/2020/11/11/cnn-underscored/best-coffee-brands-products/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"20 hats that'll keep you warm and stylish this winter", - "url":"https://www.cnn.com/2020/11/12/cnn-underscored/best-winter-hats-for-women/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"The MacBook Air -- with no fan -- is up for preorder", - "url":"https://www.cnn.com/2020/11/12/cnn-underscored/macbook-air-mac-mini-13-inch-macbook-pro-preorder/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"The best standing desks you'll actually want to use at home", - "url":"http://www.cnn.com/2020/11/06/cnn-underscored/best-standing-desks-2020/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"Get $10 off at Amazon when using eligible Chase credit cards", - "url":"https://www.cnn.com/2020/07/30/cnn-underscored/chase-amazon-discount-offer/index.html?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"The best coupons at Wayfair", - "url":"https://coupons.cnn.com/wayfair?iid=CNNUnderscoredHPcontainer" - }, - { - "title":"visit the Accessibility & CC section", - "url":"https://www.cnn.com/accessibility" - }, - { - "title":"visit the AdChoices section", - "url":"https://www.cnn.com/#" - }, - { - "title":"visit the About Us section", - "url":"https://www.cnn.com/about" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/" - }, - { - "title":"visit the Newsletters section", - "url":"https://www.cnn.com/newsletters" - }, - { - "title":"visit the Transcripts section", - "url":"https://www.cnn.com/transcripts" - }, - { - "title":"visit the License Footage section", - "url":"https://www.cnn.com/collection" - }, - { - "title":"visit the Sitemap section", - "url":"https://www.cnn.com/sitemap.html" - } - ] - }, - "https://www.nytimes.com/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.

These cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.


These cookies are used to enhance your experience and make advertising messages more relevant to you.


These cookies are used to enable sharing or following of content that you find interesting on our websites. These settings apply to third party social networking and other websites.


These cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.


These cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.


", - "article_text":"In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.Essential CookiesThese cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.AdvertisingThese cookies are used to enhance your experience and make advertising messages more relevant to you.Social MediaThese cookies are used to enable sharing or following of content that you find interesting on our websites. These settings apply to third party social networking and other websites.Performance and FunctionalityThese cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.AnalyticsThese cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.", - "article_len":1290, - "domain":"https://www.nytimes.com/", - "found_urls":[ - { - "title":"Continue reading the main story", - "url":"https://www.nytimes.com/#after-dfp-ad-top" - }, - { - "title":"Skip to content", - "url":"https://www.nytimes.com/#site-content" - }, - { - "title":"Skip to site index", - "url":"https://www.nytimes.com/#site-index" - }, - { - "title":"International", - "url":"https://www.nytimes.com/international/?action=click®ion=Editions&pgtype=Homepage" - }, - { - "title":"Canada", - "url":"https://www.nytimes.com/ca/?action=click®ion=Editions&pgtype=Homepage" - }, - { - "title":"Español", - "url":"https://www.nytimes.com/es/" - }, - { - "title":"中文", - "url":"https://cn.nytimes.com/" - }, - { - "title":"Subscribe Now", - "url":"https://www.nytimes.com/subscription?campaignId=9YU8R" - }, - { - "title":"Log in", - "url":"https://myaccount.nytimes.com/auth/login?response_type=cookie&client_id=vi&redirect_uri=https%3A%2F%2Fwww.nytimes.com%2Fsubscription%2Fmultiproduct%2Flp8KQUS.html%3FcampaignId%3D7JFJX%26EXIT_URI%3Dhttps%253A%252F%252Fwww.nytimes.com%252F&asset=masthead" - }, - { - "title":"Today’s Paper", - "url":"https://www.nytimes.com/section/todayspaper" - }, - { - "title":"Log In", - "url":"https://myaccount.nytimes.com/auth/login?response_type=cookie&client_id=vi" - }, - { - "title":"World", - "url":"https://www.nytimes.com/section/world" - }, - { - "title":"U.S.", - "url":"https://www.nytimes.com/section/us" - }, - { - "title":"Politics", - "url":"https://www.nytimes.com/section/politics" - }, - { - "title":"N.Y.", - "url":"https://www.nytimes.com/section/nyregion" - }, - { - "title":"Business", - "url":"https://www.nytimes.com/section/business" - }, - { - "title":"Opinion", - "url":"https://www.nytimes.com/section/opinion" - }, - { - "title":"Tech", - "url":"https://www.nytimes.com/section/technology" - }, - { - "title":"Science", - "url":"https://www.nytimes.com/section/science" - }, - { - "title":"Health", - "url":"https://www.nytimes.com/section/health" - }, - { - "title":"Sports", - "url":"https://www.nytimes.com/section/sports" - }, - { - "title":"Arts", - "url":"https://www.nytimes.com/section/arts" - }, - { - "title":"Books", - "url":"https://www.nytimes.com/section/books" - }, - { - "title":"Style", - "url":"https://www.nytimes.com/section/style" - }, - { - "title":"Food", - "url":"https://www.nytimes.com/section/food" - }, - { - "title":"Travel", - "url":"https://www.nytimes.com/section/travel" - }, - { - "title":"Magazine", - "url":"https://www.nytimes.com/section/magazine" - }, - { - "title":"T Magazine", - "url":"https://www.nytimes.com/section/t-magazine" - }, - { - "title":"Real Estate", - "url":"https://www.nytimes.com/section/realestate" - }, - { - "title":"Video", - "url":"https://www.nytimes.com/video" - }, - { - "title":"", - "url":"https://www.nytimes.com/2020/11/12/briefing/biden-transition-coronavirus-barack-obama.html?action=click&module=Briefings&pgtype=Homepage" - }, - { - "title":"", - "url":"https://www.nytimes.com/2020/11/12/podcasts/still-processing-fantasy-election-kamala-harris.html?action=click&module=Briefings&pgtype=Homepage" - }, - { - "title":"", - "url":"https://www.nytimes.com/2020/11/11/style/modern-love-podcast-no-more-secrets.html?action=click&module=Briefings&pgtype=Homepage" - }, - { - "title":"Virus and National Security Concerns Grow as Trump Rebuffs Transition", - "url":"https://www.nytimes.com/live/2020/11/12/us/joe-biden-trump?action=click&module=Spotlight&pgtype=Homepage" - }, - { - "title":"Virus", - "url":"https://www.nytimes.com/live/2020/11/12/world/covid-19-coronavirus-updates?type=styln-live-updates&label=virus&index=0&action=click&module=Spotlight&pgtype=Homepage" - }, - { - "title":"Fauci urges Americans to ‘double down’ on the basics as virus cases spike.", - "url":"https://www.nytimes.com/live/2020/11/12/world/covid-19-coronavirus-updates?type=styln-live-updates&label=virus&index=0&action=click&module=Spotlight&pgtype=Homepage#fauci-urges-americans-to-double-down-on-the-basics-as-virus-cases-spike" - }, - { - "title":"Corey Lewandowski, a Trump campaign adviser, has tested positive for the virus.", - "url":"https://www.nytimes.com/live/2020/11/12/world/covid-19-coronavirus-updates?type=styln-live-updates&label=virus&index=0&action=click&module=Spotlight&pgtype=Homepage#corey-lewandowski-a-trump-campaign-adviser-has-tested-positive-for-the-virus" - }, - { - "title":"Economy", - "url":"https://www.nytimes.com/live/2020/11/12/business/us-economy-coronavirus?type=styln-live-updates&label=economy&index=1&action=click&module=Spotlight&pgtype=Homepage" - }, - { - "title":"Democrats demand a big stimulus plan as Republicans insist on targeted relief.", - "url":"https://www.nytimes.com/live/2020/11/12/business/us-economy-coronavirus?type=styln-live-updates&label=economy&index=1&action=click&module=Spotlight&pgtype=Homepage#economic-stimulus-package" - }, - { - "title":"WeWork’s revenue fell in the third quarter as office workers stayed home.", - "url":"https://www.nytimes.com/live/2020/11/12/business/us-economy-coronavirus?type=styln-live-updates&label=economy&index=1&action=click&module=Spotlight&pgtype=Homepage#weworks-revenue-fell-in-the-third-quarter-as-office-workers-stayed-home" - }, - { - "title":"Disinformation Tracker", - "url":"https://www.nytimes.com/live/2020/11/12/technology/election-results-trump-biden?type=styln-live-updates&label=disinformation%20tracker&index=2&action=click&module=Spotlight&pgtype=Homepage" - }, - { - "title":"One America News spreads debunked elections claims.", - "url":"https://www.nytimes.com/live/2020/11/12/technology/election-results-trump-biden?action=click&module=Spotlight&pgtype=Homepage#one-america-news-spreads-debunked-elections-claims" - }, - { - "title":"No, the ‘Pallets Full of Ballots’ song is not true.", - "url":"https://www.nytimes.com/live/2020/11/12/technology/election-results-trump-biden?action=click&module=Spotlight&pgtype=Homepage#no-the-pallets-full-of-ballots-song-is-not-true" - }, - { - "title":"‘A Black Eye’: Why Political Polling Missed the Mark. Again.‘A Black Eye’: Why Political Polling Missed the Mark. Again.Pollsters are reviewing their latest failures. But is part of the problem the public’s overly high expectations of precision?", - "url":"https://www.nytimes.com/2020/11/12/us/politics/election-polls-trump-biden.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Here’s What Will Happen Between Election Day and Inauguration DayPresident Trump’s attempts to overturn the election results have made the steps that formalize the will of the people a matter of unusual importance.", - "url":"https://www.nytimes.com/article/biden-election-inauguration.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"No, There Is Not a Lot of Good Evidence Behind the Trump LawsuitsThe evidence the suits have offered has been limited and, according to several judges and experts, unlikely to affect the outcome of the race.", - "url":"https://www.nytimes.com/2020/11/12/technology/trump-lawsuits-election-results.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"How Pfizer Plans to Distribute Its Vaccine (It’s Complicated)How Pfizer Plans to Distribute Its Vaccine (It’s Complicated)Success will hinge on an untested network of governments, companies and health workers.", - "url":"https://www.nytimes.com/2020/11/12/business/pfizer-covid-vaccine-coronavirus.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Economic Risks Are High as Chances for Quick Stimulus NarrowThe Federal Reserve chief warned that a vaccine was still too uncertain to count on, and lawmakers signaled that more support was not imminent.", - "url":"https://www.nytimes.com/2020/11/12/business/economy/economy-covid-stimulus.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Experts are concerned a cold snap affecting many parts of California will further add to the rising coronavirus cases. Ryan Christopher Jones for The New York Times", - "url":"https://www.nytimes.com/2020/11/12/us/california-coronavirus-million-cases.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"‘Are We Getting Invaded?’ U.S. Boats Faced Russian Aggression Near Alaska‘Are We Getting Invaded?’ U.S. Boats Faced Russian Aggression Near AlaskaRussia has escalated its provocative encounters in the North Pacific, harassing boats in U.S. fishing waters and sending bombers toward Alaska’s shores.", - "url":"https://www.nytimes.com/2020/11/12/us/russia-military-alaska-arctic-fishing.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Review: Chimamanda Ngozi Adichie on Barack Obama’s ‘A Promised Land’Review: Chimamanda Ngozi Adichie on Barack Obama’s ‘A Promised Land’This first volume of the former president’s memoirs brims with warmth, humor and introspection.", - "url":"https://www.nytimes.com/2020/11/12/books/review/barack-obama-a-promised-land.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"The Great ReadAugusta’s Green Jackets: For Winners, Members (and Buyers) OnlyAugusta’s Green Jackets: For Winners, Members (and Buyers) OnlyThe club’s green jackets are not supposed to leave its grounds. A rare few have, becoming an expensive holy grail for memorabilia collectors.", - "url":"https://www.nytimes.com/2020/11/12/sports/golf/green-jacket-masters.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Keep It Sweet and SimpleKeep It Sweet and SimpleA small Thanksgiving meal can be just as festive as a big feast. We have lots of ideas for scaling down your holiday even if it’s just for two.", - "url":"https://www.nytimes.com/spotlight/at-home?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Start a new Thanksgiving tradition by stir-frying your potatoes.", - "url":"https://www.nytimes.com/2020/11/09/dining/stir-fry-thanksgiving-potatoes.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"While 2020 may not have earned them, that doesn’t mean you should forgo sparkling wines this year.", - "url":"https://www.nytimes.com/2020/11/12/dining/drinks/wine-school-sparkling-wines.html?action=click&module=Top%20Stories&pgtype=Homepage" - }, - { - "title":"Opinion", - "url":"https://www.nytimes.com/section/opinion?pagetype=Homepage&action=click&module=Opinion" - }, - { - "title":"Trey GraysonRepublicans Should Be Defending Georgia’s Election ProcessThe G.O.P. is trying to scapegoat the secretary of state for Trump’s apparent loss there.", - "url":"https://www.nytimes.com/2020/11/12/opinion/2020-election-raffensperger-georgia.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Jennifer SeniorStop Worrying About Biden’s Age. We Need His Wisdom.There’s a lot to be said right now for a president with loads of experience.", - "url":"https://www.nytimes.com/2020/11/12/opinion/biden-age-president.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"John Thompson Jr.Let’s Drop the Charade and Pay College Athletes", - "url":"https://www.nytimes.com/2020/11/12/opinion/ncaa-sports-paying-college-players.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Gail CollinsPick the Worst of Trump’s Worst", - "url":"https://www.nytimes.com/2020/11/11/opinion/trump-cabinet.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Nicholas KristofWhen Trump Vandalizes Our Country", - "url":"https://www.nytimes.com/2020/11/11/opinion/trump-election-fraud.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Spencer Bokat-Lindell5 Messages Voters Sent in the 2020 Election", - "url":"https://www.nytimes.com/2020/11/12/opinion/2020-election-voters.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Mark SchmittJoe Biden Will Face This Overlooked Crisis on Day 1", - "url":"https://www.nytimes.com/2020/11/12/opinion/biden-trump-federal-government.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Justin Gillis and Michael O’BoyleWhen Will Electricity Companies Finally Quit Natural Gas?", - "url":"https://www.nytimes.com/2020/11/12/opinion/solar-wind-natural-gas-climate-change.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Charles M. BlowTrump’s Election Tantrum", - "url":"https://www.nytimes.com/2020/11/11/opinion/trump-concede-election.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Bruno MaçãesHow Trump Almost Broke the Bounds of Reality", - "url":"https://www.nytimes.com/2020/11/12/opinion/donald-trump-reality.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"The Vatican Report on Clerical Abuse", - "url":"https://www.nytimes.com/2020/11/12/opinion/letters/catholic-church-abuse.html?action=click&module=Opinion&pgtype=Homepage" - }, - { - "title":"Margeaux Walter for The New York Times", - "url":"https://www.nytimes.com/2020/11/12/parenting/remote-learning-schools-diet-kids.html?action=click&module=Editors%20Picks&pgtype=Homepage" - }, - { - "title":"Was Reagan a Precursor to Trump? A New Documentary Says Yes“The Reagans,” a new Showtime docu-series, presents Ronald Reagan as an early practitioner of dog-whistle politics.", - "url":"https://www.nytimes.com/2020/11/11/arts/television/the-reagans.html?action=click&module=Editors%20Picks&pgtype=Homepage" - }, - { - "title":"‘I Am My Own Subject’: Celia Paul on Lucian Freud and a Life in Art“Self-Portrait” is a mesmerizing account of Paul’s fraught relationship with Freud and her struggle to realize her ambitions, our critic writes.", - "url":"https://www.nytimes.com/2020/11/11/books/review-self-portrait-celia-paul.html?action=click&module=Editors%20Picks&pgtype=Homepage" - }, - { - "title":"Continue reading the main story", - "url":"https://www.nytimes.com/#after-dfp-ad-mid1-large" - }, - { - "title":"© 2020 The New York Times Company", - "url":"https://help.nytimes.com/hc/en-us/articles/115014792127-Copyright-notice" - }, - { - "title":"Contact Us", - "url":"https://help.nytimes.com/hc/en-us/articles/115015385887-Contact-Us" - }, - { - "title":"Your Ad Choices", - "url":"https://www.nytimes.com/privacy/cookie-policy#how-do-i-manage-trackers" - }, - { - "title":"Privacy Policy", - "url":"https://www.nytimes.com/privacy/privacy-policy" - }, - { - "title":"Terms of Service", - "url":"https://help.nytimes.com/hc/en-us/articles/115014893428-Terms-of-service" - }, - { - "title":"Terms of Sale", - "url":"https://help.nytimes.com/hc/en-us/articles/115014893968-Terms-of-sale" - }, - { - "title":"Site Map", - "url":"https://spiderbites.nytimes.com/" - }, - { - "title":"Canada", - "url":"https://www.nytimes.com/ca/?action=click®ion=Footer&pgtype=Homepage" - }, - { - "title":"International", - "url":"https://www.nytimes.com/international/?action=click®ion=Footer&pgtype=Homepage" - }, - { - "title":"Help", - "url":"https://help.nytimes.com/hc/en-us" - }, - { - "title":"Subscriptions", - "url":"https://www.nytimes.com/subscription?campaignId=37WXW" - } - ] - }, - "https://www.aljazeera.com/news/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.

These cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.


These cookies are used to enhance your experience and make advertising messages more relevant to you.


These cookies are used to enable sharing or following of content that you find interesting on our websites. These settings apply to third party social networking and other websites.


These cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.


These cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.


", - "article_text":"In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.Essential CookiesThese cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.AdvertisingThese cookies are used to enhance your experience and make advertising messages more relevant to you.Social MediaThese cookies are used to enable sharing or following of content that you find interesting on our websites. These settings apply to third party social networking and other websites.Performance and FunctionalityThese cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.AnalyticsThese cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.", - "article_len":1290, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/after-trump-gains-latinos-say-economics-will-get-their-vote" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/canada-announces-pathway-residency-hong-kong-youth" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/keep-dancing-us-issues-stay-in-trump-tiktok-battle" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/former-amazon-com-employee-sues-over-covid-worker-safety-issues" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/more-world-leaders-congratulate-biden-than-us-republicans" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/women-lose-seats-in-jordan-vote" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/chinese-president-xi-personally-halted-ant-group-ipo-report" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/bahrain-activists-condemn-citizenship-revocation-against-dissent" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/trump-blocks-us-investment-in-firms-linked-to-chinese-military" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/a-big-bank-says-tax-remote-workers-to-rebuild-economy-from-covid" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/ghanas-former-president-jerry-rawlings-dies-aged-73" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/at-least-74-migrants-dead-in-devastating-shipwreck-off-libya" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/investors-public-eyes-moderna-for-more-covid-19-vaccine-news" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/vaccine-works-against-covid-mink-mutation-in-early-testing" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/news/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/africa/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Ghana’s President Nana Akufo-Addo says Rawlings died in hospital in Accra after a short illness.

Governments around the world are scrambling in the face of a new, sustained rise in coronavirus cases and deaths.

With communications down and media barred, independent verification of the status of the conflict was...

UN says it is worried about a refugee emergency if more civilians are forced to flee fighting in...

Social media regulations in Africa are not fighting hate speech and disinformation.

Vice president of Guinea’s leading opposition party and others held as President Conde wins controversial third term.

Kenyan conservationists have been campaigning to prevent century-old tree from being taken down to make way for highway.

Highly anticipated meeting comes as the government raises death toll from election-related violence to 85.

Solution in Cabo Delgado conflict seems further away than ever as gruesome attacks aggravate dire humanitarian crisis.

A filmmaker is determined to find out what became of her aunt who disappeared in the 1970s Ethiopian revolution.

Activist on mission to return colonial-era art to Africa has recently been fined for his protests, but vows to continue.

Police issue arrest warrant against Ace Magashule, secretary-general of the governing African National Congress party.

As many as 50 people have died in recent days in attacks by fighters linked to ISIL.

No sign of a lull in fighting that has reportedly killed hundreds of people over the past week.

", - "article_text":"Ghana’s President Nana Akufo-Addo says Rawlings died in hospital in Accra after a short illness.Governments around the world are scrambling in the face of a new, sustained rise in coronavirus cases and deaths.With communications down and media barred, independent verification of the status of the conflict was...UN says it is worried about a refugee emergency if more civilians are forced to flee fighting in...Social media regulations in Africa are not fighting hate speech and disinformation.Vice president of Guinea’s leading opposition party and others held as President Conde wins controversial third term.Kenyan conservationists have been campaigning to prevent century-old tree from being taken down to make way for highway.Highly anticipated meeting comes as the government raises death toll from election-related violence to 85.Solution in Cabo Delgado conflict seems further away than ever as gruesome attacks aggravate dire humanitarian crisis.A filmmaker is determined to find out what became of her aunt who disappeared in the 1970s Ethiopian revolution.Activist on mission to return colonial-era art to Africa has recently been fined for his protests, but vows to continue.Police issue arrest warrant against Ace Magashule, secretary-general of the governing African National Congress party.As many as 50 people have died in recent days in attacks by fighters linked to ISIL.No sign of a lull in fighting that has reportedly killed hundreds of people over the past week.", - "article_len":1485, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/ghanas-former-president-jerry-rawlings-dies-aged-73" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/ethiopia-pm-claims-major-advance-in-tigray-region" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/food-medical-aid-blocked-from-ethiopias-tigray-un-warns" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/how-social-media-regulations-are-silencing-dissent-in-africa/" - }, - { - "title":"Tafi Mhaka", - "url":"https://www.aljazeera.com/author/tafi_mhaka_180504152518903/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/guinea-arrests-opposition-figures-after-contested-vote" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/joy-in-nairobi-as-plan-to-uproot-iconic-fig-tree-abandoned" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/ouattara-meets-bedie-for-talks-on-ivory-coast-election-crisis" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/we-want-the-war-to-stop-attacks-spread-in-mozambique" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/witness/2020/11/11/finding-selam-a-gateway-into-ethiopias-complicated-history/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/11/emery-mwazulu-diyabanza" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/south-african-police-issue-arrest-warrant-for-top-anc-official" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/un-urges-mozambique-to-investigate-massacre-beheadings" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/sudan-braces-for-up-to-200000-fleeing-ethiopia-fighting" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/africa/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/middle-east/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Governments around the world are scrambling in the face of a new, sustained rise in coronavirus cases and deaths.

UK legislator Baroness Helena Kennedy demands world leaders shun G20 meeting in Riyadh over jailed women activists.

Iran’s death toll has soared in recent weeks, shattering records in nation with the worst outbreak in the Middle East.

Helicopter belonged to an international peacekeeping force; five Americans are among the dead, Israeli official says.

Azerbaijan’s closest ally says it will resume military action if Armenia does not withdraw ‘voluntarily’.

Owned by a Saudi sovereign fund and backed by Crown Prince MBS, the project entails developing resorts on 50 islands.

Announcement part of Saudi Arabia’s Vision 2030 development plan to reach environmental sustainability by end of decade.

‘Yemenis not going hungry, they are being starved,’ says United Nations as it warns of looming famine.

Tensions in the region have risen since Donald Trump pulled the US out of the international Iran nuclear deal in 2018.

Agreement at meeting paves the way for a road map towards ‘free, fair, inclusive’ elections in 18 months.

", - "article_text":"Governments around the world are scrambling in the face of a new, sustained rise in coronavirus cases and deaths.UK legislator Baroness Helena Kennedy demands world leaders shun G20 meeting in Riyadh over jailed women activists.Iran’s death toll has soared in recent weeks, shattering records in nation with the worst outbreak in the Middle East.Helicopter belonged to an international peacekeeping force; five Americans are among the dead, Israeli official says.Azerbaijan’s closest ally says it will resume military action if Armenia does not withdraw ‘voluntarily’.Owned by a Saudi sovereign fund and backed by Crown Prince MBS, the project entails developing resorts on 50 islands.Announcement part of Saudi Arabia’s Vision 2030 development plan to reach environmental sustainability by end of decade.‘Yemenis not going hungry, they are being starved,’ says United Nations as it warns of looming famine.Tensions in the region have risen since Donald Trump pulled the US out of the international Iran nuclear deal in 2018.Agreement at meeting paves the way for a road map towards ‘free, fair, inclusive’ elections in 18 months.", - "article_len":1130, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/women-lose-seats-in-jordan-vote" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/bahrain-activists-condemn-citizenship-revocation-against-dissent" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/at-least-74-migrants-dead-in-devastating-shipwreck-off-libya" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/un-expert-calls-for-immediate-lifting-of-sanctions-against-qatar" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/uk-report-calls-out-saudi-arabia-over-womens-rights-abuses" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/iran-passes-grim-milestone-of-40000-deaths-from-coronavirus" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/seven-peacekeepers-killed-in-sinai-helicopter-crash-officials" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/turkey-warns-armenia-against-breaking-nagorno-karabakh-truce" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/saudi-red-sea-project-plans-16-hotels-by-2023-finalising-3-7bn" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/saudi-arabia-announces-harsh-penalties-for-cutting-down-trees" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/yemen-faces-looming-famine-needs-millions-un-food-chief" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/saudi-king-urges-world-to-take-decisive-stance-against-iran" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/talks-over-libyas-future-reached-a-breakthrough-un" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/middle-east/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/latin-america/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Governments around the world are scrambling in the face of a new, sustained rise in coronavirus cases and deaths.

Azerbaijan’s closest ally says it will resume military action if Armenia does not withdraw ‘voluntarily’.

Over the past 50 years, the accuracy of cyclone forecasts has improved, but the way we communicate...

Elyas Dayee, a radio journalist, killed in a blast in Helmand days after another journalist was...

As crowds throughout Azerbaijan celebrate the ‘capitulation’, the Armenian government is plunged into a political abyss.

The Reserve Bank of India’s figures suggest the economy shrank 8.6 percent in the July-September quarter.

New Delhi reported 8,593 new coronavirus cases on Wednesday amid soaring pollution levels at the onset of winter.

Protesters question why PM Pashinyan accepted a deal to stop the Nagorno-Karabakh conflict, as anger boils in Yerevan.

Air quality has descended to near ’emergency’ levels as a haze of toxic smog envelopes vast swaths of northern India.

The founder of Republic TV channel granted bail by the top court a week after he was arrested in a suicide case.

Investigator will decide whether to prosecute members of military over crimes allegedly committed in Afghanistan.

Public development banks pledged to fight climate change but shied away from phasing out fossil fuel investments.

The Pfizer COVID-19 vaccine needs to be stored at temps matching Antarctic winter – a logistical nightmare for India.

Armenia and Azerbaijan sign Russian-mediated deal to end fighting in the disputed region.

", - "article_text":"Governments around the world are scrambling in the face of a new, sustained rise in coronavirus cases and deaths.Azerbaijan’s closest ally says it will resume military action if Armenia does not withdraw ‘voluntarily’.Over the past 50 years, the accuracy of cyclone forecasts has improved, but the way we communicate...Elyas Dayee, a radio journalist, killed in a blast in Helmand days after another journalist was...As crowds throughout Azerbaijan celebrate the ‘capitulation’, the Armenian government is plunged into a political abyss.The Reserve Bank of India’s figures suggest the economy shrank 8.6 percent in the July-September quarter.New Delhi reported 8,593 new coronavirus cases on Wednesday amid soaring pollution levels at the onset of winter.Protesters question why PM Pashinyan accepted a deal to stop the Nagorno-Karabakh conflict, as anger boils in Yerevan.Air quality has descended to near ’emergency’ levels as a haze of toxic smog envelopes vast swaths of northern India.The founder of Republic TV channel granted bail by the top court a week after he was arrested in a suicide case.Investigator will decide whether to prosecute members of military over crimes allegedly committed in Afghanistan.Public development banks pledged to fight climate change but shied away from phasing out fossil fuel investments.The Pfizer COVID-19 vaccine needs to be stored at temps matching Antarctic winter – a logistical nightmare for India.Armenia and Azerbaijan sign Russian-mediated deal to end fighting in the disputed region.", - "article_len":1534, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/animal-rights-groups-call-for-mink-farm-shutdown-amid-covid-fears" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/brazil-says-chinese-vaccine-trial-can-resume-after-suspension" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/11/development-banks-pledge-climate-action-but-keep-fossil-fuels" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/covid-19-cases-still-surging-in-the-americas-who-warns" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/evo-morales-is-back-in-bolivia-now-what" - }, - { - "title":"", - "url":"https://www.aljazeera.com/gallery/2020/11/11/in-pictures-bolivias-morales-back-from-year-in-exile/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/mexico-confirms-talks-with-us-over-ex-defence-ministers-arrest" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/11/women-bear-brunt-of-digital-abuse-as-covid-drives-people-online" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/belize-electing-new-government-amid-rising-coronavirus-cases" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/guatemala-ends-rescue-operations-at-deadly-landslide-site" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/10/enslaved-people-rescued-from-illegal-brazilian-gold-mine" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/10/lost-and-found-stories-from-matamoros-camp-on-us-mexico-border" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/10/brazil-halts-trials-of-chinese-covid-19-vaccine" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/latin-america/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/asia/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"
Edit Cookie Preferences

In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.


These cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.


These cookies are used to enhance your experience and make advertising messages more relevant to you.



These cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.


These cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.


", - "article_text":"Edit Cookie PreferencesIn order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.Essential CookiesThese cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.AdvertisingThese cookies are used to enhance your experience and make advertising messages more relevant to you.Performance and FunctionalityThese cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.AnalyticsThese cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.", - "article_len":1120, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/turkey-warns-armenia-against-breaking-nagorno-karabakh-truce" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/revolutionising-cyclone-forecasting-for-small-islands" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/a-great-loss-afghan-journalist-killed-in-a-blast-in-helmand" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/is-the-nagorno-karabakh-war-really-over" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/indian-central-bank-data-point-to-first-ever-recession" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/indias-capital-sees-surge-in-covid-19-infections-ahead-of-diwali" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/armenia-protests" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/surge-in-indias-pollution-levels-explained-in-500-words" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/indian-tv-anchor-freed-on-bail-after-alleged-suicide-abetment" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/australia-to-appoint-special-investigator-over-alleged-war-crimes" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/11/development-banks-pledge-climate-action-but-keep-fossil-fuels" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/11/indias-freezer-scarcity-patchy-power-dash-covid-vaccine-hopes" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/11/will-the-latest-ceasefire-bring-peace-to-nagorno-karabakh/" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/asia/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/us-canada/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"
Edit Cookie Preferences

In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.


These cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.


These cookies are used to enhance your experience and make advertising messages more relevant to you.



These cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.


These cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.


", - "article_text":"Edit Cookie PreferencesIn order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.Essential CookiesThese cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.AdvertisingThese cookies are used to enhance your experience and make advertising messages more relevant to you.Performance and FunctionalityThese cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.AnalyticsThese cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.", - "article_len":1120, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/after-trump-gains-latinos-say-economics-will-get-their-vote" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/canada-announces-pathway-residency-hong-kong-youth" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/keep-dancing-us-issues-stay-in-trump-tiktok-battle" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/former-amazon-com-employee-sues-over-covid-worker-safety-issues" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/more-world-leaders-congratulate-biden-than-us-republicans" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/trump-blocks-us-investment-in-firms-linked-to-chinese-military" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/a-big-bank-says-tax-remote-workers-to-rebuild-economy-from-covid" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/investors-public-eyes-moderna-for-more-covid-19-vaccine-news" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/bidens-treasury-pick-may-be-key-to-climate-jobs-equality-plans" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/us-appeals-court-upholds-harvard-university-affirmative-action" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/biden-denied-key-us-intel-briefings-as-trump-delays-transition" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/will-bidens-presidency-is-expected-mean-for-human-rights" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/tropical-storm-eta-dumps-blustery-rain-on-florida-west-coast" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/us-canada/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/live":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"
Edit Cookie Preferences

In order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.


These cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.


These cookies are used to enhance your experience and make advertising messages more relevant to you.



These cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.


These cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.


", - "article_text":"Edit Cookie PreferencesIn order to provide with the best experience possible we might sometimes track information about you. Sometimes this may involve writing a cookie. We use this information for things like experience enrichment, analytics and targeting advertising. We recommend allowing these functions to get the most out of your experience.Essential CookiesThese cookies are necessary to provide you with basic services and features available through our websites, such as remembering where you are in the website.AdvertisingThese cookies are used to enhance your experience and make advertising messages more relevant to you.Performance and FunctionalityThese cookies are used to enhance the performance and functionality of our websites. They provide statistics on how our website is used and helps us improve by measuring errors. Certain functionality on our website may become unavailable without these cookies.AnalyticsThese cookies collect information that is used in aggregate form to help us understand how our websites are used, and also helps us to continuously improve the experience we provide to you.", - "article_len":1120, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"Listen to Al Jazeera LiveListen", - "url":"http://listen.aljazeera.com/english/livestream?utm_source=AJE_website&utm_medium=livestream" - }, - { - "title":"schedule See full schedule ", - "url":"https://www.aljazeera.com/schedule" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/12/can-democracy-survive-in-hong-kong/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/start-here/2020/11/12/why-are-women-murdered-in-the-name-of-honour-start-here/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/the-bottom-line/2020/11/12/what-has-the-republican-party-learned-from-the-2020-election/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/11/will-the-latest-ceasefire-bring-peace-to-nagorno-karabakh/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/witness/2020/11/11/finding-selam-a-gateway-into-ethiopias-complicated-history/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/al-jazeera-world/2020/11/11/savouring-the-past/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/10/will-there-be-a-covid-19-vaccine-soon/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/start-here/2020/11/10/what-can-trump-do-now-start-here/" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/live/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/asia-pacific/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.

The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.

Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...

Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...

US Elections: Biden forms coronavirus taskforce

Russian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.

Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?

He is no different from his predecessors. He has just not masked his cruel instincts.

Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.

Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.

Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.

Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.

The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.

As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.

Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.

", - "article_text":"Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...US Elections: Biden forms coronavirus taskforceRussian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?He is no different from his predecessors. He has just not masked his cruel instincts.Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.", - "article_len":1561, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/manila-paralysed-after-typhoon-vamco-sweeps-across-philippines" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/why-are-taiwans-new-generation-a-test-for-the-kmt" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/australia-to-appoint-special-investigator-over-alleged-war-crimes" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/asean-summit-gets-underway-amid-major-power-rivalries" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/hk-lawmakers-to-tender-resignations-us-warns-of-more-sanctions" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/australians-locked-out-of-their-own-country-thanks-to-covid-19" - }, - { - "title":"Taiwan celebrates LGBTQ rights after virus lockdown lifts", - "url":"https://www.aljazeera.com/news/2020/10/31/taiwan-celebrates-lgbt-rights-as-it-emerges-from-covid-lockdown" - }, - { - "title":"Symptoms, recovery, aftermath: What we don’t know about COVID-19", - "url":"https://www.aljazeera.com/features/2020/10/19/doctors-note-symptoms-recovery-and-aftermath-of-covid-19" - }, - { - "title":"Elderly homes in Australia under fire after high COVID-19 deaths", - "url":"https://www.aljazeera.com/features/2020/10/2/dying-of-covid-19-in-australias-elderly-home-care" - }, - { - "title":"‘He was always your first fan’: Remembering COVID-19 victims", - "url":"https://www.aljazeera.com/news/2020/9/29/quote-remembering-the-victims-of-covid-19" - }, - { - "title":"Burials surge as COVID-19 cases spike in Indonesia’s capital", - "url":"https://www.aljazeera.com/program/newsfeed/2020/9/28/burials-surge-as-covid-19-cases-spike-in-indonesias-capital/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/china-tells-us-to-stop-boosting-ties-with-taiwan" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/hong-kongs-pro-democracy-legislators-resign-en-masse" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/australian-parliament-to-probe-rupert-murdochs-media-dominance" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/hong-kong-disqualifies-four-opposition-legislators" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/vanuatu-records-first-covid-19-case-in-man-who-returned-from-us" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/myanmar-primate" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/philippines-orders-thousands-to-evacuate-ahead-of-typhoon-vamco" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/radio-journalist-shot-dead-outside-home-in-the-philippines" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/chinas-bytedance-challenges-trumps-tiktok-divestiture-order" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/11/chinese-shoppers-single-and-ready-to-mingle-on-double-eleven" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/hong-kong-singapore-travel-bubble-to-begin-on-november-22" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/10/us-sanctions-more-officials-over-chinas-crackdown-in-hong-kong" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/10/myanmars-ruling-party-claims-resounding-win-in-general-election" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/10/brazil-halts-trials-of-chinese-covid-19-vaccine" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/taiwan-not-invite-to-who-meeting" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/10/australia-considers-opening-borders-to-low-risk-asian-countries" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/aung-san-suu-kyi-in-line-for-second-term-as-myanmar-votes-counted" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/taiwan-fears-loss-in-us-support-as-trump-booted-from-office" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/8/polls-open-in-myanmars-general-election" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/6/covid-19-surge-creates-new-headache-for-under-pressure-muhyiddin" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/8/thai-police-use-water-cannon-on-protesters-in-bangkok" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/7/us-removes-group-condemned-by-china-from-terror-list" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/7/myanmar-elections" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/7/africa-vaccine-diplomacy-and-the-us-china-rivalry/" - }, - { - "title":"Ray Mwareya", - "url":"https://www.aljazeera.com/author/ray-mwareya/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/6/spreading-like-wildfire-facebook-fights-hate-speech-before-mya" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/6/indonesia-evacuates-mount-merapi-villages-amid-eruption-fears" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/6/as-though-we-are-dead-unable-to-vote-myanmar-poll-robs-rohing" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/6/new-zealands-ardern-sworn-in-for-second-term-after-landslide-win" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/5/hong-kong-police-launch-national-security-crime-hotline" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/2/us-china-rivalry-set-to-persist-whoever-wins-white-house" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/5/australia-brings-first-case-under-2018-foreign-interference-law" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/5/indonesia-slumps-into-first-recession-since-1998-asian-crisis" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/5/north-korean-man-who-crossed-border-wants-to-defect-seoul" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/5/what-does-ant-groups-frozen-ipo-say-about-business-in-china" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/4/united-states-approves-600m-sale-of-armed-drones-to-taiwan" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/4/after-halting-ants-big-ipo-china-reportedly-wants-to-go-further" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/4/s-korean-military-captures-n-korean-who-crossed-border" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/3/seven-abu-sayyaf-members-killed-in-clash-with-military-in-sulu" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/3/listing-interrupted-ant-group-ipo-suspended-by-shanghai-exchange" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/3/naval-forces-join-efforts-in-the-bay-of-bengal-with-eye-on-china" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/2/typhoon-goni-duterte-to-inspect-damage-as-philippine-toll-rises" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/2/jacinda-ardern-names-incredibly-diverse-new-zealand-cabinet" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/2/s-korea-accepts-just-164-of-nearly-6000-asylum-seekers" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/2/king-says-thailand-land-of-compromise-as-he-greets-supporters" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/1/super-typhoon-goni-batters-philippines-one-million-evacuated" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/malaysias-indigenous-people-question-timber-sustainability" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/1/national-donut-australia-records-zero-new-community-covid-case" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/1/china-starts-once-a-decade-census-of-worlds-largest-population" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/1/seven-hong-kong-legislators-arrested-over-parliament-protest" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/31/qatar-australia-speak-for-first-time-after-airport-baby-row" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/31/philippines_typhoon_goni_2020" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/31/thai-pro-democracy-leader-taken-to-hospital-after-chokehold" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/climate-pledges-from-asia-send-extremely-important-signal-un" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/australias-kylie-moore-gilbert-moved-to-irans-evin-prison" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/new-zealand-votes-yes-to-legalisation-of-euthanasia" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/101-east/2020/10/29/young-black-and-behind-bars/" - }, - { - "title":" 101 East", - "url":"https://www.aljazeera.com/program/101-east" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/australia-enquiry-says-alarming-future-needs-national-response" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/10/30/five-questions-about-chinas-latest-five-year-plan" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/29/muslims-have-right-to-punish-french-says-malaysias-mahathir" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/10/29/china-unveils-5-year-path-to-becoming-a-tech" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/passengers-of-10-aircraft-subjected-to-invasive-exams-in-qatar" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/30/north-korea-blames-seouls-for-death-of-fisheries-official" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/29/hong-kong-teen-activist-tony-chung-charged-with-secession" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/29/new-zealand-set-to-vote-yes-in-euthanasia-referendum" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/28/vote-cancellations-trigger-outrage-among-myanmar-minority-voters" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/29/13-killed-dozens-missing-after-typhoon-molave-lashes-vietnam" - }, - { - "title":"", - "url":"https://www.aljazeera.com/gallery/2020/10/29/in-pictures-typhoon-molave-slams-vietnam/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/29/us-looks-for-new-ways-to-cooperate-with-indonesia-pompeo" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/28/us-charges-8-with-targeting-chinese-dissidents-for-harassment" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/28/typhoon-molave-slams-into-vietnam-killing-at-least-two" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/29/germany-does-not-believe-thai-king-breached-state-business-ban" - }, - { - "title":"", - "url":"https://www.aljazeera.com/podcasts/2020/10/28/can-the-2020-election-improve-us-china-relations/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/28/women-on-10-qatar-flights-invasively-examined-australia" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/28/thai-pm-prayuth-says-he-will-not-resign-despite-protests" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/27/philippines-to-deport-thousands-of-chinese-after-visa-scam" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/10/24/palm-oil-peril-primates-at-risk" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/27/china-tells-us-not-to-bully-sri-lanka-ahead-of-pompeos-visit" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/27/malaysia-oil-rig-incident" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/27/thailand-royalists-show-support-for-king" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/us-approves-another-2-37bn-in-possible-taiwan-arms-sales" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/10/27/bouncing-back-south-koreas-recession-ends-as-exports-surge" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/27/malaysia-pm-muhyiddin-gets-reprieve-from-key-political-ally-umno" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/27/duterte" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/pompeo-in-india-on-first-leg-of-asia-trip-over-china-threats" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/10/26/china-to-sanction-boeing-and-raytheon-over-taiwan-arms-sales" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/thai-parliament-opens-to-discuss-pro-democracy-protests" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/xis-carbon-neutrality-vow-to-reshape-chinas-five-year-plan" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/australias-victoria-state-records-no-new-covid-19-cases" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/philippines-typhoon-molave-displaces-thousands-floods-villages" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/26/passengers-strip-searched-after-baby-found-at-doha-airport" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/25/malaysias-king-rejects-pms-push-for-coronavirus-emergency" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/25/protesters-gather-in-bangkok-after-pm-snubs-call-to-resign" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/25/lee-kun-hee-man-behind-samsungs-rise-to-tech-titan-dies-at-78" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/counting-the-cost/2020/10/24/us-election-what-would-a-biden-victory-mean-for-china/" - }, - { - "title":" Counting the Cost", - "url":"https://www.aljazeera.com/program/counting-the-cost" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/24/holdmalaysia-declares-emergency-suspends-parliament-blaming-cov" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/24/us-to-base-coast-guard-ships-in-western-pacific-to-tackle-china" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/23/xi-says-china-ready-to-fight-in-speech-to-mark-korean-war" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/asia-pacific/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/europe/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.

The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.

Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...

Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...

US Elections: Biden forms coronavirus taskforce

Russian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.

Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?

He is no different from his predecessors. He has just not masked his cruel instincts.

Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.

Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.

Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.

Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.

The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.

As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.

Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.

", - "article_text":"Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...US Elections: Biden forms coronavirus taskforceRussian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?He is no different from his predecessors. He has just not masked his cruel instincts.Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.", - "article_len":1561, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/12/can-democracy-survive-in-hong-kong/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/a-big-bank-says-tax-remote-workers-to-rebuild-economy-from-covid" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/vaccine-works-against-covid-mink-mutation-in-early-testing" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/germany-charges-12-in-far-right-terror-plot" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/greg-clarke-resigns-from-fifa-role-after-discriminatory-comments" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/global-cases-of-new-covid-19-on-the-rise-live-updates" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/uk-report-calls-out-saudi-arabia-over-womens-rights-abuses" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/turkey-warns-armenia-against-breaking-nagorno-karabakh-truce" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/baby-six-months-dies-hours-after-being-saved-from-mediterranean" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/animal-rights-groups-call-for-mink-farm-shutdown-amid-covid-fears" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/russia-expects-bidens-foreign-policy-to-mirror-obama-administrat" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/why-is-trumps-lawyer-fighting-against-womens-rights-in-poland/" - }, - { - "title":"Claire Provost", - "url":"https://www.aljazeera.com/author/claire_provost_200412095247631/" - }, - { - "title":"Nandini Archer", - "url":"https://www.aljazeera.com/author/nandini-archer/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/is-the-nagorno-karabakh-war-really-over" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/ukraines-zelensky-hospitalised-after-contracting-coronavirus" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/europe/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/features/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.

The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.

Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...

Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...

US Elections: Biden forms coronavirus taskforce

Russian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.

Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?

He is no different from his predecessors. He has just not masked his cruel instincts.

Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.

Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.

Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.

Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.

The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.

As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.

Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.

", - "article_text":"Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...US Elections: Biden forms coronavirus taskforceRussian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?He is no different from his predecessors. He has just not masked his cruel instincts.Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.", - "article_len":1561, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/will-bidens-presidency-is-expected-mean-for-human-rights" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/revolutionising-cyclone-forecasting-for-small-islands" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/is-the-nagorno-karabakh-war-really-over" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/12/why-are-taiwans-new-generation-a-test-for-the-kmt" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/11/bbcovid-litigation-thrown-out-of-work-parents-drive-lawsuit-sur" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/11/emery-mwazulu-diyabanza" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/11/belfasts-great-survivor-the-hotel-europa" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/10/refugee-crisis-brews-on-spains-canary-islands-with-new-arrivals" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/10/lost-and-found-stories-from-matamoros-camp-on-us-mexico-border" - }, - { - "title":"", - "url":"https://www.aljazeera.com/gallery/2020/11/10/in-pictures-yemens-ancient-manhattan-of-the-desert/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/9/what-is-at-stake-when-the-us-supreme-court-takes-on-obamacare" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/9/azerbaijani-idps-hope-to-return" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/australians-locked-out-of-their-own-country-thanks-to-covid-19" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/11/8/lockdown-in-paradise-antiguas-plea-for" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/features/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/us-elections-2020/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.

The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.

Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...

Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...

US Elections: Biden forms coronavirus taskforce

Russian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.

Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?

He is no different from his predecessors. He has just not masked his cruel instincts.

Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.

Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.

Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.

Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.

The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.

As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.

Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.

", - "article_text":"Trump made election gains among Latinos, but outreach and economic populism could win them back, organisers say.The world is moving forward to work with President-elect Biden even as President Donald Trump refuses to concede.Growing number of Republican senators join calls for Biden to receive the Presidential Daily Brief on...Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s...US Elections: Biden forms coronavirus taskforceRussian FM, whose ties with the Obama administration were strained, expects president-elect to follow the same path.Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?He is no different from his predecessors. He has just not masked his cruel instincts.Ron Klain will become Chief of Staff as Biden moves forward with transition ahead of January inauguration.Facebook says the measure to combat misinformation will continue, even as US state Georgia prepares for Senate runoffs.Biden moves ahead with transition plans as Trump files new lawsuit, digs in for a longer fight despite lacking facts.Joe Biden may have won the United States presidency, but Republicans gained seats in the House of Representatives.The Trump campaign has hailed the recount, which experts say is unlikely to change results in the overall race.As Trump insists the election was tainted by widespread voting fraud, evidence continues to elude him.Biden is laying the groundwork for his administration, as Trump clings to long-shot legal challenges to state results.", - "article_len":1561, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"Joe Biden", - "url":"https://www.aljazeera.com/news/2020/08/29/us-elections-who-is-democratic-presidential-candidate-joe-biden/" - }, - { - "title":"Donald Trump", - "url":"https://www.aljazeera.com/news/2020/8/30/us-elections-who-is-republican-candidate-donald-trump" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/after-trump-gains-latinos-say-economics-will-get-their-vote" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/more-world-leaders-congratulate-biden-than-us-republicans" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/biden-denied-key-us-intel-briefings-as-trump-delays-transition" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/wall-street-opens-muted-as-pandemic-worsens-restrictions-tighten" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/us-elections-what-you-need-to-know-in-500-words" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/iran-warns-neighbours-not-to-bank-on-us-as-new-sanctions-planned" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/9/world-reacts-to-president-elect-joe-bidens-win/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/china-declines-to-formally-recognise-biden-win-in-us-elections" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/biden-expected-to-alter-the-regions-status-quo-analysis" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/9/taiwan-fears-loss-in-us-support-as-trump-booted-from-office" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/russia-expects-bidens-foreign-policy-to-mirror-obama-administrat" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/the-bottom-line/2020/11/12/what-has-the-republican-party-learned-from-the-2020-election/" - }, - { - "title":" The Bottom Line", - "url":"https://www.aljazeera.com/program/the-bottom-line" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/donald-trump-is-the-truest-face-of-the-united-states/" - }, - { - "title":"Susan Abulhawa", - "url":"https://www.aljazeera.com/author/susan_abulhawa_201332617758150903/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/biden-names-longtime-adviser-chief-of-staff-in-first-major-hire" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/facebook-extends-ban-on-political-ads-amid-misinformation-blitz" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/trump-is-seen-but-not-heard-as-doubts-fall-on-election-claims" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/democrats-losses-in-the-house-create-a-dilemma-for-pelosi" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/us-state-of-georgia-where-biden-leads-to-hand-recount-votes" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/despite-trump-claims-election-validity-intact" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/11/biden-prepares-to-take-office-as-trump-hold-out-hope" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/us-elections-2020/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/economy/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Ant’s IPO was halted after its co-founder made a speech at odds with the Chinese government’s handling of the economy.

A surge in COVID-19 infections across the US is giving pharmaceutical companies working on vaccines the data they need.

A potential vaccine candidate in Denmark has shown early signs of success, a scientist working on the drug says.

Biden’s Treasury pick will have to cope with a recession and also help address inequality and climate change.

Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s positive vaccine news.

Concerns about the mink spreading a mutated strain of COVID-19 to humans may hasten the end of fur farming.

Domestic pressures will dominate US president-elect’s first few months, but the China trade war will loom.

Owned by a Saudi sovereign fund and backed by Crown Prince MBS, the project entails developing resorts on 50 islands.

The Reserve Bank of India’s figures suggest the economy shrank 8.6 percent in the July-September quarter.

European countries, Gates Foundation promise to step up help to develop and distribute COVID therapies.

", - "article_text":"Ant’s IPO was halted after its co-founder made a speech at odds with the Chinese government’s handling of the economy.A surge in COVID-19 infections across the US is giving pharmaceutical companies working on vaccines the data they need.A potential vaccine candidate in Denmark has shown early signs of success, a scientist working on the drug says.Biden’s Treasury pick will have to cope with a recession and also help address inequality and climate change.Spiking COVID-19 infections and the challenges of containing pandemic overshadowed this week’s positive vaccine news.Concerns about the mink spreading a mutated strain of COVID-19 to humans may hasten the end of fur farming.Domestic pressures will dominate US president-elect’s first few months, but the China trade war will loom.Owned by a Saudi sovereign fund and backed by Crown Prince MBS, the project entails developing resorts on 50 islands.The Reserve Bank of India’s figures suggest the economy shrank 8.6 percent in the July-September quarter.European countries, Gates Foundation promise to step up help to develop and distribute COVID therapies.", - "article_len":1113, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/a-big-bank-says-tax-remote-workers-to-rebuild-economy-from-covid" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/former-amazon-com-employee-sues-over-covid-worker-safety-issues" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/11/12/trump-blocks-us-investment-in-firms-linked-to-chinese-military" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/keep-dancing-us-issues-stay-in-trump-tiktok-battle" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/chinese-president-xi-personally-halted-ant-group-ipo-report" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/investors-public-eyes-moderna-for-more-covid-19-vaccine-news" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/vaccine-works-against-covid-mink-mutation-in-early-testing" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/bidens-treasury-pick-may-be-key-to-climate-jobs-equality-plans" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/wall-street-opens-muted-as-pandemic-worsens-restrictions-tighten" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/animal-rights-groups-call-for-mink-farm-shutdown-amid-covid-fears" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/for-biden-tough-china-trade-tech-questions-may-have-to-wait" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/saudi-red-sea-project-plans-16-hotels-by-2023-finalising-3-7bn" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/indian-central-bank-data-point-to-first-ever-recession" - }, - { - "title":"", - "url":"https://www.aljazeera.com/economy/2020/11/12/coronavirus-research-gets-500m-in-pledges-at-paris-forum" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/economy/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/opinion/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

In Poland and across Europe, US-based Christian-right groups are working to limit women’s access to abortion.

He is no different from his predecessors. He has just not masked his cruel instincts.

Social media regulations in Africa are not fighting hate speech and disinformation.

Is Islam really against free speech? And does France really suffer from ‘Islamist separatism’, as...

Change is coming to Nigeria, whether the political elite wants it or not.

Saudi Arabia’s presidency of this year’s G20 is no longer the golden PR opportunity MBS dreamed of.

Headlines often focus on the perceived faults of the women killed by men, and never on the real issue – male violence.

Why did Americans condemn the new supreme court justice’s extremely conservative ideology by likening her to a Muslim?

It is time Biden resets US relations with Israel.

Do not let the early voting numbers and Biden’s win fool you.

Macron is demanding Muslims give up their religious values at a time when secular France doubts its own values.

Trump is fired and now we have to recover from his presidency. Here is how.

When the whole world is facing unprecedented upheaval, it is astonishing to suggest ‘Islam’ alone is in crisis.

Forget the 5G tussle. The Chinese-US rivalry in Africa is about to enter a whole new phase amid the COVID vaccine race.

", - "article_text":"In Poland and across Europe, US-based Christian-right groups are working to limit women’s access to abortion.He is no different from his predecessors. He has just not masked his cruel instincts.Social media regulations in Africa are not fighting hate speech and disinformation.Is Islam really against free speech? And does France really suffer from ‘Islamist separatism’, as...Change is coming to Nigeria, whether the political elite wants it or not.Saudi Arabia’s presidency of this year’s G20 is no longer the golden PR opportunity MBS dreamed of.Headlines often focus on the perceived faults of the women killed by men, and never on the real issue – male violence.Why did Americans condemn the new supreme court justice’s extremely conservative ideology by likening her to a Muslim?It is time Biden resets US relations with Israel.Do not let the early voting numbers and Biden’s win fool you.Macron is demanding Muslims give up their religious values at a time when secular France doubts its own values.Trump is fired and now we have to recover from his presidency. Here is how.When the whole world is facing unprecedented upheaval, it is astonishing to suggest ‘Islam’ alone is in crisis.Forget the 5G tussle. The Chinese-US rivalry in Africa is about to enter a whole new phase amid the COVID vaccine race.", - "article_len":1311, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/why-is-trumps-lawyer-fighting-against-womens-rights-in-poland/" - }, - { - "title":"Claire Provost", - "url":"https://www.aljazeera.com/author/claire_provost_200412095247631/" - }, - { - "title":"Nandini Archer", - "url":"https://www.aljazeera.com/author/nandini-archer/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/donald-trump-is-the-truest-face-of-the-united-states/" - }, - { - "title":"Susan Abulhawa", - "url":"https://www.aljazeera.com/author/susan_abulhawa_201332617758150903/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/12/how-social-media-regulations-are-silencing-dissent-in-africa/" - }, - { - "title":"Tafi Mhaka", - "url":"https://www.aljazeera.com/author/tafi_mhaka_180504152518903/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/11/on-freedom-of-speech-and-islamist-separatism/" - }, - { - "title":"Asma Barlas", - "url":"https://www.aljazeera.com/author/asma_barlas_200909112742324/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/11/nigerian-protests-a-once-in-a-generation-moment-for-change/" - }, - { - "title":"Jude M.I Abaga", - "url":"https://www.aljazeera.com/author/jude-m-i-abaga/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/10/saudi-arabias-image-building-efforts-suffered-another-set-back/" - }, - { - "title":"Julia Legner", - "url":"https://www.aljazeera.com/author/julia_legner_200710082341536/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/10/the-media-has-failed-to-hold-violent-men-to-account/" - }, - { - "title":"David Challen", - "url":"https://www.aljazeera.com/author/david-challen/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/9/if-only-amy-coney-barrett-was-a-muslim/" - }, - { - "title":"Azeezah Kanji", - "url":"https://www.aljazeera.com/author/azeezah_kanji_181004212446111/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/9/after-trump-the-end-of/" - }, - { - "title":"Marwan Bishara", - "url":"https://www.aljazeera.com/author/marwan_bishara_201132512858571875/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/8/in-the-us-vote-suppression-will-remain-the-norm/" - }, - { - "title":"Donald Earl Collins", - "url":"https://www.aljazeera.com/author/donald_earl_collins_170509105907350/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/8/europes-muslim-question-and-the-new-secular-crusade/" - }, - { - "title":"Ibrahim Kalin", - "url":"https://www.aljazeera.com/author/ibrahim_kalin_201152593120478426/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/7/trump-is-fired-5-ways-to-untrump-america/" - }, - { - "title":"John Sims", - "url":"https://www.aljazeera.com/author/john_sims_170815114725658/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/7/islam-is-not-in-crisis-liberalism-is/" - }, - { - "title":"Asad Dandia", - "url":"https://www.aljazeera.com/author/asad_dandia_200220151435672/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/11/7/africa-vaccine-diplomacy-and-the-us-china-rivalry/" - }, - { - "title":"Ray Mwareya", - "url":"https://www.aljazeera.com/author/ray-mwareya/" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/opinion/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/investigations/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Pro-democracy legislators resign en masse after colleagues were dismissed.

Why do these killings happen and how can they be stopped?

Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?

Armenia and Azerbaijan sign Russian-mediated deal to end fighting in the disputed region.

Inside Story

Al Jazeera journalists and guests dissect and discuss the day’s top story.

Start Here

Welcome to Start Here. We contextualise, simplify and beautifully present the building blocks for both big and small stories from around the world – in around seven minutes.

The Bottom Line

Al Jazeera English gets to the bottom line on US politics and policies and how they affect the world. A weekly discussion show moderated by @SCClemons.

Al Jazeera World

A weekly showcase of one-hour documentary films from across the Al Jazeera Network. \nWatch Al Jazeera World every Tuesday at 2000GMT

NewsFeed

Webby and Telly Award winners.\nVisual stories that connect, engage, inform and inspire.

Fault Lines

We live in a world run through with Fault Lines. Al Jazeera’s Fault Lines takes you beyond the headlines and holds the powerful to account as we examine the US’ role in the world.\nWatch Fault Lines every Wednesday at 2230GMT

Witness

An inspiring documentary series that brings world issues into focus through compelling human stories.

The Listening Post

A weekly programme that examines and dissects the world’s media, how they operate and the stories they cover.\nWatch The Listening Post every Saturday at 0830GMT

", - "article_text":"Pro-democracy legislators resign en masse after colleagues were dismissed.Why do these killings happen and how can they be stopped?Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?Armenia and Azerbaijan sign Russian-mediated deal to end fighting in the disputed region.Inside StoryAl Jazeera journalists and guests dissect and discuss the day’s top story.Start HereWelcome to Start Here. We contextualise, simplify and beautifully present the building blocks for both big and small stories from around the world – in around seven minutes.The Bottom LineAl Jazeera English gets to the bottom line on US politics and policies and how they affect the world. A weekly discussion show moderated by @SCClemons.Al Jazeera WorldA weekly showcase of one-hour documentary films from across the Al Jazeera Network. \nWatch Al Jazeera World every Tuesday at 2000GMTNewsFeedWebby and Telly Award winners.\nVisual stories that connect, engage, inform and inspire.Fault LinesWe live in a world run through with Fault Lines. Al Jazeera’s Fault Lines takes you beyond the headlines and holds the powerful to account as we examine the US’ role in the world.\nWatch Fault Lines every Wednesday at 2230GMTWitnessAn inspiring documentary series that brings world issues into focus through compelling human stories.The Listening PostA weekly programme that examines and dissects the world’s media, how they operate and the stories they cover.\nWatch The Listening Post every Saturday at 0830GMT", - "article_len":1519, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Video", - "url":"https://www.aljazeera.com/videos/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/16/is-this-really-the-end-for-cypruss-golden-passports" - }, - { - "title":"", - "url":"https://www.aljazeera.com/features/2020/10/13/hi-my-name-is-angie-im-an-undercover-reporter" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/15/cyprus-house-speaker-resigns-following-al-jazeera-investigation" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/14/anti-corruption-protests-in-cyprus-following-al-jazeera-expose" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/22/eu-parliament-highly-critical-of-golden-passport-schemes" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/20/eu-legal-action-against-cyprus-and-malta-over-passport-sales" - }, - { - "title":"", - "url":"https://www.aljazeera.com/opinions/2020/10/15/its-high-time-to-eliminate-the-passport-black-market/" - }, - { - "title":"Christophoros Christophorou", - "url":"https://www.aljazeera.com/author/christophoros-christophorou/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/13/cypriot-mp-resigns-after-al-jazeera-investigation" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/13/cyprus-abolishes-citizenship-through-investment-programme" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/12/cypriot-politicians-implicated-in-plan-to-sell-criminals-passport" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/10/8/british-football-coach-sentenced-to-more-prison-time-for-abuse" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/8/28/exclusive-cyprus-sold-passports-to-politically-exposed-persons" - }, - { - "title":"", - "url":"https://interactive.aljazeera.com/aje/2020/cyprus-papers/index.html" - }, - { - "title":"", - "url":"https://www.aljazeera.com/videos/2020/08/27/exclusive-eu-eyes-legal-action-over-cypruss-golden-passport/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/8/26/cyprus-cashes-in-as-haven-for-elites-fearful-of-home-countries" - }, - { - "title":"", - "url":"https://www.aljazeera.com/news/2020/8/26/al-jazeera-investigates-the-cyprus-papers" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/investigations/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.aljazeera.com/videos/":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

Pro-democracy legislators resign en masse after colleagues were dismissed.

Why do these killings happen and how can they be stopped?

Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?

Armenia and Azerbaijan sign Russian-mediated deal to end fighting in the disputed region.

Inside Story

Al Jazeera journalists and guests dissect and discuss the day’s top story.

Start Here

Welcome to Start Here. We contextualise, simplify and beautifully present the building blocks for both big and small stories from around the world – in around seven minutes.

The Bottom Line

Al Jazeera English gets to the bottom line on US politics and policies and how they affect the world. A weekly discussion show moderated by @SCClemons.

Al Jazeera World

A weekly showcase of one-hour documentary films from across the Al Jazeera Network. \nWatch Al Jazeera World every Tuesday at 2000GMT

NewsFeed

Webby and Telly Award winners.\nVisual stories that connect, engage, inform and inspire.

Fault Lines

We live in a world run through with Fault Lines. Al Jazeera’s Fault Lines takes you beyond the headlines and holds the powerful to account as we examine the US’ role in the world.\nWatch Fault Lines every Wednesday at 2230GMT

Witness

An inspiring documentary series that brings world issues into focus through compelling human stories.

The Listening Post

A weekly programme that examines and dissects the world’s media, how they operate and the stories they cover.\nWatch The Listening Post every Saturday at 0830GMT

", - "article_text":"Pro-democracy legislators resign en masse after colleagues were dismissed.Why do these killings happen and how can they be stopped?Despite Trump’s defeat, Republicans made advances in the 2020 election. But what’s next for the GOP?Armenia and Azerbaijan sign Russian-mediated deal to end fighting in the disputed region.Inside StoryAl Jazeera journalists and guests dissect and discuss the day’s top story.Start HereWelcome to Start Here. We contextualise, simplify and beautifully present the building blocks for both big and small stories from around the world – in around seven minutes.The Bottom LineAl Jazeera English gets to the bottom line on US politics and policies and how they affect the world. A weekly discussion show moderated by @SCClemons.Al Jazeera WorldA weekly showcase of one-hour documentary films from across the Al Jazeera Network. \nWatch Al Jazeera World every Tuesday at 2000GMTNewsFeedWebby and Telly Award winners.\nVisual stories that connect, engage, inform and inspire.Fault LinesWe live in a world run through with Fault Lines. Al Jazeera’s Fault Lines takes you beyond the headlines and holds the powerful to account as we examine the US’ role in the world.\nWatch Fault Lines every Wednesday at 2230GMTWitnessAn inspiring documentary series that brings world issues into focus through compelling human stories.The Listening PostA weekly programme that examines and dissects the world’s media, how they operate and the stories they cover.\nWatch The Listening Post every Saturday at 0830GMT", - "article_len":1519, - "domain":"https://www.aljazeera.com/", - "found_urls":[ - { - "title":" Live play", - "url":"https://www.aljazeera.com/live" - }, - { - "title":"News", - "url":"https://www.aljazeera.com/news/" - }, - { - "title":"Middle East", - "url":"https://www.aljazeera.com/middle-east/" - }, - { - "title":"Africa", - "url":"https://www.aljazeera.com/africa/" - }, - { - "title":"Asia", - "url":"https://www.aljazeera.com/asia/" - }, - { - "title":"US & Canada", - "url":"https://www.aljazeera.com/us-canada/" - }, - { - "title":"Latin America", - "url":"https://www.aljazeera.com/latin-america/" - }, - { - "title":"Europe", - "url":"https://www.aljazeera.com/europe/" - }, - { - "title":"Asia Pacific", - "url":"https://www.aljazeera.com/asia-pacific/" - }, - { - "title":"US Elections", - "url":"https://www.aljazeera.com/us-elections-2020/" - }, - { - "title":"Features", - "url":"https://www.aljazeera.com/features/" - }, - { - "title":"Economy", - "url":"https://www.aljazeera.com/economy/" - }, - { - "title":"Opinion", - "url":"https://www.aljazeera.com/opinion/" - }, - { - "title":"Investigations", - "url":"https://www.aljazeera.com/investigations/" - }, - { - "title":"Interactives", - "url":"https://www.aljazeera.com/interactives/" - }, - { - "title":"In Pictures", - "url":"https://www.aljazeera.com/gallery/" - }, - { - "title":"Climate", - "url":"https://www.aljazeera.com/tag/climate/" - }, - { - "title":"Science & Technology", - "url":"https://www.aljazeera.com/tag/science-and-technology/" - }, - { - "title":"Sports", - "url":"https://www.aljazeera.com/sports/" - }, - { - "title":"Podcasts", - "url":"https://www.aljazeera.com/podcasts/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/" - }, - { - "title":"Digital Series", - "url":"https://www.aljazeera.com/videos/digital-series/" - }, - { - "title":"Documentary", - "url":"https://www.aljazeera.com/videos/documentary/" - }, - { - "title":"NewsFeed", - "url":"https://www.aljazeera.com/videos/newsfeed/" - }, - { - "title":"TV Shows", - "url":"https://www.aljazeera.com/videos/tv-shows/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/12/can-democracy-survive-in-hong-kong/" - }, - { - "title":" Inside Story", - "url":"https://www.aljazeera.com/program/inside-story" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/start-here/2020/11/12/why-are-women-murdered-in-the-name-of-honour-start-here/" - }, - { - "title":" Start Here", - "url":"https://www.aljazeera.com/program/start-here" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/the-bottom-line/2020/11/12/what-has-the-republican-party-learned-from-the-2020-election/" - }, - { - "title":" The Bottom Line", - "url":"https://www.aljazeera.com/program/the-bottom-line" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/11/will-the-latest-ceasefire-bring-peace-to-nagorno-karabakh/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/9/world-reacts-to-president-elect-joe-bidens-win/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/9/who-is-joe-biden/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/9/little-amal-a-giant-refugee-puppet-with-a-powerful-message/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/9/jeremy-corbyn-rohingya-refugees-are-being-ignored-ajopinion/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/8/us-election-results-whats-at-stake-for-iran/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/2020/11/2/a-look-at-how-trump-and-biden-differ-on-foreign-policy/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/start-here/2020/11/10/what-can-trump-do-now-start-here/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/fault-lines/2020/11/10/the-end-of-a-presidency-trumps-loss-in-a-divided-america/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/2020/11/8/will-president-elect-joe-biden-change-us-foreign-policy/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/the-listening-post/2020/11/7/media-outlets-battle-for-clarity-amidst-the-chaos-of-us-election/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/upfront/2020/11/6/divided-states-of-america/" - }, - { - "title":"Latest Documentaries", - "url":"https://www.aljazeera.com/categories/documentary" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/witness/2020/11/11/finding-selam-a-gateway-into-ethiopias-complicated-history/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/al-jazeera-world/2020/11/11/savouring-the-past/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/witness/2020/11/8/depot-asmara-a-story-of-eritreas-railway/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/fault-lines/2020/11/4/when-covid-hit-americas-nursing-home-nightmare/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/al-jazeera-world/2020/11/4/ashraf-marwan-death-of-a-superspy/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/inside-story/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/start-here/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/the-bottom-line/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/al-jazeera-world/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/newsfeed/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/fault-lines/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/witness/" - }, - { - "title":"", - "url":"https://www.aljazeera.com/program/the-listening-post/" - }, - { - "title":"About Us", - "url":"https://network.aljazeera.net/about-us/our-values" - }, - { - "title":"Code of Ethics", - "url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/" - }, - { - "title":"Terms and Conditions", - "url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/" - }, - { - "title":"Privacy Policy", - "url":"https://privacy.aljazeera.net/" - }, - { - "title":"Cookie Policy", - "url":"https://privacy.aljazeera.net/cookie/" - }, - { - "title":"Cookie Preferences", - "url":"https://www.aljazeera.com/videos/#cookiesPreferences" - }, - { - "title":"Community Guidelines", - "url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/" - }, - { - "title":"Work for us", - "url":"https://careers.aljazeera.net/" - }, - { - "title":"HR Quality", - "url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf" - }, - { - "title":"Contact Us", - "url":"https://network.aljazeera.net/contact-us" - }, - { - "title":"Apps", - "url":"https://webapps.aljazeera.net/aje/connect/" - }, - { - "title":"Newsletters", - "url":"https://www.aljazeera.com/newsletter" - }, - { - "title":"Channel Finder", - "url":"https://sat.aljazeera.net/en" - }, - { - "title":"TV Schedule", - "url":"https://www.aljazeera.com/schedule/" - }, - { - "title":"Submit a Tip", - "url":"https://webapps.aljazeera.net/aje/tips/" - }, - { - "title":"Al Jazeera Arabic", - "url":"http://aljazeera.net/" - }, - { - "title":"Al Jazeera Mubasher", - "url":"http://mubasher.aljazeera.net/" - }, - { - "title":"Al Jazeera Documentary", - "url":"http://doc.aljazeera.net/" - }, - { - "title":"Al Jazeera Balkans", - "url":"http://balkans.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Studies", - "url":"http://studies.aljazeera.net/en/" - }, - { - "title":"Al Jazeera Media Institute", - "url":"http://training.aljazeera.net/" - }, - { - "title":"Learn Arabic", - "url":"http://learning.aljazeera.net/" - }, - { - "title":"Al Jazeera Centre for Public Liberties & Human Rights", - "url":"http://liberties.aljazeera.com/en" - }, - { - "title":"Al Jazeera Forum", - "url":"http://forum.aljazeera.net/" - }, - { - "title":"Al Jazeera Hotel Partners", - "url":"http://partners.aljazeera.net/" - }, - { - "title":"rss", - "url":"https://www.aljazeera.com/xml/rss/all.xml" - }, - { - "title":"twitter", - "url":"http://twitter.com/ajenglish" - }, - { - "title":"Learn more", - "url":"https://network.aljazeera.com/cookies/en" - } - ] - }, - "https://www.cnn.com/privacy":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

FIRST, AN IMPORTANT MESSAGE: PLEASE READ THESE TERMS AND CONDITIONS OF USE (\"Terms\", \"Terms of Use\", or \"Agreement\") CAREFULLY BEFORE USING THIS SITE, AS THEY AFFECT YOUR LEGAL RIGHTS AND OBLIGATIONS, INCLUDING, BUT NOT LIMITED TO, WAIVERS OF RIGHTS, LIMITATION OF LIABILITY, AND YOUR INDEMNITY TO US. THIS AGREEMENT REQUIRES THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN COURTS OR JURY TRIALS, AND LIMITS THE REMEDIES AVAILABLE IN THE EVENT OF A DISPUTE.

These Terms of Use describe the terms and conditions that govern your use of the current and future online and mobile websites, platforms, services, applications, and networks owned or operated by Cable News Network, Inc. (\"CNN\"), including without limitation, CNN.com, HLNtv.com, CNNI.com (edition.cnn.com) and cnnespanol.com, and/or for which CNN currently or in the future provides services and/or technology (the \"Site\" or \"Sites\"). You accept and agree to be bound by these Terms of Use when you use any of the Sites, without limitation, when you view or access content or videos on any of the Sites.

(A) Governing Terms. These Terms of Use, along with any additional terms and conditions that are referenced herein or that are presented elsewhere on the Site in relation to a specific service or feature and the CNN Privacy Policy, set forth the terms and conditions that apply to your use of the CNN.com Site. By using the Site, you agree to comply with all of the terms and conditions hereof. If you do not agree to these Terms of Use, you should not access or use the Site.

(B) Changes to Terms of Use. CNN may modify the Terms of Use, or any part thereof, or add or remove terms at any time, and such modifications, additions or deletions will be effective immediately upon posting. Your use of the Site after such posting shall be deemed to constitute acceptance by you of such modifications, additions or deletions.

(C) Changes to Site. CNN may change or discontinue any aspect, service or feature of the Site at any time, including, but not limited to, content, hours of availability, and equipment needed for access or use.

(D) Registration. You may be given the opportunity to register via an online registration form to create a user account (\"Your Account\") that may allow you to receive information from CNN and/or to participate in certain features on the Site such as certain Interactive Areas. CNN will use the information you provide in accordance with the CNN Privacy Policy. By registering you represent and warrant that all information that you provide on the registration form is current, complete and accurate to the best of your knowledge. You agree to maintain and promptly update your registration information on the Site so that it remains current, complete and accurate. During the registration process, you may be required to choose a password and/or user name. You acknowledge and agree that CNN may rely on this password or user name to identify you. You shall be responsible for protecting the confidentiality of your user name(s) or password(s), if any. You are responsible for all use of Your Account, regardless of whether you authorized such access or use, and for ensuring that all use of Your Account complies fully with the provisions of these Terms of Use.

(E) Equipment. You are responsible for obtaining and maintaining all connectivity, computer software, hardware and other equipment needed for access to and use of the Site and all charges related to the same.

2. User Content and Conduct; Community Guidelines

The following terms apply to content submitted by users, and user conduct, on the Site's Interactive Areas, including CNN iReport:

(A) Interactive Areas. The Site may contain comments sections, discussion forums, or other interactive features, including CNN iReport, CNN's user-generated news community (\"Interactive Areas\") in which you may post or upload user-generated content, including but not limited to iReports, comments, video, photos, messages, other materials or items (collectively, \"User Content\"). You are solely responsible for your use of any Interactive Areas and you use them at your own risk. Interactive Areas are available for individuals aged 13 years or older. By submitting User Content to an Interactive Area, you represent that you are 13 years of age or older and, if you are under the age of 18, you either are an emancipated minor, or have obtained the legal consent of your parent or legal guardian to enter into these Terms of Use, submit content, participate on the Site, and fulfill the obligations set forth in these Terms of Use, which forms a binding contract between you and CNN. Employees of Cable News Network, Inc. may not submit User Content without permission from their supervisors.

(B) Community Guidelines. By submitting any User Content or participating in an Interactive Area within or in connection with the Site, you agree to abide by the following rules of conduct:

  • You agree not to upload, post or otherwise transmit any User Content that:
  • violates or infringes in any way upon the rights of others, including any statements which may defame, harass, stalk or threaten others.
  • you know to be false, misleading or inaccurate.
  • contains blatant expressions of bigotry, racism, racially or ethnically offensive content, hate speech, abusiveness, vulgarity or profanity.
  • contains or advocates pornography or sexually explicit content, pedophilia, incest, bestiality, or that is otherwise obscene or lewd.
  • violates any law or advocates or provides instruction on dangerous, illegal, or predatory acts, or discusses illegal activities with the intent to commit them.
  • advocates violent behavior.
  • poses a reasonable threat to personal or public safety.
  • contains violent images of killing or physical abuse that appear to have been captured solely, or principally, for exploitive, prurient, or gratuitous purposes.
  • is protected by copyright, trademark, trade secret, right of publicity or other proprietary right without the express permission of the owner of such copyright, trademark, trade secret, right of publicity or other proprietary right. The burden of determining that any User Content is not protected by copyright, trademark, trade secret, right of publicity or other proprietary right rests with you. You shall be solely liable for any damage resulting from any infringement of copyrights, trademarks, trade secrets, rights of publicity or other proprietary rights or any other harm resulting from such a submission. Any person determined by CNN, in its sole discretion, to have violated the intellectual property or other rights of others shall be barred from submitting or posting any further material on the Site.
  • does not generally pertain to the designated topic or theme of any Interactive Area.
  • contains any unsolicited or unauthorized advertising or promotional materials with respect to products or services, \"junk mail,\" \"spam,\" \"chain letters,\" \"pyramid schemes,\" or any other form of solicitation.
  • You agree not to engage in activity that would constitute a criminal offense or give rise to a civil liability.
  • You agree that if necessary, you have the consent of each and every identifiable natural person in any submission to use such persons name or likeness in the manner contemplated by the Site.
  • You agree that any person who appears in your submission who is a current member of the Screen Actors Guild (SAG), the American Federation of Television and Radio Actors (AFTRA) or any other rights society is not entitled to compensation by CNN.
  • You agree not to impersonate any person or entity, including, but not limited to, CNN or any CNN employee, or falsely state or otherwise misrepresent your affiliation with any person or entity.
  • You agree not to represent or suggest, directly or indirectly, CNN's endorsement of User Content.
  • You agree not to interfere with any other user's right to privacy, including by harvesting or collecting personally-identifiable information about the Site users or posting private information about a third party.
  • You agree not to upload, post or otherwise transmit any User Content, software or other materials which contain a virus or other harmful or disruptive component.
  • You agree not to interfere with or disrupt the Site or the servers or networks connected to the Site, or disobey any requirements, procedures, policies or regulations of networks connected to the Site.
  • You agree not to reproduce, duplicate, copy, sell, resell or exploit for any commercial purpose, any portion of the Site, use the Site, or access to the Site.
  • You agree not to use any service, technology or automated system to artificially inflate the page views that your User Content receives. This includes pay-per-click services, web \"robots\" and any other current or future technologies. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf.
  • You agree not to use any technology, service or automated system to post more User Content than an individual could upload in a given period of time. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf.

Any conduct that in CNN's sole discretion restricts or inhibits anyone else from using or enjoying the Site will not be permitted. CNN reserves the right in its sole discretion to remove or edit User Content by you and to terminate Your Account for any reason.

CNN does not vouch for the accuracy or credibility of any User Content, and does not take any responsibility or assume any liability for any actions you may take as a result of reading User Content posted on the Site. Through your use of Interactive Areas, you may be exposed to content that you may find offensive, objectionable, harmful, inaccurate or deceptive. There may also be risks of dealing with underage persons, people acting under false pretense, international trade issues and foreign nationals. By using Interactive Areas, you assume all associated risks.

(C) Monitoring. CNN shall have the right, but not the obligation, to monitor User Content posted or uploaded to the Site to determine compliance with these Terms of Use and any operating rules established by CNN and to satisfy any law, regulation or authorized government request. Although CNN has no obligation to monitor, screen, edit or remove any of the User Content posted or uploaded to the Site, CNN reserves the right, and has absolute discretion, to screen, edit, refuse to post or remove without notice any User Content posted or uploaded to the Site at any time and for any reason, and you are solely responsible for creating backup copies of and replacing any User Content posted to the Site at your sole cost and expense. In addition, CNN may share personally identifiable information in response to a law enforcement agency's request, or where we believe it is necessary, or as otherwise required or permitted by law. See CNN Privacy Policy.

The decision by CNN to monitor and/or modify User Content does not constitute nor shall it be deemed to constitute any responsibility or liability in any manner on the part of CNN in connection with or arising from use by you of Interactive Areas on the Site.

(D) License to User Content. By submitting User Content to the Site, you automatically grant CNN and its parent company, Turner Broadcasting, System, Inc., the royalty-free, perpetual, irrevocable, non-exclusive right and license, but not the obligation, to use, publish, reproduce, modify, adapt, edit, translate, create derivative works from, incorporate into other works, distribute, sub-license and otherwise exploit such User Content (in whole or in part) worldwide in any form, media or technology now known or hereafter developed for the full term of any copyright that may exist in such User Content, without payment to you or to any third parties. Notwithstanding the foregoing, in the event CNN licenses your iReport as stand-alone content outside of CNN's programming to third parties unaffiliated with CNN, CNN will pay you a percentage of the license fees it actually receives according to rates determined by CNN's licensing division, ImageSource. You agree and acknowledge that any iReport you submit may be entered into the annual iReport Awards. You represent and warrant to CNN that you have the full legal right, power and authority to grant to CNN the license provided for herein, that you own or control the complete exhibition and other rights to the User Content you submitted for the purposes contemplated in this license and that neither the User Content nor the exercise of the rights granted herein shall violate these Terms of Use, or infringe upon any rights, including the right of privacy or right of publicity, constitute a libel or slander against, or violate any common law or any other right of, or cause injury to, any person or entity. You further grant CNN the right, but not the obligation, to pursue at law any person or entity that violates your or CNN's rights in the User Content by a breach of these Terms of Use.

(E) Moral Rights. If it is determined that you retain moral rights (including rights of attribution or integrity) in the User Content, you hereby declare that (a) you do not require that any personally identifying information be used in connection with the User Content, or any derivative works of or upgrades or updates thereto; (b) you have no objection to the publication, use, modification, deletion and exploitation of the User Content by CNN or its licensees, successors and assigns; (c) you forever waive and agree not to claim or assert any entitlement to any and all moral rights of an author in any of the User Content; and (d) you forever release CNN, and its licensees, successors and assigns, from any claims that you could otherwise assert against CNN by virtue of any such moral rights. You also permit any other user to access, view, store or reproduce the User Content for that user's personal use.

(F) No Obligation. User Content submitted by you will be considered non-confidential and CNN is under no obligation to treat such User Content as proprietary information except pursuant to the CNN Privacy Policy. Without limiting the foregoing, CNN reserves the right to use any User Content as it deems appropriate, including, without limitation, deleting, editing, modifying, rejecting, or refusing to post it. CNN is under no obligation to edit, delete or otherwise modify User Content once it has been submitted to CNN. CNN shall have no duty to attribute authorship of User Content to you, and shall not be obligated to enforce any form of attribution by third parties.

3. Copyright Ownership.

The Site contains copyrighted material, trademarks and other proprietary information, including, but not limited to, text, software, photos, video, graphics, music and sound, and the entire contents of the Site are copyrighted as a collective work under the United States copyright laws. CNN owns copyright in the selection, coordination, arrangement and enhancement of such content, as well as in the content original to it. You may not modify, publish, transmit, participate in the transfer or sale, create derivative works, or in any way exploit, any of the content, in whole or in part. You may download copyrighted material for your personal use only. Except as otherwise expressly permitted under copyright law, no copying, redistribution, retransmission, publication or commercial exploitation of downloaded material will be permitted without the express permission of CNN and the copyright owner. In the event of any permitted copying, redistribution or publication of copyrighted material, no changes in or deletion of author attribution, trademark legend or copyright notice shall be made. You acknowledge that you do not acquire any ownership rights by downloading copyrighted material.

4. Third Party Content.

CNN is a distributor (and not a publisher or creator) of content supplied by third parties and users. Any opinions, advice, statements, services, offers, or other information or content expressed or made available by third parties, including information providers or users of the Site, are those of the respective author(s) or distributor(s) and not of CNN. Neither CNN nor any third-party provider of information guarantees the accuracy, completeness, or usefulness of any content, nor its merchantability or fitness for any particular purpose. (Refer to Section 6 below for the complete provisions governing limitation of liabilities and disclaimers of warranty.)

In many instances, the content available through the Site represents the opinions and judgments of the respective user or information provider not under contract with CNN. CNN neither endorses nor is responsible for the accuracy or reliability of any opinion, advice or statement made on the Site by any third party. Under no circumstances will CNN be responsible or liable, directly or indirectly, for any loss or damage caused by your use or reliance on information obtained through the Site. CNN is not responsible for any actions or inaction on your part based on the information that is presented on the Site. It is your responsibility to evaluate the accuracy, completeness or usefulness of any information, opinion, advice or other content available through the Site. Please seek the advice of professionals, as appropriate, regarding the evaluation of any specific information, opinion, advice or other content.

5. Advertisements and Promotions.

CNN may run advertisements and promotions from third parties on the Site. Your business dealings or correspondence with, or participation in promotions of, advertisers other than CNN, and any terms, conditions, warranties or representations associated with such dealings, are solely between you and such third party. CNN is not responsible or liable for any loss or damage of any sort incurred as the result of any such dealings or as the result of the presence of third-party advertisers on the Site.

6. Disclaimer of Warranty; Limitation of Liability and Time Limitation for Claims.

(A) YOU EXPRESSLY AGREE THAT USE OF THE SITE IS AT YOUR SOLE RISK. NEITHER CNN, ITS PRESENT OR FUTURE PARENT(S), SUBSIDIARIES, OR RELATED ENTITIES (COLLECTIVELY, \"TURNER\"), NOR ANY OF THEIR RESPECTIVE EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS OR LICENSORS WARRANT THAT THE SITE WILL BE UNINTERRUPTED OR ERROR FREE; NOR DO THEY MAKE ANY WARRANTY AS TO THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE SITE, OR AS TO THE ACCURACY, RELIABILITY OR CONTENT OF ANY INFORMATION, SERVICE, OR MERCHANDISE PROVIDED THROUGH THE SITE.

(B) THE SITE, INCLUDING, WITHOUT LIMITATION, ANY DOWNLOADABLE SOFTWARE, IS PROVIDED ON AN \"AS IS\" BASIS WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OTHER THAN THOSE WARRANTIES WHICH ARE IMPLIED BY AND INCAPABLE OF EXCLUSION, RESTRICTION OR MODIFICATION UNDER THE LAWS APPLICABLE TO THESE TERMS OF USE.

(C) THE SITE MAY OFFER HEALTH, FITNESS, NUTRITIONAL AND OTHER SUCH INFORMATION, BUT SUCH INFORMATION IS DESIGNED FOR EDUCATIONAL AND INFORMATIONAL PURPOSES ONLY. THE INFORMATION CONTAINED ON THE SITE DOES NOT AND IS NOT INTENDED TO CONVEY MEDICAL ADVICE AND DOES NOT CONSTITUTE THE PRACTICE OF MEDICINE. YOU SHOULD NOT RELY ON THIS INFORMATION AS A SUBSTITUTE FOR, NOR DOES IT REPLACE, PROFESSIONAL MEDICAL ADVICE, DIAGNOSIS, OR TREATMENT. CNN IS NOT RESPONSIBLE FOR ANY ACTIONS OR INACTION ON A USER'S PART BASED ON THE INFORMATION THAT IS PRESENTED IN THE SITE.

(D) TO THE FULLEST EXTENT PERMISSIBLE BY APPLICABLE LAW, IN NO EVENT SHALL TURNER, BE LIABLE TO YOU FOR ANY PERSONAL INJURY, PROPERTY DAMAGE, LOST PROFITS, COST OF SUBSTITUTE GOODS OR SERVICES, LOSS OF DATA, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER AND/OR DEVICE OR TECHNOLOGY FAILURE OR MALFUNCTION OR FOR ANY FORM OF DIRECT OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES BASED ON ANY CAUSES OF ACTION ARISING OUT OF USE OF THE SITE OR ANY ALLEGED FAILURE OF PERFORMANCE, ERROR, OMISSION, INTERRUPTION, DELETION, DEFECT, OR DELAY IN SERVICE, OPERATION, OR TRANSMISSION OF THE SITES, OR ANY ALLEGED COMPUTER VIRUS, COMMUNICATION LINE FAILURE, THEFT OR DESTRUCTION OF PROPERTY, AND/OR UNAUTHORIZED ACCESS TO, ALTERATION OF, OR USE OF OR POSTING OF ANY RECORD, CONTENT, OR TECHNOLOGY, PERTAINING TO OR ON THE SITES. YOU AGREE THAT THIS LIMITATION OF LIABILITY APPLIES WHEHER SUCH ALLEGATIONS ARE FOR BREACH OF CONTRACT, TORTIOUS BEHAVIOR, NEGLIGENCE, OR FALL UNDER ANY OTHER CAUSE OF ACTION, REGARDLESS OF THE BASIS UPON WHICH LIABILITY IS CLAIMED AND EVEN IF TURNER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. WITHOUT LIMITING THE GENERALITY OF THE FORGEOING, YOU ALSO SPECIFICALLY ACKNOWLEDGE THAT TURNER IS NOT LIABLE FOR ANY ACTUAL OR ALLEGED DEFAMATORY, OFFENSIVE, OR ILLEGAL CONDUCT OF OTHER USERS OF THE SITES OR ANY OTHER THIRD PARTIES.

IF APPLICABLE LAW DOES NOT ALLOW ALL OR ANY PART OF THE ABOVE LIMITATION OF LIABILITY TO APPLY TO YOU, THE LIMITATIONS WILL APPLY TO YOU ONLY TO THE EXTENT PERMITTED BY APPLICABLE LAW. THIS LIMITATION OF LIABILITY PROVISION APPLIES TO NEW JERSEY RESIDENTS.

(E) CNN DISCLAIMS ANY AND ALL LIABILITY OF ANY KIND FOR ANY UNAUTHORIZED ACCESS TO OR USE OF YOUR PERSONALLY IDENTIFIABLE INFORMATION. BY ACCESSING THE SITE, YOU ACKNOWLEDGE AND AGREE TO CNN'S DISCLAIMER OF ANY SUCH LIABILITY. IF YOU DO NOT AGREE, YOU SHOULD NOT ACCESS OR USE THE SITE.

(F) TO THE EXTENT PERMITTED BY APPLICABLE LAW, ANY DISPUTE, CLAIM OR CONTROVERSY ARISING OUT OF OR RELATING IN ANY WAY TO THE SERVICE OR YOUR USE OF THE SERVICE AND/OR SITE, THESE TERMS OF USE, OR THE RELATIONSHIP BETWEEN US, MUST BE COMMENCED WITHIN ONE YEAR OF THE RELEVANT EVENTS. A DISPUTE IS COMMENCED IF IT IS FILED IN AN ARBITRATION OR, IF THE DISPUTE IS NON-ARBITRABLE, A COURT WITH JURISDICTION, DURING THE ONE-YEAR PERIOD. IF YOU OR WE PROVIDE NOTICE OF A DISPUTE UNDER SECTION 12 (DISPUTE RESOLUTION), THE ONE-YEAR PERIOD IS TOLLED FOR 60 DAYS FOLLOWING RECEIPT OF THE NOTICE OF DISPUTE. YOU AND WE EACH WAIVE—THAT IS, GIVE UP—THE RIGHT TO PURSUE ANY DISPUTE, CLAIM OR CONTROVERSY THAT IS NOT FILED WITHIN ONE YEAR AND ANY RIGHT YOU OR WE MAY HAVE HAD TO PURSUE THAT DISPUTE, CLAIM OR CONTROVERSY IN ANY FORUM IS PERMANENTLY BARRED.

7. Indemnification.

You agree to defend, indemnify and hold harmless CNN, its affiliates and their respective directors, officers, employees and agents from and against all claims and expenses, including attorneys' fees, arising out of the use of the Site by you or your Account. CNN reserves the right to take over the exclusive defense of any claim for which we are entitled to indemnification under this Section. In such event, you shall provide CNN with such cooperation as is reasonably requested by CNN.

8. Termination.

CNN may terminate or suspend these Terms of Use at any time without notice to you. Without limiting the foregoing, CNN shall have the right to immediately terminate Your Account in the event of any conduct by you which CNN, in its sole discretion, considers to be unacceptable, or in the event of any breach by you of these Terms of Use. The provisions of Sections 1 - 13 shall survive termination of these Terms of Use.

9. Trademarks.

CNN, its parent, subsidiaries and affiliates, own all rights to their logos and trademarks used in connection with the Site. All other logos and trademarks appearing on the Site are the property of their respective owners.

10. Governing Law and Venue.

The content, data, video, and all other material and features on the Site are presented for the purpose of providing entertainment, news and/or information and/or promoting programs, films, music, games, and other products and/or services that are or may become available in the United States, its territories, possessions, and protectorates.

Any and all disputes, claims and controversies arising out of or in connection with your access to, and/or use of the Sites, and/or the provision of content, services, and/or technology on or through the Sites shall be governed by and construed exclusively in accordance with the laws and decisions of the State of New York applicable to contracts made, entered into and performed entirely therein, without giving effect to its conflict of laws provisions, except to the extent that law is inconsistent with or preempted by federal law. To the extent that a dispute is not subject to arbitration under Section 12 (Dispute Resolution) of this Agreement, that action shall be brought in the appropriate state or federal court located in New York County, New York; and we both irrevocably consent to the exclusive jurisdiction and venue of the state or federal courts in New York County, New York for the adjudication of all non-arbitral claims.

11. Severability.

Except as specified in Section 12 (Dispute Resolution), if any provision of this Agreement shall be unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable for this Agreement and shall not affect the validity and enforceability of any remaining provisions. This is the entire agreement between the parties relating to the matters contained herein.

12. Dispute Resolution.

Summary:

Our customer-service department can resolve most customer concerns quickly and to the customer's satisfaction. Please contact CNN at cnn.com/feedback. In the unlikely event that you're not satisfied with customer service's solution (or if CNN has not been able to resolve a dispute it has with you after attempting to do so informally), we each agree to resolve those disputes through binding arbitration or small claims court instead of in courts of general jurisdiction.

Arbitration is more informal than a lawsuit in court. Arbitration uses a neutral arbitrator instead of a judge or jury, allows for more limited discovery than in court, and is subject to very limited review by courts. Unless expressly limited by this Dispute Resolution provision, arbitrators can award the same damages and relief that a court can award. Any arbitration under this Agreement will take place on an individual basis; class arbitrations and class actions are not permitted. For any non-frivolous claim that does not exceed $75,000, we will pay all costs of the arbitration. Moreover, in arbitration you are entitled to recover attorneys' fees from us to at least the same extent as you would be in court.

In addition, under certain circumstances (as explained below), we will pay you more than the amount of the arbitrator's award and will pay your attorney (if any) twice his or her reasonable attorneys' fees if the arbitrator awards you an amount that is greater than what we have offered you to settle the dispute.

Arbitration Agreement

(1) Claims Subject to Arbitration: CNN and you agree to arbitrate all disputes and claims between us, except for claims arising from bodily injury or that pertain to enforcing, protecting, or the validity of your or our intellectual property rights (or the intellectual property rights of any of our licensors, affiliates and partners). This agreement to arbitrate is intended to be broadly interpreted. It includes, but is not limited to:

  • claims arising out of or relating to any aspect of the relationship between us, whether based in contract, tort, fraud, misrepresentation or any other statutory or common-law legal theory;
  • claims that arose before this or any prior Agreement (including, but not limited to, claims relating to advertising);
  • claims for mental or emotional distress or injury not arising out of physical bodily injury;
  • claims that are currently the subject of purported class action litigation in which you are not a member of a certified class; and
  • claims that may arise after the termination of this Agreement.

References to \"CNN,\" \"you,\" and \"us\" include our respective subsidiaries, affiliates, agents, employees, licensees, licensors, and providers of content as of the time your or our claim arises; our respective predecessors in interest, successors, and assigns (including AT&T and its affiliates); and all authorized or unauthorized users or beneficiaries of Services under this or prior Agreements between us. Notwithstanding the foregoing, either party may bring an action in small claims court seeking only individualized relief, so long as the action remains in that court and is not removed or appealed to a court of general jurisdiction. This arbitration agreement does not preclude you from bringing issues to the attention of federal, state, or local agencies. Such agencies can, if the law allows, seek relief against us on your behalf. You agree that, by entering into this Agreement, you and we are each waiving the right to a trial by jury or to participate in a class action. This Agreement evidences a transaction in interstate commerce, and thus the Federal Arbitration Act governs the interpretation and enforcement of this provision. This arbitration provision shall survive termination of this Agreement.

(2) Pre-Arbitration Notice of Disputes: A party who intends to seek arbitration must first send to the other a written Notice of Dispute (\"Notice\"). The Notice to CNN should be sent by certified mail to: General Counsel, WarnerMedia News & Sports, 1 CNN Center, Atlanta, GA 30303 (\"Notice Address\"). The Notice must (a) describe the nature and basis of the claim or dispute; and (b) set forth the specific relief sought (\"Demand\").

If we and you do not reach an agreement to resolve the claim within 30 days after the Notice is received, you or we may commence an arbitration proceeding. During the arbitration, the amount of any settlement offer made by us or you shall not be disclosed to the arbitrator until after the arbitrator determines the amount, if any, to which you or us is entitled. You may download a form to initiate arbitration at: adr.org/sites/default/files/Consumer_Demand_for_Arbitration_Form_1.pdf.

(3) Arbitration Procedure: The arbitration will be governed by the Consumer Arbitration Rules (\"AAA Rules\") of the American Arbitration Association (\"AAA\"), as modified by this arbitration provision, and will be administered by the AAA. (If the AAA is unavailable, another arbitration provider shall be selected by the parties or by the court.) The AAA Rules are available online at www.adr.org, by calling the AAA at 1-800-778-7879, or by requesting them in writing at the Notice Address. All issues are for the arbitrator to decide, except that issues relating to the scope and enforceability of the arbitration provision or whether a dispute can or must be brought in arbitration are for the court to decide. The arbitrator may consider but shall not be bound by rulings in other arbitrations involving different customers. Unless we and you agree otherwise, any arbitration hearings will take place in the county (or parish) of your billing address. If your claim is for $10,000 or less, we agree that you may choose whether the arbitration will be conducted solely on the basis of documents submitted to the arbitrator, through a telephonic hearing, or by an in-person hearing as established by the AAA Rules. If your claim exceeds $10,000, the right to a hearing will be determined by the AAA Rules. Regardless of the manner in which the arbitration is conducted, the arbitrator shall issue a reasoned written decision sufficient to explain the essential findings and conclusions on which the award is based. Except as provided in subsection (6) below, the arbitrator can award the same damages and individualized relief that a court can award under applicable law.

(4) Arbitration Fees: After we receive notice at the Notice Address that you have commenced arbitration, we will promptly reimburse you for your payment of the filing fee, unless your claim is for greater than $75,000 in value. (The filing fee currently is $200 but is subject to change by the arbitration provider. If you are unable to pay this fee, we will pay it directly upon receiving a written request at the Notice Address.) We will pay all AAA filing, administration, and arbitrator fees for any arbitration initiated in accordance with the notice requirements above. If, however, the arbitrator finds that either the substance of your claim or the relief sought in the Demand is frivolous or brought for an improper purpose (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)), then the payment of all such fees will be governed by the AAA Rules. In such case, you agree to reimburse us for all monies we previously paid that are otherwise your obligation to pay under the AAA Rules. In addition, if you initiate an arbitration in which you seek relief valued at greater than $75,000 (either to you or to us), the payment of these fees will be governed by the AAA rules.

(5) Alternative Payment and Attorney Premium: If you initiated arbitration in accordance with the notice requirements above in subsection (2) and the arbitrator issues an award in your favor that is greater than the value of our last written settlement offer made before an arbitrator was selected, then we will:

  • pay you the amount of the award or $10,000 (\"the alternative payment\"), whichever is greater; and
  • pay your attorney, if any, twice the amount of attorneys' fees, and reimburse any expenses (including expert witness fees and costs) that your attorney reasonably accrues for investigating, preparing, and pursuing your claim in arbitration (\"the attorney premium\").

If we did not make a written offer to settle the dispute before an arbitrator was selected, you and your attorney will be entitled to receive the alternative payment and the attorney premium, respectively, if the arbitrator awards you any relief on the merits. The arbitrator may make rulings and resolve disputes as to the payment and reimbursement of fees, expenses, and the alternative payment and the attorney premium at any time during the proceeding and upon request from either party made within 14 days of the arbitrator's ruling on the merits. In assessing whether an award that includes attorneys' fees or expenses is greater than the value of our last written settlement offer, the calculation shall include only the portion of the award representing attorneys' fees or expenses that you reasonably incurred pursuing the arbitration through the date of our settlement offer.

The right to the attorney premium supplements any right to attorneys' fees and expenses you may have under applicable law. Thus, if you would be entitled to a larger amount under the applicable law, this provision does not preclude the arbitrator from awarding you that amount. However, you may not recover both the attorney premium and a duplicative award of attorneys' fees or costs. Although under some laws we may have a right to an award of attorneys' fees and expenses if we prevail in an arbitration, we agree that we will not seek such an award.

(6) Requirement of Individual Arbitration: The arbitrator may award declaratory or injunctive relief only in favor of the individual party seeking relief and only to the extent necessary to provide relief warranted by that party's individual claim. YOU AND WE AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR OUR INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. Further, unless both you and we agree otherwise, the arbitrator may not consolidate more than one person's claims and may not otherwise preside over any form of a representative, class, or private attorney general proceeding. If, after exhaustion of all appeals, any of these prohibitions on non-individualized declaratory or injunctive relief; class, representative, and private attorney general claims; and consolidation are found to be unenforceable with respect to a particular claim or with respect to a particular request for relief (such as a request for injunctive relief sought with respect to a particular claim), then that claim or request for relief shall be severed , and all other claims and requests for relief shall be arbitrated.

(7) Future Changes to Arbitration Provision: Notwithstanding any provision in this Agreement to the contrary, we agree that if we make any future change to this arbitration provision (other than a change to the Notice Address), you may reject any such change by sending us written notice within 30 days of the change to the arbitration Notice Address provided above. By rejecting any future change, you are agreeing that you will arbitrate any dispute between us in accordance with the language of this provision.

13. Miscellaneous.

These Terms of Use and any operating rules for the Site established by CNN constitute the entire agreement of the parties with respect to the subject matter hereof, and supersede all previous written or oral agreements between the parties with respect to such subject matter. The provisions of these Terms of Use are for the benefit of CNN, its parent, subsidiaries, other affiliates and its third party content providers and licensors and each shall have the right to assert and enforce such provisions directly or on its own behalf. If you access the Site, including its Interactive Areas, from any location other than the United States, you accept full responsibility for compliance with all local laws. You are also subject to United States export controls and are responsible for any violations of United States embargoes or other federal rules and regulations restricting exports. No waiver by either party of any breach or default hereunder shall be deemed to be a waiver of any preceding or subsequent breach or default. If any part of these Terms of Use is found by a court of competent jurisdiction to be invalid or unenforceable, it will be replaced with language reflecting the original purpose in a valid and enforceable manner. The enforceable sections of these Terms of Use will remain binding upon the parties. The section headings used herein are for convenience only and shall not be given any legal import.

Neither CNN nor you shall be liable for damages or for delays or failures in performance resulting from acts or occurrences beyond their reasonable control, including, without limitation: fire, lightning, explosion, power surge or failure, water, acts of God, war, terrorism, revolution, civil commotion or acts of civil or military authorities or public enemies: any law, order, regulation, ordinance, or requirement of any government or legal body or any representative of any such government or legal body; or labor unrest, including without limitation, strikes, slowdowns, picketing, or boycotts; inability to secure raw materials, transportation facilities, fuel or energy shortages, or acts or omissions of other common carriers.

14. Copyrights and Copyright Agent.

CNN respects the rights of all copyright holders and in this regard, CNN has adopted and implemented a policy that provides for the termination in appropriate circumstances of users and account holders who infringe the rights of copyright holders. If you believe that your work has been copied in a way that constitutes copyright infringement, please provide CNN's Copyright Agent the following information required by the Online Copyright Infringement Liability Limitation Act of the Digital Millennium Copyright Act, 17 U.S.C. 512:

1. A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;

2. Identification of the copyright work claimed to have been infringed, or, if multiple copyrighted works at a single online site are covered by a single notification, a representative list of such works at that site;

3. Identification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit us to locate the material;

4. Information reasonably sufficient to permit us to contact the complaining party;

5. A statement that the complaining party has a good-faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and

6. A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.

For copyright inquiries under the Digital Millennium Copyright Act please contact:

CNN Collection

One CNN Center

12th Floor, North Tower

Atlanta, GA 30303, USA

Phone: +1 (404) 827-3326

For web posting, reprint, transcript for CNN material, please contact licensing@cnn.com

For any questions or requests other than copyright issues or licensing requests, please contact cnn.com/feedback.

These Terms of Use were last updated on December 23, 2019.

", - "article_text":"FIRST, AN IMPORTANT MESSAGE: PLEASE READ THESE TERMS AND CONDITIONS OF USE (\"Terms\", \"Terms of Use\", or \"Agreement\") CAREFULLY BEFORE USING THIS SITE, AS THEY AFFECT YOUR LEGAL RIGHTS AND OBLIGATIONS, INCLUDING, BUT NOT LIMITED TO, WAIVERS OF RIGHTS, LIMITATION OF LIABILITY, AND YOUR INDEMNITY TO US. THIS AGREEMENT REQUIRES THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN COURTS OR JURY TRIALS, AND LIMITS THE REMEDIES AVAILABLE IN THE EVENT OF A DISPUTE.These Terms of Use describe the terms and conditions that govern your use of the current and future online and mobile websites, platforms, services, applications, and networks owned or operated by Cable News Network, Inc. (\"CNN\"), including without limitation, CNN.com, HLNtv.com, CNNI.com (edition.cnn.com) and cnnespanol.com, and/or for which CNN currently or in the future provides services and/or technology (the \"Site\" or \"Sites\"). You accept and agree to be bound by these Terms of Use when you use any of the Sites, without limitation, when you view or access content or videos on any of the Sites.(A) Governing Terms. These Terms of Use, along with any additional terms and conditions that are referenced herein or that are presented elsewhere on the Site in relation to a specific service or feature and the CNN Privacy Policy, set forth the terms and conditions that apply to your use of the CNN.com Site. By using the Site, you agree to comply with all of the terms and conditions hereof. If you do not agree to these Terms of Use, you should not access or use the Site. (B) Changes to Terms of Use. CNN may modify the Terms of Use, or any part thereof, or add or remove terms at any time, and such modifications, additions or deletions will be effective immediately upon posting. Your use of the Site after such posting shall be deemed to constitute acceptance by you of such modifications, additions or deletions.(C) Changes to Site. CNN may change or discontinue any aspect, service or feature of the Site at any time, including, but not limited to, content, hours of availability, and equipment needed for access or use.(D) Registration. You may be given the opportunity to register via an online registration form to create a user account (\"Your Account\") that may allow you to receive information from CNN and/or to participate in certain features on the Site such as certain Interactive Areas. CNN will use the information you provide in accordance with the CNN Privacy Policy. By registering you represent and warrant that all information that you provide on the registration form is current, complete and accurate to the best of your knowledge. You agree to maintain and promptly update your registration information on the Site so that it remains current, complete and accurate. During the registration process, you may be required to choose a password and/or user name. You acknowledge and agree that CNN may rely on this password or user name to identify you. You shall be responsible for protecting the confidentiality of your user name(s) or password(s), if any. You are responsible for all use of Your Account, regardless of whether you authorized such access or use, and for ensuring that all use of Your Account complies fully with the provisions of these Terms of Use.(E) Equipment. You are responsible for obtaining and maintaining all connectivity, computer software, hardware and other equipment needed for access to and use of the Site and all charges related to the same.2. User Content and Conduct; Community GuidelinesThe following terms apply to content submitted by users, and user conduct, on the Site's Interactive Areas, including CNN iReport: (A) Interactive Areas. The Site may contain comments sections, discussion forums, or other interactive features, including CNN iReport, CNN's user-generated news community (\"Interactive Areas\") in which you may post or upload user-generated content, including but not limited to iReports, comments, video, photos, messages, other materials or items (collectively, \"User Content\"). You are solely responsible for your use of any Interactive Areas and you use them at your own risk. Interactive Areas are available for individuals aged 13 years or older. By submitting User Content to an Interactive Area, you represent that you are 13 years of age or older and, if you are under the age of 18, you either are an emancipated minor, or have obtained the legal consent of your parent or legal guardian to enter into these Terms of Use, submit content, participate on the Site, and fulfill the obligations set forth in these Terms of Use, which forms a binding contract between you and CNN. Employees of Cable News Network, Inc. may not submit User Content without permission from their supervisors. (B) Community Guidelines. By submitting any User Content or participating in an Interactive Area within or in connection with the Site, you agree to abide by the following rules of conduct:You agree not to upload, post or otherwise transmit any User Content that:violates or infringes in any way upon the rights of others, including any statements which may defame, harass, stalk or threaten others.you know to be false, misleading or inaccurate.contains blatant expressions of bigotry, racism, racially or ethnically offensive content, hate speech, abusiveness, vulgarity or profanity.contains or advocates pornography or sexually explicit content, pedophilia, incest, bestiality, or that is otherwise obscene or lewd.violates any law or advocates or provides instruction on dangerous, illegal, or predatory acts, or discusses illegal activities with the intent to commit them.advocates violent behavior.poses a reasonable threat to personal or public safety.contains violent images of killing or physical abuse that appear to have been captured solely, or principally, for exploitive, prurient, or gratuitous purposes.is protected by copyright, trademark, trade secret, right of publicity or other proprietary right without the express permission of the owner of such copyright, trademark, trade secret, right of publicity or other proprietary right. The burden of determining that any User Content is not protected by copyright, trademark, trade secret, right of publicity or other proprietary right rests with you. You shall be solely liable for any damage resulting from any infringement of copyrights, trademarks, trade secrets, rights of publicity or other proprietary rights or any other harm resulting from such a submission. Any person determined by CNN, in its sole discretion, to have violated the intellectual property or other rights of others shall be barred from submitting or posting any further material on the Site.does not generally pertain to the designated topic or theme of any Interactive Area.contains any unsolicited or unauthorized advertising or promotional materials with respect to products or services, \"junk mail,\" \"spam,\" \"chain letters,\" \"pyramid schemes,\" or any other form of solicitation.You agree not to engage in activity that would constitute a criminal offense or give rise to a civil liability.You agree that if necessary, you have the consent of each and every identifiable natural person in any submission to use such persons name or likeness in the manner contemplated by the Site.You agree that any person who appears in your submission who is a current member of the Screen Actors Guild (SAG), the American Federation of Television and Radio Actors (AFTRA) or any other rights society is not entitled to compensation by CNN.You agree not to impersonate any person or entity, including, but not limited to, CNN or any CNN employee, or falsely state or otherwise misrepresent your affiliation with any person or entity.You agree not to represent or suggest, directly or indirectly, CNN's endorsement of User Content.You agree not to interfere with any other user's right to privacy, including by harvesting or collecting personally-identifiable information about the Site users or posting private information about a third party.You agree not to upload, post or otherwise transmit any User Content, software or other materials which contain a virus or other harmful or disruptive component.You agree not to interfere with or disrupt the Site or the servers or networks connected to the Site, or disobey any requirements, procedures, policies or regulations of networks connected to the Site.You agree not to reproduce, duplicate, copy, sell, resell or exploit for any commercial purpose, any portion of the Site, use the Site, or access to the Site.You agree not to use any service, technology or automated system to artificially inflate the page views that your User Content receives. This includes pay-per-click services, web \"robots\" and any other current or future technologies. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf. You agree not to use any technology, service or automated system to post more User Content than an individual could upload in a given period of time. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf.Any conduct that in CNN's sole discretion restricts or inhibits anyone else from using or enjoying the Site will not be permitted. CNN reserves the right in its sole discretion to remove or edit User Content by you and to terminate Your Account for any reason. CNN does not vouch for the accuracy or credibility of any User Content, and does not take any responsibility or assume any liability for any actions you may take as a result of reading User Content posted on the Site. Through your use of Interactive Areas, you may be exposed to content that you may find offensive, objectionable, harmful, inaccurate or deceptive. There may also be risks of dealing with underage persons, people acting under false pretense, international trade issues and foreign nationals. By using Interactive Areas, you assume all associated risks.(C) Monitoring. CNN shall have the right, but not the obligation, to monitor User Content posted or uploaded to the Site to determine compliance with these Terms of Use and any operating rules established by CNN and to satisfy any law, regulation or authorized government request. Although CNN has no obligation to monitor, screen, edit or remove any of the User Content posted or uploaded to the Site, CNN reserves the right, and has absolute discretion, to screen, edit, refuse to post or remove without notice any User Content posted or uploaded to the Site at any time and for any reason, and you are solely responsible for creating backup copies of and replacing any User Content posted to the Site at your sole cost and expense. In addition, CNN may share personally identifiable information in response to a law enforcement agency's request, or where we believe it is necessary, or as otherwise required or permitted by law. See CNN Privacy Policy. The decision by CNN to monitor and/or modify User Content does not constitute nor shall it be deemed to constitute any responsibility or liability in any manner on the part of CNN in connection with or arising from use by you of Interactive Areas on the Site.(D) License to User Content. By submitting User Content to the Site, you automatically grant CNN and its parent company, Turner Broadcasting, System, Inc., the royalty-free, perpetual, irrevocable, non-exclusive right and license, but not the obligation, to use, publish, reproduce, modify, adapt, edit, translate, create derivative works from, incorporate into other works, distribute, sub-license and otherwise exploit such User Content (in whole or in part) worldwide in any form, media or technology now known or hereafter developed for the full term of any copyright that may exist in such User Content, without payment to you or to any third parties. Notwithstanding the foregoing, in the event CNN licenses your iReport as stand-alone content outside of CNN's programming to third parties unaffiliated with CNN, CNN will pay you a percentage of the license fees it actually receives according to rates determined by CNN's licensing division, ImageSource. You agree and acknowledge that any iReport you submit may be entered into the annual iReport Awards. You represent and warrant to CNN that you have the full legal right, power and authority to grant to CNN the license provided for herein, that you own or control the complete exhibition and other rights to the User Content you submitted for the purposes contemplated in this license and that neither the User Content nor the exercise of the rights granted herein shall violate these Terms of Use, or infringe upon any rights, including the right of privacy or right of publicity, constitute a libel or slander against, or violate any common law or any other right of, or cause injury to, any person or entity. You further grant CNN the right, but not the obligation, to pursue at law any person or entity that violates your or CNN's rights in the User Content by a breach of these Terms of Use.(E) Moral Rights. If it is determined that you retain moral rights (including rights of attribution or integrity) in the User Content, you hereby declare that (a) you do not require that any personally identifying information be used in connection with the User Content, or any derivative works of or upgrades or updates thereto; (b) you have no objection to the publication, use, modification, deletion and exploitation of the User Content by CNN or its licensees, successors and assigns; (c) you forever waive and agree not to claim or assert any entitlement to any and all moral rights of an author in any of the User Content; and (d) you forever release CNN, and its licensees, successors and assigns, from any claims that you could otherwise assert against CNN by virtue of any such moral rights. You also permit any other user to access, view, store or reproduce the User Content for that user's personal use.(F) No Obligation. User Content submitted by you will be considered non-confidential and CNN is under no obligation to treat such User Content as proprietary information except pursuant to the CNN Privacy Policy. Without limiting the foregoing, CNN reserves the right to use any User Content as it deems appropriate, including, without limitation, deleting, editing, modifying, rejecting, or refusing to post it. CNN is under no obligation to edit, delete or otherwise modify User Content once it has been submitted to CNN. CNN shall have no duty to attribute authorship of User Content to you, and shall not be obligated to enforce any form of attribution by third parties.3. Copyright Ownership. The Site contains copyrighted material, trademarks and other proprietary information, including, but not limited to, text, software, photos, video, graphics, music and sound, and the entire contents of the Site are copyrighted as a collective work under the United States copyright laws. CNN owns copyright in the selection, coordination, arrangement and enhancement of such content, as well as in the content original to it. You may not modify, publish, transmit, participate in the transfer or sale, create derivative works, or in any way exploit, any of the content, in whole or in part. You may download copyrighted material for your personal use only. Except as otherwise expressly permitted under copyright law, no copying, redistribution, retransmission, publication or commercial exploitation of downloaded material will be permitted without the express permission of CNN and the copyright owner. In the event of any permitted copying, redistribution or publication of copyrighted material, no changes in or deletion of author attribution, trademark legend or copyright notice shall be made. You acknowledge that you do not acquire any ownership rights by downloading copyrighted material.4. Third Party Content. CNN is a distributor (and not a publisher or creator) of content supplied by third parties and users. Any opinions, advice, statements, services, offers, or other information or content expressed or made available by third parties, including information providers or users of the Site, are those of the respective author(s) or distributor(s) and not of CNN. Neither CNN nor any third-party provider of information guarantees the accuracy, completeness, or usefulness of any content, nor its merchantability or fitness for any particular purpose. (Refer to Section 6 below for the complete provisions governing limitation of liabilities and disclaimers of warranty.)In many instances, the content available through the Site represents the opinions and judgments of the respective user or information provider not under contract with CNN. CNN neither endorses nor is responsible for the accuracy or reliability of any opinion, advice or statement made on the Site by any third party. Under no circumstances will CNN be responsible or liable, directly or indirectly, for any loss or damage caused by your use or reliance on information obtained through the Site. CNN is not responsible for any actions or inaction on your part based on the information that is presented on the Site. It is your responsibility to evaluate the accuracy, completeness or usefulness of any information, opinion, advice or other content available through the Site. Please seek the advice of professionals, as appropriate, regarding the evaluation of any specific information, opinion, advice or other content.5. Advertisements and Promotions.CNN may run advertisements and promotions from third parties on the Site. Your business dealings or correspondence with, or participation in promotions of, advertisers other than CNN, and any terms, conditions, warranties or representations associated with such dealings, are solely between you and such third party. CNN is not responsible or liable for any loss or damage of any sort incurred as the result of any such dealings or as the result of the presence of third-party advertisers on the Site.6. Disclaimer of Warranty; Limitation of Liability and Time Limitation for Claims. (A) YOU EXPRESSLY AGREE THAT USE OF THE SITE IS AT YOUR SOLE RISK. NEITHER CNN, ITS PRESENT OR FUTURE PARENT(S), SUBSIDIARIES, OR RELATED ENTITIES (COLLECTIVELY, \"TURNER\"), NOR ANY OF THEIR RESPECTIVE EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS OR LICENSORS WARRANT THAT THE SITE WILL BE UNINTERRUPTED OR ERROR FREE; NOR DO THEY MAKE ANY WARRANTY AS TO THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE SITE, OR AS TO THE ACCURACY, RELIABILITY OR CONTENT OF ANY INFORMATION, SERVICE, OR MERCHANDISE PROVIDED THROUGH THE SITE.(B) THE SITE, INCLUDING, WITHOUT LIMITATION, ANY DOWNLOADABLE SOFTWARE, IS PROVIDED ON AN \"AS IS\" BASIS WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OTHER THAN THOSE WARRANTIES WHICH ARE IMPLIED BY AND INCAPABLE OF EXCLUSION, RESTRICTION OR MODIFICATION UNDER THE LAWS APPLICABLE TO THESE TERMS OF USE.(C) THE SITE MAY OFFER HEALTH, FITNESS, NUTRITIONAL AND OTHER SUCH INFORMATION, BUT SUCH INFORMATION IS DESIGNED FOR EDUCATIONAL AND INFORMATIONAL PURPOSES ONLY. THE INFORMATION CONTAINED ON THE SITE DOES NOT AND IS NOT INTENDED TO CONVEY MEDICAL ADVICE AND DOES NOT CONSTITUTE THE PRACTICE OF MEDICINE. YOU SHOULD NOT RELY ON THIS INFORMATION AS A SUBSTITUTE FOR, NOR DOES IT REPLACE, PROFESSIONAL MEDICAL ADVICE, DIAGNOSIS, OR TREATMENT. CNN IS NOT RESPONSIBLE FOR ANY ACTIONS OR INACTION ON A USER'S PART BASED ON THE INFORMATION THAT IS PRESENTED IN THE SITE.(D) TO THE FULLEST EXTENT PERMISSIBLE BY APPLICABLE LAW, IN NO EVENT SHALL TURNER, BE LIABLE TO YOU FOR ANY PERSONAL INJURY, PROPERTY DAMAGE, LOST PROFITS, COST OF SUBSTITUTE GOODS OR SERVICES, LOSS OF DATA, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER AND/OR DEVICE OR TECHNOLOGY FAILURE OR MALFUNCTION OR FOR ANY FORM OF DIRECT OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES BASED ON ANY CAUSES OF ACTION ARISING OUT OF USE OF THE SITE OR ANY ALLEGED FAILURE OF PERFORMANCE, ERROR, OMISSION, INTERRUPTION, DELETION, DEFECT, OR DELAY IN SERVICE, OPERATION, OR TRANSMISSION OF THE SITES, OR ANY ALLEGED COMPUTER VIRUS, COMMUNICATION LINE FAILURE, THEFT OR DESTRUCTION OF PROPERTY, AND/OR UNAUTHORIZED ACCESS TO, ALTERATION OF, OR USE OF OR POSTING OF ANY RECORD, CONTENT, OR TECHNOLOGY, PERTAINING TO OR ON THE SITES. YOU AGREE THAT THIS LIMITATION OF LIABILITY APPLIES WHEHER SUCH ALLEGATIONS ARE FOR BREACH OF CONTRACT, TORTIOUS BEHAVIOR, NEGLIGENCE, OR FALL UNDER ANY OTHER CAUSE OF ACTION, REGARDLESS OF THE BASIS UPON WHICH LIABILITY IS CLAIMED AND EVEN IF TURNER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. WITHOUT LIMITING THE GENERALITY OF THE FORGEOING, YOU ALSO SPECIFICALLY ACKNOWLEDGE THAT TURNER IS NOT LIABLE FOR ANY ACTUAL OR ALLEGED DEFAMATORY, OFFENSIVE, OR ILLEGAL CONDUCT OF OTHER USERS OF THE SITES OR ANY OTHER THIRD PARTIES.IF APPLICABLE LAW DOES NOT ALLOW ALL OR ANY PART OF THE ABOVE LIMITATION OF LIABILITY TO APPLY TO YOU, THE LIMITATIONS WILL APPLY TO YOU ONLY TO THE EXTENT PERMITTED BY APPLICABLE LAW. THIS LIMITATION OF LIABILITY PROVISION APPLIES TO NEW JERSEY RESIDENTS.(E) CNN DISCLAIMS ANY AND ALL LIABILITY OF ANY KIND FOR ANY UNAUTHORIZED ACCESS TO OR USE OF YOUR PERSONALLY IDENTIFIABLE INFORMATION. BY ACCESSING THE SITE, YOU ACKNOWLEDGE AND AGREE TO CNN'S DISCLAIMER OF ANY SUCH LIABILITY. IF YOU DO NOT AGREE, YOU SHOULD NOT ACCESS OR USE THE SITE.(F) TO THE EXTENT PERMITTED BY APPLICABLE LAW, ANY DISPUTE, CLAIM OR CONTROVERSY ARISING OUT OF OR RELATING IN ANY WAY TO THE SERVICE OR YOUR USE OF THE SERVICE AND/OR SITE, THESE TERMS OF USE, OR THE RELATIONSHIP BETWEEN US, MUST BE COMMENCED WITHIN ONE YEAR OF THE RELEVANT EVENTS. A DISPUTE IS COMMENCED IF IT IS FILED IN AN ARBITRATION OR, IF THE DISPUTE IS NON-ARBITRABLE, A COURT WITH JURISDICTION, DURING THE ONE-YEAR PERIOD. IF YOU OR WE PROVIDE NOTICE OF A DISPUTE UNDER SECTION 12 (DISPUTE RESOLUTION), THE ONE-YEAR PERIOD IS TOLLED FOR 60 DAYS FOLLOWING RECEIPT OF THE NOTICE OF DISPUTE. YOU AND WE EACH WAIVE—THAT IS, GIVE UP—THE RIGHT TO PURSUE ANY DISPUTE, CLAIM OR CONTROVERSY THAT IS NOT FILED WITHIN ONE YEAR AND ANY RIGHT YOU OR WE MAY HAVE HAD TO PURSUE THAT DISPUTE, CLAIM OR CONTROVERSY IN ANY FORUM IS PERMANENTLY BARRED.7. Indemnification. You agree to defend, indemnify and hold harmless CNN, its affiliates and their respective directors, officers, employees and agents from and against all claims and expenses, including attorneys' fees, arising out of the use of the Site by you or your Account. CNN reserves the right to take over the exclusive defense of any claim for which we are entitled to indemnification under this Section. In such event, you shall provide CNN with such cooperation as is reasonably requested by CNN.8. Termination. CNN may terminate or suspend these Terms of Use at any time without notice to you. Without limiting the foregoing, CNN shall have the right to immediately terminate Your Account in the event of any conduct by you which CNN, in its sole discretion, considers to be unacceptable, or in the event of any breach by you of these Terms of Use. The provisions of Sections 1 - 13 shall survive termination of these Terms of Use.9. Trademarks. CNN, its parent, subsidiaries and affiliates, own all rights to their logos and trademarks used in connection with the Site. All other logos and trademarks appearing on the Site are the property of their respective owners.10. Governing Law and Venue. The content, data, video, and all other material and features on the Site are presented for the purpose of providing entertainment, news and/or information and/or promoting programs, films, music, games, and other products and/or services that are or may become available in the United States, its territories, possessions, and protectorates. Any and all disputes, claims and controversies arising out of or in connection with your access to, and/or use of the Sites, and/or the provision of content, services, and/or technology on or through the Sites shall be governed by and construed exclusively in accordance with the laws and decisions of the State of New York applicable to contracts made, entered into and performed entirely therein, without giving effect to its conflict of laws provisions, except to the extent that law is inconsistent with or preempted by federal law. To the extent that a dispute is not subject to arbitration under Section 12 (Dispute Resolution) of this Agreement, that action shall be brought in the appropriate state or federal court located in New York County, New York; and we both irrevocably consent to the exclusive jurisdiction and venue of the state or federal courts in New York County, New York for the adjudication of all non-arbitral claims.11. Severability.Except as specified in Section 12 (Dispute Resolution), if any provision of this Agreement shall be unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable for this Agreement and shall not affect the validity and enforceability of any remaining provisions. This is the entire agreement between the parties relating to the matters contained herein.12. Dispute Resolution.Summary:Our customer-service department can resolve most customer concerns quickly and to the customer's satisfaction. Please contact CNN at cnn.com/feedback. In the unlikely event that you're not satisfied with customer service's solution (or if CNN has not been able to resolve a dispute it has with you after attempting to do so informally), we each agree to resolve those disputes through binding arbitration or small claims court instead of in courts of general jurisdiction. Arbitration is more informal than a lawsuit in court. Arbitration uses a neutral arbitrator instead of a judge or jury, allows for more limited discovery than in court, and is subject to very limited review by courts. Unless expressly limited by this Dispute Resolution provision, arbitrators can award the same damages and relief that a court can award. Any arbitration under this Agreement will take place on an individual basis; class arbitrations and class actions are not permitted. For any non-frivolous claim that does not exceed $75,000, we will pay all costs of the arbitration. Moreover, in arbitration you are entitled to recover attorneys' fees from us to at least the same extent as you would be in court. In addition, under certain circumstances (as explained below), we will pay you more than the amount of the arbitrator's award and will pay your attorney (if any) twice his or her reasonable attorneys' fees if the arbitrator awards you an amount that is greater than what we have offered you to settle the dispute.Arbitration Agreement(1) Claims Subject to Arbitration: CNN and you agree to arbitrate all disputes and claims between us, except for claims arising from bodily injury or that pertain to enforcing, protecting, or the validity of your or our intellectual property rights (or the intellectual property rights of any of our licensors, affiliates and partners). This agreement to arbitrate is intended to be broadly interpreted. It includes, but is not limited to:claims arising out of or relating to any aspect of the relationship between us, whether based in contract, tort, fraud, misrepresentation or any other statutory or common-law legal theory;claims that arose before this or any prior Agreement (including, but not limited to, claims relating to advertising);claims for mental or emotional distress or injury not arising out of physical bodily injury;claims that are currently the subject of purported class action litigation in which you are not a member of a certified class; andclaims that may arise after the termination of this Agreement. References to \"CNN,\" \"you,\" and \"us\" include our respective subsidiaries, affiliates, agents, employees, licensees, licensors, and providers of content as of the time your or our claim arises; our respective predecessors in interest, successors, and assigns (including AT&T and its affiliates); and all authorized or unauthorized users or beneficiaries of Services under this or prior Agreements between us. Notwithstanding the foregoing, either party may bring an action in small claims court seeking only individualized relief, so long as the action remains in that court and is not removed or appealed to a court of general jurisdiction. This arbitration agreement does not preclude you from bringing issues to the attention of federal, state, or local agencies. Such agencies can, if the law allows, seek relief against us on your behalf. You agree that, by entering into this Agreement, you and we are each waiving the right to a trial by jury or to participate in a class action. This Agreement evidences a transaction in interstate commerce, and thus the Federal Arbitration Act governs the interpretation and enforcement of this provision. This arbitration provision shall survive termination of this Agreement. (2) Pre-Arbitration Notice of Disputes: A party who intends to seek arbitration must first send to the other a written Notice of Dispute (\"Notice\"). The Notice to CNN should be sent by certified mail to: General Counsel, WarnerMedia News & Sports, 1 CNN Center, Atlanta, GA 30303 (\"Notice Address\"). The Notice must (a) describe the nature and basis of the claim or dispute; and (b) set forth the specific relief sought (\"Demand\"). If we and you do not reach an agreement to resolve the claim within 30 days after the Notice is received, you or we may commence an arbitration proceeding. During the arbitration, the amount of any settlement offer made by us or you shall not be disclosed to the arbitrator until after the arbitrator determines the amount, if any, to which you or us is entitled. You may download a form to initiate arbitration at: adr.org/sites/default/files/Consumer_Demand_for_Arbitration_Form_1.pdf.(3) Arbitration Procedure: The arbitration will be governed by the Consumer Arbitration Rules (\"AAA Rules\") of the American Arbitration Association (\"AAA\"), as modified by this arbitration provision, and will be administered by the AAA. (If the AAA is unavailable, another arbitration provider shall be selected by the parties or by the court.) The AAA Rules are available online at www.adr.org, by calling the AAA at 1-800-778-7879, or by requesting them in writing at the Notice Address. All issues are for the arbitrator to decide, except that issues relating to the scope and enforceability of the arbitration provision or whether a dispute can or must be brought in arbitration are for the court to decide. The arbitrator may consider but shall not be bound by rulings in other arbitrations involving different customers. Unless we and you agree otherwise, any arbitration hearings will take place in the county (or parish) of your billing address. If your claim is for $10,000 or less, we agree that you may choose whether the arbitration will be conducted solely on the basis of documents submitted to the arbitrator, through a telephonic hearing, or by an in-person hearing as established by the AAA Rules. If your claim exceeds $10,000, the right to a hearing will be determined by the AAA Rules. Regardless of the manner in which the arbitration is conducted, the arbitrator shall issue a reasoned written decision sufficient to explain the essential findings and conclusions on which the award is based. Except as provided in subsection (6) below, the arbitrator can award the same damages and individualized relief that a court can award under applicable law.(4) Arbitration Fees: After we receive notice at the Notice Address that you have commenced arbitration, we will promptly reimburse you for your payment of the filing fee, unless your claim is for greater than $75,000 in value. (The filing fee currently is $200 but is subject to change by the arbitration provider. If you are unable to pay this fee, we will pay it directly upon receiving a written request at the Notice Address.) We will pay all AAA filing, administration, and arbitrator fees for any arbitration initiated in accordance with the notice requirements above. If, however, the arbitrator finds that either the substance of your claim or the relief sought in the Demand is frivolous or brought for an improper purpose (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)), then the payment of all such fees will be governed by the AAA Rules. In such case, you agree to reimburse us for all monies we previously paid that are otherwise your obligation to pay under the AAA Rules. In addition, if you initiate an arbitration in which you seek relief valued at greater than $75,000 (either to you or to us), the payment of these fees will be governed by the AAA rules.(5) Alternative Payment and Attorney Premium: If you initiated arbitration in accordance with the notice requirements above in subsection (2) and the arbitrator issues an award in your favor that is greater than the value of our last written settlement offer made before an arbitrator was selected, then we will:pay you the amount of the award or $10,000 (\"the alternative payment\"), whichever is greater; and pay your attorney, if any, twice the amount of attorneys' fees, and reimburse any expenses (including expert witness fees and costs) that your attorney reasonably accrues for investigating, preparing, and pursuing your claim in arbitration (\"the attorney premium\").If we did not make a written offer to settle the dispute before an arbitrator was selected, you and your attorney will be entitled to receive the alternative payment and the attorney premium, respectively, if the arbitrator awards you any relief on the merits. The arbitrator may make rulings and resolve disputes as to the payment and reimbursement of fees, expenses, and the alternative payment and the attorney premium at any time during the proceeding and upon request from either party made within 14 days of the arbitrator's ruling on the merits. In assessing whether an award that includes attorneys' fees or expenses is greater than the value of our last written settlement offer, the calculation shall include only the portion of the award representing attorneys' fees or expenses that you reasonably incurred pursuing the arbitration through the date of our settlement offer.The right to the attorney premium supplements any right to attorneys' fees and expenses you may have under applicable law. Thus, if you would be entitled to a larger amount under the applicable law, this provision does not preclude the arbitrator from awarding you that amount. However, you may not recover both the attorney premium and a duplicative award of attorneys' fees or costs. Although under some laws we may have a right to an award of attorneys' fees and expenses if we prevail in an arbitration, we agree that we will not seek such an award.(6) Requirement of Individual Arbitration: The arbitrator may award declaratory or injunctive relief only in favor of the individual party seeking relief and only to the extent necessary to provide relief warranted by that party's individual claim. YOU AND WE AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR OUR INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. Further, unless both you and we agree otherwise, the arbitrator may not consolidate more than one person's claims and may not otherwise preside over any form of a representative, class, or private attorney general proceeding. If, after exhaustion of all appeals, any of these prohibitions on non-individualized declaratory or injunctive relief; class, representative, and private attorney general claims; and consolidation are found to be unenforceable with respect to a particular claim or with respect to a particular request for relief (such as a request for injunctive relief sought with respect to a particular claim), then that claim or request for relief shall be severed , and all other claims and requests for relief shall be arbitrated. (7) Future Changes to Arbitration Provision: Notwithstanding any provision in this Agreement to the contrary, we agree that if we make any future change to this arbitration provision (other than a change to the Notice Address), you may reject any such change by sending us written notice within 30 days of the change to the arbitration Notice Address provided above. By rejecting any future change, you are agreeing that you will arbitrate any dispute between us in accordance with the language of this provision.13. Miscellaneous.These Terms of Use and any operating rules for the Site established by CNN constitute the entire agreement of the parties with respect to the subject matter hereof, and supersede all previous written or oral agreements between the parties with respect to such subject matter. The provisions of these Terms of Use are for the benefit of CNN, its parent, subsidiaries, other affiliates and its third party content providers and licensors and each shall have the right to assert and enforce such provisions directly or on its own behalf. If you access the Site, including its Interactive Areas, from any location other than the United States, you accept full responsibility for compliance with all local laws. You are also subject to United States export controls and are responsible for any violations of United States embargoes or other federal rules and regulations restricting exports. No waiver by either party of any breach or default hereunder shall be deemed to be a waiver of any preceding or subsequent breach or default. If any part of these Terms of Use is found by a court of competent jurisdiction to be invalid or unenforceable, it will be replaced with language reflecting the original purpose in a valid and enforceable manner. The enforceable sections of these Terms of Use will remain binding upon the parties. The section headings used herein are for convenience only and shall not be given any legal import.Neither CNN nor you shall be liable for damages or for delays or failures in performance resulting from acts or occurrences beyond their reasonable control, including, without limitation: fire, lightning, explosion, power surge or failure, water, acts of God, war, terrorism, revolution, civil commotion or acts of civil or military authorities or public enemies: any law, order, regulation, ordinance, or requirement of any government or legal body or any representative of any such government or legal body; or labor unrest, including without limitation, strikes, slowdowns, picketing, or boycotts; inability to secure raw materials, transportation facilities, fuel or energy shortages, or acts or omissions of other common carriers.14. Copyrights and Copyright Agent.CNN respects the rights of all copyright holders and in this regard, CNN has adopted and implemented a policy that provides for the termination in appropriate circumstances of users and account holders who infringe the rights of copyright holders. If you believe that your work has been copied in a way that constitutes copyright infringement, please provide CNN's Copyright Agent the following information required by the Online Copyright Infringement Liability Limitation Act of the Digital Millennium Copyright Act, 17 U.S.C. 512:1. A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;2. Identification of the copyright work claimed to have been infringed, or, if multiple copyrighted works at a single online site are covered by a single notification, a representative list of such works at that site;3. Identification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit us to locate the material;4. Information reasonably sufficient to permit us to contact the complaining party;5. A statement that the complaining party has a good-faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and6. A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.For copyright inquiries under the Digital Millennium Copyright Act please contact:CNN CollectionOne CNN Center12th Floor, North TowerAtlanta, GA 30303, USAPhone: +1 (404) 827-3326 For web posting, reprint, transcript for CNN material, please contact licensing@cnn.comFor any questions or requests other than copyright issues or licensing requests, please contact cnn.com/feedback.These Terms of Use were last updated on December 23, 2019.", - "article_len":41077, - "domain":"https://www.cnn.com/", - "found_urls":[ - { - "title":"Terms of Service", - "url":"https://www.cnn.com/terms" - }, - { - "title":"", - "url":"https://www.cnn.com/" - }, - { - "title":"visit the US section", - "url":"https://www.cnn.com/us" - }, - { - "title":"visit the World section", - "url":"https://www.cnn.com/world" - }, - { - "title":"visit the Politics section", - "url":"https://www.cnn.com/politics" - }, - { - "title":"visit the Business section", - "url":"https://www.cnn.com/business" - }, - { - "title":"visit the Opinion section", - "url":"https://www.cnn.com/opinions" - }, - { - "title":"visit the Health section", - "url":"https://www.cnn.com/health" - }, - { - "title":"visit the Entertainment section", - "url":"https://www.cnn.com/entertainment" - }, - { - "title":"visit the Style section", - "url":"https://www.cnn.com/style" - }, - { - "title":"visit the Travel section", - "url":"https://www.cnn.com/travel" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/videos" - }, - { - "title":"Live TV", - "url":"http://cnn.it/go2" - }, - { - "title":"U.S.", - "url":"https://us.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"International", - "url":"https://edition.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Arabic", - "url":"https://arabic.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Español", - "url":"https://cnnespanol.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"visit the Crime + Justice section", - "url":"https://www.cnn.com/specials/us/crime-and-justice" - }, - { - "title":"visit the Energy + Environment section", - "url":"https://www.cnn.com/specials/us/energy-and-environment" - }, - { - "title":"visit the Extreme Weather section", - "url":"https://www.cnn.com/specials/us/extreme-weather" - }, - { - "title":"visit the Space + Science section", - "url":"https://www.cnn.com/specials/space-science" - }, - { - "title":"visit the Africa section", - "url":"https://www.cnn.com/africa" - }, - { - "title":"visit the Americas section", - "url":"https://www.cnn.com/americas" - }, - { - "title":"visit the Asia section", - "url":"https://www.cnn.com/asia" - }, - { - "title":"visit the Australia section", - "url":"https://www.cnn.com/australia" - }, - { - "title":"visit the China section", - "url":"https://www.cnn.com/china" - }, - { - "title":"visit the Europe section", - "url":"https://www.cnn.com/europe" - }, - { - "title":"visit the India section", - "url":"https://www.cnn.com/india" - }, - { - "title":"visit the Middle East section", - "url":"https://www.cnn.com/middle-east" - }, - { - "title":"visit the United Kingdom section", - "url":"https://www.cnn.com/uk" - }, - { - "title":"visit the 2020 Election section", - "url":"https://www.cnn.com/election/2020" - }, - { - "title":"visit the Facts First section", - "url":"https://www.cnn.com/specials/politics/fact-check-politics" - }, - { - "title":"visit the Election 101 section", - "url":"https://www.cnn.com/specials/politics/elections-101" - }, - { - "title":"visit the Markets section", - "url":"https://money.cnn.com/data/markets/" - }, - { - "title":"visit the Tech section", - "url":"https://www.cnn.com/business/tech" - }, - { - "title":"visit the Media section", - "url":"https://www.cnn.com/business/media" - }, - { - "title":"visit the Success section", - "url":"https://www.cnn.com/business/success" - }, - { - "title":"visit the Perspectives section", - "url":"https://www.cnn.com/business/perspectives" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/business/videos" - }, - { - "title":"visit the Political Op-Eds section", - "url":"https://www.cnn.com/specials/opinion/opinion-politics" - }, - { - "title":"visit the Social Commentary section", - "url":"https://www.cnn.com/specials/opinion/opinion-social-issues" - }, - { - "title":"visit the Food section", - "url":"https://www.cnn.com/specials/health/food-diet" - }, - { - "title":"visit the Fitness section", - "url":"https://www.cnn.com/specials/health/fitness-excercise" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/health/wellness" - }, - { - "title":"visit the Parenting section", - "url":"https://www.cnn.com/specials/health/parenting" - }, - { - "title":"visit the Vital Signs section", - "url":"https://www.cnn.com/specials/health/vital-signs" - }, - { - "title":"visit the Stars section", - "url":"https://www.cnn.com/entertainment/celebrities" - }, - { - "title":"visit the Screen section", - "url":"https://www.cnn.com/entertainment/movies" - }, - { - "title":"visit the Binge section", - "url":"https://www.cnn.com/entertainment/tv-shows" - }, - { - "title":"visit the Culture section", - "url":"https://www.cnn.com/entertainment/culture" - }, - { - "title":"visit the Innovate section", - "url":"https://www.cnn.com/specials/tech/innovate" - }, - { - "title":"visit the Gadget section", - "url":"https://www.cnn.com/specials/tech/gadget" - }, - { - "title":"visit the Foreseeable Future section", - "url":"https://www.cnn.com/specials/tech/foreseeable-future" - }, - { - "title":"visit the Mission: Ahead section", - "url":"https://www.cnn.com/specials/tech/mission-ahead" - }, - { - "title":"visit the Upstarts section", - "url":"https://www.cnn.com/specials/tech/upstarts" - }, - { - "title":"visit the Work Transformed section", - "url":"https://www.cnn.com/specials/tech/work-transformed" - }, - { - "title":"visit the Innovative Cities section", - "url":"https://www.cnn.com/specials/tech/innovative-cities" - }, - { - "title":"visit the Arts section", - "url":"https://www.cnn.com/style/arts" - }, - { - "title":"visit the Design section", - "url":"https://www.cnn.com/style/design" - }, - { - "title":"visit the Fashion section", - "url":"https://www.cnn.com/style/fashion" - }, - { - "title":"visit the Architecture section", - "url":"https://www.cnn.com/style/architecture" - }, - { - "title":"visit the Luxury section", - "url":"https://www.cnn.com/style/luxury" - }, - { - "title":"visit the Beauty section", - "url":"https://www.cnn.com/style/beauty" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/style/videos" - }, - { - "title":"visit the Destinations section", - "url":"https://www.cnn.com/travel/destinations" - }, - { - "title":"visit the Food and Drink section", - "url":"https://www.cnn.com/travel/food-and-drink" - }, - { - "title":"visit the Stay section", - "url":"https://www.cnn.com/travel/stay" - }, - { - "title":"visit the News section", - "url":"https://www.cnn.com/travel/news" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/travel/videos" - }, - { - "title":"visit the Olympics section", - "url":"https://www.cnn.com/specials/sport/winter-olympics-2018" - }, - { - "title":"visit the Live TV section", - "url":"https://cnn.it/go2" - }, - { - "title":"visit the Digital Studios section", - "url":"https://www.cnn.com/specials/digital-studios" - }, - { - "title":"visit the CNN Films section", - "url":"https://www.cnn.com/specials/videos/digital-shorts" - }, - { - "title":"visit the HLN section", - "url":"https://www.cnn.com/specials/videos/hln" - }, - { - "title":"visit the TV Schedule section", - "url":"https://www.cnn.com/tv/schedule/cnn" - }, - { - "title":"visit the TV Shows A-Z section", - "url":"https://www.cnn.com/specials/tv/all-shows" - }, - { - "title":"visit the CNNVR section", - "url":"https://www.cnn.com/vr" - }, - { - "title":"visit the Coupons section", - "url":"https://coupons.cnn.com/" - }, - { - "title":"visit the CNN Underscored section", - "url":"https://www.cnn.com/cnn-underscored/" - }, - { - "title":"visit the Explore section", - "url":"https://www.cnn.com/specials/cnn-underscored/explore/" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/cnn-underscored/wellness/" - }, - { - "title":"visit the Gadgets section", - "url":"https://www.cnn.com/specials/cnn-underscored/gadgets/" - }, - { - "title":"visit the Lifestyle section", - "url":"https://www.cnn.com/specials/cnn-underscored/lifestyle/" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/?utm_source=cnn.com&utm_medium=referral&utm_campaign=navbar" - }, - { - "title":"visit the More section", - "url":"https://www.cnn.com/more" - }, - { - "title":"visit the Photos section", - "url":"https://www.cnn.com/specials/photos" - }, - { - "title":"visit the Longform section", - "url":"https://www.cnn.com/specials/cnn-longform" - }, - { - "title":"visit the Investigations section", - "url":"https://www.cnn.com/specials/cnn-investigates" - }, - { - "title":"visit the CNN Profiles section", - "url":"https://www.cnn.com/specials/profiles" - }, - { - "title":"visit the CNN Leadership section", - "url":"https://www.cnn.com/specials/more/cnn-leadership" - }, - { - "title":"visit the CNN Newsletters section", - "url":"https://www.cnn.com/email/subscription" - }, - { - "title":"visit the Weather section", - "url":"https://www.cnn.com/weather" - }, - { - "title":"visit the Climate section", - "url":"https://www.cnn.com/specials/world/cnn-climate" - }, - { - "title":"visit the Storm Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/gonzalo-storm-path-tracker/index.html" - }, - { - "title":"visit the Wildfire Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/wildfire-and-air-quality-tracker/" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/specials/weather/weather-video" - }, - { - "title":"", - "url":"https://twitter.com/CNN" - }, - { - "title":"https://cnnespanol.cnn.com/declaraciones-de-privacidad/ ", - "url":"https://cnnespanol.cnn.com/declaraciones-de-privacidad/" - }, - { - "title":"visit the Accessibility & CC section", - "url":"https://www.cnn.com/accessibility" - }, - { - "title":"visit the AdChoices section", - "url":"https://www.cnn.com/privacy0#" - }, - { - "title":"visit the About Us section", - "url":"https://www.cnn.com/about" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/" - }, - { - "title":"visit the Newsletters section", - "url":"https://www.cnn.com/newsletters" - }, - { - "title":"visit the Transcripts section", - "url":"https://www.cnn.com/transcripts" - }, - { - "title":"visit the License Footage section", - "url":"https://www.cnn.com/collection" - }, - { - "title":"visit the Sitemap section", - "url":"https://www.cnn.com/sitemap.html" - }, - { - "title":"As coronavirus cases and hospitalizations in the US pile up, these five charts show how serious the fall surge is", - "url":"https://www.cnn.com/2020/11/12/health/coronavirus-fall-surge-statistics/index.html" - } - ] - }, - "https://www.cnn.com/terms":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

FIRST, AN IMPORTANT MESSAGE: PLEASE READ THESE TERMS AND CONDITIONS OF USE (\"Terms\", \"Terms of Use\", or \"Agreement\") CAREFULLY BEFORE USING THIS SITE, AS THEY AFFECT YOUR LEGAL RIGHTS AND OBLIGATIONS, INCLUDING, BUT NOT LIMITED TO, WAIVERS OF RIGHTS, LIMITATION OF LIABILITY, AND YOUR INDEMNITY TO US. THIS AGREEMENT REQUIRES THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN COURTS OR JURY TRIALS, AND LIMITS THE REMEDIES AVAILABLE IN THE EVENT OF A DISPUTE.

These Terms of Use describe the terms and conditions that govern your use of the current and future online and mobile websites, platforms, services, applications, and networks owned or operated by Cable News Network, Inc. (\"CNN\"), including without limitation, CNN.com, HLNtv.com, CNNI.com (edition.cnn.com) and cnnespanol.com, and/or for which CNN currently or in the future provides services and/or technology (the \"Site\" or \"Sites\"). You accept and agree to be bound by these Terms of Use when you use any of the Sites, without limitation, when you view or access content or videos on any of the Sites.

(A) Governing Terms. These Terms of Use, along with any additional terms and conditions that are referenced herein or that are presented elsewhere on the Site in relation to a specific service or feature and the CNN Privacy Policy, set forth the terms and conditions that apply to your use of the CNN.com Site. By using the Site, you agree to comply with all of the terms and conditions hereof. If you do not agree to these Terms of Use, you should not access or use the Site.

(B) Changes to Terms of Use. CNN may modify the Terms of Use, or any part thereof, or add or remove terms at any time, and such modifications, additions or deletions will be effective immediately upon posting. Your use of the Site after such posting shall be deemed to constitute acceptance by you of such modifications, additions or deletions.

(C) Changes to Site. CNN may change or discontinue any aspect, service or feature of the Site at any time, including, but not limited to, content, hours of availability, and equipment needed for access or use.

(D) Registration. You may be given the opportunity to register via an online registration form to create a user account (\"Your Account\") that may allow you to receive information from CNN and/or to participate in certain features on the Site such as certain Interactive Areas. CNN will use the information you provide in accordance with the CNN Privacy Policy. By registering you represent and warrant that all information that you provide on the registration form is current, complete and accurate to the best of your knowledge. You agree to maintain and promptly update your registration information on the Site so that it remains current, complete and accurate. During the registration process, you may be required to choose a password and/or user name. You acknowledge and agree that CNN may rely on this password or user name to identify you. You shall be responsible for protecting the confidentiality of your user name(s) or password(s), if any. You are responsible for all use of Your Account, regardless of whether you authorized such access or use, and for ensuring that all use of Your Account complies fully with the provisions of these Terms of Use.

(E) Equipment. You are responsible for obtaining and maintaining all connectivity, computer software, hardware and other equipment needed for access to and use of the Site and all charges related to the same.

2. User Content and Conduct; Community Guidelines

The following terms apply to content submitted by users, and user conduct, on the Site's Interactive Areas, including CNN iReport:

(A) Interactive Areas. The Site may contain comments sections, discussion forums, or other interactive features, including CNN iReport, CNN's user-generated news community (\"Interactive Areas\") in which you may post or upload user-generated content, including but not limited to iReports, comments, video, photos, messages, other materials or items (collectively, \"User Content\"). You are solely responsible for your use of any Interactive Areas and you use them at your own risk. Interactive Areas are available for individuals aged 13 years or older. By submitting User Content to an Interactive Area, you represent that you are 13 years of age or older and, if you are under the age of 18, you either are an emancipated minor, or have obtained the legal consent of your parent or legal guardian to enter into these Terms of Use, submit content, participate on the Site, and fulfill the obligations set forth in these Terms of Use, which forms a binding contract between you and CNN. Employees of Cable News Network, Inc. may not submit User Content without permission from their supervisors.

(B) Community Guidelines. By submitting any User Content or participating in an Interactive Area within or in connection with the Site, you agree to abide by the following rules of conduct:

  • You agree not to upload, post or otherwise transmit any User Content that:
  • violates or infringes in any way upon the rights of others, including any statements which may defame, harass, stalk or threaten others.
  • you know to be false, misleading or inaccurate.
  • contains blatant expressions of bigotry, racism, racially or ethnically offensive content, hate speech, abusiveness, vulgarity or profanity.
  • contains or advocates pornography or sexually explicit content, pedophilia, incest, bestiality, or that is otherwise obscene or lewd.
  • violates any law or advocates or provides instruction on dangerous, illegal, or predatory acts, or discusses illegal activities with the intent to commit them.
  • advocates violent behavior.
  • poses a reasonable threat to personal or public safety.
  • contains violent images of killing or physical abuse that appear to have been captured solely, or principally, for exploitive, prurient, or gratuitous purposes.
  • is protected by copyright, trademark, trade secret, right of publicity or other proprietary right without the express permission of the owner of such copyright, trademark, trade secret, right of publicity or other proprietary right. The burden of determining that any User Content is not protected by copyright, trademark, trade secret, right of publicity or other proprietary right rests with you. You shall be solely liable for any damage resulting from any infringement of copyrights, trademarks, trade secrets, rights of publicity or other proprietary rights or any other harm resulting from such a submission. Any person determined by CNN, in its sole discretion, to have violated the intellectual property or other rights of others shall be barred from submitting or posting any further material on the Site.
  • does not generally pertain to the designated topic or theme of any Interactive Area.
  • contains any unsolicited or unauthorized advertising or promotional materials with respect to products or services, \"junk mail,\" \"spam,\" \"chain letters,\" \"pyramid schemes,\" or any other form of solicitation.
  • You agree not to engage in activity that would constitute a criminal offense or give rise to a civil liability.
  • You agree that if necessary, you have the consent of each and every identifiable natural person in any submission to use such persons name or likeness in the manner contemplated by the Site.
  • You agree that any person who appears in your submission who is a current member of the Screen Actors Guild (SAG), the American Federation of Television and Radio Actors (AFTRA) or any other rights society is not entitled to compensation by CNN.
  • You agree not to impersonate any person or entity, including, but not limited to, CNN or any CNN employee, or falsely state or otherwise misrepresent your affiliation with any person or entity.
  • You agree not to represent or suggest, directly or indirectly, CNN's endorsement of User Content.
  • You agree not to interfere with any other user's right to privacy, including by harvesting or collecting personally-identifiable information about the Site users or posting private information about a third party.
  • You agree not to upload, post or otherwise transmit any User Content, software or other materials which contain a virus or other harmful or disruptive component.
  • You agree not to interfere with or disrupt the Site or the servers or networks connected to the Site, or disobey any requirements, procedures, policies or regulations of networks connected to the Site.
  • You agree not to reproduce, duplicate, copy, sell, resell or exploit for any commercial purpose, any portion of the Site, use the Site, or access to the Site.
  • You agree not to use any service, technology or automated system to artificially inflate the page views that your User Content receives. This includes pay-per-click services, web \"robots\" and any other current or future technologies. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf.
  • You agree not to use any technology, service or automated system to post more User Content than an individual could upload in a given period of time. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf.

Any conduct that in CNN's sole discretion restricts or inhibits anyone else from using or enjoying the Site will not be permitted. CNN reserves the right in its sole discretion to remove or edit User Content by you and to terminate Your Account for any reason.

CNN does not vouch for the accuracy or credibility of any User Content, and does not take any responsibility or assume any liability for any actions you may take as a result of reading User Content posted on the Site. Through your use of Interactive Areas, you may be exposed to content that you may find offensive, objectionable, harmful, inaccurate or deceptive. There may also be risks of dealing with underage persons, people acting under false pretense, international trade issues and foreign nationals. By using Interactive Areas, you assume all associated risks.

(C) Monitoring. CNN shall have the right, but not the obligation, to monitor User Content posted or uploaded to the Site to determine compliance with these Terms of Use and any operating rules established by CNN and to satisfy any law, regulation or authorized government request. Although CNN has no obligation to monitor, screen, edit or remove any of the User Content posted or uploaded to the Site, CNN reserves the right, and has absolute discretion, to screen, edit, refuse to post or remove without notice any User Content posted or uploaded to the Site at any time and for any reason, and you are solely responsible for creating backup copies of and replacing any User Content posted to the Site at your sole cost and expense. In addition, CNN may share personally identifiable information in response to a law enforcement agency's request, or where we believe it is necessary, or as otherwise required or permitted by law. See CNN Privacy Policy.

The decision by CNN to monitor and/or modify User Content does not constitute nor shall it be deemed to constitute any responsibility or liability in any manner on the part of CNN in connection with or arising from use by you of Interactive Areas on the Site.

(D) License to User Content. By submitting User Content to the Site, you automatically grant CNN and its parent company, Turner Broadcasting, System, Inc., the royalty-free, perpetual, irrevocable, non-exclusive right and license, but not the obligation, to use, publish, reproduce, modify, adapt, edit, translate, create derivative works from, incorporate into other works, distribute, sub-license and otherwise exploit such User Content (in whole or in part) worldwide in any form, media or technology now known or hereafter developed for the full term of any copyright that may exist in such User Content, without payment to you or to any third parties. Notwithstanding the foregoing, in the event CNN licenses your iReport as stand-alone content outside of CNN's programming to third parties unaffiliated with CNN, CNN will pay you a percentage of the license fees it actually receives according to rates determined by CNN's licensing division, ImageSource. You agree and acknowledge that any iReport you submit may be entered into the annual iReport Awards. You represent and warrant to CNN that you have the full legal right, power and authority to grant to CNN the license provided for herein, that you own or control the complete exhibition and other rights to the User Content you submitted for the purposes contemplated in this license and that neither the User Content nor the exercise of the rights granted herein shall violate these Terms of Use, or infringe upon any rights, including the right of privacy or right of publicity, constitute a libel or slander against, or violate any common law or any other right of, or cause injury to, any person or entity. You further grant CNN the right, but not the obligation, to pursue at law any person or entity that violates your or CNN's rights in the User Content by a breach of these Terms of Use.

(E) Moral Rights. If it is determined that you retain moral rights (including rights of attribution or integrity) in the User Content, you hereby declare that (a) you do not require that any personally identifying information be used in connection with the User Content, or any derivative works of or upgrades or updates thereto; (b) you have no objection to the publication, use, modification, deletion and exploitation of the User Content by CNN or its licensees, successors and assigns; (c) you forever waive and agree not to claim or assert any entitlement to any and all moral rights of an author in any of the User Content; and (d) you forever release CNN, and its licensees, successors and assigns, from any claims that you could otherwise assert against CNN by virtue of any such moral rights. You also permit any other user to access, view, store or reproduce the User Content for that user's personal use.

(F) No Obligation. User Content submitted by you will be considered non-confidential and CNN is under no obligation to treat such User Content as proprietary information except pursuant to the CNN Privacy Policy. Without limiting the foregoing, CNN reserves the right to use any User Content as it deems appropriate, including, without limitation, deleting, editing, modifying, rejecting, or refusing to post it. CNN is under no obligation to edit, delete or otherwise modify User Content once it has been submitted to CNN. CNN shall have no duty to attribute authorship of User Content to you, and shall not be obligated to enforce any form of attribution by third parties.

3. Copyright Ownership.

The Site contains copyrighted material, trademarks and other proprietary information, including, but not limited to, text, software, photos, video, graphics, music and sound, and the entire contents of the Site are copyrighted as a collective work under the United States copyright laws. CNN owns copyright in the selection, coordination, arrangement and enhancement of such content, as well as in the content original to it. You may not modify, publish, transmit, participate in the transfer or sale, create derivative works, or in any way exploit, any of the content, in whole or in part. You may download copyrighted material for your personal use only. Except as otherwise expressly permitted under copyright law, no copying, redistribution, retransmission, publication or commercial exploitation of downloaded material will be permitted without the express permission of CNN and the copyright owner. In the event of any permitted copying, redistribution or publication of copyrighted material, no changes in or deletion of author attribution, trademark legend or copyright notice shall be made. You acknowledge that you do not acquire any ownership rights by downloading copyrighted material.

4. Third Party Content.

CNN is a distributor (and not a publisher or creator) of content supplied by third parties and users. Any opinions, advice, statements, services, offers, or other information or content expressed or made available by third parties, including information providers or users of the Site, are those of the respective author(s) or distributor(s) and not of CNN. Neither CNN nor any third-party provider of information guarantees the accuracy, completeness, or usefulness of any content, nor its merchantability or fitness for any particular purpose. (Refer to Section 6 below for the complete provisions governing limitation of liabilities and disclaimers of warranty.)

In many instances, the content available through the Site represents the opinions and judgments of the respective user or information provider not under contract with CNN. CNN neither endorses nor is responsible for the accuracy or reliability of any opinion, advice or statement made on the Site by any third party. Under no circumstances will CNN be responsible or liable, directly or indirectly, for any loss or damage caused by your use or reliance on information obtained through the Site. CNN is not responsible for any actions or inaction on your part based on the information that is presented on the Site. It is your responsibility to evaluate the accuracy, completeness or usefulness of any information, opinion, advice or other content available through the Site. Please seek the advice of professionals, as appropriate, regarding the evaluation of any specific information, opinion, advice or other content.

5. Advertisements and Promotions.

CNN may run advertisements and promotions from third parties on the Site. Your business dealings or correspondence with, or participation in promotions of, advertisers other than CNN, and any terms, conditions, warranties or representations associated with such dealings, are solely between you and such third party. CNN is not responsible or liable for any loss or damage of any sort incurred as the result of any such dealings or as the result of the presence of third-party advertisers on the Site.

6. Disclaimer of Warranty; Limitation of Liability and Time Limitation for Claims.

(A) YOU EXPRESSLY AGREE THAT USE OF THE SITE IS AT YOUR SOLE RISK. NEITHER CNN, ITS PRESENT OR FUTURE PARENT(S), SUBSIDIARIES, OR RELATED ENTITIES (COLLECTIVELY, \"TURNER\"), NOR ANY OF THEIR RESPECTIVE EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS OR LICENSORS WARRANT THAT THE SITE WILL BE UNINTERRUPTED OR ERROR FREE; NOR DO THEY MAKE ANY WARRANTY AS TO THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE SITE, OR AS TO THE ACCURACY, RELIABILITY OR CONTENT OF ANY INFORMATION, SERVICE, OR MERCHANDISE PROVIDED THROUGH THE SITE.

(B) THE SITE, INCLUDING, WITHOUT LIMITATION, ANY DOWNLOADABLE SOFTWARE, IS PROVIDED ON AN \"AS IS\" BASIS WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OTHER THAN THOSE WARRANTIES WHICH ARE IMPLIED BY AND INCAPABLE OF EXCLUSION, RESTRICTION OR MODIFICATION UNDER THE LAWS APPLICABLE TO THESE TERMS OF USE.

(C) THE SITE MAY OFFER HEALTH, FITNESS, NUTRITIONAL AND OTHER SUCH INFORMATION, BUT SUCH INFORMATION IS DESIGNED FOR EDUCATIONAL AND INFORMATIONAL PURPOSES ONLY. THE INFORMATION CONTAINED ON THE SITE DOES NOT AND IS NOT INTENDED TO CONVEY MEDICAL ADVICE AND DOES NOT CONSTITUTE THE PRACTICE OF MEDICINE. YOU SHOULD NOT RELY ON THIS INFORMATION AS A SUBSTITUTE FOR, NOR DOES IT REPLACE, PROFESSIONAL MEDICAL ADVICE, DIAGNOSIS, OR TREATMENT. CNN IS NOT RESPONSIBLE FOR ANY ACTIONS OR INACTION ON A USER'S PART BASED ON THE INFORMATION THAT IS PRESENTED IN THE SITE.

(D) TO THE FULLEST EXTENT PERMISSIBLE BY APPLICABLE LAW, IN NO EVENT SHALL TURNER, BE LIABLE TO YOU FOR ANY PERSONAL INJURY, PROPERTY DAMAGE, LOST PROFITS, COST OF SUBSTITUTE GOODS OR SERVICES, LOSS OF DATA, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER AND/OR DEVICE OR TECHNOLOGY FAILURE OR MALFUNCTION OR FOR ANY FORM OF DIRECT OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES BASED ON ANY CAUSES OF ACTION ARISING OUT OF USE OF THE SITE OR ANY ALLEGED FAILURE OF PERFORMANCE, ERROR, OMISSION, INTERRUPTION, DELETION, DEFECT, OR DELAY IN SERVICE, OPERATION, OR TRANSMISSION OF THE SITES, OR ANY ALLEGED COMPUTER VIRUS, COMMUNICATION LINE FAILURE, THEFT OR DESTRUCTION OF PROPERTY, AND/OR UNAUTHORIZED ACCESS TO, ALTERATION OF, OR USE OF OR POSTING OF ANY RECORD, CONTENT, OR TECHNOLOGY, PERTAINING TO OR ON THE SITES. YOU AGREE THAT THIS LIMITATION OF LIABILITY APPLIES WHEHER SUCH ALLEGATIONS ARE FOR BREACH OF CONTRACT, TORTIOUS BEHAVIOR, NEGLIGENCE, OR FALL UNDER ANY OTHER CAUSE OF ACTION, REGARDLESS OF THE BASIS UPON WHICH LIABILITY IS CLAIMED AND EVEN IF TURNER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. WITHOUT LIMITING THE GENERALITY OF THE FORGEOING, YOU ALSO SPECIFICALLY ACKNOWLEDGE THAT TURNER IS NOT LIABLE FOR ANY ACTUAL OR ALLEGED DEFAMATORY, OFFENSIVE, OR ILLEGAL CONDUCT OF OTHER USERS OF THE SITES OR ANY OTHER THIRD PARTIES.

IF APPLICABLE LAW DOES NOT ALLOW ALL OR ANY PART OF THE ABOVE LIMITATION OF LIABILITY TO APPLY TO YOU, THE LIMITATIONS WILL APPLY TO YOU ONLY TO THE EXTENT PERMITTED BY APPLICABLE LAW. THIS LIMITATION OF LIABILITY PROVISION APPLIES TO NEW JERSEY RESIDENTS.

(E) CNN DISCLAIMS ANY AND ALL LIABILITY OF ANY KIND FOR ANY UNAUTHORIZED ACCESS TO OR USE OF YOUR PERSONALLY IDENTIFIABLE INFORMATION. BY ACCESSING THE SITE, YOU ACKNOWLEDGE AND AGREE TO CNN'S DISCLAIMER OF ANY SUCH LIABILITY. IF YOU DO NOT AGREE, YOU SHOULD NOT ACCESS OR USE THE SITE.

(F) TO THE EXTENT PERMITTED BY APPLICABLE LAW, ANY DISPUTE, CLAIM OR CONTROVERSY ARISING OUT OF OR RELATING IN ANY WAY TO THE SERVICE OR YOUR USE OF THE SERVICE AND/OR SITE, THESE TERMS OF USE, OR THE RELATIONSHIP BETWEEN US, MUST BE COMMENCED WITHIN ONE YEAR OF THE RELEVANT EVENTS. A DISPUTE IS COMMENCED IF IT IS FILED IN AN ARBITRATION OR, IF THE DISPUTE IS NON-ARBITRABLE, A COURT WITH JURISDICTION, DURING THE ONE-YEAR PERIOD. IF YOU OR WE PROVIDE NOTICE OF A DISPUTE UNDER SECTION 12 (DISPUTE RESOLUTION), THE ONE-YEAR PERIOD IS TOLLED FOR 60 DAYS FOLLOWING RECEIPT OF THE NOTICE OF DISPUTE. YOU AND WE EACH WAIVE—THAT IS, GIVE UP—THE RIGHT TO PURSUE ANY DISPUTE, CLAIM OR CONTROVERSY THAT IS NOT FILED WITHIN ONE YEAR AND ANY RIGHT YOU OR WE MAY HAVE HAD TO PURSUE THAT DISPUTE, CLAIM OR CONTROVERSY IN ANY FORUM IS PERMANENTLY BARRED.

7. Indemnification.

You agree to defend, indemnify and hold harmless CNN, its affiliates and their respective directors, officers, employees and agents from and against all claims and expenses, including attorneys' fees, arising out of the use of the Site by you or your Account. CNN reserves the right to take over the exclusive defense of any claim for which we are entitled to indemnification under this Section. In such event, you shall provide CNN with such cooperation as is reasonably requested by CNN.

8. Termination.

CNN may terminate or suspend these Terms of Use at any time without notice to you. Without limiting the foregoing, CNN shall have the right to immediately terminate Your Account in the event of any conduct by you which CNN, in its sole discretion, considers to be unacceptable, or in the event of any breach by you of these Terms of Use. The provisions of Sections 1 - 13 shall survive termination of these Terms of Use.

9. Trademarks.

CNN, its parent, subsidiaries and affiliates, own all rights to their logos and trademarks used in connection with the Site. All other logos and trademarks appearing on the Site are the property of their respective owners.

10. Governing Law and Venue.

The content, data, video, and all other material and features on the Site are presented for the purpose of providing entertainment, news and/or information and/or promoting programs, films, music, games, and other products and/or services that are or may become available in the United States, its territories, possessions, and protectorates.

Any and all disputes, claims and controversies arising out of or in connection with your access to, and/or use of the Sites, and/or the provision of content, services, and/or technology on or through the Sites shall be governed by and construed exclusively in accordance with the laws and decisions of the State of New York applicable to contracts made, entered into and performed entirely therein, without giving effect to its conflict of laws provisions, except to the extent that law is inconsistent with or preempted by federal law. To the extent that a dispute is not subject to arbitration under Section 12 (Dispute Resolution) of this Agreement, that action shall be brought in the appropriate state or federal court located in New York County, New York; and we both irrevocably consent to the exclusive jurisdiction and venue of the state or federal courts in New York County, New York for the adjudication of all non-arbitral claims.

11. Severability.

Except as specified in Section 12 (Dispute Resolution), if any provision of this Agreement shall be unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable for this Agreement and shall not affect the validity and enforceability of any remaining provisions. This is the entire agreement between the parties relating to the matters contained herein.

12. Dispute Resolution.

Summary:

Our customer-service department can resolve most customer concerns quickly and to the customer's satisfaction. Please contact CNN at cnn.com/feedback. In the unlikely event that you're not satisfied with customer service's solution (or if CNN has not been able to resolve a dispute it has with you after attempting to do so informally), we each agree to resolve those disputes through binding arbitration or small claims court instead of in courts of general jurisdiction.

Arbitration is more informal than a lawsuit in court. Arbitration uses a neutral arbitrator instead of a judge or jury, allows for more limited discovery than in court, and is subject to very limited review by courts. Unless expressly limited by this Dispute Resolution provision, arbitrators can award the same damages and relief that a court can award. Any arbitration under this Agreement will take place on an individual basis; class arbitrations and class actions are not permitted. For any non-frivolous claim that does not exceed $75,000, we will pay all costs of the arbitration. Moreover, in arbitration you are entitled to recover attorneys' fees from us to at least the same extent as you would be in court.

In addition, under certain circumstances (as explained below), we will pay you more than the amount of the arbitrator's award and will pay your attorney (if any) twice his or her reasonable attorneys' fees if the arbitrator awards you an amount that is greater than what we have offered you to settle the dispute.

Arbitration Agreement

(1) Claims Subject to Arbitration: CNN and you agree to arbitrate all disputes and claims between us, except for claims arising from bodily injury or that pertain to enforcing, protecting, or the validity of your or our intellectual property rights (or the intellectual property rights of any of our licensors, affiliates and partners). This agreement to arbitrate is intended to be broadly interpreted. It includes, but is not limited to:

  • claims arising out of or relating to any aspect of the relationship between us, whether based in contract, tort, fraud, misrepresentation or any other statutory or common-law legal theory;
  • claims that arose before this or any prior Agreement (including, but not limited to, claims relating to advertising);
  • claims for mental or emotional distress or injury not arising out of physical bodily injury;
  • claims that are currently the subject of purported class action litigation in which you are not a member of a certified class; and
  • claims that may arise after the termination of this Agreement.

References to \"CNN,\" \"you,\" and \"us\" include our respective subsidiaries, affiliates, agents, employees, licensees, licensors, and providers of content as of the time your or our claim arises; our respective predecessors in interest, successors, and assigns (including AT&T and its affiliates); and all authorized or unauthorized users or beneficiaries of Services under this or prior Agreements between us. Notwithstanding the foregoing, either party may bring an action in small claims court seeking only individualized relief, so long as the action remains in that court and is not removed or appealed to a court of general jurisdiction. This arbitration agreement does not preclude you from bringing issues to the attention of federal, state, or local agencies. Such agencies can, if the law allows, seek relief against us on your behalf. You agree that, by entering into this Agreement, you and we are each waiving the right to a trial by jury or to participate in a class action. This Agreement evidences a transaction in interstate commerce, and thus the Federal Arbitration Act governs the interpretation and enforcement of this provision. This arbitration provision shall survive termination of this Agreement.

(2) Pre-Arbitration Notice of Disputes: A party who intends to seek arbitration must first send to the other a written Notice of Dispute (\"Notice\"). The Notice to CNN should be sent by certified mail to: General Counsel, WarnerMedia News & Sports, 1 CNN Center, Atlanta, GA 30303 (\"Notice Address\"). The Notice must (a) describe the nature and basis of the claim or dispute; and (b) set forth the specific relief sought (\"Demand\").

If we and you do not reach an agreement to resolve the claim within 30 days after the Notice is received, you or we may commence an arbitration proceeding. During the arbitration, the amount of any settlement offer made by us or you shall not be disclosed to the arbitrator until after the arbitrator determines the amount, if any, to which you or us is entitled. You may download a form to initiate arbitration at: adr.org/sites/default/files/Consumer_Demand_for_Arbitration_Form_1.pdf.

(3) Arbitration Procedure: The arbitration will be governed by the Consumer Arbitration Rules (\"AAA Rules\") of the American Arbitration Association (\"AAA\"), as modified by this arbitration provision, and will be administered by the AAA. (If the AAA is unavailable, another arbitration provider shall be selected by the parties or by the court.) The AAA Rules are available online at www.adr.org, by calling the AAA at 1-800-778-7879, or by requesting them in writing at the Notice Address. All issues are for the arbitrator to decide, except that issues relating to the scope and enforceability of the arbitration provision or whether a dispute can or must be brought in arbitration are for the court to decide. The arbitrator may consider but shall not be bound by rulings in other arbitrations involving different customers. Unless we and you agree otherwise, any arbitration hearings will take place in the county (or parish) of your billing address. If your claim is for $10,000 or less, we agree that you may choose whether the arbitration will be conducted solely on the basis of documents submitted to the arbitrator, through a telephonic hearing, or by an in-person hearing as established by the AAA Rules. If your claim exceeds $10,000, the right to a hearing will be determined by the AAA Rules. Regardless of the manner in which the arbitration is conducted, the arbitrator shall issue a reasoned written decision sufficient to explain the essential findings and conclusions on which the award is based. Except as provided in subsection (6) below, the arbitrator can award the same damages and individualized relief that a court can award under applicable law.

(4) Arbitration Fees: After we receive notice at the Notice Address that you have commenced arbitration, we will promptly reimburse you for your payment of the filing fee, unless your claim is for greater than $75,000 in value. (The filing fee currently is $200 but is subject to change by the arbitration provider. If you are unable to pay this fee, we will pay it directly upon receiving a written request at the Notice Address.) We will pay all AAA filing, administration, and arbitrator fees for any arbitration initiated in accordance with the notice requirements above. If, however, the arbitrator finds that either the substance of your claim or the relief sought in the Demand is frivolous or brought for an improper purpose (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)), then the payment of all such fees will be governed by the AAA Rules. In such case, you agree to reimburse us for all monies we previously paid that are otherwise your obligation to pay under the AAA Rules. In addition, if you initiate an arbitration in which you seek relief valued at greater than $75,000 (either to you or to us), the payment of these fees will be governed by the AAA rules.

(5) Alternative Payment and Attorney Premium: If you initiated arbitration in accordance with the notice requirements above in subsection (2) and the arbitrator issues an award in your favor that is greater than the value of our last written settlement offer made before an arbitrator was selected, then we will:

  • pay you the amount of the award or $10,000 (\"the alternative payment\"), whichever is greater; and
  • pay your attorney, if any, twice the amount of attorneys' fees, and reimburse any expenses (including expert witness fees and costs) that your attorney reasonably accrues for investigating, preparing, and pursuing your claim in arbitration (\"the attorney premium\").

If we did not make a written offer to settle the dispute before an arbitrator was selected, you and your attorney will be entitled to receive the alternative payment and the attorney premium, respectively, if the arbitrator awards you any relief on the merits. The arbitrator may make rulings and resolve disputes as to the payment and reimbursement of fees, expenses, and the alternative payment and the attorney premium at any time during the proceeding and upon request from either party made within 14 days of the arbitrator's ruling on the merits. In assessing whether an award that includes attorneys' fees or expenses is greater than the value of our last written settlement offer, the calculation shall include only the portion of the award representing attorneys' fees or expenses that you reasonably incurred pursuing the arbitration through the date of our settlement offer.

The right to the attorney premium supplements any right to attorneys' fees and expenses you may have under applicable law. Thus, if you would be entitled to a larger amount under the applicable law, this provision does not preclude the arbitrator from awarding you that amount. However, you may not recover both the attorney premium and a duplicative award of attorneys' fees or costs. Although under some laws we may have a right to an award of attorneys' fees and expenses if we prevail in an arbitration, we agree that we will not seek such an award.

(6) Requirement of Individual Arbitration: The arbitrator may award declaratory or injunctive relief only in favor of the individual party seeking relief and only to the extent necessary to provide relief warranted by that party's individual claim. YOU AND WE AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR OUR INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. Further, unless both you and we agree otherwise, the arbitrator may not consolidate more than one person's claims and may not otherwise preside over any form of a representative, class, or private attorney general proceeding. If, after exhaustion of all appeals, any of these prohibitions on non-individualized declaratory or injunctive relief; class, representative, and private attorney general claims; and consolidation are found to be unenforceable with respect to a particular claim or with respect to a particular request for relief (such as a request for injunctive relief sought with respect to a particular claim), then that claim or request for relief shall be severed , and all other claims and requests for relief shall be arbitrated.

(7) Future Changes to Arbitration Provision: Notwithstanding any provision in this Agreement to the contrary, we agree that if we make any future change to this arbitration provision (other than a change to the Notice Address), you may reject any such change by sending us written notice within 30 days of the change to the arbitration Notice Address provided above. By rejecting any future change, you are agreeing that you will arbitrate any dispute between us in accordance with the language of this provision.

13. Miscellaneous.

These Terms of Use and any operating rules for the Site established by CNN constitute the entire agreement of the parties with respect to the subject matter hereof, and supersede all previous written or oral agreements between the parties with respect to such subject matter. The provisions of these Terms of Use are for the benefit of CNN, its parent, subsidiaries, other affiliates and its third party content providers and licensors and each shall have the right to assert and enforce such provisions directly or on its own behalf. If you access the Site, including its Interactive Areas, from any location other than the United States, you accept full responsibility for compliance with all local laws. You are also subject to United States export controls and are responsible for any violations of United States embargoes or other federal rules and regulations restricting exports. No waiver by either party of any breach or default hereunder shall be deemed to be a waiver of any preceding or subsequent breach or default. If any part of these Terms of Use is found by a court of competent jurisdiction to be invalid or unenforceable, it will be replaced with language reflecting the original purpose in a valid and enforceable manner. The enforceable sections of these Terms of Use will remain binding upon the parties. The section headings used herein are for convenience only and shall not be given any legal import.

Neither CNN nor you shall be liable for damages or for delays or failures in performance resulting from acts or occurrences beyond their reasonable control, including, without limitation: fire, lightning, explosion, power surge or failure, water, acts of God, war, terrorism, revolution, civil commotion or acts of civil or military authorities or public enemies: any law, order, regulation, ordinance, or requirement of any government or legal body or any representative of any such government or legal body; or labor unrest, including without limitation, strikes, slowdowns, picketing, or boycotts; inability to secure raw materials, transportation facilities, fuel or energy shortages, or acts or omissions of other common carriers.

14. Copyrights and Copyright Agent.

CNN respects the rights of all copyright holders and in this regard, CNN has adopted and implemented a policy that provides for the termination in appropriate circumstances of users and account holders who infringe the rights of copyright holders. If you believe that your work has been copied in a way that constitutes copyright infringement, please provide CNN's Copyright Agent the following information required by the Online Copyright Infringement Liability Limitation Act of the Digital Millennium Copyright Act, 17 U.S.C. 512:

1. A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;

2. Identification of the copyright work claimed to have been infringed, or, if multiple copyrighted works at a single online site are covered by a single notification, a representative list of such works at that site;

3. Identification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit us to locate the material;

4. Information reasonably sufficient to permit us to contact the complaining party;

5. A statement that the complaining party has a good-faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and

6. A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.

For copyright inquiries under the Digital Millennium Copyright Act please contact:

CNN Collection

One CNN Center

12th Floor, North Tower

Atlanta, GA 30303, USA

Phone: +1 (404) 827-3326

For web posting, reprint, transcript for CNN material, please contact licensing@cnn.com

For any questions or requests other than copyright issues or licensing requests, please contact cnn.com/feedback.

These Terms of Use were last updated on December 23, 2019.

", - "article_text":"FIRST, AN IMPORTANT MESSAGE: PLEASE READ THESE TERMS AND CONDITIONS OF USE (\"Terms\", \"Terms of Use\", or \"Agreement\") CAREFULLY BEFORE USING THIS SITE, AS THEY AFFECT YOUR LEGAL RIGHTS AND OBLIGATIONS, INCLUDING, BUT NOT LIMITED TO, WAIVERS OF RIGHTS, LIMITATION OF LIABILITY, AND YOUR INDEMNITY TO US. THIS AGREEMENT REQUIRES THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN COURTS OR JURY TRIALS, AND LIMITS THE REMEDIES AVAILABLE IN THE EVENT OF A DISPUTE.These Terms of Use describe the terms and conditions that govern your use of the current and future online and mobile websites, platforms, services, applications, and networks owned or operated by Cable News Network, Inc. (\"CNN\"), including without limitation, CNN.com, HLNtv.com, CNNI.com (edition.cnn.com) and cnnespanol.com, and/or for which CNN currently or in the future provides services and/or technology (the \"Site\" or \"Sites\"). You accept and agree to be bound by these Terms of Use when you use any of the Sites, without limitation, when you view or access content or videos on any of the Sites.(A) Governing Terms. These Terms of Use, along with any additional terms and conditions that are referenced herein or that are presented elsewhere on the Site in relation to a specific service or feature and the CNN Privacy Policy, set forth the terms and conditions that apply to your use of the CNN.com Site. By using the Site, you agree to comply with all of the terms and conditions hereof. If you do not agree to these Terms of Use, you should not access or use the Site. (B) Changes to Terms of Use. CNN may modify the Terms of Use, or any part thereof, or add or remove terms at any time, and such modifications, additions or deletions will be effective immediately upon posting. Your use of the Site after such posting shall be deemed to constitute acceptance by you of such modifications, additions or deletions.(C) Changes to Site. CNN may change or discontinue any aspect, service or feature of the Site at any time, including, but not limited to, content, hours of availability, and equipment needed for access or use.(D) Registration. You may be given the opportunity to register via an online registration form to create a user account (\"Your Account\") that may allow you to receive information from CNN and/or to participate in certain features on the Site such as certain Interactive Areas. CNN will use the information you provide in accordance with the CNN Privacy Policy. By registering you represent and warrant that all information that you provide on the registration form is current, complete and accurate to the best of your knowledge. You agree to maintain and promptly update your registration information on the Site so that it remains current, complete and accurate. During the registration process, you may be required to choose a password and/or user name. You acknowledge and agree that CNN may rely on this password or user name to identify you. You shall be responsible for protecting the confidentiality of your user name(s) or password(s), if any. You are responsible for all use of Your Account, regardless of whether you authorized such access or use, and for ensuring that all use of Your Account complies fully with the provisions of these Terms of Use.(E) Equipment. You are responsible for obtaining and maintaining all connectivity, computer software, hardware and other equipment needed for access to and use of the Site and all charges related to the same.2. User Content and Conduct; Community GuidelinesThe following terms apply to content submitted by users, and user conduct, on the Site's Interactive Areas, including CNN iReport: (A) Interactive Areas. The Site may contain comments sections, discussion forums, or other interactive features, including CNN iReport, CNN's user-generated news community (\"Interactive Areas\") in which you may post or upload user-generated content, including but not limited to iReports, comments, video, photos, messages, other materials or items (collectively, \"User Content\"). You are solely responsible for your use of any Interactive Areas and you use them at your own risk. Interactive Areas are available for individuals aged 13 years or older. By submitting User Content to an Interactive Area, you represent that you are 13 years of age or older and, if you are under the age of 18, you either are an emancipated minor, or have obtained the legal consent of your parent or legal guardian to enter into these Terms of Use, submit content, participate on the Site, and fulfill the obligations set forth in these Terms of Use, which forms a binding contract between you and CNN. Employees of Cable News Network, Inc. may not submit User Content without permission from their supervisors. (B) Community Guidelines. By submitting any User Content or participating in an Interactive Area within or in connection with the Site, you agree to abide by the following rules of conduct:You agree not to upload, post or otherwise transmit any User Content that:violates or infringes in any way upon the rights of others, including any statements which may defame, harass, stalk or threaten others.you know to be false, misleading or inaccurate.contains blatant expressions of bigotry, racism, racially or ethnically offensive content, hate speech, abusiveness, vulgarity or profanity.contains or advocates pornography or sexually explicit content, pedophilia, incest, bestiality, or that is otherwise obscene or lewd.violates any law or advocates or provides instruction on dangerous, illegal, or predatory acts, or discusses illegal activities with the intent to commit them.advocates violent behavior.poses a reasonable threat to personal or public safety.contains violent images of killing or physical abuse that appear to have been captured solely, or principally, for exploitive, prurient, or gratuitous purposes.is protected by copyright, trademark, trade secret, right of publicity or other proprietary right without the express permission of the owner of such copyright, trademark, trade secret, right of publicity or other proprietary right. The burden of determining that any User Content is not protected by copyright, trademark, trade secret, right of publicity or other proprietary right rests with you. You shall be solely liable for any damage resulting from any infringement of copyrights, trademarks, trade secrets, rights of publicity or other proprietary rights or any other harm resulting from such a submission. Any person determined by CNN, in its sole discretion, to have violated the intellectual property or other rights of others shall be barred from submitting or posting any further material on the Site.does not generally pertain to the designated topic or theme of any Interactive Area.contains any unsolicited or unauthorized advertising or promotional materials with respect to products or services, \"junk mail,\" \"spam,\" \"chain letters,\" \"pyramid schemes,\" or any other form of solicitation.You agree not to engage in activity that would constitute a criminal offense or give rise to a civil liability.You agree that if necessary, you have the consent of each and every identifiable natural person in any submission to use such persons name or likeness in the manner contemplated by the Site.You agree that any person who appears in your submission who is a current member of the Screen Actors Guild (SAG), the American Federation of Television and Radio Actors (AFTRA) or any other rights society is not entitled to compensation by CNN.You agree not to impersonate any person or entity, including, but not limited to, CNN or any CNN employee, or falsely state or otherwise misrepresent your affiliation with any person or entity.You agree not to represent or suggest, directly or indirectly, CNN's endorsement of User Content.You agree not to interfere with any other user's right to privacy, including by harvesting or collecting personally-identifiable information about the Site users or posting private information about a third party.You agree not to upload, post or otherwise transmit any User Content, software or other materials which contain a virus or other harmful or disruptive component.You agree not to interfere with or disrupt the Site or the servers or networks connected to the Site, or disobey any requirements, procedures, policies or regulations of networks connected to the Site.You agree not to reproduce, duplicate, copy, sell, resell or exploit for any commercial purpose, any portion of the Site, use the Site, or access to the Site.You agree not to use any service, technology or automated system to artificially inflate the page views that your User Content receives. This includes pay-per-click services, web \"robots\" and any other current or future technologies. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf. You agree not to use any technology, service or automated system to post more User Content than an individual could upload in a given period of time. You also agree not to direct any third party to use these services, technologies or automated systems on your behalf.Any conduct that in CNN's sole discretion restricts or inhibits anyone else from using or enjoying the Site will not be permitted. CNN reserves the right in its sole discretion to remove or edit User Content by you and to terminate Your Account for any reason. CNN does not vouch for the accuracy or credibility of any User Content, and does not take any responsibility or assume any liability for any actions you may take as a result of reading User Content posted on the Site. Through your use of Interactive Areas, you may be exposed to content that you may find offensive, objectionable, harmful, inaccurate or deceptive. There may also be risks of dealing with underage persons, people acting under false pretense, international trade issues and foreign nationals. By using Interactive Areas, you assume all associated risks.(C) Monitoring. CNN shall have the right, but not the obligation, to monitor User Content posted or uploaded to the Site to determine compliance with these Terms of Use and any operating rules established by CNN and to satisfy any law, regulation or authorized government request. Although CNN has no obligation to monitor, screen, edit or remove any of the User Content posted or uploaded to the Site, CNN reserves the right, and has absolute discretion, to screen, edit, refuse to post or remove without notice any User Content posted or uploaded to the Site at any time and for any reason, and you are solely responsible for creating backup copies of and replacing any User Content posted to the Site at your sole cost and expense. In addition, CNN may share personally identifiable information in response to a law enforcement agency's request, or where we believe it is necessary, or as otherwise required or permitted by law. See CNN Privacy Policy. The decision by CNN to monitor and/or modify User Content does not constitute nor shall it be deemed to constitute any responsibility or liability in any manner on the part of CNN in connection with or arising from use by you of Interactive Areas on the Site.(D) License to User Content. By submitting User Content to the Site, you automatically grant CNN and its parent company, Turner Broadcasting, System, Inc., the royalty-free, perpetual, irrevocable, non-exclusive right and license, but not the obligation, to use, publish, reproduce, modify, adapt, edit, translate, create derivative works from, incorporate into other works, distribute, sub-license and otherwise exploit such User Content (in whole or in part) worldwide in any form, media or technology now known or hereafter developed for the full term of any copyright that may exist in such User Content, without payment to you or to any third parties. Notwithstanding the foregoing, in the event CNN licenses your iReport as stand-alone content outside of CNN's programming to third parties unaffiliated with CNN, CNN will pay you a percentage of the license fees it actually receives according to rates determined by CNN's licensing division, ImageSource. You agree and acknowledge that any iReport you submit may be entered into the annual iReport Awards. You represent and warrant to CNN that you have the full legal right, power and authority to grant to CNN the license provided for herein, that you own or control the complete exhibition and other rights to the User Content you submitted for the purposes contemplated in this license and that neither the User Content nor the exercise of the rights granted herein shall violate these Terms of Use, or infringe upon any rights, including the right of privacy or right of publicity, constitute a libel or slander against, or violate any common law or any other right of, or cause injury to, any person or entity. You further grant CNN the right, but not the obligation, to pursue at law any person or entity that violates your or CNN's rights in the User Content by a breach of these Terms of Use.(E) Moral Rights. If it is determined that you retain moral rights (including rights of attribution or integrity) in the User Content, you hereby declare that (a) you do not require that any personally identifying information be used in connection with the User Content, or any derivative works of or upgrades or updates thereto; (b) you have no objection to the publication, use, modification, deletion and exploitation of the User Content by CNN or its licensees, successors and assigns; (c) you forever waive and agree not to claim or assert any entitlement to any and all moral rights of an author in any of the User Content; and (d) you forever release CNN, and its licensees, successors and assigns, from any claims that you could otherwise assert against CNN by virtue of any such moral rights. You also permit any other user to access, view, store or reproduce the User Content for that user's personal use.(F) No Obligation. User Content submitted by you will be considered non-confidential and CNN is under no obligation to treat such User Content as proprietary information except pursuant to the CNN Privacy Policy. Without limiting the foregoing, CNN reserves the right to use any User Content as it deems appropriate, including, without limitation, deleting, editing, modifying, rejecting, or refusing to post it. CNN is under no obligation to edit, delete or otherwise modify User Content once it has been submitted to CNN. CNN shall have no duty to attribute authorship of User Content to you, and shall not be obligated to enforce any form of attribution by third parties.3. Copyright Ownership. The Site contains copyrighted material, trademarks and other proprietary information, including, but not limited to, text, software, photos, video, graphics, music and sound, and the entire contents of the Site are copyrighted as a collective work under the United States copyright laws. CNN owns copyright in the selection, coordination, arrangement and enhancement of such content, as well as in the content original to it. You may not modify, publish, transmit, participate in the transfer or sale, create derivative works, or in any way exploit, any of the content, in whole or in part. You may download copyrighted material for your personal use only. Except as otherwise expressly permitted under copyright law, no copying, redistribution, retransmission, publication or commercial exploitation of downloaded material will be permitted without the express permission of CNN and the copyright owner. In the event of any permitted copying, redistribution or publication of copyrighted material, no changes in or deletion of author attribution, trademark legend or copyright notice shall be made. You acknowledge that you do not acquire any ownership rights by downloading copyrighted material.4. Third Party Content. CNN is a distributor (and not a publisher or creator) of content supplied by third parties and users. Any opinions, advice, statements, services, offers, or other information or content expressed or made available by third parties, including information providers or users of the Site, are those of the respective author(s) or distributor(s) and not of CNN. Neither CNN nor any third-party provider of information guarantees the accuracy, completeness, or usefulness of any content, nor its merchantability or fitness for any particular purpose. (Refer to Section 6 below for the complete provisions governing limitation of liabilities and disclaimers of warranty.)In many instances, the content available through the Site represents the opinions and judgments of the respective user or information provider not under contract with CNN. CNN neither endorses nor is responsible for the accuracy or reliability of any opinion, advice or statement made on the Site by any third party. Under no circumstances will CNN be responsible or liable, directly or indirectly, for any loss or damage caused by your use or reliance on information obtained through the Site. CNN is not responsible for any actions or inaction on your part based on the information that is presented on the Site. It is your responsibility to evaluate the accuracy, completeness or usefulness of any information, opinion, advice or other content available through the Site. Please seek the advice of professionals, as appropriate, regarding the evaluation of any specific information, opinion, advice or other content.5. Advertisements and Promotions.CNN may run advertisements and promotions from third parties on the Site. Your business dealings or correspondence with, or participation in promotions of, advertisers other than CNN, and any terms, conditions, warranties or representations associated with such dealings, are solely between you and such third party. CNN is not responsible or liable for any loss or damage of any sort incurred as the result of any such dealings or as the result of the presence of third-party advertisers on the Site.6. Disclaimer of Warranty; Limitation of Liability and Time Limitation for Claims. (A) YOU EXPRESSLY AGREE THAT USE OF THE SITE IS AT YOUR SOLE RISK. NEITHER CNN, ITS PRESENT OR FUTURE PARENT(S), SUBSIDIARIES, OR RELATED ENTITIES (COLLECTIVELY, \"TURNER\"), NOR ANY OF THEIR RESPECTIVE EMPLOYEES, AGENTS, THIRD PARTY CONTENT PROVIDERS OR LICENSORS WARRANT THAT THE SITE WILL BE UNINTERRUPTED OR ERROR FREE; NOR DO THEY MAKE ANY WARRANTY AS TO THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE SITE, OR AS TO THE ACCURACY, RELIABILITY OR CONTENT OF ANY INFORMATION, SERVICE, OR MERCHANDISE PROVIDED THROUGH THE SITE.(B) THE SITE, INCLUDING, WITHOUT LIMITATION, ANY DOWNLOADABLE SOFTWARE, IS PROVIDED ON AN \"AS IS\" BASIS WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF TITLE OR IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, OTHER THAN THOSE WARRANTIES WHICH ARE IMPLIED BY AND INCAPABLE OF EXCLUSION, RESTRICTION OR MODIFICATION UNDER THE LAWS APPLICABLE TO THESE TERMS OF USE.(C) THE SITE MAY OFFER HEALTH, FITNESS, NUTRITIONAL AND OTHER SUCH INFORMATION, BUT SUCH INFORMATION IS DESIGNED FOR EDUCATIONAL AND INFORMATIONAL PURPOSES ONLY. THE INFORMATION CONTAINED ON THE SITE DOES NOT AND IS NOT INTENDED TO CONVEY MEDICAL ADVICE AND DOES NOT CONSTITUTE THE PRACTICE OF MEDICINE. YOU SHOULD NOT RELY ON THIS INFORMATION AS A SUBSTITUTE FOR, NOR DOES IT REPLACE, PROFESSIONAL MEDICAL ADVICE, DIAGNOSIS, OR TREATMENT. CNN IS NOT RESPONSIBLE FOR ANY ACTIONS OR INACTION ON A USER'S PART BASED ON THE INFORMATION THAT IS PRESENTED IN THE SITE.(D) TO THE FULLEST EXTENT PERMISSIBLE BY APPLICABLE LAW, IN NO EVENT SHALL TURNER, BE LIABLE TO YOU FOR ANY PERSONAL INJURY, PROPERTY DAMAGE, LOST PROFITS, COST OF SUBSTITUTE GOODS OR SERVICES, LOSS OF DATA, LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER AND/OR DEVICE OR TECHNOLOGY FAILURE OR MALFUNCTION OR FOR ANY FORM OF DIRECT OR INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES BASED ON ANY CAUSES OF ACTION ARISING OUT OF USE OF THE SITE OR ANY ALLEGED FAILURE OF PERFORMANCE, ERROR, OMISSION, INTERRUPTION, DELETION, DEFECT, OR DELAY IN SERVICE, OPERATION, OR TRANSMISSION OF THE SITES, OR ANY ALLEGED COMPUTER VIRUS, COMMUNICATION LINE FAILURE, THEFT OR DESTRUCTION OF PROPERTY, AND/OR UNAUTHORIZED ACCESS TO, ALTERATION OF, OR USE OF OR POSTING OF ANY RECORD, CONTENT, OR TECHNOLOGY, PERTAINING TO OR ON THE SITES. YOU AGREE THAT THIS LIMITATION OF LIABILITY APPLIES WHEHER SUCH ALLEGATIONS ARE FOR BREACH OF CONTRACT, TORTIOUS BEHAVIOR, NEGLIGENCE, OR FALL UNDER ANY OTHER CAUSE OF ACTION, REGARDLESS OF THE BASIS UPON WHICH LIABILITY IS CLAIMED AND EVEN IF TURNER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS OR DAMAGE. WITHOUT LIMITING THE GENERALITY OF THE FORGEOING, YOU ALSO SPECIFICALLY ACKNOWLEDGE THAT TURNER IS NOT LIABLE FOR ANY ACTUAL OR ALLEGED DEFAMATORY, OFFENSIVE, OR ILLEGAL CONDUCT OF OTHER USERS OF THE SITES OR ANY OTHER THIRD PARTIES.IF APPLICABLE LAW DOES NOT ALLOW ALL OR ANY PART OF THE ABOVE LIMITATION OF LIABILITY TO APPLY TO YOU, THE LIMITATIONS WILL APPLY TO YOU ONLY TO THE EXTENT PERMITTED BY APPLICABLE LAW. THIS LIMITATION OF LIABILITY PROVISION APPLIES TO NEW JERSEY RESIDENTS.(E) CNN DISCLAIMS ANY AND ALL LIABILITY OF ANY KIND FOR ANY UNAUTHORIZED ACCESS TO OR USE OF YOUR PERSONALLY IDENTIFIABLE INFORMATION. BY ACCESSING THE SITE, YOU ACKNOWLEDGE AND AGREE TO CNN'S DISCLAIMER OF ANY SUCH LIABILITY. IF YOU DO NOT AGREE, YOU SHOULD NOT ACCESS OR USE THE SITE.(F) TO THE EXTENT PERMITTED BY APPLICABLE LAW, ANY DISPUTE, CLAIM OR CONTROVERSY ARISING OUT OF OR RELATING IN ANY WAY TO THE SERVICE OR YOUR USE OF THE SERVICE AND/OR SITE, THESE TERMS OF USE, OR THE RELATIONSHIP BETWEEN US, MUST BE COMMENCED WITHIN ONE YEAR OF THE RELEVANT EVENTS. A DISPUTE IS COMMENCED IF IT IS FILED IN AN ARBITRATION OR, IF THE DISPUTE IS NON-ARBITRABLE, A COURT WITH JURISDICTION, DURING THE ONE-YEAR PERIOD. IF YOU OR WE PROVIDE NOTICE OF A DISPUTE UNDER SECTION 12 (DISPUTE RESOLUTION), THE ONE-YEAR PERIOD IS TOLLED FOR 60 DAYS FOLLOWING RECEIPT OF THE NOTICE OF DISPUTE. YOU AND WE EACH WAIVE—THAT IS, GIVE UP—THE RIGHT TO PURSUE ANY DISPUTE, CLAIM OR CONTROVERSY THAT IS NOT FILED WITHIN ONE YEAR AND ANY RIGHT YOU OR WE MAY HAVE HAD TO PURSUE THAT DISPUTE, CLAIM OR CONTROVERSY IN ANY FORUM IS PERMANENTLY BARRED.7. Indemnification. You agree to defend, indemnify and hold harmless CNN, its affiliates and their respective directors, officers, employees and agents from and against all claims and expenses, including attorneys' fees, arising out of the use of the Site by you or your Account. CNN reserves the right to take over the exclusive defense of any claim for which we are entitled to indemnification under this Section. In such event, you shall provide CNN with such cooperation as is reasonably requested by CNN.8. Termination. CNN may terminate or suspend these Terms of Use at any time without notice to you. Without limiting the foregoing, CNN shall have the right to immediately terminate Your Account in the event of any conduct by you which CNN, in its sole discretion, considers to be unacceptable, or in the event of any breach by you of these Terms of Use. The provisions of Sections 1 - 13 shall survive termination of these Terms of Use.9. Trademarks. CNN, its parent, subsidiaries and affiliates, own all rights to their logos and trademarks used in connection with the Site. All other logos and trademarks appearing on the Site are the property of their respective owners.10. Governing Law and Venue. The content, data, video, and all other material and features on the Site are presented for the purpose of providing entertainment, news and/or information and/or promoting programs, films, music, games, and other products and/or services that are or may become available in the United States, its territories, possessions, and protectorates. Any and all disputes, claims and controversies arising out of or in connection with your access to, and/or use of the Sites, and/or the provision of content, services, and/or technology on or through the Sites shall be governed by and construed exclusively in accordance with the laws and decisions of the State of New York applicable to contracts made, entered into and performed entirely therein, without giving effect to its conflict of laws provisions, except to the extent that law is inconsistent with or preempted by federal law. To the extent that a dispute is not subject to arbitration under Section 12 (Dispute Resolution) of this Agreement, that action shall be brought in the appropriate state or federal court located in New York County, New York; and we both irrevocably consent to the exclusive jurisdiction and venue of the state or federal courts in New York County, New York for the adjudication of all non-arbitral claims.11. Severability.Except as specified in Section 12 (Dispute Resolution), if any provision of this Agreement shall be unlawful, void, or for any reason unenforceable, then that provision shall be deemed severable for this Agreement and shall not affect the validity and enforceability of any remaining provisions. This is the entire agreement between the parties relating to the matters contained herein.12. Dispute Resolution.Summary:Our customer-service department can resolve most customer concerns quickly and to the customer's satisfaction. Please contact CNN at cnn.com/feedback. In the unlikely event that you're not satisfied with customer service's solution (or if CNN has not been able to resolve a dispute it has with you after attempting to do so informally), we each agree to resolve those disputes through binding arbitration or small claims court instead of in courts of general jurisdiction. Arbitration is more informal than a lawsuit in court. Arbitration uses a neutral arbitrator instead of a judge or jury, allows for more limited discovery than in court, and is subject to very limited review by courts. Unless expressly limited by this Dispute Resolution provision, arbitrators can award the same damages and relief that a court can award. Any arbitration under this Agreement will take place on an individual basis; class arbitrations and class actions are not permitted. For any non-frivolous claim that does not exceed $75,000, we will pay all costs of the arbitration. Moreover, in arbitration you are entitled to recover attorneys' fees from us to at least the same extent as you would be in court. In addition, under certain circumstances (as explained below), we will pay you more than the amount of the arbitrator's award and will pay your attorney (if any) twice his or her reasonable attorneys' fees if the arbitrator awards you an amount that is greater than what we have offered you to settle the dispute.Arbitration Agreement(1) Claims Subject to Arbitration: CNN and you agree to arbitrate all disputes and claims between us, except for claims arising from bodily injury or that pertain to enforcing, protecting, or the validity of your or our intellectual property rights (or the intellectual property rights of any of our licensors, affiliates and partners). This agreement to arbitrate is intended to be broadly interpreted. It includes, but is not limited to:claims arising out of or relating to any aspect of the relationship between us, whether based in contract, tort, fraud, misrepresentation or any other statutory or common-law legal theory;claims that arose before this or any prior Agreement (including, but not limited to, claims relating to advertising);claims for mental or emotional distress or injury not arising out of physical bodily injury;claims that are currently the subject of purported class action litigation in which you are not a member of a certified class; andclaims that may arise after the termination of this Agreement. References to \"CNN,\" \"you,\" and \"us\" include our respective subsidiaries, affiliates, agents, employees, licensees, licensors, and providers of content as of the time your or our claim arises; our respective predecessors in interest, successors, and assigns (including AT&T and its affiliates); and all authorized or unauthorized users or beneficiaries of Services under this or prior Agreements between us. Notwithstanding the foregoing, either party may bring an action in small claims court seeking only individualized relief, so long as the action remains in that court and is not removed or appealed to a court of general jurisdiction. This arbitration agreement does not preclude you from bringing issues to the attention of federal, state, or local agencies. Such agencies can, if the law allows, seek relief against us on your behalf. You agree that, by entering into this Agreement, you and we are each waiving the right to a trial by jury or to participate in a class action. This Agreement evidences a transaction in interstate commerce, and thus the Federal Arbitration Act governs the interpretation and enforcement of this provision. This arbitration provision shall survive termination of this Agreement. (2) Pre-Arbitration Notice of Disputes: A party who intends to seek arbitration must first send to the other a written Notice of Dispute (\"Notice\"). The Notice to CNN should be sent by certified mail to: General Counsel, WarnerMedia News & Sports, 1 CNN Center, Atlanta, GA 30303 (\"Notice Address\"). The Notice must (a) describe the nature and basis of the claim or dispute; and (b) set forth the specific relief sought (\"Demand\"). If we and you do not reach an agreement to resolve the claim within 30 days after the Notice is received, you or we may commence an arbitration proceeding. During the arbitration, the amount of any settlement offer made by us or you shall not be disclosed to the arbitrator until after the arbitrator determines the amount, if any, to which you or us is entitled. You may download a form to initiate arbitration at: adr.org/sites/default/files/Consumer_Demand_for_Arbitration_Form_1.pdf.(3) Arbitration Procedure: The arbitration will be governed by the Consumer Arbitration Rules (\"AAA Rules\") of the American Arbitration Association (\"AAA\"), as modified by this arbitration provision, and will be administered by the AAA. (If the AAA is unavailable, another arbitration provider shall be selected by the parties or by the court.) The AAA Rules are available online at www.adr.org, by calling the AAA at 1-800-778-7879, or by requesting them in writing at the Notice Address. All issues are for the arbitrator to decide, except that issues relating to the scope and enforceability of the arbitration provision or whether a dispute can or must be brought in arbitration are for the court to decide. The arbitrator may consider but shall not be bound by rulings in other arbitrations involving different customers. Unless we and you agree otherwise, any arbitration hearings will take place in the county (or parish) of your billing address. If your claim is for $10,000 or less, we agree that you may choose whether the arbitration will be conducted solely on the basis of documents submitted to the arbitrator, through a telephonic hearing, or by an in-person hearing as established by the AAA Rules. If your claim exceeds $10,000, the right to a hearing will be determined by the AAA Rules. Regardless of the manner in which the arbitration is conducted, the arbitrator shall issue a reasoned written decision sufficient to explain the essential findings and conclusions on which the award is based. Except as provided in subsection (6) below, the arbitrator can award the same damages and individualized relief that a court can award under applicable law.(4) Arbitration Fees: After we receive notice at the Notice Address that you have commenced arbitration, we will promptly reimburse you for your payment of the filing fee, unless your claim is for greater than $75,000 in value. (The filing fee currently is $200 but is subject to change by the arbitration provider. If you are unable to pay this fee, we will pay it directly upon receiving a written request at the Notice Address.) We will pay all AAA filing, administration, and arbitrator fees for any arbitration initiated in accordance with the notice requirements above. If, however, the arbitrator finds that either the substance of your claim or the relief sought in the Demand is frivolous or brought for an improper purpose (as measured by the standards set forth in Federal Rule of Civil Procedure 11(b)), then the payment of all such fees will be governed by the AAA Rules. In such case, you agree to reimburse us for all monies we previously paid that are otherwise your obligation to pay under the AAA Rules. In addition, if you initiate an arbitration in which you seek relief valued at greater than $75,000 (either to you or to us), the payment of these fees will be governed by the AAA rules.(5) Alternative Payment and Attorney Premium: If you initiated arbitration in accordance with the notice requirements above in subsection (2) and the arbitrator issues an award in your favor that is greater than the value of our last written settlement offer made before an arbitrator was selected, then we will:pay you the amount of the award or $10,000 (\"the alternative payment\"), whichever is greater; and pay your attorney, if any, twice the amount of attorneys' fees, and reimburse any expenses (including expert witness fees and costs) that your attorney reasonably accrues for investigating, preparing, and pursuing your claim in arbitration (\"the attorney premium\").If we did not make a written offer to settle the dispute before an arbitrator was selected, you and your attorney will be entitled to receive the alternative payment and the attorney premium, respectively, if the arbitrator awards you any relief on the merits. The arbitrator may make rulings and resolve disputes as to the payment and reimbursement of fees, expenses, and the alternative payment and the attorney premium at any time during the proceeding and upon request from either party made within 14 days of the arbitrator's ruling on the merits. In assessing whether an award that includes attorneys' fees or expenses is greater than the value of our last written settlement offer, the calculation shall include only the portion of the award representing attorneys' fees or expenses that you reasonably incurred pursuing the arbitration through the date of our settlement offer.The right to the attorney premium supplements any right to attorneys' fees and expenses you may have under applicable law. Thus, if you would be entitled to a larger amount under the applicable law, this provision does not preclude the arbitrator from awarding you that amount. However, you may not recover both the attorney premium and a duplicative award of attorneys' fees or costs. Although under some laws we may have a right to an award of attorneys' fees and expenses if we prevail in an arbitration, we agree that we will not seek such an award.(6) Requirement of Individual Arbitration: The arbitrator may award declaratory or injunctive relief only in favor of the individual party seeking relief and only to the extent necessary to provide relief warranted by that party's individual claim. YOU AND WE AGREE THAT EACH MAY BRING CLAIMS AGAINST THE OTHER ONLY IN YOUR OR OUR INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS, REPRESENTATIVE, OR PRIVATE ATTORNEY GENERAL PROCEEDING. Further, unless both you and we agree otherwise, the arbitrator may not consolidate more than one person's claims and may not otherwise preside over any form of a representative, class, or private attorney general proceeding. If, after exhaustion of all appeals, any of these prohibitions on non-individualized declaratory or injunctive relief; class, representative, and private attorney general claims; and consolidation are found to be unenforceable with respect to a particular claim or with respect to a particular request for relief (such as a request for injunctive relief sought with respect to a particular claim), then that claim or request for relief shall be severed , and all other claims and requests for relief shall be arbitrated. (7) Future Changes to Arbitration Provision: Notwithstanding any provision in this Agreement to the contrary, we agree that if we make any future change to this arbitration provision (other than a change to the Notice Address), you may reject any such change by sending us written notice within 30 days of the change to the arbitration Notice Address provided above. By rejecting any future change, you are agreeing that you will arbitrate any dispute between us in accordance with the language of this provision.13. Miscellaneous.These Terms of Use and any operating rules for the Site established by CNN constitute the entire agreement of the parties with respect to the subject matter hereof, and supersede all previous written or oral agreements between the parties with respect to such subject matter. The provisions of these Terms of Use are for the benefit of CNN, its parent, subsidiaries, other affiliates and its third party content providers and licensors and each shall have the right to assert and enforce such provisions directly or on its own behalf. If you access the Site, including its Interactive Areas, from any location other than the United States, you accept full responsibility for compliance with all local laws. You are also subject to United States export controls and are responsible for any violations of United States embargoes or other federal rules and regulations restricting exports. No waiver by either party of any breach or default hereunder shall be deemed to be a waiver of any preceding or subsequent breach or default. If any part of these Terms of Use is found by a court of competent jurisdiction to be invalid or unenforceable, it will be replaced with language reflecting the original purpose in a valid and enforceable manner. The enforceable sections of these Terms of Use will remain binding upon the parties. The section headings used herein are for convenience only and shall not be given any legal import.Neither CNN nor you shall be liable for damages or for delays or failures in performance resulting from acts or occurrences beyond their reasonable control, including, without limitation: fire, lightning, explosion, power surge or failure, water, acts of God, war, terrorism, revolution, civil commotion or acts of civil or military authorities or public enemies: any law, order, regulation, ordinance, or requirement of any government or legal body or any representative of any such government or legal body; or labor unrest, including without limitation, strikes, slowdowns, picketing, or boycotts; inability to secure raw materials, transportation facilities, fuel or energy shortages, or acts or omissions of other common carriers.14. Copyrights and Copyright Agent.CNN respects the rights of all copyright holders and in this regard, CNN has adopted and implemented a policy that provides for the termination in appropriate circumstances of users and account holders who infringe the rights of copyright holders. If you believe that your work has been copied in a way that constitutes copyright infringement, please provide CNN's Copyright Agent the following information required by the Online Copyright Infringement Liability Limitation Act of the Digital Millennium Copyright Act, 17 U.S.C. 512:1. A physical or electronic signature of a person authorized to act on behalf of the owner of an exclusive right that is allegedly infringed;2. Identification of the copyright work claimed to have been infringed, or, if multiple copyrighted works at a single online site are covered by a single notification, a representative list of such works at that site;3. Identification of the material that is claimed to be infringing or to be the subject of infringing activity and that is to be removed or access to which is to be disabled, and information reasonably sufficient to permit us to locate the material;4. Information reasonably sufficient to permit us to contact the complaining party;5. A statement that the complaining party has a good-faith belief that use of the material in the manner complained of is not authorized by the copyright owner, its agent, or the law; and6. A statement that the information in the notification is accurate, and under penalty of perjury, that the complaining party is authorized to act on behalf of the owner of an exclusive right that is allegedly infringed.For copyright inquiries under the Digital Millennium Copyright Act please contact:CNN CollectionOne CNN Center12th Floor, North TowerAtlanta, GA 30303, USAPhone: +1 (404) 827-3326 For web posting, reprint, transcript for CNN material, please contact licensing@cnn.comFor any questions or requests other than copyright issues or licensing requests, please contact cnn.com/feedback.These Terms of Use were last updated on December 23, 2019.", - "article_len":41077, - "domain":"https://www.cnn.com/", - "found_urls":[ - { - "title":"Privacy Policy", - "url":"https://www.cnn.com/privacy" - }, - { - "title":"", - "url":"https://www.cnn.com/" - }, - { - "title":"visit the US section", - "url":"https://www.cnn.com/us" - }, - { - "title":"visit the World section", - "url":"https://www.cnn.com/world" - }, - { - "title":"visit the Politics section", - "url":"https://www.cnn.com/politics" - }, - { - "title":"visit the Business section", - "url":"https://www.cnn.com/business" - }, - { - "title":"visit the Opinion section", - "url":"https://www.cnn.com/opinions" - }, - { - "title":"visit the Health section", - "url":"https://www.cnn.com/health" - }, - { - "title":"visit the Entertainment section", - "url":"https://www.cnn.com/entertainment" - }, - { - "title":"visit the Style section", - "url":"https://www.cnn.com/style" - }, - { - "title":"visit the Travel section", - "url":"https://www.cnn.com/travel" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/videos" - }, - { - "title":"Live TV", - "url":"http://cnn.it/go2" - }, - { - "title":"U.S.", - "url":"https://us.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"International", - "url":"https://edition.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Arabic", - "url":"https://arabic.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Español", - "url":"https://cnnespanol.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"visit the Crime + Justice section", - "url":"https://www.cnn.com/specials/us/crime-and-justice" - }, - { - "title":"visit the Energy + Environment section", - "url":"https://www.cnn.com/specials/us/energy-and-environment" - }, - { - "title":"visit the Extreme Weather section", - "url":"https://www.cnn.com/specials/us/extreme-weather" - }, - { - "title":"visit the Space + Science section", - "url":"https://www.cnn.com/specials/space-science" - }, - { - "title":"visit the Africa section", - "url":"https://www.cnn.com/africa" - }, - { - "title":"visit the Americas section", - "url":"https://www.cnn.com/americas" - }, - { - "title":"visit the Asia section", - "url":"https://www.cnn.com/asia" - }, - { - "title":"visit the Australia section", - "url":"https://www.cnn.com/australia" - }, - { - "title":"visit the China section", - "url":"https://www.cnn.com/china" - }, - { - "title":"visit the Europe section", - "url":"https://www.cnn.com/europe" - }, - { - "title":"visit the India section", - "url":"https://www.cnn.com/india" - }, - { - "title":"visit the Middle East section", - "url":"https://www.cnn.com/middle-east" - }, - { - "title":"visit the United Kingdom section", - "url":"https://www.cnn.com/uk" - }, - { - "title":"visit the 2020 Election section", - "url":"https://www.cnn.com/election/2020" - }, - { - "title":"visit the Facts First section", - "url":"https://www.cnn.com/specials/politics/fact-check-politics" - }, - { - "title":"visit the Election 101 section", - "url":"https://www.cnn.com/specials/politics/elections-101" - }, - { - "title":"visit the Markets section", - "url":"https://money.cnn.com/data/markets/" - }, - { - "title":"visit the Tech section", - "url":"https://www.cnn.com/business/tech" - }, - { - "title":"visit the Media section", - "url":"https://www.cnn.com/business/media" - }, - { - "title":"visit the Success section", - "url":"https://www.cnn.com/business/success" - }, - { - "title":"visit the Perspectives section", - "url":"https://www.cnn.com/business/perspectives" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/business/videos" - }, - { - "title":"visit the Political Op-Eds section", - "url":"https://www.cnn.com/specials/opinion/opinion-politics" - }, - { - "title":"visit the Social Commentary section", - "url":"https://www.cnn.com/specials/opinion/opinion-social-issues" - }, - { - "title":"visit the Food section", - "url":"https://www.cnn.com/specials/health/food-diet" - }, - { - "title":"visit the Fitness section", - "url":"https://www.cnn.com/specials/health/fitness-excercise" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/health/wellness" - }, - { - "title":"visit the Parenting section", - "url":"https://www.cnn.com/specials/health/parenting" - }, - { - "title":"visit the Vital Signs section", - "url":"https://www.cnn.com/specials/health/vital-signs" - }, - { - "title":"visit the Stars section", - "url":"https://www.cnn.com/entertainment/celebrities" - }, - { - "title":"visit the Screen section", - "url":"https://www.cnn.com/entertainment/movies" - }, - { - "title":"visit the Binge section", - "url":"https://www.cnn.com/entertainment/tv-shows" - }, - { - "title":"visit the Culture section", - "url":"https://www.cnn.com/entertainment/culture" - }, - { - "title":"visit the Innovate section", - "url":"https://www.cnn.com/specials/tech/innovate" - }, - { - "title":"visit the Gadget section", - "url":"https://www.cnn.com/specials/tech/gadget" - }, - { - "title":"visit the Foreseeable Future section", - "url":"https://www.cnn.com/specials/tech/foreseeable-future" - }, - { - "title":"visit the Mission: Ahead section", - "url":"https://www.cnn.com/specials/tech/mission-ahead" - }, - { - "title":"visit the Upstarts section", - "url":"https://www.cnn.com/specials/tech/upstarts" - }, - { - "title":"visit the Work Transformed section", - "url":"https://www.cnn.com/specials/tech/work-transformed" - }, - { - "title":"visit the Innovative Cities section", - "url":"https://www.cnn.com/specials/tech/innovative-cities" - }, - { - "title":"visit the Arts section", - "url":"https://www.cnn.com/style/arts" - }, - { - "title":"visit the Design section", - "url":"https://www.cnn.com/style/design" - }, - { - "title":"visit the Fashion section", - "url":"https://www.cnn.com/style/fashion" - }, - { - "title":"visit the Architecture section", - "url":"https://www.cnn.com/style/architecture" - }, - { - "title":"visit the Luxury section", - "url":"https://www.cnn.com/style/luxury" - }, - { - "title":"visit the Beauty section", - "url":"https://www.cnn.com/style/beauty" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/style/videos" - }, - { - "title":"visit the Destinations section", - "url":"https://www.cnn.com/travel/destinations" - }, - { - "title":"visit the Food and Drink section", - "url":"https://www.cnn.com/travel/food-and-drink" - }, - { - "title":"visit the Stay section", - "url":"https://www.cnn.com/travel/stay" - }, - { - "title":"visit the News section", - "url":"https://www.cnn.com/travel/news" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/travel/videos" - }, - { - "title":"visit the Olympics section", - "url":"https://www.cnn.com/specials/sport/winter-olympics-2018" - }, - { - "title":"visit the Live TV section", - "url":"https://cnn.it/go2" - }, - { - "title":"visit the Digital Studios section", - "url":"https://www.cnn.com/specials/digital-studios" - }, - { - "title":"visit the CNN Films section", - "url":"https://www.cnn.com/specials/videos/digital-shorts" - }, - { - "title":"visit the HLN section", - "url":"https://www.cnn.com/specials/videos/hln" - }, - { - "title":"visit the TV Schedule section", - "url":"https://www.cnn.com/tv/schedule/cnn" - }, - { - "title":"visit the TV Shows A-Z section", - "url":"https://www.cnn.com/specials/tv/all-shows" - }, - { - "title":"visit the CNNVR section", - "url":"https://www.cnn.com/vr" - }, - { - "title":"visit the Coupons section", - "url":"https://coupons.cnn.com/" - }, - { - "title":"visit the CNN Underscored section", - "url":"https://www.cnn.com/cnn-underscored/" - }, - { - "title":"visit the Explore section", - "url":"https://www.cnn.com/specials/cnn-underscored/explore/" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/cnn-underscored/wellness/" - }, - { - "title":"visit the Gadgets section", - "url":"https://www.cnn.com/specials/cnn-underscored/gadgets/" - }, - { - "title":"visit the Lifestyle section", - "url":"https://www.cnn.com/specials/cnn-underscored/lifestyle/" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/?utm_source=cnn.com&utm_medium=referral&utm_campaign=navbar" - }, - { - "title":"visit the More section", - "url":"https://www.cnn.com/more" - }, - { - "title":"visit the Photos section", - "url":"https://www.cnn.com/specials/photos" - }, - { - "title":"visit the Longform section", - "url":"https://www.cnn.com/specials/cnn-longform" - }, - { - "title":"visit the Investigations section", - "url":"https://www.cnn.com/specials/cnn-investigates" - }, - { - "title":"visit the CNN Profiles section", - "url":"https://www.cnn.com/specials/profiles" - }, - { - "title":"visit the CNN Leadership section", - "url":"https://www.cnn.com/specials/more/cnn-leadership" - }, - { - "title":"visit the CNN Newsletters section", - "url":"https://www.cnn.com/email/subscription" - }, - { - "title":"visit the Weather section", - "url":"https://www.cnn.com/weather" - }, - { - "title":"visit the Climate section", - "url":"https://www.cnn.com/specials/world/cnn-climate" - }, - { - "title":"visit the Storm Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/gonzalo-storm-path-tracker/index.html" - }, - { - "title":"visit the Wildfire Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/wildfire-and-air-quality-tracker/" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/specials/weather/weather-video" - }, - { - "title":"", - "url":"https://twitter.com/CNN" - }, - { - "title":"CNN Privacy Policy", - "url":"http://www.cnn.com/privacy" - }, - { - "title":"cnn.com/feedback", - "url":"https://www.cnn.com/feedback" - }, - { - "title":"cnn.com/feedback", - "url":"http://www.cnn.com/feedback" - }, - { - "title":"visit the Accessibility & CC section", - "url":"https://www.cnn.com/accessibility" - }, - { - "title":"visit the AdChoices section", - "url":"https://www.cnn.com/terms#" - }, - { - "title":"visit the About Us section", - "url":"https://www.cnn.com/about" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/" - }, - { - "title":"visit the Newsletters section", - "url":"https://www.cnn.com/newsletters" - }, - { - "title":"visit the Transcripts section", - "url":"https://www.cnn.com/transcripts" - }, - { - "title":"visit the License Footage section", - "url":"https://www.cnn.com/collection" - }, - { - "title":"visit the Sitemap section", - "url":"https://www.cnn.com/sitemap.html" - }, - { - "title":"As coronavirus cases and hospitalizations in the US pile up, these five charts show how serious the fall surge is", - "url":"https://www.cnn.com/2020/11/12/health/coronavirus-fall-surge-statistics/index.html" - } - ] - }, - "https://www.cnn.com/us":{ - "title":"", - "author_metadata":null, - "date":"", - "html_content":"

By using this site, you agree to the Privacy Policy and Terms of Service.

", - "article_text":"By using this site, you agree to the Privacy Policy and Terms of Service.", - "article_len":73, - "domain":"https://www.cnn.com/", - "found_urls":[ - { - "title":"Privacy Policy", - "url":"https://www.cnn.com/privacy" - }, - { - "title":"Terms of Service", - "url":"https://www.cnn.com/terms" - }, - { - "title":"", - "url":"https://www.cnn.com/" - }, - { - "title":"visit the Crime + Justice section", - "url":"https://www.cnn.com/specials/us/crime-and-justice" - }, - { - "title":"visit the Energy + Environment section", - "url":"https://www.cnn.com/specials/us/energy-and-environment" - }, - { - "title":"visit the Extreme Weather section", - "url":"https://www.cnn.com/specials/us/extreme-weather" - }, - { - "title":"visit the Space + Science section", - "url":"https://www.cnn.com/specials/space-science" - }, - { - "title":"Live TV", - "url":"http://cnn.it/go2" - }, - { - "title":"U.S.", - "url":"https://us.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"International", - "url":"https://edition.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Arabic", - "url":"https://arabic.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"Español", - "url":"https://cnnespanol.cnn.com/?hpt=header_edition-picker" - }, - { - "title":"visit the World section", - "url":"https://www.cnn.com/world" - }, - { - "title":"visit the Africa section", - "url":"https://www.cnn.com/africa" - }, - { - "title":"visit the Americas section", - "url":"https://www.cnn.com/americas" - }, - { - "title":"visit the Asia section", - "url":"https://www.cnn.com/asia" - }, - { - "title":"visit the Australia section", - "url":"https://www.cnn.com/australia" - }, - { - "title":"visit the China section", - "url":"https://www.cnn.com/china" - }, - { - "title":"visit the Europe section", - "url":"https://www.cnn.com/europe" - }, - { - "title":"visit the India section", - "url":"https://www.cnn.com/india" - }, - { - "title":"visit the Middle East section", - "url":"https://www.cnn.com/middle-east" - }, - { - "title":"visit the United Kingdom section", - "url":"https://www.cnn.com/uk" - }, - { - "title":"visit the Politics section", - "url":"https://www.cnn.com/politics" - }, - { - "title":"visit the 2020 Election section", - "url":"https://www.cnn.com/election/2020" - }, - { - "title":"visit the Facts First section", - "url":"https://www.cnn.com/specials/politics/fact-check-politics" - }, - { - "title":"visit the Election 101 section", - "url":"https://www.cnn.com/specials/politics/elections-101" - }, - { - "title":"visit the Business section", - "url":"https://www.cnn.com/business" - }, - { - "title":"visit the Markets section", - "url":"https://money.cnn.com/data/markets/" - }, - { - "title":"visit the Tech section", - "url":"https://www.cnn.com/business/tech" - }, - { - "title":"visit the Media section", - "url":"https://www.cnn.com/business/media" - }, - { - "title":"visit the Success section", - "url":"https://www.cnn.com/business/success" - }, - { - "title":"visit the Perspectives section", - "url":"https://www.cnn.com/business/perspectives" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/business/videos" - }, - { - "title":"visit the Opinion section", - "url":"https://www.cnn.com/opinions" - }, - { - "title":"visit the Political Op-Eds section", - "url":"https://www.cnn.com/specials/opinion/opinion-politics" - }, - { - "title":"visit the Social Commentary section", - "url":"https://www.cnn.com/specials/opinion/opinion-social-issues" - }, - { - "title":"visit the Health section", - "url":"https://www.cnn.com/health" - }, - { - "title":"visit the Food section", - "url":"https://www.cnn.com/specials/health/food-diet" - }, - { - "title":"visit the Fitness section", - "url":"https://www.cnn.com/specials/health/fitness-excercise" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/health/wellness" - }, - { - "title":"visit the Parenting section", - "url":"https://www.cnn.com/specials/health/parenting" - }, - { - "title":"visit the Vital Signs section", - "url":"https://www.cnn.com/specials/health/vital-signs" - }, - { - "title":"visit the Entertainment section", - "url":"https://www.cnn.com/entertainment" - }, - { - "title":"visit the Stars section", - "url":"https://www.cnn.com/entertainment/celebrities" - }, - { - "title":"visit the Screen section", - "url":"https://www.cnn.com/entertainment/movies" - }, - { - "title":"visit the Binge section", - "url":"https://www.cnn.com/entertainment/tv-shows" - }, - { - "title":"visit the Culture section", - "url":"https://www.cnn.com/entertainment/culture" - }, - { - "title":"visit the Innovate section", - "url":"https://www.cnn.com/specials/tech/innovate" - }, - { - "title":"visit the Gadget section", - "url":"https://www.cnn.com/specials/tech/gadget" - }, - { - "title":"visit the Foreseeable Future section", - "url":"https://www.cnn.com/specials/tech/foreseeable-future" - }, - { - "title":"visit the Mission: Ahead section", - "url":"https://www.cnn.com/specials/tech/mission-ahead" - }, - { - "title":"visit the Upstarts section", - "url":"https://www.cnn.com/specials/tech/upstarts" - }, - { - "title":"visit the Work Transformed section", - "url":"https://www.cnn.com/specials/tech/work-transformed" - }, - { - "title":"visit the Innovative Cities section", - "url":"https://www.cnn.com/specials/tech/innovative-cities" - }, - { - "title":"visit the Style section", - "url":"https://www.cnn.com/style" - }, - { - "title":"visit the Arts section", - "url":"https://www.cnn.com/style/arts" - }, - { - "title":"visit the Design section", - "url":"https://www.cnn.com/style/design" - }, - { - "title":"visit the Fashion section", - "url":"https://www.cnn.com/style/fashion" - }, - { - "title":"visit the Architecture section", - "url":"https://www.cnn.com/style/architecture" - }, - { - "title":"visit the Luxury section", - "url":"https://www.cnn.com/style/luxury" - }, - { - "title":"visit the Beauty section", - "url":"https://www.cnn.com/style/beauty" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/style/videos" - }, - { - "title":"visit the Travel section", - "url":"https://www.cnn.com/travel" - }, - { - "title":"visit the Destinations section", - "url":"https://www.cnn.com/travel/destinations" - }, - { - "title":"visit the Food and Drink section", - "url":"https://www.cnn.com/travel/food-and-drink" - }, - { - "title":"visit the Stay section", - "url":"https://www.cnn.com/travel/stay" - }, - { - "title":"visit the News section", - "url":"https://www.cnn.com/travel/news" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/travel/videos" - }, - { - "title":"visit the Olympics section", - "url":"https://www.cnn.com/specials/sport/winter-olympics-2018" - }, - { - "title":"visit the Videos section", - "url":"https://www.cnn.com/videos" - }, - { - "title":"visit the Live TV section", - "url":"https://cnn.it/go2" - }, - { - "title":"visit the Digital Studios section", - "url":"https://www.cnn.com/specials/digital-studios" - }, - { - "title":"visit the CNN Films section", - "url":"https://www.cnn.com/specials/videos/digital-shorts" - }, - { - "title":"visit the HLN section", - "url":"https://www.cnn.com/specials/videos/hln" - }, - { - "title":"visit the TV Schedule section", - "url":"https://www.cnn.com/tv/schedule/cnn" - }, - { - "title":"visit the TV Shows A-Z section", - "url":"https://www.cnn.com/specials/tv/all-shows" - }, - { - "title":"visit the CNNVR section", - "url":"https://www.cnn.com/vr" - }, - { - "title":"visit the Coupons section", - "url":"https://coupons.cnn.com/" - }, - { - "title":"visit the CNN Underscored section", - "url":"https://www.cnn.com/cnn-underscored/" - }, - { - "title":"visit the Explore section", - "url":"https://www.cnn.com/specials/cnn-underscored/explore/" - }, - { - "title":"visit the Wellness section", - "url":"https://www.cnn.com/specials/cnn-underscored/wellness/" - }, - { - "title":"visit the Gadgets section", - "url":"https://www.cnn.com/specials/cnn-underscored/gadgets/" - }, - { - "title":"visit the Lifestyle section", - "url":"https://www.cnn.com/specials/cnn-underscored/lifestyle/" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/?utm_source=cnn.com&utm_medium=referral&utm_campaign=navbar" - }, - { - "title":"visit the More section", - "url":"https://www.cnn.com/more" - }, - { - "title":"visit the Photos section", - "url":"https://www.cnn.com/specials/photos" - }, - { - "title":"visit the Longform section", - "url":"https://www.cnn.com/specials/cnn-longform" - }, - { - "title":"visit the Investigations section", - "url":"https://www.cnn.com/specials/cnn-investigates" - }, - { - "title":"visit the CNN Profiles section", - "url":"https://www.cnn.com/specials/profiles" - }, - { - "title":"visit the CNN Leadership section", - "url":"https://www.cnn.com/specials/more/cnn-leadership" - }, - { - "title":"visit the CNN Newsletters section", - "url":"https://www.cnn.com/email/subscription" - }, - { - "title":"visit the Weather section", - "url":"https://www.cnn.com/weather" - }, - { - "title":"visit the Climate section", - "url":"https://www.cnn.com/specials/world/cnn-climate" - }, - { - "title":"visit the Storm Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/gonzalo-storm-path-tracker/index.html" - }, - { - "title":"visit the Wildfire Tracker section", - "url":"https://www.cnn.com/interactive/2020/weather/wildfire-and-air-quality-tracker/" - }, - { - "title":"visit the Video section", - "url":"https://www.cnn.com/specials/weather/weather-video" - }, - { - "title":"", - "url":"https://twitter.com/CNN" - }, - { - "title":"\"", - "url":"https://www.cnn.com/2020/11/12/us/dreasjon-reed-indianapolis-police-shooting-charges-trnd/index.html" - }, - { - "title":"Tennessee man exonerated after serving 15 years for a murder he didn't commit", - "url":"https://www.cnn.com/2020/11/12/us/tennessee-joseph-webster-exonerated/index.html" - }, - { - "title":"Tropical Storm Eta heads offshore after drenching central and northern Florida", - "url":"https://www.cnn.com/2020/11/12/weather/eta-storm-thursday/index.html" - }, - { - "title":"At least 1,500 nurses in the Philadelphia area may be on the verge of going on strike", - "url":"https://www.cnn.com/2020/11/12/us/philadelphia-nurses-verge-of-strike/index.html" - }, - { - "title":"Four dead, two missing after flooding in North Carolina", - "url":"https://www.cnn.com/2020/11/12/us/north-carolina-flooding/index.html" - }, - { - "title":"California becomes the second US state to top 1 million Covid-19 cases, after Texas", - "url":"https://www.cnn.com/2020/11/12/us/california-one-million-covid-cases/index.html" - }, - { - "title":"Rapper 'Mo3' dies after being shot in broad daylight on I-35 in Dallas ", - "url":"https://www.cnn.com/2020/11/12/us/melvin-noble-mo3-homicide-trnd/index.html" - }, - { - "title":"Snowplow driver finds two dead bodies on the side of a California highway near Yosemite", - "url":"https://www.cnn.com/2020/11/12/us/california-snowplow-driver-homicide-trnd/index.html" - }, - { - "title":"Chicago issues stay-at-home advisory and tells residents to cancel traditional Thanksgiving celebrations", - "url":"https://www.cnn.com/2020/11/12/us/chicago-thanksgiving-stay-home-covid-trnd/index.html" - }, - { - "title":"New York City wildlife rehabilitator stumbles upon an injured swan, transporting it two hours across the city to safety", - "url":"https://www.cnn.com/2020/11/12/us/nyc-injured-swan-trnd/index.html" - }, - { - "title":"54 million Americans are going hungry. Here's how you can make sure you eat", - "url":"https://www.cnn.com/2020/10/24/us/how-to-get-food-assistance-hunger-pandemic-iyw-trnd/index.html" - }, - { - "title":"There are 9.9 million Americans who are not up-to-date on their rent or mortgage payments. Here's how you can get help now", - "url":"https://www.cnn.com/2020/10/30/us/housing-insecurity-rent-relief-help-iyw-trnd/index.html" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/2020/11/12/politics/ohio-governor-mike-dewine-joe-biden-cnntv/index.html" - }, - { - "title":"Many immigrants breathe a sigh of relief", - "url":"https://www.cnn.com/2020/11/07/politics/immigrants-daca-biden-trump/index.html" - }, - { - "title":"Here are 10 climate executive actions Biden says he will take on day one", - "url":"https://www.cnn.com/2020/11/11/politics/climate-executive-actions-joe-biden/index.html" - }, - { - "title":"Why Trump is filing so many lawsuits in battleground states", - "url":"https://www.cnn.com/2020/11/12/politics/trump-legal-electoral-college/index.html" - }, - { - "title":"Will your taxes go up under Biden? It's unlikely", - "url":"https://www.cnn.com/2020/11/11/politics/biden-tax-plan-explainer/index.html" - }, - { - "title":"Gloria Borger Trump puts his bottom line before the country. And the GOP is helping him do it.", - "url":"https://www.cnn.com/2020/11/11/politics/borger-analysis-trump-bottom-line/index.html" - }, - { - "title":"\"Melanie", - "url":"https://www.cnn.com/2020/11/12/success/small-businesses-coronavirus-new-stimulus/index.html" - }, - { - "title":"Gun sales expected to soar after Biden's win", - "url":"https://www.cnn.com/2020/11/12/business/gun-sales-joe-biden/index.html" - }, - { - "title":"First Rivian electric pickups will sell for $75,000", - "url":"https://www.cnn.com/2020/11/12/success/rivian-electric-pickup-suv-order/index.html" - }, - { - "title":"CNN Podcasts", - "url":"https://www.cnn.com/specials/podcasts" - }, - { - "title":"Election 101", - "url":"https://www.cnn.com/audio/podcasts/election-101" - }, - { - "title":"The Axe Files", - "url":"https://www.cnn.com/audio/podcasts/axe-files" - }, - { - "title":"Politically Sound", - "url":"https://www.cnn.com/audio/podcasts/politically-sound" - }, - { - "title":"News briefings from CNN", - "url":"https://www.cnn.com/audio/podcasts/news-briefing" - }, - { - "title":"Video", - "url":"http://www.cnn.com/videos/" - }, - { - "title":"\"(From", - "url":"https://www.cnn.com/videos/politics/2020/11/12/trump-children-post-election-nr-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"pelosi", - "url":"https://www.cnn.com/videos/politics/2020/11/12/pelosi-gop-trump-election-ip-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"WASHINGTON,", - "url":"https://www.cnn.com/videos/politics/2020/11/12/pardons-trump-himself-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"A", - "url":"https://www.cnn.com/videos/politics/2020/11/12/barack-obama-autobiography-jeff-zeleny-live-newday-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/business/2020/11/11/black-friday-online-sales-pandemic-orig.cnn-business/video/playlists/top-news-videos/" - }, - { - "title":"\"", - "url":"https://www.cnn.com/videos/politics/2020/11/12/james-lankford-joe-biden-intelligence-briefings-newday-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"Trump", - "url":"https://www.cnn.com/videos/politics/2020/11/12/trump-2020-election-anderson-cooper-kth-ac360-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/politics/2020/11/12/biden-trump-2020-election-magic-wall-popular-vote-margin-mattingly-ebof-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/politics/2020/11/11/georgia-secretary-of-state-brad-raffensperger-recount-no-widespread-fraud-sot-tsr-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"John", - "url":"https://www.cnn.com/videos/politics/2020/11/11/john-brennan-trump-election-power-wolf-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"which", - "url":"https://www.cnn.com/videos/health/2020/11/11/which-masks-work-best-coronavirus-cdc-guidance-todd-tsr-pkg-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"HOUSTON,", - "url":"https://www.cnn.com/videos/health/2020/11/11/el-paso-texas-coronavirus-cases-texas-jimenez-dnt-newday-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"Loeffler", - "url":"https://www.cnn.com/videos/politics/2020/11/11/georgia-election-vote-recount-senate-runoffs-lah-lead-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/health/2020/11/11/sanjay-gupta-coronavirus-treatment-change-newday-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"US", - "url":"https://www.cnn.com/videos/politics/2020/11/11/2020-election-exit-polls-analysis-orig-vf.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"U.S.", - "url":"https://www.cnn.com/videos/politics/2020/11/11/keilar-monologue-trump-transition-pompeo-anthony-tata-9-11-commission-nr-vpx.cnn/video/playlists/top-news-videos/" - }, - { - "title":"\"Former", - "url":"https://www.cnn.com/2020/11/11/us/louisville-breonna-taylor-officer-sexual-assault/index.html" - }, - { - "title":"\"An", - "url":"https://www.cnn.com/2020/11/12/us/utility-disconnection-help-covid-iyw-trnd/index.html" - }, - { - "title":"\"Renters", - "url":"https://www.cnn.com/videos/us/2020/11/12/how-to-help-americans-struggling-winter-coronavirus-iyw.cnn" - }, - { - "title":"\"Angela", - "url":"https://www.cnn.com/2013/05/24/us/angela-lansbury-fast-facts/index.html" - }, - { - "title":"\"britney", - "url":"https://www.cnn.com/2013/06/27/us/britney-spears-fast-facts/index.html" - }, - { - "title":"\"Rico\"", - "url":"https://www.cnn.com/2020/11/11/us/genius-dog-challenge-scn-trnd/index.html" - }, - { - "title":"\"TUSCALOOSA,", - "url":"https://www.cnn.com/2020/11/12/us/sec-football-games-postponed-spt/index.html" - }, - { - "title":"\"Joan", - "url":"https://www.cnn.com/2020/11/12/us/pets-for-the-elderly-iyw-trnd/index.html" - }, - { - "title":"\"Dr.", - "url":"https://www.cnn.com/videos/health/2020/11/12/coronavirus-covid-19-pandemic-united-states-gupta-newday-ldn-vpx.cnn" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/weather/2020/11/12/daily-weather-forecast-tropical-storm-eta-landfall-heavy-rainfall-flash-flooding-snowfall.cnn" - }, - { - "title":"\"The", - "url":"https://www.cnn.com/2020/11/12/us/five-things-november-12-trnd/index.html" - }, - { - "title":"\"screengrab", - "url":"https://www.cnn.com/videos/us/2020/11/12/michigan-secretary-of-state-jocelyn-benson-lemon-intv-ctn-vpx.cnn" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/videos/politics/2020/11/12/gop-donald-trump-2020-election-biden-kfile-cuomo-cpt-vpx.cnn" - }, - { - "title":"\"Julie", - "url":"https://www.cnn.com/2020/11/11/us/surrogate-grandmother-delivers-her-grandchild-trnd/index.html" - }, - { - "title":"\"Six", - "url":"https://www.cnn.com/2020/11/11/us/el-paso-texas-covid-19-surge/index.html" - }, - { - "title":"\"New", - "url":"https://www.cnn.com/2020/11/11/us/ny-limits-gatherings-to-10/index.html" - }, - { - "title":"\"\"", - "url":"https://www.cnn.com/2020/11/11/us/new-york-city-mental-health-911-trnd/index.html" - }, - { - "title":"visit the Accessibility & CC section", - "url":"https://www.cnn.com/accessibility" - }, - { - "title":"visit the AdChoices section", - "url":"https://www.cnn.com/us#" - }, - { - "title":"visit the About Us section", - "url":"https://www.cnn.com/about" - }, - { - "title":"visit the CNN Store section", - "url":"https://store.cnn.com/" - }, - { - "title":"visit the Newsletters section", - "url":"https://www.cnn.com/newsletters" - }, - { - "title":"visit the Transcripts section", - "url":"https://www.cnn.com/transcripts" - }, - { - "title":"visit the License Footage section", - "url":"https://www.cnn.com/collection" - }, - { - "title":"visit the Sitemap section", - "url":"https://www.cnn.com/sitemap.html" - } - ] - } -} \ No newline at end of file +{"https://www.aljazeera.com/news/":{"title":"","author_metadata":null,"date":"","html_content":"

Japan aims to develop an advanced stealth fighter and longer-range missile amid concerns about China’s power.

US congressional leaders say they have reached a compromise on $900bn COVID-19 economic relief bill.

Chicago Mayor Lori Lightfoot accepts Corporation Counsel Mark Flessner’s resignation, vows a ‘full...

In latest effort to overturn election result, the Trump campaign says it filed a new petition with...

Rockets hit US embassy as tensions mount before the anniversary of US killing top Iranian general Qassem Soleimani.

US CDC panel recommends frontline essential workers, people aged 75 and over should be next to receive COVID vaccines.

Senior UK source says talks expected to continue on Monday but ‘remain difficult and significant differences remain’.

From Soleimani’s assassination to nationwide anti-government protests, Al Jazeera reviews Iraq’s main events this year.

While Hong Kong seems to have resisted Beijing’s tightening control, Macau has embraced one country, two systems rule.

Germany, the Netherlands and Kuwait among nations that announce halting of flights to and from the UK.

Turkish midfielder Hakan Calhanoglu collects ball straight from kick-off and passes to Rafael Leao who hits the target.

President Donald Trump downplayed cyberattack on US gov’t agencies, which US officials have blamed on Russia.

Negotiations to be held on Tuesday, a week after Ethiopian forces killed at least four Sudanese soldiers.

The two nations say they repatriated 23 of their nationals, some under investigation for allegedly belonging to ISIL.

","article_text":"Japan aims to develop an advanced stealth fighter and longer-range missile amid concerns about China’s power.US congressional leaders say they have reached a compromise on $900bn COVID-19 economic relief bill.Chicago Mayor Lori Lightfoot accepts Corporation Counsel Mark Flessner’s resignation, vows a ‘full...In latest effort to overturn election result, the Trump campaign says it filed a new petition with...Rockets hit US embassy as tensions mount before the anniversary of US killing top Iranian general Qassem Soleimani.US CDC panel recommends frontline essential workers, people aged 75 and over should be next to receive COVID vaccines.Senior UK source says talks expected to continue on Monday but ‘remain difficult and significant differences remain’.From Soleimani’s assassination to nationwide anti-government protests, Al Jazeera reviews Iraq’s main events this year.While Hong Kong seems to have resisted Beijing’s tightening control, Macau has embraced one country, two systems rule.Germany, the Netherlands and Kuwait among nations that announce halting of flights to and from the UK.Turkish midfielder Hakan Calhanoglu collects ball straight from kick-off and passes to Rafael Leao who hits the target.President Donald Trump downplayed cyberattack on US gov’t agencies, which US officials have blamed on Russia.Negotiations to be held on Tuesday, a week after Ethiopian forces killed at least four Sudanese soldiers.The two nations say they repatriated 23 of their nationals, some under investigation for allegedly belonging to ISIL.","article_len":1550,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"","url":"https://www.aljazeera.com/us-elections-2020/"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/moderna-vaccine-shipments-under-way-across-united-states"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/britain-eu-tell-each-other-to-give-way-in-trade"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/iraqs-2020-predicament-a-year-in-review"},{"title":"","url":"https://www.aljazeera.com/program/inside-story/2020/12/20/different-paths-to-china-macau-and-hong-kong-why"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/fastest-goal-in-serie-a-history-as-milan-beats-sassuolo-2-1"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/sudan-ethiopia-border-demarcation-talks-set-for-next-week"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/germany-finland-to-repatriate-women-children-from-syria"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result":{"title":"US Congress agrees deal on COVID relief legislation","author_metadata":null,"date":"","html_content":"

US congressional leaders say they have reached a compromise on $900bn COVID-19 economic relief bill.

After months of negotiations, United States legislators have agreed on a long-awaited COVID-19 relief bill that will boost unemployment payments and aid to small businesses.

\n

The Senate’s top Republican and Democrat said they had reached an agreement on a nearly $900bn package, but it remained unclear when Congress would vote to seal the deal.

\n

“At long last, we have the bipartisan breakthrough the country has needed,” Republican Senate Majority Leader Mitch McConnell said on the Senate floor of the measure to provide assistance to address a number of coronavirus-related issues

\n

“More help is on the way,” McConnell said.

\n

Democratic Senate Minority Leader Chuck Schumer said the package should have enough support to pass both chambers of Congress.

\n

“Finally, we have some good news to deliver to the American people,” he said on the Senate floor.

\n

The package would be the second-largest economic stimulus in US history, following a $2.3 trillion aid bill passed in March.

\n

It would give $600 direct payments to individuals, boost unemployment payments by $300 a week and give hundreds of billions of dollars in additional aid to small businesses.

\n

The announcement came two days after the US Congress voted overwhelmingly for a stopgap bill late Friday to avoid a partial government shutdown and just hours before a midnight (05:00 GMT on Monday) deadline to pass the legislation.

\n

The COVID-19 relief bill is being attached to a $1.4 trillion government funding package that legislators must pass before leaving Washington for the year.

\n

The negotiations had stalled on Saturday over a provision pushed by Republican Senator Pat Toomey to curb the emergency powers of the US Federal Reserve to provide loans to small and medium-sized businesses, as well as to state and local governments.

\n

Democrats were vehemently opposed to the measure, saying it would restrict the incoming administration of US President-elect Joe Biden, which will take office amid a dire economic situation brought on by the COVID-19 pandemic.

\n

But legislators on Sunday said they had resolved disputes about the Federal Reserve’s pandemic lending authority, education funding and small-business lending. “I think it’s, for the most part, wrapped up,” Republican Senator John Thune told reporters.

\n

More than 317,000 people have died in the US due to the novel coronavirus, which continues to spread at an alarming rate, and more than 17.8 million cases have been reported since the crisis began – the highest totals in the world.

\n

More than 10 million people who lost their jobs since the US outbreak began still remain out of work.

\n

Source

:

Al Jazeera and News agencies

","article_text":"US congressional leaders say they have reached a compromise on $900bn COVID-19 economic relief bill.After months of negotiations, United States legislators have agreed on a long-awaited COVID-19 relief bill that will boost unemployment payments and aid to small businesses.\nThe Senate’s top Republican and Democrat said they had reached an agreement on a nearly $900bn package, but it remained unclear when Congress would vote to seal the deal.\n“At long last, we have the bipartisan breakthrough the country has needed,” Republican Senate Majority Leader Mitch McConnell said on the Senate floor of the measure to provide assistance to address a number of coronavirus-related issues\n“More help is on the way,” McConnell said.\nDemocratic Senate Minority Leader Chuck Schumer said the package should have enough support to pass both chambers of Congress.\n“Finally, we have some good news to deliver to the American people,” he said on the Senate floor.\nThe package would be the second-largest economic stimulus in US history, following a $2.3 trillion aid bill passed in March.\nIt would give $600 direct payments to individuals, boost unemployment payments by $300 a week and give hundreds of billions of dollars in additional aid to small businesses.\nThe announcement came two days after the US Congress voted overwhelmingly for a stopgap bill late Friday to avoid a partial government shutdown and just hours before a midnight (05:00 GMT on Monday) deadline to pass the legislation.\nThe COVID-19 relief bill is being attached to a $1.4 trillion government funding package that legislators must pass before leaving Washington for the year.\nThe negotiations had stalled on Saturday over a provision pushed by Republican Senator Pat Toomey to curb the emergency powers of the US Federal Reserve to provide loans to small and medium-sized businesses, as well as to state and local governments.\nDemocrats were vehemently opposed to the measure, saying it would restrict the incoming administration of US President-elect Joe Biden, which will take office amid a dire economic situation brought on by the COVID-19 pandemic.\nBut legislators on Sunday said they had resolved disputes about the Federal Reserve’s pandemic lending authority, education funding and small-business lending. “I think it’s, for the most part, wrapped up,” Republican Senator John Thune told reporters.\nMore than 317,000 people have died in the US due to the novel coronavirus, which continues to spread at an alarming rate, and more than 17.8 million cases have been reported since the crisis began – the highest totals in the world.\nMore than 10 million people who lost their jobs since the US outbreak began still remain out of work.\nSource : Al Jazeera and News agencies","article_len":2741,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"","url":"https://www.aljazeera.com/us-elections-2020/"},{"title":"Donald Trump","url":"https://www.aljazeera.com/tag/donald-trump/"},{"title":"twitter","url":"https://twitter.com/share?text=Trump%20campaign%20will%20again%20ask%20top%20court%20to%20upend%20election%20result&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2F9uver"},{"title":"US top court refuses to take up latest Trump election challenge","url":"https://www.aljazeera.com/news/2020/12/12/us-top-court-refuses-to-take-up-latest-trump-election-challenge"},{"title":"Trump election lawsuit ‘smacks of racism’, Wisconsin judge says","url":"https://www.aljazeera.com/news/2020/12/12/trump-election-lawsuit-smacks-of-racism-wisconsin-judge-says"},{"title":"Trump confident as Supreme Court considers last-ditch lawsuit","url":"https://www.aljazeera.com/news/2020/12/10/trump-confident-as-supreme-court-considers-last-ditch-lawsuit"},{"title":"Key deadline marks beginning of end of Trump election challenges","url":"https://www.aljazeera.com/news/2020/12/8/key-deadline-marks-beginning-of-end-of-trump-election-challenges"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/19/biden-introduces-cabinet-nominees-to-tackle-climate-crisis"},{"title":"","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/17/biden-vows-to-make-cybersecurity-top-priority-of-administration"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/18/president-elect-biden-to-take-covid-19-vaccine-on-monday"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"Trump has a Russia ‘blind spot’, says US Senator Romney","url":"https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation":{"title":"US Congress agrees deal on COVID relief legislation","author_metadata":null,"date":"","html_content":"

US congressional leaders say they have reached a compromise on $900bn COVID-19 economic relief bill.

After months of negotiations, United States legislators have agreed on a long-awaited COVID-19 relief bill that will boost unemployment payments and aid to small businesses.

\n

The Senate’s top Republican and Democrat said they had reached an agreement on a nearly $900bn package, but it remained unclear when Congress would vote to seal the deal.

\n

“At long last, we have the bipartisan breakthrough the country has needed,” Republican Senate Majority Leader Mitch McConnell said on the Senate floor of the measure to provide assistance to address a number of coronavirus-related issues

\n

“More help is on the way,” McConnell said.

\n

Democratic Senate Minority Leader Chuck Schumer said the package should have enough support to pass both chambers of Congress.

\n

“Finally, we have some good news to deliver to the American people,” he said on the Senate floor.

\n

The package would be the second-largest economic stimulus in US history, following a $2.3 trillion aid bill passed in March.

\n

It would give $600 direct payments to individuals, boost unemployment payments by $300 a week and give hundreds of billions of dollars in additional aid to small businesses.

\n

The announcement came two days after the US Congress voted overwhelmingly for a stopgap bill late Friday to avoid a partial government shutdown and just hours before a midnight (05:00 GMT on Monday) deadline to pass the legislation.

\n

The COVID-19 relief bill is being attached to a $1.4 trillion government funding package that legislators must pass before leaving Washington for the year.

\n

The negotiations had stalled on Saturday over a provision pushed by Republican Senator Pat Toomey to curb the emergency powers of the US Federal Reserve to provide loans to small and medium-sized businesses, as well as to state and local governments.

\n

Democrats were vehemently opposed to the measure, saying it would restrict the incoming administration of US President-elect Joe Biden, which will take office amid a dire economic situation brought on by the COVID-19 pandemic.

\n

But legislators on Sunday said they had resolved disputes about the Federal Reserve’s pandemic lending authority, education funding and small-business lending. “I think it’s, for the most part, wrapped up,” Republican Senator John Thune told reporters.

\n

More than 317,000 people have died in the US due to the novel coronavirus, which continues to spread at an alarming rate, and more than 17.8 million cases have been reported since the crisis began – the highest totals in the world.

\n

More than 10 million people who lost their jobs since the US outbreak began still remain out of work.

\n

Source

:

Al Jazeera and News agencies

","article_text":"US congressional leaders say they have reached a compromise on $900bn COVID-19 economic relief bill.After months of negotiations, United States legislators have agreed on a long-awaited COVID-19 relief bill that will boost unemployment payments and aid to small businesses.\nThe Senate’s top Republican and Democrat said they had reached an agreement on a nearly $900bn package, but it remained unclear when Congress would vote to seal the deal.\n“At long last, we have the bipartisan breakthrough the country has needed,” Republican Senate Majority Leader Mitch McConnell said on the Senate floor of the measure to provide assistance to address a number of coronavirus-related issues\n“More help is on the way,” McConnell said.\nDemocratic Senate Minority Leader Chuck Schumer said the package should have enough support to pass both chambers of Congress.\n“Finally, we have some good news to deliver to the American people,” he said on the Senate floor.\nThe package would be the second-largest economic stimulus in US history, following a $2.3 trillion aid bill passed in March.\nIt would give $600 direct payments to individuals, boost unemployment payments by $300 a week and give hundreds of billions of dollars in additional aid to small businesses.\nThe announcement came two days after the US Congress voted overwhelmingly for a stopgap bill late Friday to avoid a partial government shutdown and just hours before a midnight (05:00 GMT on Monday) deadline to pass the legislation.\nThe COVID-19 relief bill is being attached to a $1.4 trillion government funding package that legislators must pass before leaving Washington for the year.\nThe negotiations had stalled on Saturday over a provision pushed by Republican Senator Pat Toomey to curb the emergency powers of the US Federal Reserve to provide loans to small and medium-sized businesses, as well as to state and local governments.\nDemocrats were vehemently opposed to the measure, saying it would restrict the incoming administration of US President-elect Joe Biden, which will take office amid a dire economic situation brought on by the COVID-19 pandemic.\nBut legislators on Sunday said they had resolved disputes about the Federal Reserve’s pandemic lending authority, education funding and small-business lending. “I think it’s, for the most part, wrapped up,” Republican Senator John Thune told reporters.\nMore than 317,000 people have died in the US due to the novel coronavirus, which continues to spread at an alarming rate, and more than 17.8 million cases have been reported since the crisis began – the highest totals in the world.\nMore than 10 million people who lost their jobs since the US outbreak began still remain out of work.\nSource : Al Jazeera and News agencies","article_len":2741,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Politics","url":"https://www.aljazeera.com/tag/politics/"},{"title":"twitter","url":"https://twitter.com/share?text=US%20Congress%20agrees%20deal%20on%20COVID%20relief%20legislation&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Frmwd9"},{"title":"‘We are ready’: US begins Moderna COVID vaccine roll-out","url":"https://www.aljazeera.com/news/2020/12/19/we-are-ready-us-begins-moderna-covid-vaccine-rollout"},{"title":"Trump downplays massive cyberattack on US government agencies","url":"https://www.aljazeera.com/news/2020/12/19/trump-downplays-massive-cyberattack-on-us-government-agencies"},{"title":"US Congress to work through weekend on $900bn COVID relief bill","url":"https://www.aljazeera.com/news/2020/12/18/us-congress-to-work-through-weekend-on-900-bn-covid-relief-bill"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/18/pence-receives-covid-vaccine-as-trump-keeps-a-low-profile"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles":{"title":"Japan sets record military budget with stealth fighters, missiles","author_metadata":null,"date":"","html_content":"

Japan aims to develop an advanced stealth fighter and longer-range missile amid concerns about China’s power.

Japanese Prime Minister Yoshihide Suga’s government approved a ninth consecutive rise in military spending on Monday, to fund the development of an advanced stealth fighter and longer-range anti-ship missile to counter China’s growing military power.

\n

The Ministry of Defence will get a record 5.34 trillion yen ($51.7bn) for the year starting in April, up 1.1 percent from this year. With Suga’s large majority in parliament, enactment of the budget is all but certain.

\n

Suga is continuing the controversial military expansion pursued by his predecessor, Shinzo Abe, to give Japan’s forces new planes, missiles and aircraft carriers with greater range and potency against potential foes including neighbouring China.

\n

China plans to raise its military spending by 6.6 percent this year, the smallest increase in 30 years.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n

Japan is buying longer-range missiles and considering arming and training its military to strike distant land targets in China, North Korea and other parts of Asia.

\n

A planned jet fighter, the first in three decades, is expected to cost around $40bn and be ready in the 2030s. That project, which will be led by Mitsubishi Heavy Industries with help from the US company Lockheed Martin, gets $706m in the new budget.

\n

Japan will spend $323m to begin the development of a long-range anti-ship missile to defend its southwestern Okinawan island chain.

\n

Other big purchases include $628m for six Lockheed F-35 stealth fighters, including two short-takeoff and vertical-landing (STOVL) B variants that will operate off a converted helicopter carrier.

\n

The military will also get $912m to build two compact warships that can operate with fewer sailors than conventional destroyers, easing pressure on a navy struggling to find recruits in an ageing population.

\n
Soldiers at the Japan Ground Self-Defense Forces’ annual live fire exercise at the Higashi-Fuji firing range in Gotemba in May this year [File: Charly Triballeau/Pool via Reuters]

Japan also wants two new warships to carry powerful new Aegis air and ballistic missile defence radars that have much as three times the range of older models. The government has not yet estimated the cost of the plan, which replaces a project cancelled in June to construct two ground Aegis Ashore stations.

\n
","article_text":"Japan aims to develop an advanced stealth fighter and longer-range missile amid concerns about China’s power.Japanese Prime Minister Yoshihide Suga’s government approved a ninth consecutive rise in military spending on Monday, to fund the development of an advanced stealth fighter and longer-range anti-ship missile to counter China’s growing military power.\nThe Ministry of Defence will get a record 5.34 trillion yen ($51.7bn) for the year starting in April, up 1.1 percent from this year. With Suga’s large majority in parliament, enactment of the budget is all but certain.\nSuga is continuing the controversial military expansion pursued by his predecessor, Shinzo Abe, to give Japan’s forces new planes, missiles and aircraft carriers with greater range and potency against potential foes including neighbouring China.\nChina plans to raise its military spending by 6.6 percent this year, the smallest increase in 30 years.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\nJapan is buying longer-range missiles and considering arming and training its military to strike distant land targets in China, North Korea and other parts of Asia.\nA planned jet fighter, the first in three decades, is expected to cost around $40bn and be ready in the 2030s. That project, which will be led by Mitsubishi Heavy Industries with help from the US company Lockheed Martin, gets $706m in the new budget.\nJapan will spend $323m to begin the development of a long-range anti-ship missile to defend its southwestern Okinawan island chain.\nOther big purchases include $628m for six Lockheed F-35 stealth fighters, including two short-takeoff and vertical-landing (STOVL) B variants that will operate off a converted helicopter carrier.\nThe military will also get $912m to build two compact warships that can operate with fewer sailors than conventional destroyers, easing pressure on a navy struggling to find recruits in an ageing population.\nSoldiers at the Japan Ground Self-Defense Forces’ annual live fire exercise at the Higashi-Fuji firing range in Gotemba in May this year [File: Charly Triballeau/Pool via Reuters]Japan also wants two new warships to carry powerful new Aegis air and ballistic missile defence radars that have much as three times the range of older models. The government has not yet estimated the cost of the plan, which replaces a project cancelled in June to construct two ground Aegis Ashore stations.\n","article_len":2390,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Military","url":"https://www.aljazeera.com/tag/military/"},{"title":"twitter","url":"https://twitter.com/share?text=Japan%20sets%20record%20military%20budget%20with%20stealth%20fighters%2C%20missiles&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fbec2c"},{"title":"Japan announces $708bn in fresh stimulus as COVID-19 cases rise","url":"https://www.aljazeera.com/economy/2020/12/8/japan-announces-708-bn-in-fresh-stimulus-as-covid-cases-rise"},{"title":"Japan’s Hayabusa2 delivers rock samples from asteroid Ryugu","url":"https://www.aljazeera.com/news/2020/12/6/japan-space-probe-delivers-rock-samples-from-distant-asteroid"},{"title":"South Korea, Japan to deploy military to combat COVID-19","url":"https://www.aljazeera.com/news/2020/12/7/south-korea-japan-to-deploy-military-to-combat-covid-19"},{"title":"Japan: Nike advertisement on bullying, racism faces backlash, boycott calls","url":"https://www.aljazeera.com/news/2020/12/2/nike-japan-causes-backlash-due-to-diversity-ad-campaign-on-racism"},{"title":"","url":"https://www.aljazeera.com/news/2020/11/25/what-is-the-quad-can-us-india-japan-and-australia-deter-china"},{"title":"","url":"https://www.aljazeera.com/news/2020/9/5/india-china-defence-ministers-meet-amid-rising-border-tensions"},{"title":"","url":"https://www.aljazeera.com/features/2020/7/11/analysis-the-asia-pacific-arms-race-has-taken-an-ominous-turn"},{"title":"","url":"https://www.aljazeera.com/program/inside-story/2020/4/27/why-is-military-spending-going-up-worldwide"},{"title":" Inside Story","url":"https://www.aljazeera.com/program/inside-story"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid":{"title":"Chicago’s top lawyer resigns after botched police raid","author_metadata":null,"date":"","html_content":"

Chicago Mayor Lori Lightfoot accepts Corporation Counsel Mark Flessner’s resignation, vows to conduct a ‘full review’ of incident.

The city of Chicago’s top lawyer resigned Sunday in the fallout of a botched police raid on the home of a Black woman who was not allowed to put on clothes before being handcuffed.

\n

Corporation Counsel Mark Flessner announced the move in an email to employees, saying he was only recently involved with the legal case connected to police video of the February 2019 wrongful raid on the home of social worker Anjanette Young. Flessner did not say if he was asked to resign.

\n

“It is clear that the raid of Anjanette Young’s home was a tragedy that we must learn from,” Flessner said in a statement. “Standing up for racial injustice and fighting for equality within our justice system are crucial matters that we must continue to work toward addressing as a community.”

\n

Mayor Lori Lightfoot said on Sunday she accepted Flessner’s his resignation effective immediately.

\n

“I am committed to a full review of everything that occurred surrounding this incident, will take corrective action where appropriate, and will hold people accountable,” Lightfoot said in a statement.

\n

Footage of the raid on Anjanette Young’s home, first reported by Chicago’s WBBM-TV, has prompted an uproar. Civil rights groups, city aldermen, pastors and Black state legislators have called the incident racist, gendered violence and a violation of a Black woman’s dignity.

\n

Police body camera video shows officers breaking down Young’s door and ignoring her repeated pleas that they have the wrong home. Young, a social worker, said she did not have time to dress before officers stormed into her apartment. An officer eventually put a blanket over her shoulders but because she was handcuffed it slipped off her shoulders, leaving her exposed again.

\n

Lightfoot’s administration has been on the defensive for a series of missteps and controversial decisions related to the incident. Lightfoot has apologised publicly.

\n

Young was denied a Freedom of Information Act request to the city for footage of the incident last year. She later obtained it through a lawsuit with the city. However, Lightfoot’s administration recently admitted that it did not give Young’s lawyer all of the body camera footage.

\n

The city then sought to block the footage from being aired on television, but was rejected in court. City lawyers also tried to have Young sanctioned for apparently violating a confidentiality agreement, which they later withdrew.

\n

The city recently released 20 files of footage of officers executing a search warrant. Young has said it has been difficult to have the videos out publicly, but she wants accountability. A message left Sunday for Young’s lawyer was not immediately returned.

\n

The Civilian Office of Police Accountability has been investigating the incident.

\n
","article_text":"Chicago Mayor Lori Lightfoot accepts Corporation Counsel Mark Flessner’s resignation, vows to conduct a ‘full review’ of incident.The city of Chicago’s top lawyer resigned Sunday in the fallout of a botched police raid on the home of a Black woman who was not allowed to put on clothes before being handcuffed.\nCorporation Counsel Mark Flessner announced the move in an email to employees, saying he was only recently involved with the legal case connected to police video of the February 2019 wrongful raid on the home of social worker Anjanette Young. Flessner did not say if he was asked to resign.\n“It is clear that the raid of Anjanette Young’s home was a tragedy that we must learn from,” Flessner said in a statement. “Standing up for racial injustice and fighting for equality within our justice system are crucial matters that we must continue to work toward addressing as a community.”\nMayor Lori Lightfoot said on Sunday she accepted Flessner’s his resignation effective immediately.\n“I am committed to a full review of everything that occurred surrounding this incident, will take corrective action where appropriate, and will hold people accountable,” Lightfoot said in a statement.\nFootage of the raid on Anjanette Young’s home, first reported by Chicago’s WBBM-TV, has prompted an uproar. Civil rights groups, city aldermen, pastors and Black state legislators have called the incident racist, gendered violence and a violation of a Black woman’s dignity.\nPolice body camera video shows officers breaking down Young’s door and ignoring her repeated pleas that they have the wrong home. Young, a social worker, said she did not have time to dress before officers stormed into her apartment. An officer eventually put a blanket over her shoulders but because she was handcuffed it slipped off her shoulders, leaving her exposed again.\nLightfoot’s administration has been on the defensive for a series of missteps and controversial decisions related to the incident. Lightfoot has apologised publicly.\nYoung was denied a Freedom of Information Act request to the city for footage of the incident last year. She later obtained it through a lawsuit with the city. However, Lightfoot’s administration recently admitted that it did not give Young’s lawyer all of the body camera footage.\nThe city then sought to block the footage from being aired on television, but was rejected in court. City lawyers also tried to have Young sanctioned for apparently violating a confidentiality agreement, which they later withdrew.\nThe city recently released 20 files of footage of officers executing a search warrant. Young has said it has been difficult to have the videos out publicly, but she wants accountability. A message left Sunday for Young’s lawyer was not immediately returned.\nThe Civilian Office of Police Accountability has been investigating the incident.\n","article_len":2867,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Police","url":"https://www.aljazeera.com/tag/police/"},{"title":"twitter","url":"https://twitter.com/share?text=Chicago%E2%80%99s%20top%20lawyer%20resigns%20after%20botched%20police%20raid&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fcz9x4"},{"title":"Romani Americans still struggle with discrimination","url":"https://www.aljazeera.com/opinions/2020/12/20/romani-americans-struggle-with-inherent-criminality-stereotypes"},{"title":"Botched raid on Black woman’s home prompts fresh outrage","url":"https://www.aljazeera.com/news/2020/12/18/botched-raid-on-black-womans-home-prompts-fresh-outrage"},{"title":"Documenting police violence is a form of resistance","url":"https://www.aljazeera.com/opinions/2020/12/15/the-police-filming-ban-in-france-will-hinder-racial-justice"},{"title":"US Attorney General William Barr to step down next week","url":"https://www.aljazeera.com/news/2020/12/14/trump-says-attorney-general-barr-stepping-down-by-december-23"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"Will anti-gov’t protests, Soleimani killing decide 2021 in Iraq?","url":"https://www.aljazeera.com/news/2020/12/20/iraqs-2020-predicament-a-year-in-review"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/moderna-vaccine-shipments-under-way-across-united-states":{"title":"Moderna COVID vaccine shipments under way across United States","author_metadata":null,"date":"","html_content":"

US CDC panel recommends frontline essential workers, people aged 75 and over should be next to receive COVID vaccines.

Initial shipments of the second COVID-19 vaccine authorised in the United States left a distribution centre on Sunday, a desperately needed boost as the nation works to bring the coronavirus pandemic under control.

\n

The trucks left the Memphis-area factory with the vaccine developed by Moderna and the National Institutes of Health. The much-needed shots are expected to be given starting on Monday, just three days after the Food and Drug Administration authorised their emergency roll-out.

\n

Also on Sunday, an expert committee recommended frontline essential workers and persons 75 years and older should be next in line to receive early doses of the Moderna vaccine and a similar one from Pfizer and BioNTech.

\n

Pfizer’s shots were first shipped out a week ago and started being used the next day, kicking off the nation’s biggest vaccination drive.

\n

The frontline group includes 30 million workers such as first responders, teachers, food and agriculture, manufacturing, US Postal Service, public transit, and grocery store workers, the US Centers for Disease Control and Prevention advisory panel decided.

\n

The panel voted 13-1 in favour of the move that, in all, would make 49 million people eligible to receive the vaccine in the next round.

\n

Other 57 million non-frontline workers like those in media, finance, energy and IT & communication industries, and persons in the age group of 65-74 and those aged 16-64 years with high-risk conditions are proposed to receive the vaccine in the ensuing round.

\n
The Food and Drug Administration last week authorised the emergency roll-out of the Moderna shots [Paul Sancya/AP Photo]

There will not be enough shots for the general population until spring, so doses will be rationed at least for the next several months. President-elect Joe Biden pledged earlier this month to have 100 million vaccine doses distributed in his first 100 days in office, and his surgeon general nominee said Sunday that it is still a realistic goal.

\n

But Vivek Murthy, speaking on NBC’s Meet the Press, said it is more realistic to think it may be midsummer or early fall before coronavirus vaccines are available to the general population, rather than late spring. Murthy said Biden’s team is working towards having the shots available to lower-risk individuals by late spring but doing so requires “everything to go exactly on schedule”.

\n

“I think it’s more realistic to assume that it may be closer to mid-summer or early fall when this vaccine makes its way to the general population,” Murthy said. “So, we want to be optimistic, but we want to be cautious as well.”

\n
Healthcare workers are among the groups receiving initial doses of the COVID-19 vaccines [Nam Y Huh/AP Photo]
\n

First Moderna shot likely on Monday

\n

US COVID-19 vaccine programme head Moncef Slaoui said it was most likely the first Moderna vaccine shot, which was approved by the Food and Drug Administration on Friday, would be given on Monday morning.

\n

“We look forward to the vaccine. It’s going to be slightly easier to distribute because it doesn’t require as low [a] temperature as Pfizer,” Slaoui said on CNN.

\n

The US government plans to deliver 5.9 million Moderna shots and two million Pfizer shots this week.

\n

But an ambitious target to get 20 million Americans started with their first shot of the two-dose vaccine regimen before the end of the year could slip into the first week of January, US Army General Gustave Perna told reporters on Saturday.

\n

The start of delivery for the Moderna vaccine will significantly widen the availability of COVID-19 vaccines as US deaths caused by the respiratory disease have reached more than 316,000 in the 11 months since the first documented US cases.

\n

Some states are choosing to use Moderna’s shots for harder-to-reach rural areas because they can be stored for 30 days in standard-temperature refrigerators. Pfizer’s must be shipped and stored at minus 70 degrees Celsius (minus 94 degrees Fahrenheit) and can be held for only five days at standard refrigerator temperatures.

\n

Initial doses were given to health professionals. Programmes by pharmacies Walgreens and CVS to distribute the Pfizer vaccine to long-term care facilities are expected to start on Monday.

\n
","article_text":"US CDC panel recommends frontline essential workers, people aged 75 and over should be next to receive COVID vaccines.Initial shipments of the second COVID-19 vaccine authorised in the United States left a distribution centre on Sunday, a desperately needed boost as the nation works to bring the coronavirus pandemic under control.\nThe trucks left the Memphis-area factory with the vaccine developed by Moderna and the National Institutes of Health. The much-needed shots are expected to be given starting on Monday, just three days after the Food and Drug Administration authorised their emergency roll-out.\nAlso on Sunday, an expert committee recommended frontline essential workers and persons 75 years and older should be next in line to receive early doses of the Moderna vaccine and a similar one from Pfizer and BioNTech.\nPfizer’s shots were first shipped out a week ago and started being used the next day, kicking off the nation’s biggest vaccination drive.\nThe frontline group includes 30 million workers such as first responders, teachers, food and agriculture, manufacturing, US Postal Service, public transit, and grocery store workers, the US Centers for Disease Control and Prevention advisory panel decided.\nThe panel voted 13-1 in favour of the move that, in all, would make 49 million people eligible to receive the vaccine in the next round.\nOther 57 million non-frontline workers like those in media, finance, energy and IT & communication industries, and persons in the age group of 65-74 and those aged 16-64 years with high-risk conditions are proposed to receive the vaccine in the ensuing round.\nThe Food and Drug Administration last week authorised the emergency roll-out of the Moderna shots [Paul Sancya/AP Photo]There will not be enough shots for the general population until spring, so doses will be rationed at least for the next several months. President-elect Joe Biden pledged earlier this month to have 100 million vaccine doses distributed in his first 100 days in office, and his surgeon general nominee said Sunday that it is still a realistic goal.\nBut Vivek Murthy, speaking on NBC’s Meet the Press, said it is more realistic to think it may be midsummer or early fall before coronavirus vaccines are available to the general population, rather than late spring. Murthy said Biden’s team is working towards having the shots available to lower-risk individuals by late spring but doing so requires “everything to go exactly on schedule”.\n“I think it’s more realistic to assume that it may be closer to mid-summer or early fall when this vaccine makes its way to the general population,” Murthy said. “So, we want to be optimistic, but we want to be cautious as well.”\nHealthcare workers are among the groups receiving initial doses of the COVID-19 vaccines [Nam Y Huh/AP Photo]\nFirst Moderna shot likely on Monday\nUS COVID-19 vaccine programme head Moncef Slaoui said it was most likely the first Moderna vaccine shot, which was approved by the Food and Drug Administration on Friday, would be given on Monday morning.\n“We look forward to the vaccine. It’s going to be slightly easier to distribute because it doesn’t require as low [a] temperature as Pfizer,” Slaoui said on CNN.\nThe US government plans to deliver 5.9 million Moderna shots and two million Pfizer shots this week.\nBut an ambitious target to get 20 million Americans started with their first shot of the two-dose vaccine regimen before the end of the year could slip into the first week of January, US Army General Gustave Perna told reporters on Saturday.\nThe start of delivery for the Moderna vaccine will significantly widen the availability of COVID-19 vaccines as US deaths caused by the respiratory disease have reached more than 316,000 in the 11 months since the first documented US cases.\nSome states are choosing to use Moderna’s shots for harder-to-reach rural areas because they can be stored for 30 days in standard-temperature refrigerators. Pfizer’s must be shipped and stored at minus 70 degrees Celsius (minus 94 degrees Fahrenheit) and can be held for only five days at standard refrigerator temperatures.\nInitial doses were given to health professionals. Programmes by pharmacies Walgreens and CVS to distribute the Pfizer vaccine to long-term care facilities are expected to start on Monday.\n","article_len":4319,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"twitter","url":"https://twitter.com/share?text=Moderna%20COVID%20vaccine%20shipments%20under%20way%20across%20United%20States&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2F26p3u"},{"title":"Top Democrat, Republican in US Congress say COVID aid vote close","url":"https://www.aljazeera.com/news/2020/12/20/us-congress-to-vote-on-covid-aid-package-after-fed-compromise"},{"title":"‘We are ready’: US begins Moderna COVID vaccine roll-out","url":"https://www.aljazeera.com/news/2020/12/19/we-are-ready-us-begins-moderna-covid-vaccine-rollout"},{"title":"FDA authorises Moderna’s COVID vaccine for emergency use","url":"https://www.aljazeera.com/news/2020/12/19/us-fda-authorises-emergency-use-of-moderna-vaccine"},{"title":"Joe Biden to receive COVID vaccine on Monday","url":"https://www.aljazeera.com/news/2020/12/18/president-elect-biden-to-take-covid-19-vaccine-on-monday"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/netherlands-bans-uk-flights-after-finding-new-coronavirus-strain"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/halting-of-visas-for-pakistanis-temporary-uae-tells-pakistan"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"Trump has a Russia ‘blind spot’, says US Senator Romney","url":"https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/moderna-vaccine-shipments-under-way-across-united-states#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad":{"title":"Eight rockets target US embassy in Baghdad: Iraq army","author_metadata":null,"date":"","html_content":"

Rockets hit US embassy as tensions mount ahead of the anniversary of US killing top Iranian general Qassem Soleimani.

A volley of rockets has targeted the United States’ embassy in Baghdad’s heavily fortified Green Zone, Iraq’s military said, sparking fears of renewed unrest as next month’s anniversary of the US assassination of a top Iranian general draws near.

\n

An Iraqi military statement on Sunday said an “an outlawed group” launched eight rockets targeting the Green Zone, injuring one Iraqi security person manning a checkpoint and causing material damage to some cars and a residential complex, which is usually empty.

\n

The US embassy’s C-RAM defence system, which is used to destroy missiles midair, was activated to deflect the attack, the embassy said in a statement.

\n

“The US embassy confirms rockets targeting the International Zone [Green Zone] resulted in the engagement of embassy defensive systems,” the statement said, adding that there was minor damage to the embassy compound.

\n

“We call on all Iraqi political and governmental leaders to take steps to prevent such attacks and hold accountable those responsible,” the statement said.

\n

The thundering sound of the defence system could be heard by Associated Press reporters located on the other side of the Tigris river.

\n

The C-RAM system was installed by the US in the middle of the year as armed groups stepped up rocket attacks targeting the embassy and its premises.

\n

The US withdrew some staff from its embassy in Baghdad earlier this month, temporarily reducing personnel before the first anniversary of the US air strike that killed Iran’s top general, Qassem Soleimani, outside Baghdad’s airport on January 3.

\n

The US officials said the reduction of the staff stemmed from concerns about a possible retaliatory attack.

\n

Soleimani’s killing sparked outrage and led Iraq’s parliament to pass a non-binding resolution days later, calling for the expulsion of all foreign troops from Iraq.

\n

In Iraq, the US plans to reduce the number of troops from 3,000 to 2,500 by mid-January, before Trump is to leave office. But the frequency of rocket attacks in Iraq has frustrated the Trump administration.

\n

Iran-backed militia groups have been blamed for orchestrating the attacks, including the Kataib Hezbollah group. In October, these groups agreed to an indefinite truce, but Sunday’s attack is the third apparent violation.

\n

The first on November 17 saw a volley of rockets slam into the US embassy and various parts of the Iraqi capital, killing one young woman.

\n

On December 10, two convoys transporting logistical equipment for the US-led coalition helping Iraqi troops fight armed groups were targeted with roadside bombs.

\n

In September, Washington warned Iraq that it will close its embassy in Baghdad if the government fails to take decisive action to end rocket and other attacks by Iranian-backed militias on the American and allied interests in the country.

\n

But in an unusual move, several factions condemned Sunday’s attack.

\n

Moqtada Sadr, a populist scholar and former militia leader, tweeted that “no one has the right to use weapons outside of the state”.

\n

Even Kataib Hezbollah, which has been blamed for other attacks, issued an online statement. “Bombing the embassy of evil (US embassy) at this time is considered out of order,” it said, while also condemning the US embassy’s use of the C-RAM system.

\n

The statement could be an attempt to calm tensions in advance of the anniversary on January 3 of the US drone strike that killed Soleimani and leading Iraqi commander, Abu Mahdi al-Muhandis.

\n
","article_text":"Rockets hit US embassy as tensions mount ahead of the anniversary of US killing top Iranian general Qassem Soleimani.A volley of rockets has targeted the United States’ embassy in Baghdad’s heavily fortified Green Zone, Iraq’s military said, sparking fears of renewed unrest as next month’s anniversary of the US assassination of a top Iranian general draws near.\nAn Iraqi military statement on Sunday said an “an outlawed group” launched eight rockets targeting the Green Zone, injuring one Iraqi security person manning a checkpoint and causing material damage to some cars and a residential complex, which is usually empty.\nThe US embassy’s C-RAM defence system, which is used to destroy missiles midair, was activated to deflect the attack, the embassy said in a statement.\n“The US embassy confirms rockets targeting the International Zone [Green Zone] resulted in the engagement of embassy defensive systems,” the statement said, adding that there was minor damage to the embassy compound.\n“We call on all Iraqi political and governmental leaders to take steps to prevent such attacks and hold accountable those responsible,” the statement said.\nThe thundering sound of the defence system could be heard by Associated Press reporters located on the other side of the Tigris river.\nThe C-RAM system was installed by the US in the middle of the year as armed groups stepped up rocket attacks targeting the embassy and its premises.\nThe US withdrew some staff from its embassy in Baghdad earlier this month, temporarily reducing personnel before the first anniversary of the US air strike that killed Iran’s top general, Qassem Soleimani, outside Baghdad’s airport on January 3.\nThe US officials said the reduction of the staff stemmed from concerns about a possible retaliatory attack.\nSoleimani’s killing sparked outrage and led Iraq’s parliament to pass a non-binding resolution days later, calling for the expulsion of all foreign troops from Iraq.\nIn Iraq, the US plans to reduce the number of troops from 3,000 to 2,500 by mid-January, before Trump is to leave office. But the frequency of rocket attacks in Iraq has frustrated the Trump administration.\nIran-backed militia groups have been blamed for orchestrating the attacks, including the Kataib Hezbollah group. In October, these groups agreed to an indefinite truce, but Sunday’s attack is the third apparent violation.\nThe first on November 17 saw a volley of rockets slam into the US embassy and various parts of the Iraqi capital, killing one young woman.\nOn December 10, two convoys transporting logistical equipment for the US-led coalition helping Iraqi troops fight armed groups were targeted with roadside bombs.\nIn September, Washington warned Iraq that it will close its embassy in Baghdad if the government fails to take decisive action to end rocket and other attacks by Iranian-backed militias on the American and allied interests in the country.\nBut in an unusual move, several factions condemned Sunday’s attack.\nMoqtada Sadr, a populist scholar and former militia leader, tweeted that “no one has the right to use weapons outside of the state”.\nEven Kataib Hezbollah, which has been blamed for other attacks, issued an online statement. “Bombing the embassy of evil (US embassy) at this time is considered out of order,” it said, while also condemning the US embassy’s use of the C-RAM system.\nThe statement could be an attempt to calm tensions in advance of the anniversary on January 3 of the US drone strike that killed Soleimani and leading Iraqi commander, Abu Mahdi al-Muhandis.\n","article_len":3565,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"twitter","url":"https://twitter.com/share?text=Eight%20rockets%20target%20US%20embassy%20in%20Baghdad%3A%20Iraq%20army&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fnkb3n"},{"title":"US-Iraq talks promise US troop withdrawal, fall short of timeline","url":"https://www.aljazeera.com/news/2020/6/12/us-iraq-talks-promise-us-troop-withdrawal-fall-short-of-timeline"},{"title":"Iraqi leader calls for end to violence in Sulaymaniyah protests","url":"https://www.aljazeera.com/news/2020/12/8/iraqi-leader-calls-for-end-to-violence-in-sulaymaniyah-protests"},{"title":"Prominent Iraqi activist shot dead in Baghdad: Reports","url":"https://www.aljazeera.com/news/2020/12/15/prominent-iraqi-activist-shot-dead-in-baghdad"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/iraqs-2020-predicament-a-year-in-review"},{"title":"","url":"https://www.aljazeera.com/opinions/2020/12/14/iraq-after-trump"},{"title":"Zeidon Alkinani","url":"https://www.aljazeera.com/author/zeidon-alkinani"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/14/fighting-intensifies-between-peshmerga-and-pkk-in-northern-iraq"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/britain-eu-tell-each-other-to-give-way-in-trade":{"title":"UK-EU fisheries dispute threatens to sink post-Brexit trade deal","author_metadata":null,"date":"","html_content":"

Senior UK government source says talks expected to continue on Monday but ‘remain difficult and significant differences remain’.

The scramble for a post-Brexit trade deal has headed into a new week after talks were overshadowed by the coronavirus crisis and ended with no breakthrough on fishing rights.

\n

As Belgium, France and many of their European Union neighbours closed rail and air links to the United Kingdom, which had warned it has discovered a new strain of the virus, debate dragged on in Brussels on Sunday.

\n

After EU negotiator Michel Barnier and his UK counterpart David Frost met at the EU headquarters, the former French minister tweeted: “In this crucial moment for the negotiations, we continue to work hard. The EU remains committed to a fair, reciprocal and balanced agreement. We respect the sovereignty of the UK. And we expect the same.”

\n

Barnier stressed that, while both sides would control their own laws and waters, “we should both be able to act when our interests are at stake” – a reference to a mechanism that must be agreed to ensure future fair competition.

\n\n\n

Meanwhile, a senior UK government source said the talks were expected to continue on Monday but “remain difficult and significant differences remain”.

\n

“We continue to explore every route to a deal that is in line with the fundamental principles we brought into the negotiations,” he told Reuters news agency.

\n

Time is running out for a trade deal, with the UK due to leave the EU single market in 11 days. But both sides of the intense negotiations in Brussels now expect the talks to run on for three or four days until Christmas.

\n

Without a deal, the UK’s participation in the European project ends at midnight in Brussels on December 31 (23:00 GMT) with a new tariff barrier to sharpen the shock of unravelling a half-century of partnership.

\n

No breakthrough on fishing rights

\n

Both the UK and the EU are calling on the other to move to secure a deal and safeguard almost a trillion dollars worth of annual trade from tariffs and quotas.

\n

Talks to reach a trade deal have been largely hamstrung over two issues – the bloc’s fishing rights in British waters and creating a so-called “level playing field” providing fair competition rules for both sides.

\n

British Health Minister Matt Hancock said on Sunday the bloc should drop its “unreasonable demands”.

\n

“We want these talks to reach a positive conclusion, of course, I want a deal, I think everybody wants a deal,” Hancock told Sky News. “Unfortunately, the EU have put in some unreasonable demands … I am sure a deal can be done but obviously it needs movement on the EU side.”

\n

Al Jazeera’s Rory Challands reporting from London said that “both sides are deadlocked and digging their heels in”.

\n

“The UK is saying it is prepared to leave without a deal, but over the weekend, there have been rather alarming pictures on British TV screens of lorries and trucks backed up for kilometres on the motorways leading into channel ports as companies stockpile in preparation for a possible no-deal in January,” he added.

\n
A flag with a slogan supporting the UK fishing industry is seen on the beach in Hastings, UK, December 20, 2020 [Peter Nicholls/Reuters]

Moreover, Challands said, a failure to secure a deal while also “cancelling Christmas” as the coronavirus surges in the country all in one weekend, would be a “double whammy” for Prime Minister Boris Johnson.

\n

The UK leader imposed tighter coronavirus curbs on Saturday on millions of people in England and largely reversed plans to ease restrictions around Christmas, as the country battles a new more infectious strain of the virus.

\n

The EU wants to be able to impose trade barriers should the UK change its regulations to offer substandard goods on the bloc’s market of 450 million consumers in the future. London sees the specific proposal to that end as going too far.

\n

On fisheries, the bloc also wants the right to retaliate by curbing UK market access should the UK squeeze EU ships out of its waters. London said it will become an independent coastal state from 2021 with full control of its waters.

\n

PM Johnson, the face of the UK’s 2016 campaign to leave the EU, has long said he cannot accept any deal that does not respect the country’s sovereignty, a goal that was at the heart of his election last year.

\n

But the EU is equally determined to protect its lucrative single market and wants to prevent London securing what it considers to be the best of both worlds – preferential market access with the advantage of setting its rules.

\n

On Saturday, the European Parliament repeated its call for a deal to be reached no later than this weekend, to give it time to properly ratify the agreement.

\n

The EU has long said it wants to safeguard the parliament’s right to exercise democratic oversight, but if an agreement arrived later than this weekend, the bloc’s 27 member states could still endorse it on their own.

\n

Source

:

Al Jazeera and News agencies

","article_text":"Senior UK government source says talks expected to continue on Monday but ‘remain difficult and significant differences remain’.The scramble for a post-Brexit trade deal has headed into a new week after talks were overshadowed by the coronavirus crisis and ended with no breakthrough on fishing rights.\nAs Belgium, France and many of their European Union neighbours closed rail and air links to the United Kingdom, which had warned it has discovered a new strain of the virus, debate dragged on in Brussels on Sunday.\nAfter EU negotiator Michel Barnier and his UK counterpart David Frost met at the EU headquarters, the former French minister tweeted: “In this crucial moment for the negotiations, we continue to work hard. The EU remains committed to a fair, reciprocal and balanced agreement. We respect the sovereignty of the UK. And we expect the same.”\nBarnier stressed that, while both sides would control their own laws and waters, “we should both be able to act when our interests are at stake” – a reference to a mechanism that must be agreed to ensure future fair competition.\n\n\nMeanwhile, a senior UK government source said the talks were expected to continue on Monday but “remain difficult and significant differences remain”.\n“We continue to explore every route to a deal that is in line with the fundamental principles we brought into the negotiations,” he told Reuters news agency.\nTime is running out for a trade deal, with the UK due to leave the EU single market in 11 days. But both sides of the intense negotiations in Brussels now expect the talks to run on for three or four days until Christmas.\nWithout a deal, the UK’s participation in the European project ends at midnight in Brussels on December 31 (23:00 GMT) with a new tariff barrier to sharpen the shock of unravelling a half-century of partnership.\nNo breakthrough on fishing rights\nBoth the UK and the EU are calling on the other to move to secure a deal and safeguard almost a trillion dollars worth of annual trade from tariffs and quotas.\nTalks to reach a trade deal have been largely hamstrung over two issues – the bloc’s fishing rights in British waters and creating a so-called “level playing field” providing fair competition rules for both sides.\nBritish Health Minister Matt Hancock said on Sunday the bloc should drop its “unreasonable demands”.\n“We want these talks to reach a positive conclusion, of course, I want a deal, I think everybody wants a deal,” Hancock told Sky News. “Unfortunately, the EU have put in some unreasonable demands … I am sure a deal can be done but obviously it needs movement on the EU side.”\nAl Jazeera’s Rory Challands reporting from London said that “both sides are deadlocked and digging their heels in”.\n“The UK is saying it is prepared to leave without a deal, but over the weekend, there have been rather alarming pictures on British TV screens of lorries and trucks backed up for kilometres on the motorways leading into channel ports as companies stockpile in preparation for a possible no-deal in January,” he added.\nA flag with a slogan supporting the UK fishing industry is seen on the beach in Hastings, UK, December 20, 2020 [Peter Nicholls/Reuters]Moreover, Challands said, a failure to secure a deal while also “cancelling Christmas” as the coronavirus surges in the country all in one weekend, would be a “double whammy” for Prime Minister Boris Johnson.\nThe UK leader imposed tighter coronavirus curbs on Saturday on millions of people in England and largely reversed plans to ease restrictions around Christmas, as the country battles a new more infectious strain of the virus.\nThe EU wants to be able to impose trade barriers should the UK change its regulations to offer substandard goods on the bloc’s market of 450 million consumers in the future. London sees the specific proposal to that end as going too far.\nOn fisheries, the bloc also wants the right to retaliate by curbing UK market access should the UK squeeze EU ships out of its waters. London said it will become an independent coastal state from 2021 with full control of its waters.\nPM Johnson, the face of the UK’s 2016 campaign to leave the EU, has long said he cannot accept any deal that does not respect the country’s sovereignty, a goal that was at the heart of his election last year.\nBut the EU is equally determined to protect its lucrative single market and wants to prevent London securing what it considers to be the best of both worlds – preferential market access with the advantage of setting its rules.\nOn Saturday, the European Parliament repeated its call for a deal to be reached no later than this weekend, to give it time to properly ratify the agreement.\nThe EU has long said it wants to safeguard the parliament’s right to exercise democratic oversight, but if an agreement arrived later than this weekend, the bloc’s 27 member states could still endorse it on their own.\nSource : Al Jazeera and News agencies","article_len":4942,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Brexit","url":"https://www.aljazeera.com/tag/brexit/"},{"title":"twitter","url":"https://twitter.com/share?text=UK-EU%20fisheries%20dispute%20threatens%20to%20sink%20post-Brexit%20trade%20deal&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fugmt4"},{"title":"EU’s Barnier says ‘just hours left’ for post-Brexit trade deal","url":"https://www.aljazeera.com/news/2020/12/18/uk-to-leave-post-brexit-deal-unless-eu-moves-on-key-issues"},{"title":"‘Smooth glide path’ or rough landing? Firms brace for hard Brexit","url":"https://www.aljazeera.com/economy/2020/12/18/bb-smoothglidepathor-rough-landing-firms-brace-for-hard-brexit"},{"title":"Tailbacks build in northern France as Brexit deadline nears","url":"https://www.aljazeera.com/news/2020/12/17/tailbacks-build-in-northern-france-as-brexit-deadline-nears"},{"title":"Hopes of Brexit deal rise as UK, EU commit to going ‘extra mile’","url":"https://www.aljazeera.com/economy/2020/12/14/hopes-of-brexit-deal-rise-as-uk-eu-commit-to-going-extra-mile"},{"title":"","url":"https://www.aljazeera.com/economy/2020/12/14/knockout-blow-uk-manufacturers-warn-of-no-deal-brexit-upheaval"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/netherlands-bans-uk-flights-after-finding-new-coronavirus-strain"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/britain-eu-tell-each-other-to-give-way-in-trade#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/iraqs-2020-predicament-a-year-in-review":{"title":"Will anti-gov’t protests, Soleimani killing decide 2021 in Iraq?","author_metadata":"By Sofia Barbarani","date":"","html_content":"

Baghdad, Iraq – It was one o’clock in the morning on January 3, 2020, when news arrived that an American drone had targeted a convoy of vehicles in Iraq’s capital, in which a top Iranian general was believed to have been killed.

\n

Before the hour was up, Iraqi state television corroborated what many had suspected: Iranian Major-General Qassem Soleimani was among the 10 victims in the deadly strike, which the United States later said was part of a wider strategy to deter enemies.

\n

By the time Iraqis woke that morning, the news had sent shockwaves across the globe, with some Iraqis comparing their disbelief to what they felt when Saddam Hussein was toppled.

\n

“It was something you could not believe – Soleimani was thought to be invincible but he died,” said a man from Baghdad, who did not want to reveal his name.

\n
Kataib Hezbollah militia hold a picture of Iranian general Qassem Soleimani as they gather for funeral of Iraqi militia commander Abu Mahdi al-Muhandis, who was killed in an air attack at Baghdad airport [File: Thaier al-Sudani/Reuters]

The world was just three days into the new year. The killing of an Iranian general largely responsible for Tehran’s regional influence would soon become one in a long list of events set to shake Iraq in 2020, the widely criticised leaked draft of the troubled country’s 2021 state budget being the latest.

\n

As the year comes to an end, the provisional budget document lays bare the government’s plans to devalue the local currency and cut public employee salaries, sparking anger among the Iraqis.

\n

Economic woes

\n

In a country where approximately 90 percent of government revenue comes from oil, plummeting prices this year paved the way to a liquidity crisis.

\n

The United Nations Development Programme (UNDP) in October warned the oil crisis coupled with COVID-19 risked increasing inequality in Iraq, while a World Bank report in November estimated that up to 5.5 million Iraqis were at risk of falling into poverty.

\n

This year, more than four million estimated civil servants faced salary crunches and delays. But with little in the way of a private sector, many Iraqis are forced to depend primarily on the state for their livelihoods.

\n

In the northern Kurdish region, frustrations over payments reached a boiling point this month when deadly clashes broke out between local security forces and public employees who took to the streets to protest against non-payment of salaries.

\n

“Iraq’s current predicament is irreversible,” said Christine van den Toorn, president of Iraq Fund for Higher Education, a nonprofit dedicated to creating new education and employment opportunities for the Iraqi youth.

\n

The country has “a massive youth population, a hugely bloated public sector whose revenue is unable to even support current payroll much less hire even a small percentage of the hundreds of thousands entering the workforce every year due to decline in oil prices”, van den Toorn told Al Jazeera.

\n

“There is only one solution to this – to educate, train and enable Iraq’s youth to be able to access and obtain other jobs.”

\n
An anti-government protester jumps over burning tyres blocking a highway in Baghdad [File: Khalid Mohammed/AP Photo]

Despite the emergence of e-commerce businesses and investment groups, Iraq’s private sector has struggled to boom in a political climate where entrepreneurs are continuously challenged by poor governance and corruption.

\n

As long as the private sector remains weak, millions of Iraqis will continue to be at the mercy of the government as it follows through with a plan to slash salaries in a bid to offset the country’s financial deficit.

\n

Meanwhile, the devaluation of the dinar from 1,182 to 1,450 against the US dollar is set to decrease people’s buying power and render some salaries worthless.

\n

All this has been met with widespread frustration, as Iraqis brace themselves to step into the new year amid deepening financial woes.

\n

This, said Iraqi analyst Mustafa Habib, is likely to escalate popular anger “until it becomes irreversible”.

\n

In late 2019, the government’s failure to save Iraq’s flailing economy and provide employment fuelled mass protests that swept through the country.

\n

With youth unemployment expected to surpass 36 percent and poverty rate to double to 40 percent, according to the World Bank, social unrest could become inevitable in 2021.

\n

Countrywide protests

\n

What began in October 2019 as peaceful demonstrations quickly turned into deadly clashes between the security forces and protesters.

\n

At the height of the uprising, anti-riot forces and militia members were making use of live ammunition, tear gas grenades and torture. By January, the death toll exceeded 600.

\n

“Accountability for the perpetrators of protest violence and reparations for victims or their families is the most important priority for the government,” Ali al-Bayati of the Iraqi High Commission for Human Rights told Al Jazeera.

\n

To date, no one has been held accountable for the killing, wounding and disappearing of the civilians.

\n

Despite the deadly crackdown, protesters continued to demand employment, services, an end to Iranian and US intervention, and the dismantling of Iraq’s corrupt political system.

\n

In November last year, Prime Minister Adel Abdul Mahdi resigned. He was replaced in May by Mustafa al-Kadhimi. Some hoped the new US-backed prime minister could be the answer to the increasingly emboldened Iran-backed militias.

\n

Seven months after al-Kadhimi’s swearing-in, Iran-linked security elements and rogue militias continue to operate with impunity.

\n

An attempted show of force in June saw the arrest of 14 members of Iran-backed Kataib Hezbollah for allegedly planning an attack on the Baghdad airport, only for 13 of them to be swiftly released.

\n

“The Iraqi government has struggled with upholding the rule of law for some time now, and events in 2020 showed the scale of the challenge,” said Sajad Jiyad, an Iraq analyst and fellow at New York-based The Century Foundation think-tank.

\n

“Militias have proliferated, continued attacks against diplomatic missions and government facilities, and used murder, violence and kidnappings to silence critics,” said Jiyad.

\n

In July, a renowned analyst and government adviser Hisham al-Hashemi was shot dead by unknown gunmen in Baghdad. No arrests have been made, but the finger has been firmly pointed at Kataib Hezbollah.

\n

“Despite the prime minister’s promise that justice would be served swiftly, it is unlikely that his killers will actually be caught,” said Jiyad.

\n

“The government has already said that the culprits have left the country, so the chances of an investigation actually leading to results look slim.”

\n

Focusing on Iraq

\n

In less than a month, the new Joe Biden administration in the US could see a thaw of relations between Washington and Tehran.

\n

This in turn could ease US-Iran tensions inside Iraq and enable Baghdad to focus on other pressing security and humanitarian issues, such as an increase in ISIL (ISIS) attacks, the expected withdrawal of 2,500 US soldiers in January, and the reintegration of more than 60,000 displaced people who until recently were housed in camps.

\n
US troops reinforcing the Baghdad embassy compound in Iraq [File: Kyle Tabot/DoD/AFP)

The Human Rights Watch this month warned that Baghdad’s decision to close Iraq’s displaced people’s camps was forcing residents into homelessness and poverty.

\n

Prime Minister al-Kadhimi is likely to have pushed for a swift relocation of the displaced people in a bid to close all camps before the June general elections.

\n

Holding early elections was a key demand of the anti-government protesters. However, an opinion poll in December by US-based nonprofit International Republican Institute showed “widespread pessimism over the country’s future and distrust in its political system”.

\n

According to the nationwide survey, 52 percent said the current state of democracy was “very bad”, while 86 percent of those interviewed said the country was being governed in the interest of some groups. Sixty-two percent of those polled agreed it was important to vote.

\n

The challenges faced by the Iraqi government in 2020 are likely to cause further obstacles in the lead-up to next year’s elections.

\n

For now, Iraqis are bracing themselves for the first anniversary of the killing of Qassem Soleimani, with some Iraqi officials predicting renewed attacks by Iran-backed groups on the US targets.

\n

Earlier this month, the US embassy announced it was withdrawing some of its staff, according to media reports, and that the drawdown would continue until after the anniversary of Soleimani’s killing.

\n

On December 16, Iran’s Supreme Leader Ayatollah Ali Khamenei renewed his promise of revenge during a meeting with Soleimani’s family, saying the US would pay for the drone attack that killed the commander.

\n

Iraqis worry that retribution could be carried out in their country.

\n
","article_text":"Baghdad, Iraq – It was one o’clock in the morning on January 3, 2020, when news arrived that an American drone had targeted a convoy of vehicles in Iraq’s capital, in which a top Iranian general was believed to have been killed.\nBefore the hour was up, Iraqi state television corroborated what many had suspected: Iranian Major-General Qassem Soleimani was among the 10 victims in the deadly strike, which the United States later said was part of a wider strategy to deter enemies.\nBy the time Iraqis woke that morning, the news had sent shockwaves across the globe, with some Iraqis comparing their disbelief to what they felt when Saddam Hussein was toppled.\n“It was something you could not believe – Soleimani was thought to be invincible but he died,” said a man from Baghdad, who did not want to reveal his name.\nKataib Hezbollah militia hold a picture of Iranian general Qassem Soleimani as they gather for funeral of Iraqi militia commander Abu Mahdi al-Muhandis, who was killed in an air attack at Baghdad airport [File: Thaier al-Sudani/Reuters]The world was just three days into the new year. The killing of an Iranian general largely responsible for Tehran’s regional influence would soon become one in a long list of events set to shake Iraq in 2020, the widely criticised leaked draft of the troubled country’s 2021 state budget being the latest.\nAs the year comes to an end, the provisional budget document lays bare the government’s plans to devalue the local currency and cut public employee salaries, sparking anger among the Iraqis.\nEconomic woes\nIn a country where approximately 90 percent of government revenue comes from oil, plummeting prices this year paved the way to a liquidity crisis.\nThe United Nations Development Programme (UNDP) in October warned the oil crisis coupled with COVID-19 risked increasing inequality in Iraq, while a World Bank report in November estimated that up to 5.5 million Iraqis were at risk of falling into poverty.\nThis year, more than four million estimated civil servants faced salary crunches and delays. But with little in the way of a private sector, many Iraqis are forced to depend primarily on the state for their livelihoods.\nIn the northern Kurdish region, frustrations over payments reached a boiling point this month when deadly clashes broke out between local security forces and public employees who took to the streets to protest against non-payment of salaries.\n“Iraq’s current predicament is irreversible,” said Christine van den Toorn, president of Iraq Fund for Higher Education, a nonprofit dedicated to creating new education and employment opportunities for the Iraqi youth.\nThe country has “a massive youth population, a hugely bloated public sector whose revenue is unable to even support current payroll much less hire even a small percentage of the hundreds of thousands entering the workforce every year due to decline in oil prices”, van den Toorn told Al Jazeera.\n“There is only one solution to this – to educate, train and enable Iraq’s youth to be able to access and obtain other jobs.”\nAn anti-government protester jumps over burning tyres blocking a highway in Baghdad [File: Khalid Mohammed/AP Photo]Despite the emergence of e-commerce businesses and investment groups, Iraq’s private sector has struggled to boom in a political climate where entrepreneurs are continuously challenged by poor governance and corruption.\nAs long as the private sector remains weak, millions of Iraqis will continue to be at the mercy of the government as it follows through with a plan to slash salaries in a bid to offset the country’s financial deficit.\nMeanwhile, the devaluation of the dinar from 1,182 to 1,450 against the US dollar is set to decrease people’s buying power and render some salaries worthless.\nAll this has been met with widespread frustration, as Iraqis brace themselves to step into the new year amid deepening financial woes.\nThis, said Iraqi analyst Mustafa Habib, is likely to escalate popular anger “until it becomes irreversible”.\nIn late 2019, the government’s failure to save Iraq’s flailing economy and provide employment fuelled mass protests that swept through the country.\nWith youth unemployment expected to surpass 36 percent and poverty rate to double to 40 percent, according to the World Bank, social unrest could become inevitable in 2021.\nCountrywide protests\nWhat began in October 2019 as peaceful demonstrations quickly turned into deadly clashes between the security forces and protesters.\nAt the height of the uprising, anti-riot forces and militia members were making use of live ammunition, tear gas grenades and torture. By January, the death toll exceeded 600.\n“Accountability for the perpetrators of protest violence and reparations for victims or their families is the most important priority for the government,” Ali al-Bayati of the Iraqi High Commission for Human Rights told Al Jazeera.\nTo date, no one has been held accountable for the killing, wounding and disappearing of the civilians.\nDespite the deadly crackdown, protesters continued to demand employment, services, an end to Iranian and US intervention, and the dismantling of Iraq’s corrupt political system.\nIn November last year, Prime Minister Adel Abdul Mahdi resigned. He was replaced in May by Mustafa al-Kadhimi. Some hoped the new US-backed prime minister could be the answer to the increasingly emboldened Iran-backed militias.\nSeven months after al-Kadhimi’s swearing-in, Iran-linked security elements and rogue militias continue to operate with impunity.\nAn attempted show of force in June saw the arrest of 14 members of Iran-backed Kataib Hezbollah for allegedly planning an attack on the Baghdad airport, only for 13 of them to be swiftly released.\n“The Iraqi government has struggled with upholding the rule of law for some time now, and events in 2020 showed the scale of the challenge,” said Sajad Jiyad, an Iraq analyst and fellow at New York-based The Century Foundation think-tank.\n“Militias have proliferated, continued attacks against diplomatic missions and government facilities, and used murder, violence and kidnappings to silence critics,” said Jiyad.\nIn July, a renowned analyst and government adviser Hisham al-Hashemi was shot dead by unknown gunmen in Baghdad. No arrests have been made, but the finger has been firmly pointed at Kataib Hezbollah.\n“Despite the prime minister’s promise that justice would be served swiftly, it is unlikely that his killers will actually be caught,” said Jiyad.\n“The government has already said that the culprits have left the country, so the chances of an investigation actually leading to results look slim.”\nFocusing on Iraq\nIn less than a month, the new Joe Biden administration in the US could see a thaw of relations between Washington and Tehran.\nThis in turn could ease US-Iran tensions inside Iraq and enable Baghdad to focus on other pressing security and humanitarian issues, such as an increase in ISIL (ISIS) attacks, the expected withdrawal of 2,500 US soldiers in January, and the reintegration of more than 60,000 displaced people who until recently were housed in camps.\nUS troops reinforcing the Baghdad embassy compound in Iraq [File: Kyle Tabot/DoD/AFP)The Human Rights Watch this month warned that Baghdad’s decision to close Iraq’s displaced people’s camps was forcing residents into homelessness and poverty.\nPrime Minister al-Kadhimi is likely to have pushed for a swift relocation of the displaced people in a bid to close all camps before the June general elections.\nHolding early elections was a key demand of the anti-government protesters. However, an opinion poll in December by US-based nonprofit International Republican Institute showed “widespread pessimism over the country’s future and distrust in its political system”.\nAccording to the nationwide survey, 52 percent said the current state of democracy was “very bad”, while 86 percent of those interviewed said the country was being governed in the interest of some groups. Sixty-two percent of those polled agreed it was important to vote.\nThe challenges faced by the Iraqi government in 2020 are likely to cause further obstacles in the lead-up to next year’s elections.\nFor now, Iraqis are bracing themselves for the first anniversary of the killing of Qassem Soleimani, with some Iraqi officials predicting renewed attacks by Iran-backed groups on the US targets.\nEarlier this month, the US embassy announced it was withdrawing some of its staff, according to media reports, and that the drawdown would continue until after the anniversary of Soleimani’s killing.\nOn December 16, Iran’s Supreme Leader Ayatollah Ali Khamenei renewed his promise of revenge during a meeting with Soleimani’s family, saying the US would pay for the drone attack that killed the commander.\nIraqis worry that retribution could be carried out in their country.\n","article_len":8878,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Sofia Barbarani","url":"https://www.aljazeera.com/author/sofia_barbarani_201433012535127283"},{"title":"twitter","url":"https://twitter.com/share?text=Will%20anti-gov%E2%80%99t%20protests%2C%20Soleimani%20killing%20decide%202021%20in%20Iraq%3F&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fc6hu7"},{"title":"Biden should not repeat Trump and Obama’s mistakes in Iraq","url":"https://www.aljazeera.com/opinions/2020/12/14/iraq-after-trump"},{"title":"Iraq: ‘Series of assassinations’ feared after professor killed","url":"https://www.aljazeera.com/news/2020/12/17/iraqs-human-rights-commission-slam-killing-of-prominent-academic"},{"title":"Leaked 2021 Iraq draft budget prompts public outcry","url":"https://www.aljazeera.com/economy/2020/12/17/leaked-2021-iraq-draft-budget-prompts-public-outcry"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/2/kurd-vs-kurd-fears-of-full-scale-war-rise-in-northern-iraq"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/7/pope-francis-will-visit-iraq-in-march-2021-vatican"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/9/icc-prosecutor-drops-probe-into-alleged-uk-war-crimes-in-iraq"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/iraqs-2020-predicament-a-year-in-review#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges":{"title":"Italy has patient with new COVID strain, nations ban UK flights","author_metadata":"By Usaid Siddiqui","date":"","html_content":"

Italy has found a patient with the new coronavirus strain, that was also found, in Britain, the health ministry announced on Sunday.

\n

Several European countries and others, such as Kuwait, have banned flights to and from the United Kingdom, in hopes of blocking the new strain which is sweeping across southern England from establishing a strong foothold on the continent.

\n

The new coronavirus strain is “out of control,” British Health Secretary Matt Hancock has told the BBC News.

\n

Globally, the number of coronavirus infection crosses 76 million, with nearly 1.7 million deaths recorded. More than 43 million have recovered.

\n

Here are all the latest updates:

\n

Sydney suburbs in lockdown after COVID outbreak

\n

Authorities in Australia’s New South Wales (NSW) have put about a quarter of a million people in Sydney’s northern beach suburbs into a strict lockdown and restricted gatherings across the rest of the city in a bid to contain a growing coronavirus outbreak.

\n

NSW, which incorporates Sydney, recorded 30 new COVID-19 cases, taking a cluster that emerged in Sydney’s northern beaches area to 70, with some cases still under investigation.

\n

Read more here.

\n

Chile says vaccinations could start next week

\n

Doses of the coronavirus vaccine developed by Pfizer Inc could start being deployed in Chile as early as next week, with the first round of injections going to health care workers, President Sebastian Pinera said.

\n

The Chilean health regulator reported on Wednesday that it had approved emergency use of the vaccine. That same day Pinera said that the laboratory had confirmed that it would send the first 20,000 doses before the end of the month.

\n

Turkey suspends some flights over coronavirus mutation

\n

Turkey temporarily suspended flights from Britain, the Netherlands, Denmark and South Africa over the new strain of coronavirus, the health minister said.

\n

“With the instruction of our President and with the coordination of our Ministry of Transport and Infrastructure, a temporary suspension has been decided for flights from England, Denmark, the Netherlands and South Africa to our country,” Fahrettin Koca announced on Twitter.

\n\n\n

Iran suspends flights to UK over coronavirus concerns

\n

Iran suspended flights to Britain for two weeks due to the new coronavirus strain, state news agency IRNA reported.

\n

“Due to the new circumstances in the spread of COVID-19 in the United Kingdom, flights between Tehran and destinations in the UK will be suspended for two weeks,” IRNA quoted Shahram Adamnejad, a deputy transport minister, as saying.

\n
Iran is one of the worst affected nations from coronavirus in the Middle East [File: West Asia News Agency/Reuters]
\n

Quebec opposition party asks Canada’s Trudeau to halt UK flights

\n

An opposition party in Canada is calling on Prime Minister Justin Trudeau to suspend all flights and passengers seeking to enter the country from the UK.

\n

Bloc Quebecois party leader Yves-Francois Blanchet expressed solidarity with people in the UK in a statement on Sunday, but said the measure is “preventative and necessary” to prevent any potential spread of the new variant of COVID-19.

\n

“Caution is in the best interests” of people in Quebec and Canada, Blanchet said.

\n

“If a variant of COVID-19 were to spread with increased speed among vulnerable people, the effects could be deplorable for peoples’ health, as well as for the healthcare system and workers that are already under tremendous pressure.”

\n

Italy patient infected with new strain: health ministry

\n

The Italian health ministry announced it has found a patient with the new coronavirus strain, that was also found, in Britain.

\n

The patient and his partner returned from the United Kingdom in the last few days with a flight that landed at Rome’s Fiumicino airport and were now in isolation, the ministry said.

\n

Britain’s European neighbours began closing their doors to travellers from the United Kingdom on Sunday amid alarm about the rapidly spreading strain of coronavirus that has caused cases to soar there

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n
\n

Vaccines effective against new virus strain: German health minister

\n

European Union experts believe existing vaccines against coronavirus are effective against the new fast-spreading strain identified in Britain, Germany’s health minister said.

\n

“According to everything we know so far” the new strain “has no impact on the vaccines”, which remain “just as effective”, Jens Spahn told public broadcaster ZDF, citing “talks between experts at European authorities”.

\n
\n

France to halt all travel from UK for 48 hours from midnight

\n

France will halt all travel from Britain for 48 hours from midnight Sunday including journeys “related to goods transport by road, air, sea or rail”, the prime minister’s office said, after a new fast-spreading strain of coronavirus appeared in the UK.

\n

While companies are scrambling to shift merchandise across the Channel with days to go until Britain finally quits EU trade structures, “only unaccompanied freight will be authorised.

\n

Flows of people or goods towards the UK will not be affected”, the government added after a meeting chaired by President Emmanuel Macron.

\n
The decision from France follows a series of similar steps taken by other European countries earlier on Sunday [File: Christian Hartmann
\n
\n

Kuwait halts UK flights

\n

Kuwait’s civil aviation authorities have banned flights from the UK, where a new variant of the coronavirus is spreading, state-run Kuna news agency reports.

\n

“Upon instructions from health authorities, the United Kingdom has been added to a high-risk list of countries from which flights to Kuwait are banned,” the Gulf state’s Directorate of Civil Aviation said on Twitter.

\n\n\n
\n

Denmark to dig up millions of minks from mass graves

\n

Millions of minks will be dug up from mass graves in Denmark after some had resurfaced, prompting complaints from residents about possible health risks, the country’s government said.

\n

Denmark’s entire herd of some 17 million minks destined for the high-end fashion industry was ordered to be culled in early November after hundreds of farms suffered outbreaks of coronavirus and authorities found mutated strains of the virus among people.

\n
Minks are seen at Hans Henrik Jeppesen’s farm near Soroe, Denmark [File: Jacob Gronholt-Pedersen/Reuters]
\n
\n

Several EU nations halt UK flights, fearing virus variant

\n

A growing list of European Union nations have announced banning flights from the UK, while others were considering similar action, in a bid to block a new strain of coronavirus sweeping across southern England.

\n

Germany, the Netherlands, Belgium, Austria and Italy all announced restrictions on UK travel, hours after British Prime Minister Boris Johnson announced that Christmas shopping and gatherings in southern England must be cancelled because of rapidly spreading infections blamed on the new coronavirus variant.

\n

Johnson immediately put those regions into a strict new Tier 4 restriction level, upending Christmas plans for millions.

\n

Read the full story here.

\n
\n

Hello, this is Usaid Siddiqui in Toronto, Canada with all the latest coronavirus updates.

\n
\n\n
","article_text":"Italy has found a patient with the new coronavirus strain, that was also found, in Britain, the health ministry announced on Sunday.\nSeveral European countries and others, such as Kuwait, have banned flights to and from the United Kingdom, in hopes of blocking the new strain which is sweeping across southern England from establishing a strong foothold on the continent.\nThe new coronavirus strain is “out of control,” British Health Secretary Matt Hancock has told the BBC News.\nGlobally, the number of coronavirus infection crosses 76 million, with nearly 1.7 million deaths recorded. More than 43 million have recovered.\nHere are all the latest updates:\n7 hours ago (20:58 GMT)Sydney suburbs in lockdown after COVID outbreak\nAuthorities in Australia’s New South Wales (NSW) have put about a quarter of a million people in Sydney’s northern beach suburbs into a strict lockdown and restricted gatherings across the rest of the city in a bid to contain a growing coronavirus outbreak.\nNSW, which incorporates Sydney, recorded 30 new COVID-19 cases, taking a cluster that emerged in Sydney’s northern beaches area to 70, with some cases still under investigation.\nRead more here.\n7 hours ago (20:44 GMT)Chile says vaccinations could start next week\nDoses of the coronavirus vaccine developed by Pfizer Inc could start being deployed in Chile as early as next week, with the first round of injections going to health care workers, President Sebastian Pinera said.\nThe Chilean health regulator reported on Wednesday that it had approved emergency use of the vaccine. That same day Pinera said that the laboratory had confirmed that it would send the first 20,000 doses before the end of the month.\n7 hours ago (20:39 GMT)Turkey suspends some flights over coronavirus mutation\nTurkey temporarily suspended flights from Britain, the Netherlands, Denmark and South Africa over the new strain of coronavirus, the health minister said.\n“With the instruction of our President and with the coordination of our Ministry of Transport and Infrastructure, a temporary suspension has been decided for flights from England, Denmark, the Netherlands and South Africa to our country,” Fahrettin Koca announced on Twitter.\n\n\n8 hours ago (19:57 GMT)Iran suspends flights to UK over coronavirus concerns\nIran suspended flights to Britain for two weeks due to the new coronavirus strain, state news agency IRNA reported.\n“Due to the new circumstances in the spread of COVID-19 in the United Kingdom, flights between Tehran and destinations in the UK will be suspended for two weeks,” IRNA quoted Shahram Adamnejad, a deputy transport minister, as saying.\nIran is one of the worst affected nations from coronavirus in the Middle East [File: West Asia News Agency/Reuters]\n8 hours ago (19:37 GMT)Quebec opposition party asks Canada’s Trudeau to halt UK flights\nAn opposition party in Canada is calling on Prime Minister Justin Trudeau to suspend all flights and passengers seeking to enter the country from the UK.\nBloc Quebecois party leader Yves-Francois Blanchet expressed solidarity with people in the UK in a statement on Sunday, but said the measure is “preventative and necessary” to prevent any potential spread of the new variant of COVID-19.\n“Caution is in the best interests” of people in Quebec and Canada, Blanchet said.\n“If a variant of COVID-19 were to spread with increased speed among vulnerable people, the effects could be deplorable for peoples’ health, as well as for the healthcare system and workers that are already under tremendous pressure.”\n8 hours ago (19:22 GMT)Italy patient infected with new strain: health ministry\nThe Italian health ministry announced it has found a patient with the new coronavirus strain, that was also found, in Britain.\nThe patient and his partner returned from the United Kingdom in the last few days with a flight that landed at Rome’s Fiumicino airport and were now in isolation, the ministry said.\nBritain’s European neighbours began closing their doors to travellers from the United Kingdom on Sunday amid alarm about the rapidly spreading strain of coronavirus that has caused cases to soar there\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n\n9 hours ago (19:11 GMT)Vaccines effective against new virus strain: German health minister\nEuropean Union experts believe existing vaccines against coronavirus are effective against the new fast-spreading strain identified in Britain, Germany’s health minister said.\n“According to everything we know so far” the new strain “has no impact on the vaccines”, which remain “just as effective”, Jens Spahn told public broadcaster ZDF, citing “talks between experts at European authorities”.\n\n9 hours ago (19:06 GMT)France to halt all travel from UK for 48 hours from midnight\nFrance will halt all travel from Britain for 48 hours from midnight Sunday including journeys “related to goods transport by road, air, sea or rail”, the prime minister’s office said, after a new fast-spreading strain of coronavirus appeared in the UK.\nWhile companies are scrambling to shift merchandise across the Channel with days to go until Britain finally quits EU trade structures, “only unaccompanied freight will be authorised.\nFlows of people or goods towards the UK will not be affected”, the government added after a meeting chaired by President Emmanuel Macron.\nThe decision from France follows a series of similar steps taken by other European countries earlier on Sunday [File: Christian Hartmann\n\n9 hours ago (18:30 GMT)Kuwait halts UK flights\nKuwait’s civil aviation authorities have banned flights from the UK, where a new variant of the coronavirus is spreading, state-run Kuna news agency reports.\n“Upon instructions from health authorities, the United Kingdom has been added to a high-risk list of countries from which flights to Kuwait are banned,” the Gulf state’s Directorate of Civil Aviation said on Twitter.\n\n\n\n10 hours ago (18:19 GMT)Denmark to dig up millions of minks from mass graves\nMillions of minks will be dug up from mass graves in Denmark after some had resurfaced, prompting complaints from residents about possible health risks, the country’s government said.\nDenmark’s entire herd of some 17 million minks destined for the high-end fashion industry was ordered to be culled in early November after hundreds of farms suffered outbreaks of coronavirus and authorities found mutated strains of the virus among people.\nMinks are seen at Hans Henrik Jeppesen’s farm near Soroe, Denmark [File: Jacob Gronholt-Pedersen/Reuters]\n\n10 hours ago (18:14 GMT)Several EU nations halt UK flights, fearing virus variant\nA growing list of European Union nations have announced banning flights from the UK, while others were considering similar action, in a bid to block a new strain of coronavirus sweeping across southern England.\nGermany, the Netherlands, Belgium, Austria and Italy all announced restrictions on UK travel, hours after British Prime Minister Boris Johnson announced that Christmas shopping and gatherings in southern England must be cancelled because of rapidly spreading infections blamed on the new coronavirus variant.\nJohnson immediately put those regions into a strict new Tier 4 restriction level, upending Christmas plans for millions.\nRead the full story here.\n\nHello, this is Usaid Siddiqui in Toronto, Canada with all the latest coronavirus updates.\n\n\n","article_len":7332,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Usaid Siddiqui","url":"https://www.aljazeera.com/author/usaid_siddiqui_190806110228727"},{"title":"twitter","url":"https://twitter.com/share?text=New%20COVID%20strain%20patient%20found%20in%20Italy%2C%20countries%20ban%20UK%20flights&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fc4z2b"},{"title":"UK identifies new coronavirus variant; London on toughest curbs","url":"https://www.aljazeera.com/news/2020/12/14/london-on-toughest-restrictions-sees-new-virus-variant"},{"title":"UK: Why do some ethnic minorities fear the coronavirus vaccine?","url":"https://www.aljazeera.com/news/2020/12/8/why-some-minorities-in-the-uk-fear-a-covid-19-vaccine"},{"title":"Are we seeing light at the end of the tunnel for coronavirus?","url":"https://www.aljazeera.com/program/inside-story/2020/12/8/are-we-seeing-light-at-the-end-of-the-tunnel-for-coronavirus"},{"title":"UK medics eye ‘final chapter’ amid mass coronavirus vaccination","url":"https://www.aljazeera.com/news/2020/12/16/uk-medics-eye-final-chapter-amid-mass-coronavirus-vaccination"},{"title":"here","url":"https://www.aljazeera.com/news/2020/12/20/sydney-suburbs-in-lockdown-new-border-curbs-after-covid-outbreak"},{"title":"here","url":"https://www.aljazeera.com/news/2020/12/20/netherlands-bans-uk-flights-after-finding-new-coronavirus-strain"},{"title":"Usaid Siddiqui","url":"https://twitter.com/UsaidM16"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/19/uk-imposes-tighter-curbs-amid-confirmation-of-new-covid-strain"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"Will anti-gov’t protests, Soleimani killing decide 2021 in Iraq?","url":"https://www.aljazeera.com/news/2020/12/20/iraqs-2020-predicament-a-year-in-review"},{"title":"India’s Modi visits Sikh temple as farm protests persist","url":"https://www.aljazeera.com/news/2020/12/20/indias-modi-surprises-with-sikh-temple-visit-amid-farm-protests"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/fastest-goal-in-serie-a-history-as-milan-beats-sassuolo-2-1":{"title":"AC Milan’s Leao creates Serie A history – in just six seconds","author_metadata":null,"date":"","html_content":"

Turkish midfielder Hakan Calhanoglu collects ball straight from kick-off and passes to Rafael Leao who hits the target to beat Sassuolo 2-1.

AC Milan forward Rafael Leao has scored the fastest goal in Serie A history, hitting the target after six seconds to set the Serie A leaders on their way to a 2-1 win at Sassuolo on Sunday.

\n

In an astonishing start, Turkish midfielder Hakan Calhanoglu collected the ball straight from the kick-off and opened up the Sassuolo defence with an incisive pass to Leao and the Portuguese beat goalkeeper Andrea Consigli with an angled drive.

\n\n\n

Milan later tweeted that Leao’s goal was scored after precisely 6.2 seconds. It was the 21-year-old’s third league goal this season and fourth in all competitions.

\n\n\n

Alexis Saelemaekers added a second goal following a powerful Theo Hernandez run in the 26th minute and Domenico Berardi pulled one back for Sassuolo late in the game.

\n

Milan, again missing injured forward Zlatan Ibrahimovic as well as midfielder Ismael Bennacer and defender Simon Kjaer, remained unbeaten after 13 games and lead the standings with 31 points, one ahead of their neighbours Inter Milan.

\n

Sassuolo are sixth with 23 points.

\n

After drawing their last two games against Parma and Genoa, both in the lower half of the table, Milan – whose starting lineup had an average age of just above 22 – got exactly the start they needed with Leao’s goal.

\n

His lightning strike beat the previous record of eight seconds set by Piacenza’s Paolo Poggi against Fiorentina in 2001.

\n

Calhanolgu again had the ball in the net after nine minutes but it was disallowed by VAR officials for an almost imperceptible offside against Saelemaekers in the buildup.

\n

Milan’s second goal started from a Sassuolo corner just as the hosts appeared to be getting back into the game. Theo Hernandez broke clear and pulled the ball back for Saelemaekers to tap in.

\n

Sassuolo improved in the second half but took until the 89th minute to get one back when Berardi scored from a deflected free kick.

\n

Source

:

Al Jazeera and News agencies

","article_text":"Turkish midfielder Hakan Calhanoglu collects ball straight from kick-off and passes to Rafael Leao who hits the target to beat Sassuolo 2-1.AC Milan forward Rafael Leao has scored the fastest goal in Serie A history, hitting the target after six seconds to set the Serie A leaders on their way to a 2-1 win at Sassuolo on Sunday.\nIn an astonishing start, Turkish midfielder Hakan Calhanoglu collected the ball straight from the kick-off and opened up the Sassuolo defence with an incisive pass to Leao and the Portuguese beat goalkeeper Andrea Consigli with an angled drive.\n\n\nMilan later tweeted that Leao’s goal was scored after precisely 6.2 seconds. It was the 21-year-old’s third league goal this season and fourth in all competitions.\n\n\nAlexis Saelemaekers added a second goal following a powerful Theo Hernandez run in the 26th minute and Domenico Berardi pulled one back for Sassuolo late in the game.\nMilan, again missing injured forward Zlatan Ibrahimovic as well as midfielder Ismael Bennacer and defender Simon Kjaer, remained unbeaten after 13 games and lead the standings with 31 points, one ahead of their neighbours Inter Milan.\nSassuolo are sixth with 23 points.\nAfter drawing their last two games against Parma and Genoa, both in the lower half of the table, Milan – whose starting lineup had an average age of just above 22 – got exactly the start they needed with Leao’s goal.\nHis lightning strike beat the previous record of eight seconds set by Piacenza’s Paolo Poggi against Fiorentina in 2001.\nCalhanolgu again had the ball in the net after nine minutes but it was disallowed by VAR officials for an almost imperceptible offside against Saelemaekers in the buildup.\nMilan’s second goal started from a Sassuolo corner just as the hosts appeared to be getting back into the game. Theo Hernandez broke clear and pulled the ball back for Saelemaekers to tap in.\nSassuolo improved in the second half but took until the 89th minute to get one back when Berardi scored from a deflected free kick.\nSource : Al Jazeera and News agencies","article_len":2051,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Football","url":"https://www.aljazeera.com/tag/football/"},{"title":"twitter","url":"https://twitter.com/share?text=AC%20Milan%E2%80%99s%20Leao%20creates%20Serie%20A%20history%20%E2%80%93%20in%20just%20six%20seconds&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fgx4f8"},{"title":"Football: South Korea’s Ulsan win Asian Champions League","url":"https://www.aljazeera.com/news/2020/12/19/football-south-koreas-ulsan-wins-asian-champions-league"},{"title":"Italian football legend Paolo Rossi dies aged 64","url":"https://www.aljazeera.com/news/2020/12/10/italian-football-legend-paolo-rossi-dies-aged-64"},{"title":"Qatar 2022: Football World Cup stadiums at a glance","url":"https://www.aljazeera.com/sports/2020/12/18/qatar-2022-world-cup-stadiums-at-a-glance"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/10/football-neymar-defends-walkout-in-racism-row"},{"title":"","url":"https://www.aljazeera.com/news/2020/11/25/football-legend-maradona-has-died-argentine-media"},{"title":"","url":"https://www.aljazeera.com/gallery/2020/12/18/in-pictures-fourth-qatar-2022-stadium-opened-for-amir-cup-final"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/fastest-goal-in-serie-a-history-as-milan-beats-sassuolo-2-1#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/sudan-ethiopia-border-demarcation-talks-set-for-next-week":{"title":"Sudan, Ethiopia to hold border demarcation talks week after clash","author_metadata":null,"date":"","html_content":"

Negotiations to be held on Tuesday, a week after Ethiopian forces killed at least four Sudanese soldiers along the border.

Sudan and Ethiopia will hold negotiations next week to delineate their shared border, a statement from Sudanese Prime Minister Abdalla Hamdok’s office said on Sunday.

\n

The talks will be held on Tuesday, a week after Ethiopian forces reportedly ambushed and killed Sudanese troops along the border.

\n

“Hamdok and his Ethiopian counterpart Abiy Ahmed on Sunday discussed the meeting of the committee for delineating the borders which will be held on December 22,” the statement said.

\n

The two leaders met on the margins of a summit under way on Sunday in Djibouti of the Intergovernmental Authority on Development (IGAD), an East African regional bloc comprising eight countries. Hamdok is the current head of the IGAD.

\n

A cross-border attack by Ethiopian forces and rebels last Tuesday killed at least four Sudanese troops and wounded a dozen others in the Abu Tyour area in eastern Sudan’s Gadarif province.

\n

Sudan’s state-run news agency SUNA on Saturday said its military had deployed “large reinforcements” into the province to reclaim territories controlled by Ethiopian farmers and rebels in Sudan’s al-Fashqa border area.

\n

The troops would stop at the borderline according to the 1902 deals between Sudan and Ethiopia, SUNA reported.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n

Tuesday’s cross-border attack in Abu Tyour came amid weeks-long fighting in Ethiopia’s northern Tigray region that has pitted the federal government against regional authorities.

\n

The Tigray fighting has sent more than 52,000 Ethiopian refugees into Sudan, most of them into Gadarif province.

\n

At the start of the clashes in Tigray, Sudan deployed more than 6,000 soldiers to its border with Ethiopia.

\n

Ongoing border clashes

\n

The attack in Gadarif was the latest by Ethiopian forces and rebels on Sudanese troops and people over the past several months, and has strained ties between the two neighbours.

\n

The sides have held talks in recent months to encourage Ethiopian farmers to withdraw from Sudan’s al-Fashqa border area, which they have cultivated for years.

\n

Following the attack, the head of Sudan’s ruling sovereign council, General Abdel-Fattah Burhan, travelled to Gadarif and spent three days there overseeing the deployment of heavily armed troops to the border area, according to a senior military official.

\n

The official spoke on condition of anonymity because he was not authorised to brief the media.

\n

Addis Ababa was keen to downplay the importance of the incident, saying it did not threaten the relationship between the two countries.

\n

“Such incidents will not break the bond between our two countries as we always use dialogue to resolve issues. Those fanning discord clearly do not understand the strength of our historical ties,” Prime Minister Abiy tweeted on Thursday.

\n\n\n
","article_text":"Negotiations to be held on Tuesday, a week after Ethiopian forces killed at least four Sudanese soldiers along the border.Sudan and Ethiopia will hold negotiations next week to delineate their shared border, a statement from Sudanese Prime Minister Abdalla Hamdok’s office said on Sunday.\nThe talks will be held on Tuesday, a week after Ethiopian forces reportedly ambushed and killed Sudanese troops along the border.\n“Hamdok and his Ethiopian counterpart Abiy Ahmed on Sunday discussed the meeting of the committee for delineating the borders which will be held on December 22,” the statement said.\nThe two leaders met on the margins of a summit under way on Sunday in Djibouti of the Intergovernmental Authority on Development (IGAD), an East African regional bloc comprising eight countries. Hamdok is the current head of the IGAD.\nA cross-border attack by Ethiopian forces and rebels last Tuesday killed at least four Sudanese troops and wounded a dozen others in the Abu Tyour area in eastern Sudan’s Gadarif province.\nSudan’s state-run news agency SUNA on Saturday said its military had deployed “large reinforcements” into the province to reclaim territories controlled by Ethiopian farmers and rebels in Sudan’s al-Fashqa border area.\nThe troops would stop at the borderline according to the 1902 deals between Sudan and Ethiopia, SUNA reported.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\nTuesday’s cross-border attack in Abu Tyour came amid weeks-long fighting in Ethiopia’s northern Tigray region that has pitted the federal government against regional authorities.\nThe Tigray fighting has sent more than 52,000 Ethiopian refugees into Sudan, most of them into Gadarif province.\nAt the start of the clashes in Tigray, Sudan deployed more than 6,000 soldiers to its border with Ethiopia.\nOngoing border clashes\nThe attack in Gadarif was the latest by Ethiopian forces and rebels on Sudanese troops and people over the past several months, and has strained ties between the two neighbours.\nThe sides have held talks in recent months to encourage Ethiopian farmers to withdraw from Sudan’s al-Fashqa border area, which they have cultivated for years.\nFollowing the attack, the head of Sudan’s ruling sovereign council, General Abdel-Fattah Burhan, travelled to Gadarif and spent three days there overseeing the deployment of heavily armed troops to the border area, according to a senior military official.\nThe official spoke on condition of anonymity because he was not authorised to brief the media.\nAddis Ababa was keen to downplay the importance of the incident, saying it did not threaten the relationship between the two countries.\n“Such incidents will not break the bond between our two countries as we always use dialogue to resolve issues. Those fanning discord clearly do not understand the strength of our historical ties,” Prime Minister Abiy tweeted on Thursday.\n\n\n","article_len":2864,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"twitter","url":"https://twitter.com/share?text=Sudan%2C%20Ethiopia%20to%20hold%20border%20demarcation%20talks%20week%20after%20clash&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fujwvl"},{"title":"Sudan says officers ambushed by Ethiopian ‘forces’ during patrol","url":"https://www.aljazeera.com/news/2020/12/16/sudan-says-officers-ambushed-by-ethiopian-forces-during-patrol"},{"title":"In Addis Ababa, Sudan PM announces IGAD summit on Tigray crisis","url":"https://www.aljazeera.com/news/2020/12/13/sudans-pm-visits-ethiopia-as-tigray-refugees-surpass-50000"},{"title":"Ethiopia offers reward for intel on fugitive Tigrayan leaders","url":"https://www.aljazeera.com/news/2020/12/18/ethiopia-offers-reward-for-intel-on-fugitive-tigrayan-leaders"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/14/ethiopias-tigray-war-a-doctors-account-of-mekelles-plight"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/11/un-slams-ethiopia-for-returning-eritrean-refugees-in-tigray"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/sudan-ethiopia-border-demarcation-talks-set-for-next-week#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/":{"title":"Germany, Finland repatriate women and children from Syria camps","author_metadata":null,"date":"","html_content":"

The two nations say they repatriated 23 of their nationals, some under criminal investigation for allegedly belonging to ISIL.

Germany and Finland say they have repatriated 23 of their nationals, women and children from Syria, some of whom were under criminal investigation for allegedly belonging to the ISIL (ISIS) group.

\n

“I am very relieved that we were able to repatriate another 12 children and three mothers from camps in northeastern Syria yesterday,” German Foreign Minister Heiko Maas said in a statement on Sunday.

\n

Maas said the repatriations were “humanitarian cases, primarily orphans and children who were ill – cases in which a repatriation was deemed particularly necessary and urgent”.

\n

He added that it is not legally possible to repatriate children without their mothers.

\n

For its part, the Finnish foreign ministry said it had brought home six children and two adult mothers.

\n

“Under the constitution, Finnish public authorities are obligated to safeguard the basic rights of the Finnish children interned in the camps insofar as this is possible,” it said.

\n

“The basic rights of the children interned in the al-Hol camps can be safeguarded only by repatriating them to Finland.”

\n

According to Helsinki, more than 9,000 foreign women and children, two-thirds of them children, are still being held in the al-Hol and Roj camps in northeastern Syria, housing suspected ISIL family members and sympathisers.

\n

Many European nations have resisted repatriating their nationals from the camps because of the security risks, it said.

\n

According to German media reports, the three repatriated German women are aged between 21 and 38 and the children are aged between two and 12. The group resided in a refugee camp under Kurdish control.

\n

The three women were “wives of jihadists” of the ISIL group and “are in very poor health”, spokesman for the Kurdish administration’s foreign relations office, Kamal Akif, told AFP news agency.

\n

One of the German women was detained on arrival in Frankfurt, a statement by the anti-terrorist prosecutors’ office said.

\n

Besides allegedly belonging to ISIL, the woman, identified as Leonora M and aged 21, is suspected of using a young Yazidi woman as a slave.

\n

Her husband was a member of the ISIL’s “secret services”, the prosecutor said.

\n
","article_text":"The two nations say they repatriated 23 of their nationals, some under criminal investigation for allegedly belonging to ISIL.Germany and Finland say they have repatriated 23 of their nationals, women and children from Syria, some of whom were under criminal investigation for allegedly belonging to the ISIL (ISIS) group.\n“I am very relieved that we were able to repatriate another 12 children and three mothers from camps in northeastern Syria yesterday,” German Foreign Minister Heiko Maas said in a statement on Sunday.\nMaas said the repatriations were “humanitarian cases, primarily orphans and children who were ill – cases in which a repatriation was deemed particularly necessary and urgent”.\nHe added that it is not legally possible to repatriate children without their mothers.\nFor its part, the Finnish foreign ministry said it had brought home six children and two adult mothers.\n“Under the constitution, Finnish public authorities are obligated to safeguard the basic rights of the Finnish children interned in the camps insofar as this is possible,” it said.\n“The basic rights of the children interned in the al-Hol camps can be safeguarded only by repatriating them to Finland.”\nAccording to Helsinki, more than 9,000 foreign women and children, two-thirds of them children, are still being held in the al-Hol and Roj camps in northeastern Syria, housing suspected ISIL family members and sympathisers.\nMany European nations have resisted repatriating their nationals from the camps because of the security risks, it said.\nAccording to German media reports, the three repatriated German women are aged between 21 and 38 and the children are aged between two and 12. The group resided in a refugee camp under Kurdish control.\nThe three women were “wives of jihadists” of the ISIL group and “are in very poor health”, spokesman for the Kurdish administration’s foreign relations office, Kamal Akif, told AFP news agency.\nOne of the German women was detained on arrival in Frankfurt, a statement by the anti-terrorist prosecutors’ office said.\nBesides allegedly belonging to ISIL, the woman, identified as Leonora M and aged 21, is suspected of using a young Yazidi woman as a slave.\nHer husband was a member of the ISIL’s “secret services”, the prosecutor said.\n","article_len":2275,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Media","url":"https://www.aljazeera.com/tag/media/"},{"title":"twitter","url":"https://twitter.com/share?text=Code%20of%20Ethics&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2F2e4uw"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/germany-finland-to-repatriate-women-children-from-syria":{"title":"Germany, Finland repatriate women and children from Syria camps","author_metadata":null,"date":"","html_content":"

The two nations say they repatriated 23 of their nationals, some under criminal investigation for allegedly belonging to ISIL.

Germany and Finland say they have repatriated 23 of their nationals, women and children from Syria, some of whom were under criminal investigation for allegedly belonging to the ISIL (ISIS) group.

\n

“I am very relieved that we were able to repatriate another 12 children and three mothers from camps in northeastern Syria yesterday,” German Foreign Minister Heiko Maas said in a statement on Sunday.

\n

Maas said the repatriations were “humanitarian cases, primarily orphans and children who were ill – cases in which a repatriation was deemed particularly necessary and urgent”.

\n

He added that it is not legally possible to repatriate children without their mothers.

\n

For its part, the Finnish foreign ministry said it had brought home six children and two adult mothers.

\n

“Under the constitution, Finnish public authorities are obligated to safeguard the basic rights of the Finnish children interned in the camps insofar as this is possible,” it said.

\n

“The basic rights of the children interned in the al-Hol camps can be safeguarded only by repatriating them to Finland.”

\n

According to Helsinki, more than 9,000 foreign women and children, two-thirds of them children, are still being held in the al-Hol and Roj camps in northeastern Syria, housing suspected ISIL family members and sympathisers.

\n

Many European nations have resisted repatriating their nationals from the camps because of the security risks, it said.

\n

According to German media reports, the three repatriated German women are aged between 21 and 38 and the children are aged between two and 12. The group resided in a refugee camp under Kurdish control.

\n

The three women were “wives of jihadists” of the ISIL group and “are in very poor health”, spokesman for the Kurdish administration’s foreign relations office, Kamal Akif, told AFP news agency.

\n

One of the German women was detained on arrival in Frankfurt, a statement by the anti-terrorist prosecutors’ office said.

\n

Besides allegedly belonging to ISIL, the woman, identified as Leonora M and aged 21, is suspected of using a young Yazidi woman as a slave.

\n

Her husband was a member of the ISIL’s “secret services”, the prosecutor said.

\n
","article_text":"The two nations say they repatriated 23 of their nationals, some under criminal investigation for allegedly belonging to ISIL.Germany and Finland say they have repatriated 23 of their nationals, women and children from Syria, some of whom were under criminal investigation for allegedly belonging to the ISIL (ISIS) group.\n“I am very relieved that we were able to repatriate another 12 children and three mothers from camps in northeastern Syria yesterday,” German Foreign Minister Heiko Maas said in a statement on Sunday.\nMaas said the repatriations were “humanitarian cases, primarily orphans and children who were ill – cases in which a repatriation was deemed particularly necessary and urgent”.\nHe added that it is not legally possible to repatriate children without their mothers.\nFor its part, the Finnish foreign ministry said it had brought home six children and two adult mothers.\n“Under the constitution, Finnish public authorities are obligated to safeguard the basic rights of the Finnish children interned in the camps insofar as this is possible,” it said.\n“The basic rights of the children interned in the al-Hol camps can be safeguarded only by repatriating them to Finland.”\nAccording to Helsinki, more than 9,000 foreign women and children, two-thirds of them children, are still being held in the al-Hol and Roj camps in northeastern Syria, housing suspected ISIL family members and sympathisers.\nMany European nations have resisted repatriating their nationals from the camps because of the security risks, it said.\nAccording to German media reports, the three repatriated German women are aged between 21 and 38 and the children are aged between two and 12. The group resided in a refugee camp under Kurdish control.\nThe three women were “wives of jihadists” of the ISIL group and “are in very poor health”, spokesman for the Kurdish administration’s foreign relations office, Kamal Akif, told AFP news agency.\nOne of the German women was detained on arrival in Frankfurt, a statement by the anti-terrorist prosecutors’ office said.\nBesides allegedly belonging to ISIL, the woman, identified as Leonora M and aged 21, is suspected of using a young Yazidi woman as a slave.\nHer husband was a member of the ISIL’s “secret services”, the prosecutor said.\n","article_len":2275,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"ISIL/ISIS","url":"https://www.aljazeera.com/tag/isil-isis/"},{"title":"twitter","url":"https://twitter.com/share?text=Germany%2C%20Finland%20repatriate%20women%20and%20children%20from%20Syria%20camps&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fdq34z"},{"title":"Syria Kurds free more than 600 ISIL fighters as part of amnesty","url":"https://www.aljazeera.com/news/2020/10/15/syria-kurds-free-more-than-600-isil-fighters-as-part-of-amnesty"},{"title":"Charging ‘the Beatles’: Inside the case against ISIL fighters","url":"https://www.aljazeera.com/news/2020/11/30/charging-the-beatles-inside-the-case-against-isil-militants"},{"title":"US army data on civilian harm in war against ISIL questioned","url":"https://www.aljazeera.com/news/2020/11/27/us-led-coalition-against-isil-resulted-in-civilian-harm"},{"title":"","url":"https://www.aljazeera.com/features/2020/10/16/separation-from-my-children-was-more-painful-than"},{"title":"","url":"https://www.aljazeera.com/news/2020/8/4/six-years-on-yazidis-in-iraq-demand-justice-for-isil-persecution"},{"title":"","url":"https://www.aljazeera.com/program/the-stream/2020/8/11/is-isil-resurging-amid-the-coronavirus-pandemic"},{"title":" The Stream","url":"https://www.aljazeera.com/program/the-stream"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/germany-finland-to-repatriate-women-children-from-syria#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/":{"title":"","author_metadata":null,"date":"","html_content":"
\n

This site is owned and operated by Al Jazeera Media Network (“Al Jazeera”). Please read the below Terms and Conditions carefully as they are the terms of use for this site:

\n

1. User Obligation

\n

By using and/or visiting this site (“the site”), you have indicated your acknowledgement and assent to these Terms and Conditions and any other terms and conditions which may be introduced by Al Jazeera on this site from time to time. Your access, use, participation and/or downloading materials from the site, indicates your agreement to abide by these Terms and Conditions. Al Jazeera reserves the right to change these Terms and Conditions at any time by posting changes online and it is your responsibility to refer to and comply with these Terms upon accessing the site. If you do not agree to any of these Terms and Conditions, please cease from the use of this site immediately. 

\n

If any conflict exists between these Terms and Conditions and rules and/or specific terms of use appearing on this site relating to specific material then the latter shall prevail. 

\n

2. Terms of Use

\n

Use of this site is only permitted for lawful purposes and in a manner which is not in breach of the Law and which does not infringe any the rights of or restricts the use and enjoyment of this site by any third party. Such restriction shall include, but is not limited to, harassment, defamatory conduct, obscene or abusive content, offensive language, distress to third parties and any other conduct which may be deemed inappropriate.

\n

You hereby warrant that you are more than 18 years of age, and/or possess all required approvals and consents including legal guardian or parental consent for use of this site. You further warrant that you are fully able and competent to enter into these Terms and Conditions and abide by them.

\n

3. Data Submissions

\n

Various parts of this site allow for user information or any other data to be transmitted or posted on the site (hereinafter referred to as “User Submissions”). These include personal information, photographs, videos, audio materials, written scripts, articles, opinions or any other form of material. Such User Submissions shall be subject to the following conditions:

\n

3.1       By submitting any material to this Site, you accept to provide a non-revocable, unlimited Global licence to the User Submissions to Al Jazeera who in turn shall have the right to use, distribute, modify, alter or delete parts of the User Submission as per its own discretion and on any platform or media whatsoever.

\n

3.2       User Submissions may be used by Al Jazeera for any purpose including, but not limited to reproduction, broadcasting, transmission, editting, cutting, reformation, adapting, positng, or any other use as per the sole discretion of Al Jazeera.

\n

3.3       You shall be solely responsible for your own submissions and any claims, damages, third party rights, as well as any legal action or proceeding arising out of the use and submission of this material.

\n

3.4       By submitting any User Submission, you hereby affirm, represent and warrant that you have the right to submit such material, and that you have obtained all necessary clearances, licences, consents, rights and permissions to use and authorise Al Jazeera to use any material submitted, including the rights to all patents, trademarks, trade secrets, copyright or other proprietary rights in any and all User Submissions.

\n

3.5       You undertake that you will not submit or disclose on this site any material or information  that is protected by or subject to any copyright, trade secret or any third party proprietary rights, including Privacy and publicity rights, unless all rights have been obtained from the rights owners to submit the material and/or information and grant the licence indicated herein to Al Jazeera.

\n

3.6       You further undertake not to submit any material or information that is deemed unlawful, obscene, defamatory, libelous, political, threatening, pornographic, harassing, hateful, racially offensive, considered as a criminal offence, gives rise to a civil liability, encourages criminal action or violates the law, culture or internationally acceptable norms and codes of ethics.

\n

3.7       You hereby grant Al Jazeera a global, non-revocable, exclusive, royalty-free, transferrable licence to broadcast, distribute, display, reproduce, cut, edit, re-edit, delete, sell or modify the material or information submitted by you without any limitation whatsoever, in any media format and on any platform at the sole discretion of Al Jazeera. This Licence shall not be limited by period or territory.

\n

3.8       You hereby further assign to Al Jazeera (by way of permanent assignment of present and future copyright) all rights of any nature in and to such material throughout the world including all renewals and reversions thereof.

\n

3.9       Al Jazeera shall have the right and final say on display of User Submissions, and under no circumstances is Al Jazeera obliged to display or include on this site all or part of any User Submission. 

\n

4. Data collection and use

\n

Al Jazeera may collect non-personal information about the computer, mobile device or other device you use to access Al Jazeera online services, such as Internet Protocol (IP) address, geolocation information, unique device identifiers, browser type, browser language and other transactional information.  This information assists in understanding which pages Al Jazeera’s visitors are visiting and how much time they spend there. Al Jazeera uses the information gathered to enable your use of Al Jazeera online services, fulfil your requests for certain products and services, such as sending out electronic newsletters and enabling you to participate in our services such as polls, and message boards. Further, Al Jazeera uses the non-personally identifiable information collected to improve the design and content of Al Jazeera’s online services, to deliver more relevant marketing messages and advertisements and to enable us to personalise your internet experience. Al Jazeera online services transmits such non-personally identifiable web site usage information about visitors to the servers of a reputable third party for the purpose of service performance analytics and targeting our internet banner advertisements on other sites. To do this, Al Jazeera uses web beacons in conjunction with cookies provided by our third-party ad server on this site.

\n\n

Al Jazeera automatically logs certain usage information about your use of Al Jazeera online services. This information includes a reading history of the pages you view, type of content you are browsing, and engagement with our online tools. This information is used in order to provide you with customised recommendations of Al Jazeera’s online services based on your reading history. Log files are also used in the aggregate to analyse usage of Al Jazeera’s online services.

\n\n

Al Jazeera has hired third parties to provide information, reports and analysis about the usage, browsing patterns of users of Al Jazeera online services. Third parties such as Google Analytics and Chartbeat tracks and analyses non-personally identifiable usage and volume statistical information from our visitors and customers on Al Jazeera online services.  These third party services may place or recognise cookies, web beacons or other technology to track certain non-personal information about users. Al Jazeera does not have access to, nor control over, third party service providers’ use of cookies or other tracking technologies or how they may be used.

\n

5. Copyright and Other Intellectual Property

\n

The names, images and logos identifying Al Jazeera, or any of its associated companies or third parties and their products and services are proprietary marks of Al Jazeera, its associated companies and/or third parties. Nothing contained herein shall be construed as conferring by any means, licence or right under any trade mark or patent of Al Jazeera, its associated companies or any other third party.

\n

All copyright, trade marks and other intellectual property rights in this site (including the design, arrangement and look and feel) and all material or content supplied as part of the site shall remain at all times the property of Al Jazeera or Al Jazeera’s licensors. In accessing the site, or any other sites of Al Jazeera, you agree that you do so only for your own personal, non-commercial use. You may not agree to, permit or assist in any way any third party to copy, reproduce, download, post, store (including in any other web site), distribute, transmit, broadcast, commercially exploit or modify in any way the material or content without the prior written permission of an authorised officer the Al Jazeera. 

\n

6. Third Party Sites / Links

\n

Al Jazeera is not responsible for the availability or content of any third party websites or material you access through this site. If you decide to visit any linked site, you do so at your own risk and it is your responsibility to take all protective measures to guard against viruses or other destructive elements. Al Jazeera does not endorse and is not responsible or liable for any content, advertising, products, services or information on or available from third party websites or material (including payment for and delivery of such products or services). Al Jazeera is not responsible for any damage, loss or offence caused by or, in connection with, any content, advertising, products, services or information available on such websites or material. Any terms, conditions, warranties or representations associated with such dealings are solely between you and the relevant provider of the service.

\n

Links to this site must be direct to any complete content page (and not any part of a page) within this site and all other Al Jazeera sites, and must not be viewed within the pages of any other site. Al Jazeera disclaims all liability for any legal or other consequences (including for infringement of third party rights) of links made to this site.

\n

Links do not imply that Al Jazeera endorses, is affiliated or associated with any linked site, or is legally authorised to use any trademark, trade name, logo or copyright symbol displayed in or accessible through the links, or that any linked site is authorised to use any trademark, trade name, logo or copyright symbol of Al Jazeera or any of its affiliates, entities or subsidiaries. 

\n

7. Disclaimer / Limitation of Liability

\n

You agree that your use of this site shall be at your sole risk and responsibility. To the fullest extent permitted by law, Al Jazeera, its officers, directors, and agents disclaim all warranties, express or implied, in connection with the site. Al Jazeera does not warrant, endorse or guarantee that the content posted on this site is of social, cultural and moral acceptable standards. Al Jazeera does not warrant that User Submissions posted on this site do not infringe any third party rights.

\n

Although Al Jazeera does monitor the User Submissions provided on the site, it is your sole responsibility to clear all rights of third parties and to obtain all necessary licences and approvals to post any material and you hereby assume all responsibility for all damages, costs and liabilities that may arise as a result from the user submission.

\n

This site and the information, names, images, pictures, logos and icons relating to this site or any other sites owned or operated by Al Jazeera, and/or any of its associated companies, products and services (or to third party products and services), is provided “AS IS” and on an “AS AVAILABLE” basis without any representation or endorsement being made and without warranty of any kind, including but not limited to the implied warranties of satisfactory quality, fitness for a particular purpose, non-infringement, compatibility, security and accuracy. 

\n

The information and other materials included on this site may contain inaccuracies and typographical errors. Al Jazeera does not warrant the accuracy or completeness of the information and materials or the reliability of any statement or other information displayed or distributed through the site (including, without limitation, the information provided through the use of any software). You acknowledge that any reliance on any such statement or information shall be at your sole risk. Al Jazeera reserves the right, in its sole discretion, to correct any errors or omissions in any part of the site and to make changes to the site and to the materials, products, programmes, services or prices described in the site at any time without notice.

\n

In no event will Al Jazeera and/or third parties be liable for any damages including, but not limited to, indirect or consequential damages or any damages including, but not limited to, errors or omissions, indirect or consequential damages or any damages whatsoever arising from use, loss of use, data or profits, whether in action of contract, negligence or other action, arising out of or in connection with the use of the site.

\n

Al Jazeera does not warrant that the functions contained in this site will be uninterrupted or error-free or that defects will be corrected or that this site or the server that makes it available are free of viruses or bugs. Al Jazeera does not represent the full functionality, accuracy or reliability of any material. Al Jazeera may terminate, change, suspend or discontinue any aspect of this site, including the availability of any features of the site, at any time without notice or liability.

\n

8. Indemnity

\n

You agree to indemnify and keep indemnified Al Jazeera, and all of its employees, affiliates, subsidiaries and associates from any and all claims, damages, expenses, costs and liabilities arising in any manner from your access to and use of this site and/or the submission of any User Submissions to this site. 

\n

You understand that when using this site, you will be exposed to User Submissions from a variety of sources, and acknowledge that you may be exposed to User Submissions that may be inaccurate, offensive, indecent, or objectionable. To that regard, you hereby waive any legal or equitable rights or remedies you have or may have against Al Jazeera, and agree to indemnify and hold harmless Al Jazeera, and its shareholders, subsidiaries, officers affiliates, and licensees to the fullest extent permitted by the law.

\n

9. Law and Jurisdiction

\n

These Terms and Conditions shall be governed by and construed in accordance with the laws of the State of Qatar. Disputes arising herefrom shall be exclusively subject to the jurisdiction of the Qatari courts. Any cause of action you may have with respect to your use of this site must be commenced within one (1) year after the claim or cause of action arises.

\n

If any of these Terms and Conditions should be determined to be illegal, invalid or otherwise unenforceable by reason of the law of any state or country in which these Terms and Conditions are intended to be effective, then to the extent and within the jurisdiction in which that Term or Condition is illegal, invalid or unenforceable, it shall be severed and deleted from that clause and the remaining Terms and Conditions shall survive and continue to be binding and enforceable. 

\n

Al Jazeera makes no representation that materials on this site are appropriate or available for use at other locations outside of the State of Qatar and access to them from territories where their contents are illegal is prohibited. If you access this site from a location outside of the State of Qatar, you are responsible for compliance with all local laws.

\n
","article_text":"\nThis site is owned and operated by Al Jazeera Media Network (“Al Jazeera”). Please read the below Terms and Conditions carefully as they are the terms of use for this site:\n 1. User Obligation\nBy using and/or visiting this site (“the site”), you have indicated your acknowledgement and assent to these Terms and Conditions and any other terms and conditions which may be introduced by Al Jazeera on this site from time to time. Your access, use, participation and/or downloading materials from the site, indicates your agreement to abide by these Terms and Conditions. Al Jazeera reserves the right to change these Terms and Conditions at any time by posting changes online and it is your responsibility to refer to and comply with these Terms upon accessing the site. If you do not agree to any of these Terms and Conditions, please cease from the use of this site immediately. \n If any conflict exists between these Terms and Conditions and rules and/or specific terms of use appearing on this site relating to specific material then the latter shall prevail. \n 2. Terms of Use\nUse of this site is only permitted for lawful purposes and in a manner which is not in breach of the Law and which does not infringe any the rights of or restricts the use and enjoyment of this site by any third party. Such restriction shall include, but is not limited to, harassment, defamatory conduct, obscene or abusive content, offensive language, distress to third parties and any other conduct which may be deemed inappropriate.\nYou hereby warrant that you are more than 18 years of age, and/or possess all required approvals and consents including legal guardian or parental consent for use of this site. You further warrant that you are fully able and competent to enter into these Terms and Conditions and abide by them.\n3. Data Submissions\nVarious parts of this site allow for user information or any other data to be transmitted or posted on the site (hereinafter referred to as “User Submissions”). These include personal information, photographs, videos, audio materials, written scripts, articles, opinions or any other form of material. Such User Submissions shall be subject to the following conditions:\n3.1       By submitting any material to this Site, you accept to provide a non-revocable, unlimited Global licence to the User Submissions to Al Jazeera who in turn shall have the right to use, distribute, modify, alter or delete parts of the User Submission as per its own discretion and on any platform or media whatsoever.\n3.2       User Submissions may be used by Al Jazeera for any purpose including, but not limited to reproduction, broadcasting, transmission, editting, cutting, reformation, adapting, positng, or any other use as per the sole discretion of Al Jazeera.\n3.3       You shall be solely responsible for your own submissions and any claims, damages, third party rights, as well as any legal action or proceeding arising out of the use and submission of this material.\n3.4       By submitting any User Submission, you hereby affirm, represent and warrant that you have the right to submit such material, and that you have obtained all necessary clearances, licences, consents, rights and permissions to use and authorise Al Jazeera to use any material submitted, including the rights to all patents, trademarks, trade secrets, copyright or other proprietary rights in any and all User Submissions.\n3.5       You undertake that you will not submit or disclose on this site any material or information  that is protected by or subject to any copyright, trade secret or any third party proprietary rights, including Privacy and publicity rights, unless all rights have been obtained from the rights owners to submit the material and/or information and grant the licence indicated herein to Al Jazeera.\n3.6       You further undertake not to submit any material or information that is deemed unlawful, obscene, defamatory, libelous, political, threatening, pornographic, harassing, hateful, racially offensive, considered as a criminal offence, gives rise to a civil liability, encourages criminal action or violates the law, culture or internationally acceptable norms and codes of ethics.\n3.7       You hereby grant Al Jazeera a global, non-revocable, exclusive, royalty-free, transferrable licence to broadcast, distribute, display, reproduce, cut, edit, re-edit, delete, sell or modify the material or information submitted by you without any limitation whatsoever, in any media format and on any platform at the sole discretion of Al Jazeera. This Licence shall not be limited by period or territory.\n3.8       You hereby further assign to Al Jazeera (by way of permanent assignment of present and future copyright) all rights of any nature in and to such material throughout the world including all renewals and reversions thereof.\n3.9       Al Jazeera shall have the right and final say on display of User Submissions, and under no circumstances is Al Jazeera obliged to display or include on this site all or part of any User Submission. \n4. Data collection and use\nAl Jazeera may collect non-personal information about the computer, mobile device or other device you use to access Al Jazeera online services, such as Internet Protocol (IP) address, geolocation information, unique device identifiers, browser type, browser language and other transactional information.  This information assists in understanding which pages Al Jazeera’s visitors are visiting and how much time they spend there. Al Jazeera uses the information gathered to enable your use of Al Jazeera online services, fulfil your requests for certain products and services, such as sending out electronic newsletters and enabling you to participate in our services such as polls, and message boards. Further, Al Jazeera uses the non-personally identifiable information collected to improve the design and content of Al Jazeera’s online services, to deliver more relevant marketing messages and advertisements and to enable us to personalise your internet experience. Al Jazeera online services transmits such non-personally identifiable web site usage information about visitors to the servers of a reputable third party for the purpose of service performance analytics and targeting our internet banner advertisements on other sites. To do this, Al Jazeera uses web beacons in conjunction with cookies provided by our third-party ad server on this site.\n\nAl Jazeera automatically logs certain usage information about your use of Al Jazeera online services. This information includes a reading history of the pages you view, type of content you are browsing, and engagement with our online tools. This information is used in order to provide you with customised recommendations of Al Jazeera’s online services based on your reading history. Log files are also used in the aggregate to analyse usage of Al Jazeera’s online services.\n\nAl Jazeera has hired third parties to provide information, reports and analysis about the usage, browsing patterns of users of Al Jazeera online services. Third parties such as Google Analytics and Chartbeat tracks and analyses non-personally identifiable usage and volume statistical information from our visitors and customers on Al Jazeera online services.  These third party services may place or recognise cookies, web beacons or other technology to track certain non-personal information about users. Al Jazeera does not have access to, nor control over, third party service providers’ use of cookies or other tracking technologies or how they may be used.\n5. Copyright and Other Intellectual Property\nThe names, images and logos identifying Al Jazeera, or any of its associated companies or third parties and their products and services are proprietary marks of Al Jazeera, its associated companies and/or third parties. Nothing contained herein shall be construed as conferring by any means, licence or right under any trade mark or patent of Al Jazeera, its associated companies or any other third party.\nAll copyright, trade marks and other intellectual property rights in this site (including the design, arrangement and look and feel) and all material or content supplied as part of the site shall remain at all times the property of Al Jazeera or Al Jazeera’s licensors. In accessing the site, or any other sites of Al Jazeera, you agree that you do so only for your own personal, non-commercial use. You may not agree to, permit or assist in any way any third party to copy, reproduce, download, post, store (including in any other web site), distribute, transmit, broadcast, commercially exploit or modify in any way the material or content without the prior written permission of an authorised officer the Al Jazeera. \n6. Third Party Sites / Links\nAl Jazeera is not responsible for the availability or content of any third party websites or material you access through this site. If you decide to visit any linked site, you do so at your own risk and it is your responsibility to take all protective measures to guard against viruses or other destructive elements. Al Jazeera does not endorse and is not responsible or liable for any content, advertising, products, services or information on or available from third party websites or material (including payment for and delivery of such products or services). Al Jazeera is not responsible for any damage, loss or offence caused by or, in connection with, any content, advertising, products, services or information available on such websites or material. Any terms, conditions, warranties or representations associated with such dealings are solely between you and the relevant provider of the service.\nLinks to this site must be direct to any complete content page (and not any part of a page) within this site and all other Al Jazeera sites, and must not be viewed within the pages of any other site. Al Jazeera disclaims all liability for any legal or other consequences (including for infringement of third party rights) of links made to this site.\nLinks do not imply that Al Jazeera endorses, is affiliated or associated with any linked site, or is legally authorised to use any trademark, trade name, logo or copyright symbol displayed in or accessible through the links, or that any linked site is authorised to use any trademark, trade name, logo or copyright symbol of Al Jazeera or any of its affiliates, entities or subsidiaries. \n 7. Disclaimer / Limitation of Liability\nYou agree that your use of this site shall be at your sole risk and responsibility. To the fullest extent permitted by law, Al Jazeera, its officers, directors, and agents disclaim all warranties, express or implied, in connection with the site. Al Jazeera does not warrant, endorse or guarantee that the content posted on this site is of social, cultural and moral acceptable standards. Al Jazeera does not warrant that User Submissions posted on this site do not infringe any third party rights.\nAlthough Al Jazeera does monitor the User Submissions provided on the site, it is your sole responsibility to clear all rights of third parties and to obtain all necessary licences and approvals to post any material and you hereby assume all responsibility for all damages, costs and liabilities that may arise as a result from the user submission.\nThis site and the information, names, images, pictures, logos and icons relating to this site or any other sites owned or operated by Al Jazeera, and/or any of its associated companies, products and services (or to third party products and services), is provided “AS IS” and on an “AS AVAILABLE” basis without any representation or endorsement being made and without warranty of any kind, including but not limited to the implied warranties of satisfactory quality, fitness for a particular purpose, non-infringement, compatibility, security and accuracy. \n The information and other materials included on this site may contain inaccuracies and typographical errors. Al Jazeera does not warrant the accuracy or completeness of the information and materials or the reliability of any statement or other information displayed or distributed through the site (including, without limitation, the information provided through the use of any software). You acknowledge that any reliance on any such statement or information shall be at your sole risk. Al Jazeera reserves the right, in its sole discretion, to correct any errors or omissions in any part of the site and to make changes to the site and to the materials, products, programmes, services or prices described in the site at any time without notice.\nIn no event will Al Jazeera and/or third parties be liable for any damages including, but not limited to, indirect or consequential damages or any damages including, but not limited to, errors or omissions, indirect or consequential damages or any damages whatsoever arising from use, loss of use, data or profits, whether in action of contract, negligence or other action, arising out of or in connection with the use of the site.\nAl Jazeera does not warrant that the functions contained in this site will be uninterrupted or error-free or that defects will be corrected or that this site or the server that makes it available are free of viruses or bugs. Al Jazeera does not represent the full functionality, accuracy or reliability of any material. Al Jazeera may terminate, change, suspend or discontinue any aspect of this site, including the availability of any features of the site, at any time without notice or liability.\n8. Indemnity\nYou agree to indemnify and keep indemnified Al Jazeera, and all of its employees, affiliates, subsidiaries and associates from any and all claims, damages, expenses, costs and liabilities arising in any manner from your access to and use of this site and/or the submission of any User Submissions to this site. \nYou understand that when using this site, you will be exposed to User Submissions from a variety of sources, and acknowledge that you may be exposed to User Submissions that may be inaccurate, offensive, indecent, or objectionable. To that regard, you hereby waive any legal or equitable rights or remedies you have or may have against Al Jazeera, and agree to indemnify and hold harmless Al Jazeera, and its shareholders, subsidiaries, officers affiliates, and licensees to the fullest extent permitted by the law.\n9. Law and Jurisdiction\nThese Terms and Conditions shall be governed by and construed in accordance with the laws of the State of Qatar. Disputes arising herefrom shall be exclusively subject to the jurisdiction of the Qatari courts. Any cause of action you may have with respect to your use of this site must be commenced within one (1) year after the claim or cause of action arises.\n If any of these Terms and Conditions should be determined to be illegal, invalid or otherwise unenforceable by reason of the law of any state or country in which these Terms and Conditions are intended to be effective, then to the extent and within the jurisdiction in which that Term or Condition is illegal, invalid or unenforceable, it shall be severed and deleted from that clause and the remaining Terms and Conditions shall survive and continue to be binding and enforceable. \n Al Jazeera makes no representation that materials on this site are appropriate or available for use at other locations outside of the State of Qatar and access to them from territories where their contents are illegal is prohibited. If you access this site from a location outside of the State of Qatar, you are responsible for compliance with all local laws.\n","article_len":15633,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Al Jazeera","url":"https://www.aljazeera.com/tag/al-jazeera/"},{"title":"twitter","url":"https://twitter.com/share?text=Terms%20and%20Conditions&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fr54p3"},{"title":"Still Here by AJ Contrast wins two Shorty Social Good Awards","url":"https://www.aljazeera.com/news/2020/11/24/still-here-by-aj-contrast-wins-two-shorty-social-good-awards"},{"title":"Al Jazeera’s Mahmoud Hussein held in Egypt prison for 1,400 days","url":"https://www.aljazeera.com/news/2020/10/22/al-jazeeras-mahmoud-hussein-held-in-egypt-prison-for-1400-days"},{"title":"Al Jazeera Digital wins online journalism awards","url":"https://www.aljazeera.com/news/2020/10/19/al-jazeera-digital-wins-prestigious-online-journalism-awards"},{"title":"Still Here by AJ Contrast wins prestigious Kaleidoscope Award","url":"https://www.aljazeera.com/news/2020/9/17/still-here-by-aj-contrast-wins-prestigious-kaleidoscope-award"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot":{"title":"Trump has a Russia ‘blind spot’, says US Senator Romney","author_metadata":null,"date":"","html_content":"

President Donald Trump downplayed cyberattack on US gov’t agencies, which US officials have blamed on Russia.

Republican Senator Mitt Romney has said a widespread data breach across the US government was “extraordinarily damaging” and that President Donald Trump has a “blind spot” when it comes to Russia, which US officials suspect was behind the hack.

\n

“We’ve come to recognise that the president has a blind spot when it comes to Russia,” Romney told NBC news.

\n

US officials and researchers say they believe at least half-a-dozen US government agencies have been infiltrated and thousands exposed in what appears to be one of the biggest such hacks ever uncovered.

\n

Trump acknowledged the hacking on Saturday, almost a week after it was first reported, downplaying its importance and questioning whether the Russians were to blame and suggesting, without evidence, that China could be behind the attack.

\n

“The Cyber Hack is far greater in the Fake News Media than in actuality. I have been fully briefed and everything is well under control. Russia, Russia, Russia is the priority chant when anything happens because Lamestream is, for mostly financial reasons, petrified of discussing the possibility that it may be China (it may!),” he said on Twitter.

\n
Republican Senator Mitt Romney says Trump has a ‘blind spot’ when it comes to Russia [File: J. Scott Applewhite/AP Photo]

Trump’s message contradicted Secretary of State Mike Pompeo, who said on Friday that Russia was “pretty clearly” behind the hack, which is continuing.

\n

The revelations come at a vulnerable time as the US government grapples with a contentious presidential transition and the coronavirus health crisis.

\n

US Senator Mark Warner, the top Democrat on the Senate Intelligence Committee, said on ABC that the hack could still be going on and that officials had yet to determine its full scope. But he stopped short of the aggressive language used by Romney, who called the hack “an invasion”.

\n

“This is in that grey area between espionage and an attack,” Warner said. Still, he backed Romney’s call for retaliation, saying Washington needed to make clear to adversaries “that if you take this kind of action we and others will strike back”.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n

The team of President-elect Joe Biden, a Democrat, will consider several options to punish Russia over its suspected role once he takes office, from financial sanctions to retaliatory hacks on Russian infrastructure, people familiar with the matter say.

\n

Incoming White House chief of staff, Ron Klain, told CBS that Biden was thinking beyond sanctions.

\n

“It’s not just sanctions, it’s steps and things we could do to degrade the capacity of foreign actors to engage in these attacks,” he said on Sunday.

\n

But he cautioned that there were still many unknowns.

\n

“I think there’s still a lot of unanswered questions about the purpose, nature, and extent of these specific attacks,” he said.

\n
","article_text":"President Donald Trump downplayed cyberattack on US gov’t agencies, which US officials have blamed on Russia.Republican Senator Mitt Romney has said a widespread data breach across the US government was “extraordinarily damaging” and that President Donald Trump has a “blind spot” when it comes to Russia, which US officials suspect was behind the hack.\n“We’ve come to recognise that the president has a blind spot when it comes to Russia,” Romney told NBC news.\nUS officials and researchers say they believe at least half-a-dozen US government agencies have been infiltrated and thousands exposed in what appears to be one of the biggest such hacks ever uncovered.\nTrump acknowledged the hacking on Saturday, almost a week after it was first reported, downplaying its importance and questioning whether the Russians were to blame and suggesting, without evidence, that China could be behind the attack.\n“The Cyber Hack is far greater in the Fake News Media than in actuality. I have been fully briefed and everything is well under control. Russia, Russia, Russia is the priority chant when anything happens because Lamestream is, for mostly financial reasons, petrified of discussing the possibility that it may be China (it may!),” he said on Twitter.\nRepublican Senator Mitt Romney says Trump has a ‘blind spot’ when it comes to Russia [File: J. Scott Applewhite/AP Photo]Trump’s message contradicted Secretary of State Mike Pompeo, who said on Friday that Russia was “pretty clearly” behind the hack, which is continuing.\nThe revelations come at a vulnerable time as the US government grapples with a contentious presidential transition and the coronavirus health crisis.\nUS Senator Mark Warner, the top Democrat on the Senate Intelligence Committee, said on ABC that the hack could still be going on and that officials had yet to determine its full scope. But he stopped short of the aggressive language used by Romney, who called the hack “an invasion”.\n“This is in that grey area between espionage and an attack,” Warner said. Still, he backed Romney’s call for retaliation, saying Washington needed to make clear to adversaries “that if you take this kind of action we and others will strike back”.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\nThe team of President-elect Joe Biden, a Democrat, will consider several options to punish Russia over its suspected role once he takes office, from financial sanctions to retaliatory hacks on Russian infrastructure, people familiar with the matter say.\nIncoming White House chief of staff, Ron Klain, told CBS that Biden was thinking beyond sanctions.\n“It’s not just sanctions, it’s steps and things we could do to degrade the capacity of foreign actors to engage in these attacks,” he said on Sunday.\nBut he cautioned that there were still many unknowns.\n“I think there’s still a lot of unanswered questions about the purpose, nature, and extent of these specific attacks,” he said.\n","article_len":2913,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Cybercrime","url":"https://www.aljazeera.com/tag/cybercrime/"},{"title":"twitter","url":"https://twitter.com/share?text=Trump%20has%20a%20Russia%20%E2%80%98blind%20spot%E2%80%99%2C%20says%20US%20Senator%20Romney&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2F67us3"},{"title":"Trump downplays massive cyberattack on US government agencies","url":"https://www.aljazeera.com/news/2020/12/19/trump-downplays-massive-cyberattack-on-us-government-agencies"},{"title":"Trump’s silence on cyberattack raises doubts about swift response","url":"https://www.aljazeera.com/news/2020/12/18/trumps-silence-on-cyberattack-raises-doubts-about-swift-response"},{"title":"US agencies, companies secure networks after cyberattacks","url":"https://www.aljazeera.com/economy/2020/12/15/us-agencies-rushed-to-secure-networks-in-mondays-cyberattacks"},{"title":"Suspected Russian hackers spied on US Treasury emails: Report","url":"https://www.aljazeera.com/news/2020/12/13/foreign-govt-hackers-monitoring-us-treasury-department-report"},{"title":"","url":"https://www.aljazeera.com/program/inside-story/2020/12/18/whos-behind-the-latest-cyber-attack-on-the-us"},{"title":" Inside Story","url":"https://www.aljazeera.com/program/inside-story"},{"title":"","url":"https://www.aljazeera.com/economy/2020/12/18/microsoft-says-was-hit-by-cyberattack-related-to-sweeping-us-hack"},{"title":"","url":"https://www.aljazeera.com/news/2020/10/19/six-russian-military-officers-accused-of-widespread-hacking"},{"title":"","url":"https://www.aljazeera.com/news/2020/10/13/norway-says-russia-behind-cyber-attack-against-its-parliament"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/20/us-senator-romney-says-trump-has-a-russia-blind-spot#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/":{"title":"","author_metadata":null,"date":"","html_content":"

We value thoughtful, constructive discussion, but comments that attack an author or smear an organisation are not acceptable. 

\n

Contributions that offer information or clarifications on breaking news stories are also valued.

\n

Complaints about our content or coverage should be sent to feedback@aljazeera.net.

\n

The following are general guidelines that influence whether or not a comment will be accepted:

\n

1. Personal attacks on authors, other users or any individual are not tolerated, and users who repeatedly post such comments may be banned.

\n

2. Comments featuring swearing, name-calling or otherwise abusive language are unacceptable.

\n

3. We value robust debate and understand that people often feel strongly about the topics debated on the site, but please show respect for the views and beliefs of other users. By being polite and civil, you ensure that the topic remains the focus of the debate and that our pages remain conducive to intelligent discussion.

\n

4. Keep your posts relevant. If you post a comment that is not related to the topic being discussed, it may be deleted. Comments about moderation decisions or general comments about Al Jazeera will likely also be deleted.

\n

5. Comments that are racist, sexist, homophobic or otherwise offensive will not be tolerated. There is a difference between criticizing a government, organisation or belief and attacking people because of their race, gender, sexual orientation or religion.

\n

6. Comments that incite people to commit a crime will not be tolerated.

\n

7. Comments must be in English. No other languages are accepted on the site.

\n

8. Keep your comments coherent. If the moderator cannot understand your comment because of poor spelling, grammar or logic, it will be deleted.

\n

9. Do not post content which you have copied from someone else and for which you do not have the copyright.

\n

10. DO NOT SHOUT. Writing in caps is considered shouting in web etiquette. 

\n

11. No spamming or flooding. Do not repost the same message, or very similar messages, more than once.

\n

12. No advertising, promotion of products or services, or posting of web links (URLs).

\n

13. No impersonating. Impersonating anyone (including other members) is unacceptable.

\n

14. No inappropriate usernames.

\n

15. No personal information. It is not acceptable to publicise yours or anyone else’s contact details, including address, place of employment, telephone number, email address, etc. 

\n

16. We will not accept defamatory comments capable of damaging the reputation of an organisation or individual in the eyes of right thinking members of the public.

\n

17. We will not tolerate comments that are in contempt of court. This means anything that could prejudice on-going or forthcoming court proceedings.

\n

18. We will delete comments that break a court injunction. This is when court orders prohibit the release of specific information, such as the names or whereabouts of people involved in a court case.

\n

19. Spelling and grammar will not be corrected when comments are posted on blogs. However, we reserve the right to correct spelling and grammar when publishing comments elsewhere on our site.

\n

20. Because of the volume of comments received, we cannot review individual moderation decisions or alter comments once they have been published.

\n

Content on this website is for general information purposes only. Your comments are provided by your own free will and you take sole responsibility for any direct or indirect liability. You assign us with a license to use, reuse, delete or publish any comments without notice.

\n
","article_text":"We value thoughtful, constructive discussion, but comments that attack an author or smear an organisation are not acceptable. \nContributions that offer information or clarifications on breaking news stories are also valued.\nComplaints about our content or coverage should be sent to feedback@aljazeera.net.\nThe following are general guidelines that influence whether or not a comment will be accepted:\n1. Personal attacks on authors, other users or any individual are not tolerated, and users who repeatedly post such comments may be banned.\n2. Comments featuring swearing, name-calling or otherwise abusive language are unacceptable.\n3. We value robust debate and understand that people often feel strongly about the topics debated on the site, but please show respect for the views and beliefs of other users. By being polite and civil, you ensure that the topic remains the focus of the debate and that our pages remain conducive to intelligent discussion.\n4. Keep your posts relevant. If you post a comment that is not related to the topic being discussed, it may be deleted. Comments about moderation decisions or general comments about Al Jazeera will likely also be deleted.\n5. Comments that are racist, sexist, homophobic or otherwise offensive will not be tolerated. There is a difference between criticizing a government, organisation or belief and attacking people because of their race, gender, sexual orientation or religion.\n6. Comments that incite people to commit a crime will not be tolerated.\n7. Comments must be in English. No other languages are accepted on the site.\n8. Keep your comments coherent. If the moderator cannot understand your comment because of poor spelling, grammar or logic, it will be deleted.\n9. Do not post content which you have copied from someone else and for which you do not have the copyright.\n10. DO NOT SHOUT. Writing in caps is considered shouting in web etiquette. \n11. No spamming or flooding. Do not repost the same message, or very similar messages, more than once.\n12. No advertising, promotion of products or services, or posting of web links (URLs).\n13. No impersonating. Impersonating anyone (including other members) is unacceptable.\n14. No inappropriate usernames.\n15. No personal information. It is not acceptable to publicise yours or anyone else’s contact details, including address, place of employment, telephone number, email address, etc. \n16. We will not accept defamatory comments capable of damaging the reputation of an organisation or individual in the eyes of right thinking members of the public.\n17. We will not tolerate comments that are in contempt of court. This means anything that could prejudice on-going or forthcoming court proceedings.\n18. We will delete comments that break a court injunction. This is when court orders prohibit the release of specific information, such as the names or whereabouts of people involved in a court case.\n19. Spelling and grammar will not be corrected when comments are posted on blogs. However, we reserve the right to correct spelling and grammar when publishing comments elsewhere on our site.\n20. Because of the volume of comments received, we cannot review individual moderation decisions or alter comments once they have been published.\nContent on this website is for general information purposes only. Your comments are provided by your own free will and you take sole responsibility for any direct or indirect liability. You assign us with a license to use, reuse, delete or publish any comments without notice.\n","article_len":3534,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"Al Jazeera","url":"https://www.aljazeera.com/tag/al-jazeera/"},{"title":"twitter","url":"https://twitter.com/share?text=Community%20Rules&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Ff8wlw"},{"title":"Still Here by AJ Contrast wins two Shorty Social Good Awards","url":"https://www.aljazeera.com/news/2020/11/24/still-here-by-aj-contrast-wins-two-shorty-social-good-awards"},{"title":"Al Jazeera’s Mahmoud Hussein held in Egypt prison for 1,400 days","url":"https://www.aljazeera.com/news/2020/10/22/al-jazeeras-mahmoud-hussein-held-in-egypt-prison-for-1400-days"},{"title":"Al Jazeera Digital wins online journalism awards","url":"https://www.aljazeera.com/news/2020/10/19/al-jazeera-digital-wins-prestigious-online-journalism-awards"},{"title":"Still Here by AJ Contrast wins prestigious Kaleidoscope Award","url":"https://www.aljazeera.com/news/2020/9/17/still-here-by-aj-contrast-wins-prestigious-kaleidoscope-award"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/#cookiesPreferences"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/12/us-top-court-refuses-to-take-up-latest-trump-election-challenge":{"title":"US top court refuses to take up latest Trump election challenge","author_metadata":null,"date":"","html_content":"

\"Simply

Supreme Court decision on Texas suit deals blow to Donald Trump’s efforts to overturn Joe Biden’s election victory.

The United States Supreme Court has rejected a long-shot lawsuit filed by Texas and backed by President Donald Trump to challenge the presidential election results, effectively dealing Trump another blow in multiple failed attempts to overturn Joe Biden’s victory.

\n

In its decision on Friday, the Supreme Court said it denied Texas’s motion for leave to file a complaint about vote tallies in Pennsylvania and three other US states “for lack of standing” under the US Constitution.

\n

“Texas has not demonstrated a judicially cognizable interest in the manner in which another state conducts its elections,” the court stated.

\n

Trump repeatedly has sought to overturn the results of the November 3 election.

\n

Biden, his Democratic challenger, was declared the winner after securing enough Electoral College votes to win the White House – and he has begun announcing government department nominees and shaping his incoming administration’s policies.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n\n

But Trump continues to cast doubt on the US voting process, lobbing false claims of widespread voter fraud and trying to overturn the results in court. Most of those legal challenges have been thrown out.

\n

‘Seditious abuse’

\n

Texas had sought to challenge the results in Georgia, Michigan, Pennsylvania and Wisconsin directly with the Supreme Court. Biden won all four states this year, but Trump had won them in the 2016 election.

\n

Two of the court’s conservatives, Justice Samuel Alito and Justice Clarence Thomas, said they would have allowed Texas to sue but would not have blocked the four states from finalising their election results.

\n

The case was filed on December 8 by the Republican attorney general of Texas, a Trump ally. Trump filed a motion to intervene and become a plaintiff the next day.

\n

The four states, in a filing with the court on December 10, asked the justices to reject the lawsuit, which they said had no factual or legal grounds, a widely held view among constitutional scholars.

\n

“Our nation’s highest court saw through this seditious abuse of our electoral process,” Pennsylvania Attorney General Josh Shapiro, a Democrat, said on Twitter.

\n\n

Dozens of lawsuits

\n

Earlier on Friday before the court ruling was handed down, Harvard law professor Laurence Tribe said on Twitter that the Texas lawsuit was “garbage” and a “coup dressed up as a lawsuit”.

\n

Tribe later called the Supreme Court’s decision “a triumph for the Constitution, the rule of law, democracy and the system of checks and balances!”

\n

Texas Attorney General Ken Paxton, meanwhile, issued a statement saying the court’s rejection of his case was “unfortunate” and that he would continue to “defend the integrity and security of our elections”.

\n\n

The chairman of the Texas Republican Party, Allen West, also suggested on Friday evening that a “Union of states that will abide by the Constitution” be formed.

\n

West said the Supreme Court’s order had established “a precedent that says states can violate the U.S. Constitution and not be held accountable”.

\n

Trump’s campaign and his allies already had lost as many as 57 lawsuits seeking to challenge the election results in state and federal courts, according to a tally by Marc Elias, an election lawyer who has been directing the Democratic Party’s response to Trump’s litigation.

\n

State election officials have said they have found no evidence of widespread voter fraud, and lawyers for Trump and his allies have failed to present evidence in court of the type of fraud he has alleged took place.

\n
President-elect Joe Biden has won 306 Electoral College votes, surpassing the threshold needed to win the White House [File: Andrew Harnik/AP]

The president did not immediately react on Twitter to the Supreme Court’s rejection of the Texas complaint.

\n

Results of the US presidential election are due to be finalised on December 14 when the Electoral College meets. Biden won 306 Electoral College votes compared with Trump’s 232.

\n

Biden also won the popular vote, securing 81 million votes to Trump’s 74 million.

\n

Source

:

Al Jazeera and News agencies

","article_text":"Supreme Court decision on Texas suit deals blow to Donald Trump’s efforts to overturn Joe Biden’s election victory.The United States Supreme Court has rejected a long-shot lawsuit filed by Texas and backed by President Donald Trump to challenge the presidential election results, effectively dealing Trump another blow in multiple failed attempts to overturn Joe Biden’s victory.\nIn its decision on Friday, the Supreme Court said it denied Texas’s motion for leave to file a complaint about vote tallies in Pennsylvania and three other US states “for lack of standing” under the US Constitution.\n“Texas has not demonstrated a judicially cognizable interest in the manner in which another state conducts its elections,” the court stated.\nTrump repeatedly has sought to overturn the results of the November 3 election.\nBiden, his Democratic challenger, was declared the winner after securing enough Electoral College votes to win the White House – and he has begun announcing government department nominees and shaping his incoming administration’s policies.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n\nBut Trump continues to cast doubt on the US voting process, lobbing false claims of widespread voter fraud and trying to overturn the results in court. Most of those legal challenges have been thrown out.\n‘Seditious abuse’\nTexas had sought to challenge the results in Georgia, Michigan, Pennsylvania and Wisconsin directly with the Supreme Court. Biden won all four states this year, but Trump had won them in the 2016 election.\nTwo of the court’s conservatives, Justice Samuel Alito and Justice Clarence Thomas, said they would have allowed Texas to sue but would not have blocked the four states from finalising their election results.\nThe case was filed on December 8 by the Republican attorney general of Texas, a Trump ally. Trump filed a motion to intervene and become a plaintiff the next day.\nThe four states, in a filing with the court on December 10, asked the justices to reject the lawsuit, which they said had no factual or legal grounds, a widely held view among constitutional scholars.\n“Our nation’s highest court saw through this seditious abuse of our electoral process,” Pennsylvania Attorney General Josh Shapiro, a Democrat, said on Twitter.\n\nDozens of lawsuits\nEarlier on Friday before the court ruling was handed down, Harvard law professor Laurence Tribe said on Twitter that the Texas lawsuit was “garbage” and a “coup dressed up as a lawsuit”.\nTribe later called the Supreme Court’s decision “a triumph for the Constitution, the rule of law, democracy and the system of checks and balances!”\nTexas Attorney General Ken Paxton, meanwhile, issued a statement saying the court’s rejection of his case was “unfortunate” and that he would continue to “defend the integrity and security of our elections”.\n\nThe chairman of the Texas Republican Party, Allen West, also suggested on Friday evening that a “Union of states that will abide by the Constitution” be formed.\nWest said the Supreme Court’s order had established “a precedent that says states can violate the U.S. Constitution and not be held accountable”.\nTrump’s campaign and his allies already had lost as many as 57 lawsuits seeking to challenge the election results in state and federal courts, according to a tally by Marc Elias, an election lawyer who has been directing the Democratic Party’s response to Trump’s litigation.\nState election officials have said they have found no evidence of widespread voter fraud, and lawyers for Trump and his allies have failed to present evidence in court of the type of fraud he has alleged took place.\nPresident-elect Joe Biden has won 306 Electoral College votes, surpassing the threshold needed to win the White House [File: Andrew Harnik/AP]The president did not immediately react on Twitter to the Supreme Court’s rejection of the Texas complaint.\nResults of the US presidential election are due to be finalised on December 14 when the Electoral College meets. Biden won 306 Electoral College votes compared with Trump’s 232.\nBiden also won the popular vote, securing 81 million votes to Trump’s 74 million.\nSource : Al Jazeera and News agencies","article_len":4152,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"","url":"https://www.aljazeera.com/us-elections-2020/"},{"title":"US Elections 2020","url":"https://www.aljazeera.com/tag/us-elections-2020/"},{"title":"twitter","url":"https://twitter.com/share?text=US%20top%20court%20refuses%20to%20take%20up%20latest%20Trump%20election%20challenge&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2F9nx4l"},{"title":"The New Yorkers clinging to the fantasy of a second Trump term","url":"https://www.aljazeera.com/features/2020/12/6/the-new-yorkers-still-clinging-to-the-fantasy-of-a-second-trump-t"},{"title":"Key deadline marks beginning of end of Trump election challenges","url":"https://www.aljazeera.com/news/2020/12/8/key-deadline-marks-beginning-of-end-of-trump-election-challenges"},{"title":"A ‘coup’ was not in the cards for Trump, after all","url":"https://www.aljazeera.com/news/2020/12/1/a-coup-was-not-in-the-cards-for-trump-after-all"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/10/trump-confident-as-supreme-court-considers-last-ditch-lawsuit"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/8/texas-lawsuit-asks-us-supreme-court-to-help-trump-upend-election"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/11/supreme-court-weighs-election-suit-as-trump-rallies-republicans"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/12/us-top-court-refuses-to-take-up-latest-trump-election-challenge#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/12/trump-election-lawsuit-smacks-of-racism-wisconsin-judge-says":{"title":"Trump election lawsuit ‘smacks of racism’, Wisconsin judge says","author_metadata":null,"date":"","html_content":"

\"Simply

The US president is trying to throw out 221,000 votes in Wisconsin in another longshot attempt to flip the election.

A lawsuit filed by Donald Trump’s campaign to throw out more than 221,000 votes in the state of Wisconsin “smacks of racism”, a Wisconsin Supreme Court judge said on Saturday.

\n

Justice Jill Karofsky’s biting condemnation came after Trump lawyer Jim Troupis made his arguments in the case, the most recent in a string of long-shot attempts by Trump’s team to overturn the US presidential election results.

\n

To date, the president and his allies have not been successful in any of their litigation efforts.

\n

“This lawsuit, Mr Troupis, smacks of racism,” Karofsky said of the case, which seeks to throw out an array of mail-in ballots cast in Dane and Milwaukee Counties, areas that contain the largest minority populations in the state.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n

“I do not know how you can come before this court and possibly ask for a remedy that is unheard of in US history,” Karofsky added. “It is not normal.”

\n

Wisconsin’s highest court had agreed to take the case at Trump’s urgent request Friday, soon after a state judge ruled against him.

\n

On Monday, the Electoral College will cast their votes, with Wisconsin’s 10 electoral votes set to go to President-elect Joe Biden.

\n

Biden won the state by about 20,000 votes, with recounts in Dane and Milwaukee Counties requested by the Trump campaign reaffirming that margin.

\n

Also on Saturday, a US federal judge rejected a lawsuit filed by Trump that sought to have the court order Wisconsin’s state legislature name Trump the victor in the state.

\n\n\n

US District Judge Brett Ludwig dismissed the lawsuit, saying Trump’s arguments “fail as a matter of law and fact”.

\n

On Friday, Trump, who has continued to falsely claim that widespread voter fraud took place in the election, suffered one of the most crushing blows to date in his efforts to overturn the vote results.

\n

The US Supreme Court refused to hear a Texas lawsuit that sought to flip the results in four battleground states in favour of Trump.

\n

Trump excoriated the ruling on Twitter, saying on Saturday, “We have just begun to fight”.

\n

Source

:

Al Jazeera and News agencies

","article_text":"The US president is trying to throw out 221,000 votes in Wisconsin in another longshot attempt to flip the election.A lawsuit filed by Donald Trump’s campaign to throw out more than 221,000 votes in the state of Wisconsin “smacks of racism”, a Wisconsin Supreme Court judge said on Saturday.\nJustice Jill Karofsky’s biting condemnation came after Trump lawyer Jim Troupis made his arguments in the case, the most recent in a string of long-shot attempts by Trump’s team to overturn the US presidential election results.\nTo date, the president and his allies have not been successful in any of their litigation efforts.\n“This lawsuit, Mr Troupis, smacks of racism,” Karofsky said of the case, which seeks to throw out an array of mail-in ballots cast in Dane and Milwaukee Counties, areas that contain the largest minority populations in the state.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n“I do not know how you can come before this court and possibly ask for a remedy that is unheard of in US history,” Karofsky added. “It is not normal.”\nWisconsin’s highest court had agreed to take the case at Trump’s urgent request Friday, soon after a state judge ruled against him.\nOn Monday, the Electoral College will cast their votes, with Wisconsin’s 10 electoral votes set to go to President-elect Joe Biden.\nBiden won the state by about 20,000 votes, with recounts in Dane and Milwaukee Counties requested by the Trump campaign reaffirming that margin.\nAlso on Saturday, a US federal judge rejected a lawsuit filed by Trump that sought to have the court order Wisconsin’s state legislature name Trump the victor in the state.\n\n\nUS District Judge Brett Ludwig dismissed the lawsuit, saying Trump’s arguments “fail as a matter of law and fact”.\nOn Friday, Trump, who has continued to falsely claim that widespread voter fraud took place in the election, suffered one of the most crushing blows to date in his efforts to overturn the vote results.\nThe US Supreme Court refused to hear a Texas lawsuit that sought to flip the results in four battleground states in favour of Trump.\nTrump excoriated the ruling on Twitter, saying on Saturday, “We have just begun to fight”.\nSource : Al Jazeera and News agencies","article_len":2182,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"","url":"https://www.aljazeera.com/us-elections-2020/"},{"title":"US Elections 2020","url":"https://www.aljazeera.com/tag/us-elections-2020/"},{"title":"twitter","url":"https://twitter.com/share?text=Trump%20election%20lawsuit%20%E2%80%98smacks%20of%20racism%E2%80%99%2C%20Wisconsin%20judge%20says&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Ftnnzx"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Early voting surges for Georgia’s US Senate runoff elections","url":"https://www.aljazeera.com/news/2020/12/18/over-1-million-georgians-cast-ballots-for-us-senate-runoffs"},{"title":"In wake of election loss, Trump’s enemies list keeps expanding","url":"https://www.aljazeera.com/news/2020/12/18/in-wake-of-election-loss-trumps-enemies-list-keeps-expanding"},{"title":"Biden to nominate first-ever Native American cabinet secretary","url":"https://www.aljazeera.com/news/2020/12/17/biden-to-nominate-first-ever-native-american-cabinet-secretary"},{"title":"Electoral College","url":"https://www.aljazeera.com/news/2020/12/12/who-are-the-us-presidential-electors"},{"title":"refused to hear","url":"https://www.aljazeera.com/news/2020/12/12/us-top-court-refuses-to-take-up-latest-trump-election-challenge"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/12/trump-election-lawsuit-smacks-of-racism-wisconsin-judge-says#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/10/trump-confident-as-supreme-court-considers-last-ditch-lawsuit":{"title":"Trump confident as Supreme Court considers last-ditch lawsuit","author_metadata":null,"date":"","html_content":"

\"Simply

Having failed to overturn the results so far, Trump still believes ‘we’re going to win this election in a landslide’.

US President Donald Trump and his backers, having been stymied dozens of times by judges and elections officials across the country, are confident one last-ditch lawsuit will overturn his election loss.

\n

“All I ask for is people with wisdom and with courage, that’s all,” Trump said at a White House Hanukkah party on Wednesday night, according to a video posted to Twitter. “Because if certain very important people, if they have wisdom and if they have courage, we’re going to win this election in a landslide.”

\n\n\n

Texas Attorney General Ken Paxton this week filed a suit with the US Supreme Court demanding the Electoral College votes from Georgia, Michigan, Pennsylvania and Wisconsin be invalidated. The suit asks that the four states not be able to cast their electoral votes when the Electoral College meets next week because, it argued, using unproven or disproven allegations, that those states’ pandemic-era election law changes violated federal law.

\n

Trump filed a motion with the Supreme Court to be added to the suit and Republican attorneys general from 17 states have also joined the suit, which legal experts widely believe will be quickly dismissed by the Supreme Court. Notably, Trump has invited those attorneys general to the White House for a lunch on Thursday.

\n

“We will be INTERVENING in the Texas (plus many other states) case,” Trump tweeted on Wednesday. “This is the big one. Our Country needs a victory!”

\n\n\n

Election law expert Rick Hasen, a professor at the University of California, Irvine law school, called the suit “bonkers” and “dangerous garbage”, writing on his blog: “Texas doesn’t have standing to raise these claims as it has no say over how other states choose electors” and “there’s no reason to believe the voting conducted in any of the states was done unconstitutionally.”

\n

“Both procedurally and substantively, [the lawsuit’s] a mess,” Justin Levitt, an election law professor at Loyola Law School in California, told the Reuters news agency. “There’s zero chance the court agrees to take the case.”

\n

The Supreme Court asked the four states being sued to respond by Thursday afternoon. The court is expected to weigh in shortly afterwards, as time is of the essence: The Electoral College will meet on Monday, a date set by US law.

\n

The four states named in the suit total 62 electoral votes in states won by President-elect Joe Biden. Overall, Biden won 306 electoral votes to Trump’s 232.

\n

Out of the roughly 50 lawsuits filed around the country contesting the November 3 vote, Trump has lost more than 35 and the others are pending, according to an Associated Press tally.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n

Judges have consistently said the pro-Trump lawsuits lack key evidence and proof that elections were “rigged” or “illegal” or rife with fraud, allegations that have been amplified by the president and his supporters outside of the courtroom.

\n

On Tuesday, reacting to a separate lawsuit, the Supreme Court refused to entertain the idea that the certification of Pennsylvania’s vote should be overturned and dismissed the suit without comment.

\n

Meanwhile, Trump is dialling up the pressure on congressional Republicans, many of whom have yet to acknowledge Biden as president-elect but are not explicitly rallying around Trump either.

\n

The Washington Post reported late on Wednesday that Trump is “calling Republicans, imploring them to keep fighting and more loudly proclaim the election was stolen”.

\n

If the Electoral College votes as expected on Monday, that slams the door on Trump’s legal efforts to change the outcome. His conservative backers in Congress are trying to persuade other Republicans to take part in a sure-to-fail gambit to hold up congressional certification of the Electoral College vote on January 6.

\n

In the unlikely event that gains traction, both houses of Congress would have to approve of that action and Biden’s Democrats, who will hold a majority in the House, and possibly the Senate as well, will not let that effort proceed.

\n
","article_text":"Having failed to overturn the results so far, Trump still believes ‘we’re going to win this election in a landslide’.US President Donald Trump and his backers, having been stymied dozens of times by judges and elections officials across the country, are confident one last-ditch lawsuit will overturn his election loss.\n“All I ask for is people with wisdom and with courage, that’s all,” Trump said at a White House Hanukkah party on Wednesday night, according to a video posted to Twitter. “Because if certain very important people, if they have wisdom and if they have courage, we’re going to win this election in a landslide.”\n\n\nTexas Attorney General Ken Paxton this week filed a suit with the US Supreme Court demanding the Electoral College votes from Georgia, Michigan, Pennsylvania and Wisconsin be invalidated. The suit asks that the four states not be able to cast their electoral votes when the Electoral College meets next week because, it argued, using unproven or disproven allegations, that those states’ pandemic-era election law changes violated federal law.\nTrump filed a motion with the Supreme Court to be added to the suit and Republican attorneys general from 17 states have also joined the suit, which legal experts widely believe will be quickly dismissed by the Supreme Court. Notably, Trump has invited those attorneys general to the White House for a lunch on Thursday.\n“We will be INTERVENING in the Texas (plus many other states) case,” Trump tweeted on Wednesday. “This is the big one. Our Country needs a victory!”\n\n\nElection law expert Rick Hasen, a professor at the University of California, Irvine law school, called the suit “bonkers” and “dangerous garbage”, writing on his blog: “Texas doesn’t have standing to raise these claims as it has no say over how other states choose electors” and “there’s no reason to believe the voting conducted in any of the states was done unconstitutionally.”\n“Both procedurally and substantively, [the lawsuit’s] a mess,” Justin Levitt, an election law professor at Loyola Law School in California, told the Reuters news agency. “There’s zero chance the court agrees to take the case.”\nThe Supreme Court asked the four states being sued to respond by Thursday afternoon. The court is expected to weigh in shortly afterwards, as time is of the essence: The Electoral College will meet on Monday, a date set by US law.\nThe four states named in the suit total 62 electoral votes in states won by President-elect Joe Biden. Overall, Biden won 306 electoral votes to Trump’s 232.\nOut of the roughly 50 lawsuits filed around the country contesting the November 3 vote, Trump has lost more than 35 and the others are pending, according to an Associated Press tally.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\nJudges have consistently said the pro-Trump lawsuits lack key evidence and proof that elections were “rigged” or “illegal” or rife with fraud, allegations that have been amplified by the president and his supporters outside of the courtroom.\nOn Tuesday, reacting to a separate lawsuit, the Supreme Court refused to entertain the idea that the certification of Pennsylvania’s vote should be overturned and dismissed the suit without comment.\nMeanwhile, Trump is dialling up the pressure on congressional Republicans, many of whom have yet to acknowledge Biden as president-elect but are not explicitly rallying around Trump either.\nThe Washington Post reported late on Wednesday that Trump is “calling Republicans, imploring them to keep fighting and more loudly proclaim the election was stolen”.\nIf the Electoral College votes as expected on Monday, that slams the door on Trump’s legal efforts to change the outcome. His conservative backers in Congress are trying to persuade other Republicans to take part in a sure-to-fail gambit to hold up congressional certification of the Electoral College vote on January 6.\nIn the unlikely event that gains traction, both houses of Congress would have to approve of that action and Biden’s Democrats, who will hold a majority in the House, and possibly the Senate as well, will not let that effort proceed.\n","article_len":4101,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"","url":"https://www.aljazeera.com/us-elections-2020/"},{"title":"US Elections 2020","url":"https://www.aljazeera.com/tag/us-elections-2020/"},{"title":"twitter","url":"https://twitter.com/share?text=Trump%20confident%20as%20Supreme%20Court%20considers%20last-ditch%20lawsuit&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fxkwx2"},{"title":"Republicans are in no rush to recognise Biden as president-elect","url":"https://www.aljazeera.com/news/2020/12/9/republicans-are-in-no-rush-to-recognize-biden-as-president-elect"},{"title":"Bolton: Trump ‘didn’t understand what it means to be president’","url":"https://www.aljazeera.com/program/the-bottom-line/2020/12/10/john-bolton-trump-presidency"},{"title":"Key deadline marks beginning of end of Trump election challenges","url":"https://www.aljazeera.com/news/2020/12/8/key-deadline-marks-beginning-of-end-of-trump-election-challenges"},{"title":"US Supreme Court rejects bid to overturn Pennsylvania vote","url":"https://www.aljazeera.com/news/2020/12/8/texas-lawsuit-asks-us-supreme-court-to-help-trump-upend-election"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/10/trump-confident-as-supreme-court-considers-last-ditch-lawsuit#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]},"https://www.aljazeera.com/news/2020/12/19/we-are-ready-us-begins-moderna-covid-vaccine-rollout":{"title":"‘We are ready’: US begins Moderna COVID vaccine roll-out","author_metadata":null,"date":"","html_content":"

Top US official says trucks will begin distributing Moderna COVID-19 vaccine doses to more than 3,700 locations on Sunday.

Millions of doses of Moderna’s COVID-19 vaccine will be distributed to more than 3,700 locations across the United States starting on Sunday, the head of the country’s COVID-19 vaccine distribution plan, said, urging Americans to continue to follow public health guidelines.

\n

In a news conference on Saturday morning, Operation Warp Speed CEO Gustave Perna said Moderna has moved vaccines from its manufacturing sites to distribution locations.

\n

“America, we are ready to distribute that vaccine,” Perna told reporters. “Boxes are being packed and loaded today – trucks will begin rolling out tomorrow.”

\n

The US Food and Drug Administration (FDA) late on Friday authorised the Moderna vaccine for emergency use across the country – the second COVID-19 vaccine approved for use in the US after Pfizer-BioNTech’s vaccine was approved last week.

\n

US officials have said they intend to distribute 5.9 million Moderna doses in the initial shipment, which will first be administered to healthcare workers and residents of long-term care homes across the country.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n

Perna said he expects to distribute 7.9 million doses of both the Moderna and Pfizer-BioNTech vaccines in the coming week.

\n

“[The] Moderna vaccine can be shipped and stored at standard freezer temperatures and is packed in containers of 100 doses each,” he said, adding that this gives US states greater “flexibility to support hard-to-reach, small and more rural areas”.

\n

The Pfizer-BioNTech vaccine must be kept at ultralow temperatures, which means states and cities must have the necessary infrastructure to store it.

\n

Confusion, frustration

\n

US media outlets reported this week that several states, including Michigan, Oregon and Illinois, said they were informed by the federal government that they would be receiving fewer Pfizer-BioNTech doses than expected next week.

\n

That created confusion and frustration, as state governments hoping the vaccines will help them get the surging pandemic under control said they would be forced to adjust their inoculation plans.

\n

Washington state Governor Jay Inslee said on Thursday afternoon that the US Centers for Disease Control and Prevention (CDC) had informed him that vaccine allocation would be cut by 40 percent next week. “This is disruptive and frustrating,” he tweeted.

\n\n\n

Pfizer said in a statement on Thursday that it had successfully shipped 2.9 million doses ordered by the US government and that it was not having production issues. No vaccine shipment orders were on hold or delayed, the company added.

\n

“We have millions more doses sitting in our warehouse but, as of now, we have not received any shipment instructions for additional doses,” it said.

\n

Perna on Saturday said he took personal responsibility for the confusion, saying it was a “planning error” and that was forced to change the forecasted allocation numbers to meet the actual amount of releasable vaccine doses available.

\n

“It was my fault. I gave guidance. I was the one that approved the forecast sheets. I am the one that approved the allocations,” he said.

\n

“There is no problem with the process. There is no problem with the Pfizer vaccine. There is no problem with the Moderna vaccine. It was a planning error and I am responsible.”

\n

Building vaccine confidence

\n

While the vaccine roll-out in the US has been widely welcomed, it will take time before most Americans are vaccinated – and public health experts are urging people to continue to follow public health directives and exercise caution.

\n

Since the pandemic began, officials in some parts of the country have resisted putting lockdown measures in place, while in others, some residents have refused to abide by social distancing and mask-wearing mandates.

\n

The US has seen record-setting COVID-19 case numbers and staggering hospitalisation rates in recent weeks.

\n

It has recorded more than 17.5 million infections and over 314,000 deaths linked to the novel coronavirus since the crisis began, according to a Johns Hopkins University tally – the highest totals in the world.

\n

Top US officials are now trying to build confidence in the COVID-19 vaccines, as well, amid reluctance and fears in some communities. Vice President Mike Pence publicly received a shot on Friday, and US President-elect Joe Biden is expected to be vaccinated on Monday.

\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n
","article_text":"Top US official says trucks will begin distributing Moderna COVID-19 vaccine doses to more than 3,700 locations on Sunday.Millions of doses of Moderna’s COVID-19 vaccine will be distributed to more than 3,700 locations across the United States starting on Sunday, the head of the country’s COVID-19 vaccine distribution plan, said, urging Americans to continue to follow public health guidelines.\nIn a news conference on Saturday morning, Operation Warp Speed CEO Gustave Perna said Moderna has moved vaccines from its manufacturing sites to distribution locations.\n“America, we are ready to distribute that vaccine,” Perna told reporters. “Boxes are being packed and loaded today – trucks will begin rolling out tomorrow.”\nThe US Food and Drug Administration (FDA) late on Friday authorised the Moderna vaccine for emergency use across the country – the second COVID-19 vaccine approved for use in the US after Pfizer-BioNTech’s vaccine was approved last week.\nUS officials have said they intend to distribute 5.9 million Moderna doses in the initial shipment, which will first be administered to healthcare workers and residents of long-term care homes across the country.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\nPerna said he expects to distribute 7.9 million doses of both the Moderna and Pfizer-BioNTech vaccines in the coming week.\n“[The] Moderna vaccine can be shipped and stored at standard freezer temperatures and is packed in containers of 100 doses each,” he said, adding that this gives US states greater “flexibility to support hard-to-reach, small and more rural areas”.\nThe Pfizer-BioNTech vaccine must be kept at ultralow temperatures, which means states and cities must have the necessary infrastructure to store it.\nConfusion, frustration\nUS media outlets reported this week that several states, including Michigan, Oregon and Illinois, said they were informed by the federal government that they would be receiving fewer Pfizer-BioNTech doses than expected next week.\nThat created confusion and frustration, as state governments hoping the vaccines will help them get the surging pandemic under control said they would be forced to adjust their inoculation plans.\nWashington state Governor Jay Inslee said on Thursday afternoon that the US Centers for Disease Control and Prevention (CDC) had informed him that vaccine allocation would be cut by 40 percent next week. “This is disruptive and frustrating,” he tweeted.\n\n\nPfizer said in a statement on Thursday that it had successfully shipped 2.9 million doses ordered by the US government and that it was not having production issues. No vaccine shipment orders were on hold or delayed, the company added.\n“We have millions more doses sitting in our warehouse but, as of now, we have not received any shipment instructions for additional doses,” it said.\nPerna on Saturday said he took personal responsibility for the confusion, saying it was a “planning error” and that was forced to change the forecasted allocation numbers to meet the actual amount of releasable vaccine doses available.\n“It was my fault. I gave guidance. I was the one that approved the forecast sheets. I am the one that approved the allocations,” he said.\n“There is no problem with the process. There is no problem with the Pfizer vaccine. There is no problem with the Moderna vaccine. It was a planning error and I am responsible.”\nBuilding vaccine confidence\nWhile the vaccine roll-out in the US has been widely welcomed, it will take time before most Americans are vaccinated – and public health experts are urging people to continue to follow public health directives and exercise caution.\nSince the pandemic began, officials in some parts of the country have resisted putting lockdown measures in place, while in others, some residents have refused to abide by social distancing and mask-wearing mandates.\nThe US has seen record-setting COVID-19 case numbers and staggering hospitalisation rates in recent weeks.\nIt has recorded more than 17.5 million infections and over 314,000 deaths linked to the novel coronavirus since the crisis began, according to a Johns Hopkins University tally – the highest totals in the world.\nTop US officials are now trying to build confidence in the COVID-19 vaccines, as well, amid reluctance and fears in some communities. Vice President Mike Pence publicly received a shot on Friday, and US President-elect Joe Biden is expected to be vaccinated on Monday.\n\t\t\n\n\t\t\t\t\t\n\n\t\t\n\t\t\n\n\t\t\n","article_len":4443,"domain":"https://www.aljazeera.com/news/","found_urls":[{"title":" Live play","url":"https://www.aljazeera.com/live"},{"title":"News","url":"https://www.aljazeera.com/news/"},{"title":"Middle East","url":"https://www.aljazeera.com/middle-east/"},{"title":"Africa","url":"https://www.aljazeera.com/africa/"},{"title":"Asia","url":"https://www.aljazeera.com/asia/"},{"title":"US & Canada","url":"https://www.aljazeera.com/us-canada/"},{"title":"Latin America","url":"https://www.aljazeera.com/latin-america/"},{"title":"Europe","url":"https://www.aljazeera.com/europe/"},{"title":"Asia Pacific","url":"https://www.aljazeera.com/asia-pacific/"},{"title":"Coronavirus","url":"https://www.aljazeera.com/tag/coronavirus-pandemic/"},{"title":"Features","url":"https://www.aljazeera.com/features/"},{"title":"Economy","url":"https://www.aljazeera.com/economy/"},{"title":"Opinion","url":"https://www.aljazeera.com/opinion/"},{"title":"Video","url":"https://www.aljazeera.com/videos/"},{"title":"Investigations","url":"https://www.aljazeera.com/investigations/"},{"title":"Interactives","url":"https://www.aljazeera.com/interactives/"},{"title":"In Pictures","url":"https://www.aljazeera.com/gallery/"},{"title":"Climate","url":"https://www.aljazeera.com/tag/climate/"},{"title":"Science & Technology","url":"https://www.aljazeera.com/tag/science-and-technology/"},{"title":"Sports","url":"https://www.aljazeera.com/sports/"},{"title":"Podcasts","url":"https://www.aljazeera.com/podcasts/"},{"title":"","url":"https://www.aljazeera.com/"},{"title":"twitter","url":"https://twitter.com/share?text=%E2%80%98We%20are%20ready%E2%80%99%3A%20US%20begins%20Moderna%20COVID%20vaccine%20roll-out&source=sharethiscom&related=sharethis&via=AJEnglish&url=https%3A%2F%2Faje.io%2Fy67x3"},{"title":"Qatar to receive first batch of COVID-19 vaccine on Monday","url":"https://www.aljazeera.com/news/2020/12/19/qatar-covid-vaccine"},{"title":"Canada: Group boosts COVID messaging in South Asian communities","url":"https://www.aljazeera.com/news/2020/12/19/canada-group-boosts-covid-messaging-in-south-asian-communities"},{"title":"UK imposes tighter curbs amid confirmation of new COVID strain","url":"https://www.aljazeera.com/news/2020/12/19/uk-imposes-tighter-curbs-amid-confirmation-of-new-covid-strain"},{"title":"authorised","url":"https://www.aljazeera.com/news/2020/12/19/us-fda-authorises-emergency-use-of-moderna-vaccine"},{"title":"approved","url":"https://www.aljazeera.com/news/2020/12/12/us-issues-emergency-authorisation-of-pfizer-biontech-covid-vaccine"},{"title":"reluctance and fears","url":"https://www.aljazeera.com/news/2020/12/15/public-confidence-looms-as-us-rolls-out-pfizer-vaccine"},{"title":"received","url":"https://www.aljazeera.com/news/2020/12/18/pence-receives-covid-vaccine-as-trump-keeps-a-low-profile"},{"title":"expected","url":"https://www.aljazeera.com/news/2020/12/18/president-elect-biden-to-take-covid-19-vaccine-on-monday"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/18/covid-vaccines-must-be-made-available-everywhere-says-guterres"},{"title":"","url":"https://www.aljazeera.com/news/2020/12/18/us-congress-to-work-through-weekend-on-900-bn-covid-relief-bill"},{"title":"Japan sets record military budget with stealth fighters, missiles","url":"https://www.aljazeera.com/news/2020/12/21/japan-sets-record-military-budget-with-stealth-fighters-missiles"},{"title":"US Congress agrees deal on COVID relief legislation","url":"https://www.aljazeera.com/news/2020/12/20/hold-us-congress-finally-reaches-deal-on-covid-relief-legislation"},{"title":"Chicago’s top lawyer resigns after botched police raid","url":"https://www.aljazeera.com/news/2020/12/20/chicagos-top-attorney-resigns-in-fallout-over-botched-raid"},{"title":"Trump campaign will again ask top court to upend election result","url":"https://www.aljazeera.com/news/2020/12/20/trump-campaign-will-again-ask-top-court-to-upend-election-result"},{"title":"Will Biden cancel $1.7 trillion in US student loan debt?","url":"https://www.aljazeera.com/economy/2020/12/18/will-biden-cancel-americas-1-7-trillion-in-student-loan-debt"},{"title":"New COVID strain patient found in Italy, countries ban UK flights","url":"https://www.aljazeera.com/news/2020/12/20/countries-close-border-to-britain-as-new-covid-variant-surges"},{"title":"Eight rockets target US embassy in Baghdad: Iraq army","url":"https://www.aljazeera.com/news/2020/12/20/iraqi-army-8-rockets-target-us-embassy-in-baghdad"},{"title":"New COVID strain in the UK: What we know in 500 words","url":"https://www.aljazeera.com/news/2020/12/20/new-covid-strain-in-the-uk-what-we-know-in-500-words"},{"title":"About Us","url":"https://network.aljazeera.net/about-us/our-values"},{"title":"Code of Ethics","url":"https://www.aljazeera.com/news/2014/11/01/code-of-ethics-2/"},{"title":"Terms and Conditions","url":"https://www.aljazeera.com/news/2017/10/15/terms-and-conditions/"},{"title":"Privacy Policy","url":"https://privacy.aljazeera.net/"},{"title":"Cookie Policy","url":"https://privacy.aljazeera.net/cookie/"},{"title":"Cookie Preferences","url":"https://www.aljazeera.com/news/2020/12/19/we-are-ready-us-begins-moderna-covid-vaccine-rollout#cookiesPreferences"},{"title":"Community Guidelines","url":"https://www.aljazeera.com/news/2011/01/16/community-rules-guidelines/"},{"title":"Work for us","url":"https://careers.aljazeera.net/"},{"title":"HR Quality","url":"https://www.aljazeera.com/wp-content/uploads/2020/09/AJMN-Quality-Policy.pdf"},{"title":"Contact Us","url":"https://network.aljazeera.net/contact-us"},{"title":"Apps","url":"https://webapps.aljazeera.net/aje/connect/"},{"title":"Newsletters","url":"https://www.aljazeera.com/newsletter"},{"title":"Channel Finder","url":"https://sat.aljazeera.net/en"},{"title":"TV Schedule","url":"https://www.aljazeera.com/schedule/"},{"title":"Submit a Tip","url":"https://webapps.aljazeera.net/aje/tips/"},{"title":"Al Jazeera Arabic","url":"http://aljazeera.net/"},{"title":"Al Jazeera Mubasher","url":"http://mubasher.aljazeera.net/"},{"title":"Al Jazeera Documentary","url":"http://doc.aljazeera.net/"},{"title":"Al Jazeera Balkans","url":"http://balkans.aljazeera.net/"},{"title":"Al Jazeera Centre for Studies","url":"http://studies.aljazeera.net/en/"},{"title":"Al Jazeera Media Institute","url":"http://training.aljazeera.net/"},{"title":"Learn Arabic","url":"http://learning.aljazeera.net/"},{"title":"Al Jazeera Centre for Public Liberties & Human Rights","url":"http://liberties.aljazeera.com/en"},{"title":"Al Jazeera Forum","url":"http://forum.aljazeera.net/"},{"title":"Al Jazeera Hotel Partners","url":"http://partners.aljazeera.net/"},{"title":"rss","url":"https://www.aljazeera.com/xml/rss/all.xml"},{"title":"twitter","url":"http://twitter.com/ajenglish"},{"title":"Learn more","url":"https://network.aljazeera.com/cookies/en"}]}} \ No newline at end of file diff --git a/newCrawler/package-lock.json b/newCrawler/package-lock.json index 7c18618..7501faa 100644 --- a/newCrawler/package-lock.json +++ b/newCrawler/package-lock.json @@ -22,6 +22,173 @@ "event-stream": "3.3.4" } }, + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "dev": true + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@eslint/eslintrc": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz", + "integrity": "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@metascraper/helpers": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@metascraper/helpers/-/helpers-5.15.4.tgz", + "integrity": "sha512-+f4HfBC33lsU4bcFk1ehHmF51fuBgw7uHXNR/UN1Fq1p5cRMG0WPjbzP/nC0V72RKCqWqi1mUmjgGmKC4S1ITw==", + "requires": { + "audio-extensions": "0.0.0", + "chrono-node": "2.1.10", + "condense-whitespace": "~2.0.0", + "entities": "~2.1.0", + "file-extension": "~4.0.5", + "has-values": "~2.0.1", + "image-extensions": "~1.1.0", + "is-relative-url": "~3.0.0", + "is-uri": "~1.2.0", + "iso-639-3": "~2.2.0", + "isostring": "0.0.1", + "lodash": "~4.17.20", + "memoize-one": "~5.1.1", + "microsoft-capitalize": "~1.0.4", + "mime-types": "~2.1.27", + "normalize-url": "~5.3.0", + "smartquotes": "~2.3.2", + "truncate": "~2.1.0", + "url-regex-safe": "~1.0.2", + "video-extensions": "~1.1.0" + }, + "dependencies": { + "entities": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", + "integrity": "sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==" + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "normalize-url": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-5.3.0.tgz", + "integrity": "sha512-9/nOVLYYe/dO/eJeQUNaGUF4m4Z5E7cb9oNTKabH+bNf19mqj60txTcveQxL0GlcWLXCxkOu2/LwL8oW0idIDA==" + } + } + }, "@mozilla/readability": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/@mozilla/readability/-/readability-0.3.0.tgz", @@ -119,6 +286,12 @@ "acorn-walk": "^7.1.1" } }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "dev": true + }, "acorn-walk": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", @@ -153,6 +326,12 @@ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, "ansi-regex": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", @@ -509,6 +688,15 @@ "readable-stream": "^2.0.6" } }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, "array-find-index": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", @@ -542,6 +730,12 @@ "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.2.tgz", "integrity": "sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==" }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true + }, "async-foreach": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", @@ -557,6 +751,11 @@ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, + "audio-extensions": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/audio-extensions/-/audio-extensions-0.0.0.tgz", + "integrity": "sha1-0O7+B3+562JYmO7ZmFiQVIzx+NI=" + }, "aws-sign2": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", @@ -765,6 +964,12 @@ "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=" }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, "camelcase": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", @@ -809,6 +1014,11 @@ "parse5": "^3.0.1" } }, + "cheerio-advanced-selectors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/cheerio-advanced-selectors/-/cheerio-advanced-selectors-2.0.1.tgz", + "integrity": "sha512-5wHR8bpiD5pdUtaS81A6hnJezzoDzL1TLWfK6bxnLkIgEKPV26BlOdMCcvuj3fTE7JSalsTUeNU7AOD/u6bYhw==" + }, "chownr": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", @@ -1002,6 +1212,19 @@ } } }, + "chrono-node": { + "version": "2.1.10", + "resolved": "https://registry.npmjs.org/chrono-node/-/chrono-node-2.1.10.tgz", + "integrity": "sha512-Z5DeTTZB52DeMmdS4d2oqhQwuyCLxaqHGfXVHGK1a+alAscotqbmJxvtxUX5drZNCqcCjfkhaRln/vf8OBJ0ug==", + "requires": { + "dayjs": "^1.8.29" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + }, "cliui": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", @@ -1035,6 +1258,21 @@ "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -1079,6 +1317,11 @@ "typedarray": "^0.0.6" } }, + "condense-whitespace": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/condense-whitespace/-/condense-whitespace-2.0.0.tgz", + "integrity": "sha512-Ath9o58/0rxZXbyoy3zZgrVMoIemi30sukG/btuMKCLyqfQt3dNOWc9N3EHEMa2Q3i0tXQPDJluYFLwy7pJuQw==" + }, "console-control-strings": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", @@ -1194,6 +1437,11 @@ "whatwg-url": "^8.0.0" } }, + "dayjs": { + "version": "1.9.7", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.9.7.tgz", + "integrity": "sha512-IC877KBdMhBrCfBfJXHQlo0G8keZ0Opy7YIIq5QKtUbCuHMzim8S4PyiVK4YmihI3iOF9lhfUBW4AQWHTR5WHA==" + }, "debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", @@ -1265,6 +1513,15 @@ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.799653.tgz", "integrity": "sha512-t1CcaZbvm8pOlikqrsIM9GOa7Ipp07+4h/q9u0JXBWjPCjHdBl9KkddX87Vv9vBHoBGtwV79sYQNGnQM6iS5gg==" }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, "dom-serializer": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz", @@ -1340,6 +1597,12 @@ "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.6.2.tgz", "integrity": "sha512-PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q==" }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", @@ -1439,11 +1702,25 @@ "has-binary2": "~1.0.2" } }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, "entities": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" }, + "env-paths": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.0.tgz", + "integrity": "sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==" + }, "error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -1500,11 +1777,312 @@ } } }, + "eslint": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.16.0.tgz", + "integrity": "sha512-iVWPS785RuDA4dWuhhgXTNrGxHHK3a8HLSMBgbbU59ruJDubUraXN8N5rn7kb8tG6sjg74eE0RA3YWT51eusEw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.2.2", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "dev": true + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + } + } + }, "esprima": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=" }, + "esquery": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", + "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, "estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", @@ -1638,6 +2216,20 @@ "pend": "~1.2.0" } }, + "file-entry-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz", + "integrity": "sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA==", + "dev": true, + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-extension": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/file-extension/-/file-extension-4.0.5.tgz", + "integrity": "sha512-l0rOL3aKkoi6ea7MNZe6OHgqYYpn48Qfflr8Pe9G9JPPTx5A+sfboK91ZufzIs59/lPqh351l0eb6iKU9J5oGg==" + }, "file-uri-to-path": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", @@ -1666,6 +2258,33 @@ "pinkie-promise": "^2.0.0" } }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "dev": true, + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz", + "integrity": "sha512-tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA==", + "dev": true + }, "forever-agent": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", @@ -1711,6 +2330,14 @@ "universalify": "^0.1.0" } }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, "fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -1759,6 +2386,12 @@ } } }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, "gauge": { "version": "2.7.4", "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", @@ -1834,6 +2467,24 @@ "path-is-absolute": "^1.0.0" } }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, "globule": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.1.tgz", @@ -1909,11 +2560,25 @@ "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=" }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, "has-unicode": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=" }, + "has-values": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-2.0.1.tgz", + "integrity": "sha512-+QdH3jOmq9P8GfdjFg0eJudqx1FqU62NQJ4P16rOEHeRdl7ckgwn6uqQjzYE0ZoHVV/e5E2esuJ5Gl5+HUW19w==", + "requires": { + "kind-of": "^6.0.2" + } + }, "hosted-git-info": { "version": "2.8.5", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz", @@ -2043,6 +2708,33 @@ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==" }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "image-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/image-extensions/-/image-extensions-1.1.0.tgz", + "integrity": "sha1-uOa/YDnfAFbjM1AqALZjejEF2JQ=" + }, + "import-fresh": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz", + "integrity": "sha512-cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, "in-publish": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", @@ -2075,6 +2767,11 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, + "install-artifact-from-github": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.2.0.tgz", + "integrity": "sha512-3OxCPcY55XlVM3kkfIpeCgmoSKnMsz2A3Dbhsq0RXpIknKQmrX1YiznCeW9cD2ItFmDxziA3w6Eg8d80AoL3oA==" + }, "invert-kv": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", @@ -2095,6 +2792,11 @@ "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==" }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -2105,6 +2807,12 @@ "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz", "integrity": "sha512-Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==" }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, "is-finite": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.1.0.tgz", @@ -2118,16 +2826,42 @@ "number-is-nan": "^1.0.0" } }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, "is-potential-custom-element-name": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=" }, + "is-relative-url": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-relative-url/-/is-relative-url-3.0.0.tgz", + "integrity": "sha512-U1iSYRlY2GIMGuZx7gezlB5dp1Kheaym7zKzO1PV06mOihiWTXejLwm4poEJysPyXF+HtK/BEd0DVlcCh30pEA==", + "requires": { + "is-absolute-url": "^3.0.0" + } + }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, + "is-uri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/is-uri/-/is-uri-1.2.0.tgz", + "integrity": "sha1-uS/yNK9owO2X0u7UZJLQF5O31CA=", + "requires": { + "parse-uri": "~1.0.0", + "punycode2": "~1.0.0" + } + }, "is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", @@ -2143,6 +2877,16 @@ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" }, + "iso-639-3": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/iso-639-3/-/iso-639-3-2.2.0.tgz", + "integrity": "sha512-v9w/U4XDSfXCrXxf4E6ertGC/lTRX8MLLv7XC1j6N5oL3ympe38jp77zgeyMsn3MbufuAAoGeVzDJbOXnPTMhQ==" + }, + "isostring": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isostring/-/isostring-0.0.1.tgz", + "integrity": "sha1-3bYI77/InNqG25yxa+CQp4gTTH8=" + }, "isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", @@ -2158,6 +2902,30 @@ "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.2.tgz", "integrity": "sha512-Vg8czh0Q7sFBSUMWWArX/miJeBWYBPpdU/3M/DKSaekLMqrqVPaedp+5mZhie/r0lgrcaYBfwXatEew6gwgiQQ==" }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + } + } + }, "jsbn": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", @@ -2233,6 +3001,12 @@ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, "json-stringify-safe": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", @@ -2265,6 +3039,11 @@ "json-buffer": "3.0.0" } }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, "lcid": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", @@ -2350,6 +3129,11 @@ "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" }, + "memoize-one": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.1.1.tgz", + "integrity": "sha512-HKeeBpWvqiVJD57ZUAsJNm71eHTykffzcLZVYWiVfQeI1rJtuEaS7hQiEpWfVVk18donPwJEcFKIkCmPJNOhHA==" + }, "meow": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", @@ -2379,11 +3163,91 @@ "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" }, + "metascraper": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper/-/metascraper-5.15.4.tgz", + "integrity": "sha512-0OnEtHpFHDgY3ZhuhLZF9KmKSzJWuwYNVQ9MeDn9bhubivpaK6ke0HbE8/h/nLHHfAwYGK9WWVHx0V82x60Ubg==", + "requires": { + "@metascraper/helpers": "^5.15.4", + "cheerio": "~1.0.0-rc.3", + "cheerio-advanced-selectors": "~2.0.1", + "lodash": "~4.17.20", + "whoops": "~4.1.0" + }, + "dependencies": { + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" + } + } + }, + "metascraper-author": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-author/-/metascraper-author-5.15.4.tgz", + "integrity": "sha512-JAlZAMADwQBxWmXp5IJW/13VBvJ/L97PpcYQCew5GLq/gcJyvBOdCX239IPvsh5rq/c7qy8GJo7UR5NairiB/w==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, + "metascraper-date": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-date/-/metascraper-date-5.15.4.tgz", + "integrity": "sha512-LFtlMNQnaVCbyBzY71G8AE14H+mFbAh1wSXKfD84u4yw3wLuelVOErJqcK5NfRJO8Gh57fBaWkW382t4F5xNbg==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, + "metascraper-description": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-description/-/metascraper-description-5.15.4.tgz", + "integrity": "sha512-rVo7MsPCoRrG/NAMS0SsiAAcgogopRskxPeHV0yVDaMpTJj8OVQsRnOXBSpAiaZfq4NdRCZzXodBQX//Od8LWQ==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, + "metascraper-lang": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-lang/-/metascraper-lang-5.15.4.tgz", + "integrity": "sha512-ypKMHmbekELtorO9w/d0bZmOVhCfixGxXOgnZ94HzzxZpD7JCO8p59yL5HL2GG2fViex3HxT6CU39XtyAsEggg==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, + "metascraper-publisher": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-publisher/-/metascraper-publisher-5.15.4.tgz", + "integrity": "sha512-CuLgtemHNYNM2718M/tcgFRJBXTYaaVMHpTUrl41qfEvWbmnqjpEN05sDITU/MvtgOBuMAnnJ2NfzQ9OKDMN9g==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, + "metascraper-title": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-title/-/metascraper-title-5.15.4.tgz", + "integrity": "sha512-KGKoi1wNBNyR+oKNfpwGKoddt7N7+9PhR0HVK6EDqWCv/WVvv7IwtBwwOssa0IvxRxwtAMJIY/PbHe98/d6lQg==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, + "metascraper-url": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/metascraper-url/-/metascraper-url-5.15.4.tgz", + "integrity": "sha512-Zin6plXcnGad/Ra0akJoVmmoFOyMf/kuGZTCPNqEKLduVrRkIeR731WmZdk8s7MaYucsKzrhf9pnyJX8twzASQ==", + "requires": { + "@metascraper/helpers": "^5.15.4" + } + }, "methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" }, + "microsoft-capitalize": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/microsoft-capitalize/-/microsoft-capitalize-1.0.5.tgz", + "integrity": "sha512-iqDMU9J643BHg8Zp7EMZNLTp6Pgs2f1S2SMnCW2VlUqMs17xCZ5vwVjalBJEGVcUfG+/1ePqeEGcMW3VfzHK5A==" + }, "mime": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", @@ -2402,6 +3266,11 @@ "mime-db": "1.43.0" } }, + "mimic-fn": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.0.0.tgz", + "integrity": "sha512-PiVO95TKvhiwgSwg1IdLYlCTdul38yZxZMIcnDSFIBUm4BNZha2qpQ4GpJ++15bHoKDtrW2D69lMfFwdFYtNZQ==" + }, "mimic-response": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", @@ -2420,6 +3289,37 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "requires": { + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, "mkdirp": { "version": "0.5.1", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", @@ -2455,6 +3355,12 @@ "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==" }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, "negotiator": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", @@ -2721,6 +3627,15 @@ "thunkify": "^2.1.2" } }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, "parse-json": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", @@ -2729,6 +3644,11 @@ "error-ex": "^1.2.0" } }, + "parse-uri": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/parse-uri/-/parse-uri-1.0.3.tgz", + "integrity": "sha512-upMnGxNcm+45So85HoguwZTVZI9u11i36DdxJfGF2HYWS2eh3TIx7+/tTi7qrEq15qzGkVhsKjesau+kCk48pA==" + }, "parse5": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", @@ -2771,6 +3691,12 @@ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, "path-parse": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", @@ -2979,6 +3905,11 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, + "punycode2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/punycode2/-/punycode2-1.0.0.tgz", + "integrity": "sha1-4rS5qaj/FX0LhEOOIDGB7niS39g=" + }, "puppeteer": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-5.3.0.tgz", @@ -3076,6 +4007,108 @@ "unpipe": "1.0.0" } }, + "re2": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/re2/-/re2-1.15.9.tgz", + "integrity": "sha512-AXWEhpMTBdC+3oqbjdU07dk0pBCvxh5vbOMLERL6Y8FYBSGn4vXlLe8cYszn64Yy7H8keVMrgPzoSvOd4mePpg==", + "requires": { + "install-artifact-from-github": "^1.2.0", + "nan": "^2.14.2", + "node-gyp": "^7.1.2" + }, + "dependencies": { + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==" + }, + "node-gyp": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-7.1.2.tgz", + "integrity": "sha512-CbpcIo7C3eMu3dL1c3d0xw449fHIGALIJsRP4DDPHpyiW8vcriNY7ubh9TE4zEKfSxscY7PjeFnshE7h75ynjQ==", + "requires": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.3", + "nopt": "^5.0.0", + "npmlog": "^4.1.2", + "request": "^2.88.2", + "rimraf": "^3.0.2", + "semver": "^7.3.2", + "tar": "^6.0.2", + "which": "^2.0.2" + } + }, + "nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "requires": { + "abbrev": "1" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + }, + "tar": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.0.5.tgz", + "integrity": "sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } + } + }, "read-pkg": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", @@ -3118,6 +4151,12 @@ "strip-indent": "^1.0.1" } }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "dev": true + }, "repeating": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", @@ -3201,6 +4240,12 @@ "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.0.0.tgz", "integrity": "sha512-rTuiIEqFmGxne4IovivKSDzld2lWW9QCjqv80SYjPgf+gS35eaCAjaP54CCwGAwBtnCsvNLYtqxe1Nw+i6JEmA==" }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, "responselike": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", @@ -3301,11 +4346,69 @@ "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, "signal-exit": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + } + } + }, "slugg": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/slugg/-/slugg-1.2.1.tgz", @@ -3316,6 +4419,11 @@ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.1.0.tgz", "integrity": "sha512-iVICrxOzCynf/SNaBQCw34eM9jROU/s5rzIhpOvzhzuYHfJR/DhZfDkXiZSgKXfgv26HT3Yni3AV/DGw0cGnnw==" }, + "smartquotes": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/smartquotes/-/smartquotes-2.3.2.tgz", + "integrity": "sha512-0R6YJ5hLpDH4mZR7N5eZ12oCMLspvGOHL9A9SEm2e3b/CQmQidekW4SWSKEmor/3x6m3NCBBEqLzikcZC9VJNQ==" + }, "socket.io": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-2.3.0.tgz", @@ -3517,6 +4625,12 @@ "through": "2" } }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, "sshpk": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", @@ -3601,6 +4715,12 @@ "get-stdin": "^4.0.1" } }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, "supports-color": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", @@ -3611,6 +4731,70 @@ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, + "table": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.4.tgz", + "integrity": "sha512-sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "lodash": { + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + } + } + }, "tar": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", @@ -3656,6 +4840,12 @@ } } }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, "through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", @@ -3666,6 +4856,11 @@ "resolved": "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz", "integrity": "sha1-+qDp0jDFGsyVyhOjYawFyn4EVT0=" }, + "tlds": { + "version": "1.216.0", + "resolved": "https://registry.npmjs.org/tlds/-/tlds-1.216.0.tgz", + "integrity": "sha512-y9A+eMRKLdAOclcFRTk3durpvCWiEdWcQhCOopCO654pckH9+o5Z5VgBsTTAFqtyxB8yFRXSG1q7BCCeHyrm0w==" + }, "tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", @@ -3719,6 +4914,11 @@ "glob": "^7.1.2" } }, + "truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/truncate/-/truncate-2.1.0.tgz", + "integrity": "sha512-em3E3SUDONOjTBcZ36DTm3RvDded3IRU9rX32oHwwXNt3rJD5MVaFlJTQvs8tJoHRoeYP36OuQ1eL/Q7bNEWIQ==" + }, "tunnel": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/tunnel/-/tunnel-0.0.6.tgz", @@ -3745,6 +4945,12 @@ "prelude-ls": "~1.1.2" } }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, "type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", @@ -3815,6 +5021,23 @@ "prepend-http": "^2.0.0" } }, + "url-regex-safe": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/url-regex-safe/-/url-regex-safe-1.0.2.tgz", + "integrity": "sha512-t1doIKbYDBRyqXZz7A98AXH/zimKmYapxFjBZwcz3BmqjB921rUPEUokAaShKyenaX3McOM8FbkWLvFvX3Jsyw==", + "requires": { + "ip-regex": "^4.1.0", + "re2": "^1.15.4", + "tlds": "^1.209.0" + }, + "dependencies": { + "ip-regex": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-4.2.0.tgz", + "integrity": "sha512-n5cDDeTWWRwK1EBoWwRti+8nP4NbytBBY0pldmnIkq6Z55KNFmWofh4rl9dPZpj+U/nVq7gweR3ylrvMt4YZ5A==" + } + } + }, "util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", @@ -3830,6 +5053,12 @@ "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz", "integrity": "sha512-FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg==" }, + "v8-compile-cache": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==", + "dev": true + }, "validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", @@ -3854,6 +5083,11 @@ "extsprintf": "^1.2.0" } }, + "video-extensions": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/video-extensions/-/video-extensions-1.1.0.tgz", + "integrity": "sha1-6qhrRfKahTwrhz6djiO1E3Epl9Y=" + }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -3921,6 +5155,15 @@ "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" }, + "whoops": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/whoops/-/whoops-4.1.0.tgz", + "integrity": "sha512-42soctqvFs9FaU1r4ZadCy2F6A9dUc4SN3ud+tbDEdmyZDTeYBgKKqtIdo6NiQlnZnJegWRCyKLk2edYH9DsHA==", + "requires": { + "clean-stack": "~2.2.0", + "mimic-fn": "~3.0.0" + } + }, "wide-align": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz",