CINXE.COM

Accessibility - BBC

<!DOCTYPE html> <html class="b-pw-1280 b-reith-sans-font b-reith-serif-font" lang="en"> <head><script type="text/javascript" src="/_static/js/bundle-playback.js?v=HxkREWBo" charset="utf-8"></script> <script type="text/javascript" src="/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.co.uk/accessibility/","20220115221244","https://web.archive.org/","web","/_static/", "1642284764"); </script> <link rel="stylesheet" type="text/css" href="/_static/css/banner-styles.css?v=S1zqJCYt" /> <link rel="stylesheet" type="text/css" href="/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <meta charset="utf-8"/> <title>Accessibility - BBC</title> <link rel="stylesheet" href="/web/20220115221244cs_/https://www.bbc.co.uk/accessibility/forproducts/assets/core.css"> <link rel="stylesheet" href="/web/20220115221244cs_/https://www.bbc.co.uk/accessibility/forproducts/assets/gel-typography.min.css"> <link rel="stylesheet" href="/web/20220115221244cs_/https://www.bbc.co.uk/accessibility/forproducts/assets/gel-grid.min.css"> <!-- Orbit: 3.0.0-1708.64afffb4 --> <!-- Environment: live --> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> :root { --bbc-font: ReithSans, Arial, Helvetica, freesans, sans-serif; --bbc-font-legacy: Arial, Helvetica, freesans, sans-serif; } </style> <link rel="stylesheet" href="https://web.archive.org/web/20220115221244cs_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/css/orb-ltr.min.css"> <script src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/require.min.js"></script> <script> // nav-orbit-pollyfills // Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } </script> <script> window.orbitData = {}; var additionalPageProperties = {}; window.orbitData.userProfileUrl = "https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/userprofile"; window.page = { name: '' || null, destination: '' || null, producer: '' || null, section: '' || null, site: '' || null, contentId: '' || null, contentType: '' || null, edition: '' || null, additionalProperties: additionalPageProperties }; window.page.language = 'en'; window.page.language = 'en'; window.page.modal = false; !function(){var t={3053:function(t,r,e){function n(t,r){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),e.push.apply(e,n)}return e}function o(t){for(var r=1;r<arguments.length;r++){var e=null!=arguments[r]?arguments[r]:{};r%2?n(Object(e),!0).forEach((function(r){i(t,r,e[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):n(Object(e)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(e,r))}))}return t}function i(t,r,e){return r in t?Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}var c=e(1391),a=e(9135);window.bbcpage=c.init(o({},window.page)),window.page=void 0,window.bbcuser=a.init(window,o({},window.user))},1391:function(t){function r(t,r){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),e.push.apply(e,n)}return e}function e(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?r(Object(o),!0).forEach((function(r){n(t,r,o[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):r(Object(o)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(o,r))}))}return t}function n(t,r,e){return r in t?Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}t.exports={init:function(t){var r=e({},t);return document.addEventListener("bbc-page-reset",(function(t){var e;t.detail&&t.detail.page&&(e=t.detail.page,r=Object.assign(r,e)),document.dispatchEvent(new Event("bbc-page-updated"))})),{getName:function(){return Promise.resolve(r.name||function(){if("file:"===window.location.protocol)return"local.file";var t=window.location.pathname.replace(/\/$/,"").replace(/^\//,"").replace(/\//g,".");return"".concat(t,".page")}())},getLanguage:function(){return Promise.resolve(r.language)},getDestination:function(){return Promise.resolve(r.destination)},getProducer:function(){return Promise.resolve(r.producer)},getSection:function(){return Promise.resolve(r.section)},getContentType:function(){return Promise.resolve(r.contentType)},getContentId:function(){return Promise.resolve(r.contentId)},getReferrer:function(){return Promise.resolve(window.orb&&null!==window.orb.referrer&&void 0!==window.orb.referrer?window.orb.referrer:document.referrer)},getAdditionalProperties:function(){return Promise.resolve(e({},r.additionalProperties))},loadCSS:function(t){return new Promise((function(r,e){var n=document.createElement("link");n.type="text/css",n.rel="stylesheet",n.onload=function(){r()},n.href=t,document.getElementsByTagName("head")[0].appendChild(n)}))},isModal:function(){return Promise.resolve(r.modal)}}}}},9135:function(t){function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function e(t,r){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(t,r).enumerable}))),e.push.apply(e,n)}return e}function n(t){for(var r=1;r<arguments.length;r++){var n=null!=arguments[r]?arguments[r]:{};r%2?e(Object(n),!0).forEach((function(r){o(t,r,n[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):e(Object(n)).forEach((function(r){Object.defineProperty(t,r,Object.getOwnPropertyDescriptor(n,r))}))}return t}function o(t,r,e){return r in t?Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[r]=e,t}function i(t,r){if(!(t instanceof r))throw new TypeError("Cannot call a class as a function")}function c(t,e){return!e||"object"!==r(e)&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function a(t){var r="function"==typeof Map?new Map:void 0;return(a=function(t){if(null===t||(e=t,-1===Function.toString.call(e).indexOf("[native code]")))return t;var e;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==r){if(r.has(t))return r.get(t);r.set(t,n)}function n(){return u(t,arguments,l(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),f(n,t)})(t)}function u(t,r,e){return(u=s()?Reflect.construct:function(t,r,e){var n=[null];n.push.apply(n,r);var o=new(Function.bind.apply(t,n));return e&&f(o,e.prototype),o}).apply(null,arguments)}function s(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(t){return!1}}function f(t,r){return(f=Object.setPrototypeOf||function(t,r){return t.__proto__=r,t})(t,r)}function l(t){return(l=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}var p=function(t){!function(t,r){if("function"!=typeof r&&null!==r)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(r&&r.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),r&&f(t,r)}(o,t);var r,e,n=(r=o,e=s(),function(){var t,n=l(r);if(e){var o=l(this).constructor;t=Reflect.construct(n,arguments,o)}else t=n.apply(this,arguments);return c(this,t)});function o(){return i(this,o),n.apply(this,arguments)}return o}(a(Error));function h(t){return new Promise((function(r,e){window.require(t,(function(){r.apply(this,arguments)}),(function(t){e(t)}))}))}t.exports={init:function(t,r){var e,o=n({},r),i=null;function c(){if(["X-Country","X-Ip_is_advertise_combined","X-Ip_is_uk_combined"].every((function(t){return!!o[t]})))return Promise.resolve(o);if(!i){var r=t.location.hostname.endsWith(".com")?"com":"co.uk";i=t.fetch("https://web.archive.org/web/20220115221244/https://www.bbc.".concat(r,"/userinfo")).then((function(t){return t.json()}))}return i}function a(t){if(t.status>=200&&t.status<300)return t;var r=new Error(t.statusText);throw r.response=t,r}function u(t){return t.json()}function s(){if(o.ageBand)return Promise.resolve(o);if(!e){if("undefined"==typeof XMLHttpRequest||!("withCredentials"in new XMLHttpRequest))return Promise.resolve(o);e=h(["idcta-v2/idcta-1"]).then((function(r){return r.initiateTokenRefresh().then((function(){return t.fetch(t.orbitData.userProfileUrl,{credentials:"include"}).then(a).then(u).then((function(t){return o=n(n({},o),t)}))}))}))}return e}var f={getHashedId:function(){return h(["idcta-v2/idcta-1"]).then((function(t){return t.getCookieInstance().getHidFromCookie()}))},isSignedIn:function(){return h(["idcta-v2/idcta-1"]).then((function(t){return t&&t.getCookieInstance().hasCookie()}))},getCountry:function(){return c().then((function(t){return t["X-Country"]||"gb"}))},isUKCombined:function(){return c().then((function(t){if(!t["X-Ip_is_uk_combined"])throw new p("missing isUKCombined from userinfo response");return"yes"===t["X-Ip_is_uk_combined"].toLowerCase()}))},canSeeAdverts:function(){return c().then((function(t){if(!t["X-Ip_is_advertise_combined"])throw new p("missing canSeeAdverts from userinfo response");return"yes"===t["X-Ip_is_advertise_combined"].toLowerCase()}))},getAgeBand:function(){return c().then((function(t){return t["X-Age-Band"]?Promise.resolve(t["X-Age-Band"]):f.isSignedIn().then((function(t){if(t)return s().then((function(t){return o["X-Age-Band"]=t["X-Age-Band"],o["X-Age-Band"]||void 0})).catch((function(){return o["X-Age-Band"]||void 0}))}))}))},allowsPerformanceCookies:function(){return h(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("performance")}))},allowsFunctionalCookies:function(){return h(["orb/cookies"]).then((function(t){return!!t.cookiesEnabled()&&!!t.readPolicy("personalisation")}))},getCookieValue:function(t){return h(["orb/cookies"]).then((function(r){return r.get(t)}))}};return f},BBCUserError:p}},7633:function(t,r,e){e(9170),e(6992),e(1539),e(8674),e(7922),e(4668),e(7727),e(8783);var n=e(857);t.exports=n.Promise},1111:function(t,r,e){e(1539),e(4916),e(4953),e(8992),e(9841),e(4506),e(7852),e(2023),e(4723),e(6373),e(6528),e(3112),e(2481),e(5306),e(8757),e(4765),e(3123),e(3157),e(3650),e(3210),e(5674),e(8702),e(8783),e(5218),e(4475),e(7929),e(915),e(9253),e(2125),e(8830),e(8734),e(9254),e(7268),e(7397),e(86),e(623);var n=e(857);t.exports=n.String},9662:function(t,r,e){var n=e(614),o=e(6330);t.exports=function(t){if(n(t))return t;throw TypeError(o(t)+" is not a function")}},9483:function(t,r,e){var n=e(4411),o=e(6330);t.exports=function(t){if(n(t))return t;throw TypeError(o(t)+" is not a constructor")}},6077:function(t,r,e){var n=e(614);t.exports=function(t){if("object"==typeof t||n(t))return t;throw TypeError("Can't set "+String(t)+" as a prototype")}},1223:function(t,r,e){var n=e(5112),o=e(30),i=e(3070),c=n("unscopables"),a=Array.prototype;null==a[c]&&i.f(a,c,{configurable:!0,value:o(null)}),t.exports=function(t){a[c][t]=!0}},1530:function(t,r,e){"use strict";var n=e(8710).charAt;t.exports=function(t,r,e){return r+(e?n(t,r).length:1)}},5787:function(t){t.exports=function(t,r,e){if(t instanceof r)return t;throw TypeError("Incorrect "+(e?e+" ":"")+"invocation")}},9670:function(t,r,e){var n=e(111);t.exports=function(t){if(n(t))return t;throw TypeError(String(t)+" is not an object")}},1318:function(t,r,e){var n=e(5656),o=e(7466),i=e(1400),c=function(t){return function(r,e,c){var a,u=n(r),s=o(u.length),f=i(c,s);if(t&&e!=e){for(;s>f;)if((a=u[f++])!=a)return!0}else for(;s>f;f++)if((t||f in u)&&u[f]===e)return t||f||0;return!t&&-1}};t.exports={includes:c(!0),indexOf:c(!1)}},7072:function(t,r,e){var n=e(5112)("iterator"),o=!1;try{var i=0,c={next:function(){return{done:!!i++}},return:function(){o=!0}};c[n]=function(){return this},Array.from(c,(function(){throw 2}))}catch(t){}t.exports=function(t,r){if(!r&&!o)return!1;var e=!1;try{var i={};i[n]=function(){return{next:function(){return{done:e=!0}}}},t(i)}catch(t){}return e}},4326:function(t){var r={}.toString;t.exports=function(t){return r.call(t).slice(8,-1)}},648:function(t,r,e){var n=e(1694),o=e(614),i=e(4326),c=e(5112)("toStringTag"),a="Arguments"==i(function(){return arguments}());t.exports=n?i:function(t){var r,e,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(e=function(t,r){try{return t[r]}catch(t){}}(r=Object(t),c))?e:a?i(r):"Object"==(n=i(r))&&o(r.callee)?"Arguments":n}},9920:function(t,r,e){var n=e(6656),o=e(3887),i=e(1236),c=e(3070);t.exports=function(t,r){for(var e=o(r),a=c.f,u=i.f,s=0;s<e.length;s++){var f=e[s];n(t,f)||a(t,f,u(r,f))}}},4964:function(t,r,e){var n=e(5112)("match");t.exports=function(t){var r=/./;try{"/./"[t](r)}catch(e){try{return r[n]=!1,"/./"[t](r)}catch(t){}}return!1}},8544:function(t,r,e){var n=e(7293);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},4230:function(t,r,e){var n=e(4488),o=e(1340),i=/"/g;t.exports=function(t,r,e,c){var a=o(n(t)),u="<"+r;return""!==e&&(u+=" "+e+'="'+o(c).replace(i,"&quot;")+'"'),u+">"+a+"</"+r+">"}},4994:function(t,r,e){"use strict";var n=e(3383).IteratorPrototype,o=e(30),i=e(9114),c=e(8003),a=e(7497),u=function(){return this};t.exports=function(t,r,e){var s=r+" Iterator";return t.prototype=o(n,{next:i(1,e)}),c(t,s,!1,!0),a[s]=u,t}},8880:function(t,r,e){var n=e(9781),o=e(3070),i=e(9114);t.exports=n?function(t,r,e){return o.f(t,r,i(1,e))}:function(t,r,e){return t[r]=e,t}},9114:function(t){t.exports=function(t,r){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:r}}},654:function(t,r,e){"use strict";var n=e(2109),o=e(1913),i=e(6530),c=e(614),a=e(4994),u=e(9518),s=e(7674),f=e(8003),l=e(8880),p=e(1320),h=e(5112),d=e(7497),v=e(3383),y=i.PROPER,g=i.CONFIGURABLE,b=v.IteratorPrototype,m=v.BUGGY_SAFARI_ITERATORS,x=h("iterator"),w="keys",O="values",E="entries",S=function(){return this};t.exports=function(t,r,e,i,h,v,j){a(e,r,i);var P,T,A,_=function(t){if(t===h&&C)return C;if(!m&&t in L)return L[t];switch(t){case w:case O:case E:return function(){return new e(this,t)}}return function(){return new e(this)}},I=r+" Iterator",R=!1,L=t.prototype,k=L[x]||L["@@iterator"]||h&&L[h],C=!m&&k||_(h),B="Array"==r&&L.entries||k;if(B&&(P=u(B.call(new t)))!==Object.prototype&&P.next&&(o||u(P)===b||(s?s(P,b):c(P[x])||p(P,x,S)),f(P,I,!0,!0),o&&(d[I]=S)),y&&h==O&&k&&k.name!==O&&(!o&&g?l(L,"name",O):(R=!0,C=function(){return k.call(this)})),h)if(T={values:_(O),keys:v?C:_(w),entries:_(E)},j)for(A in T)(m||R||!(A in L))&&p(L,A,T[A]);else n({target:r,proto:!0,forced:m||R},T);return o&&!j||L[x]===C||p(L,x,C,{name:h}),d[r]=C,T}},9781:function(t,r,e){var n=e(7293);t.exports=!n((function(){return 7!=Object.defineProperty({},1,{get:function(){return 7}})[1]}))},317:function(t,r,e){var n=e(7854),o=e(111),i=n.document,c=o(i)&&o(i.createElement);t.exports=function(t){return c?i.createElement(t):{}}},8324:function(t){t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8509:function(t,r,e){var n=e(317)("span").classList,o=n&&n.constructor&&n.constructor.prototype;t.exports=o===Object.prototype?void 0:o},7871:function(t){t.exports="object"==typeof window},1528:function(t,r,e){var n=e(8113),o=e(7854);t.exports=/ipad|iphone|ipod/i.test(n)&&void 0!==o.Pebble},6833:function(t,r,e){var n=e(8113);t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)},5268:function(t,r,e){var n=e(4326),o=e(7854);t.exports="process"==n(o.process)},1036:function(t,r,e){var n=e(8113);t.exports=/web0s(?!.*chrome)/i.test(n)},8113:function(t,r,e){var n=e(5005);t.exports=n("navigator","userAgent")||""},7392:function(t,r,e){var n,o,i=e(7854),c=e(8113),a=i.process,u=i.Deno,s=a&&a.versions||u&&u.version,f=s&&s.v8;f?o=(n=f.split("."))[0]<4?1:n[0]+n[1]:c&&(!(n=c.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=c.match(/Chrome\/(\d+)/))&&(o=n[1]),t.exports=o&&+o},748:function(t){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},2109:function(t,r,e){var n=e(7854),o=e(1236).f,i=e(8880),c=e(1320),a=e(3505),u=e(9920),s=e(4705);t.exports=function(t,r){var e,f,l,p,h,d=t.target,v=t.global,y=t.stat;if(e=v?n:y?n[d]||a(d,{}):(n[d]||{}).prototype)for(f in r){if(p=r[f],l=t.noTargetGet?(h=o(e,f))&&h.value:e[f],!s(v?f:d+(y?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),c(e,f,p,t)}}},7293:function(t){t.exports=function(t){try{return!!t()}catch(t){return!0}}},7007:function(t,r,e){"use strict";e(4916);var n=e(1320),o=e(2261),i=e(7293),c=e(5112),a=e(8880),u=c("species"),s=RegExp.prototype;t.exports=function(t,r,e,f){var l=c(t),p=!i((function(){var r={};return r[l]=function(){return 7},7!=""[t](r)})),h=p&&!i((function(){var r=!1,e=/a/;return"split"===t&&((e={}).constructor={},e.constructor[u]=function(){return e},e.flags="",e[l]=/./[l]),e.exec=function(){return r=!0,null},e[l](""),!r}));if(!p||!h||e){var d=/./[l],v=r(l,""[t],(function(t,r,e,n,i){var c=r.exec;return c===o||c===s.exec?p&&!i?{done:!0,value:d.call(r,e,n)}:{done:!0,value:t.call(e,r,n)}:{done:!1}}));n(String.prototype,t,v[0]),n(s,l,v[1])}f&&a(s[l],"sham",!0)}},9974:function(t,r,e){var n=e(9662);t.exports=function(t,r,e){if(n(t),void 0===r)return t;switch(e){case 0:return function(){return t.call(r)};case 1:return function(e){return t.call(r,e)};case 2:return function(e,n){return t.call(r,e,n)};case 3:return function(e,n,o){return t.call(r,e,n,o)}}return function(){return t.apply(r,arguments)}}},6530:function(t,r,e){var n=e(9781),o=e(6656),i=Function.prototype,c=n&&Object.getOwnPropertyDescriptor,a=o(i,"name"),u=a&&"something"===function(){}.name,s=a&&(!n||n&&c(i,"name").configurable);t.exports={EXISTS:a,PROPER:u,CONFIGURABLE:s}},5005:function(t,r,e){var n=e(7854),o=e(614),i=function(t){return o(t)?t:void 0};t.exports=function(t,r){return arguments.length<2?i(n[t]):n[t]&&n[t][r]}},1246:function(t,r,e){var n=e(648),o=e(8173),i=e(7497),c=e(5112)("iterator");t.exports=function(t){if(null!=t)return o(t,c)||o(t,"@@iterator")||i[n(t)]}},8554:function(t,r,e){var n=e(9662),o=e(9670),i=e(1246);t.exports=function(t,r){var e=arguments.length<2?i(t):r;if(n(e))return o(e.call(t));throw TypeError(String(t)+" is not iterable")}},8173:function(t,r,e){var n=e(9662);t.exports=function(t,r){var e=t[r];return null==e?void 0:n(e)}},647:function(t,r,e){var n=e(7908),o=Math.floor,i="".replace,c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,a=/\$([$&'`]|\d{1,2})/g;t.exports=function(t,r,e,u,s,f){var l=e+t.length,p=u.length,h=a;return void 0!==s&&(s=n(s),h=c),i.call(f,h,(function(n,i){var c;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return r.slice(0,e);case"'":return r.slice(l);case"<":c=s[i.slice(1,-1)];break;default:var a=+i;if(0===a)return n;if(a>p){var f=o(a/10);return 0===f?n:f<=p?void 0===u[f-1]?i.charAt(1):u[f-1]+i.charAt(1):n}c=u[a-1]}return void 0===c?"":c}))}},7854:function(t,r,e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e.g&&e.g)||function(){return this}()||Function("return this")()},6656:function(t,r,e){var n=e(7908),o={}.hasOwnProperty;t.exports=Object.hasOwn||function(t,r){return o.call(n(t),r)}},3501:function(t){t.exports={}},842:function(t,r,e){var n=e(7854);t.exports=function(t,r){var e=n.console;e&&e.error&&(1===arguments.length?e.error(t):e.error(t,r))}},490:function(t,r,e){var n=e(5005);t.exports=n("document","documentElement")},4664:function(t,r,e){var n=e(9781),o=e(7293),i=e(317);t.exports=!n&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},8361:function(t,r,e){var n=e(7293),o=e(4326),i="".split;t.exports=n((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},2788:function(t,r,e){var n=e(614),o=e(5465),i=Function.toString;n(o.inspectSource)||(o.inspectSource=function(t){return i.call(t)}),t.exports=o.inspectSource},9909:function(t,r,e){var n,o,i,c=e(8536),a=e(7854),u=e(111),s=e(8880),f=e(6656),l=e(5465),p=e(6200),h=e(3501),d="Object already initialized",v=a.WeakMap;if(c||l.state){var y=l.state||(l.state=new v),g=y.get,b=y.has,m=y.set;n=function(t,r){if(b.call(y,t))throw new TypeError(d);return r.facade=t,m.call(y,t,r),r},o=function(t){return g.call(y,t)||{}},i=function(t){return b.call(y,t)}}else{var x=p("state");h[x]=!0,n=function(t,r){if(f(t,x))throw new TypeError(d);return r.facade=t,s(t,x,r),r},o=function(t){return f(t,x)?t[x]:{}},i=function(t){return f(t,x)}}t.exports={set:n,get:o,has:i,enforce:function(t){return i(t)?o(t):n(t,{})},getterFor:function(t){return function(r){var e;if(!u(r)||(e=o(r)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return e}}}},7659:function(t,r,e){var n=e(5112),o=e(7497),i=n("iterator"),c=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||c[i]===t)}},614:function(t){t.exports=function(t){return"function"==typeof t}},4411:function(t,r,e){var n=e(7293),o=e(614),i=e(648),c=e(5005),a=e(2788),u=[],s=c("Reflect","construct"),f=/^\s*(?:class|function)\b/,l=f.exec,p=!f.exec((function(){})),h=function(t){if(!o(t))return!1;try{return s(Object,u,t),!0}catch(t){return!1}};t.exports=!s||n((function(){var t;return h(h.call)||!h(Object)||!h((function(){t=!0}))||t}))?function(t){if(!o(t))return!1;switch(i(t)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}return p||!!l.call(f,a(t))}:h},4705:function(t,r,e){var n=e(7293),o=e(614),i=/#|\.prototype\./,c=function(t,r){var e=u[a(t)];return e==f||e!=s&&(o(r)?n(r):!!r)},a=c.normalize=function(t){return String(t).replace(i,".").toLowerCase()},u=c.data={},s=c.NATIVE="N",f=c.POLYFILL="P";t.exports=c},111:function(t,r,e){var n=e(614);t.exports=function(t){return"object"==typeof t?null!==t:n(t)}},1913:function(t){t.exports=!1},7850:function(t,r,e){var n=e(111),o=e(4326),i=e(5112)("match");t.exports=function(t){var r;return n(t)&&(void 0!==(r=t[i])?!!r:"RegExp"==o(t))}},2190:function(t,r,e){var n=e(614),o=e(5005),i=e(3307);t.exports=i?function(t){return"symbol"==typeof t}:function(t){var r=o("Symbol");return n(r)&&Object(t)instanceof r}},408:function(t,r,e){var n=e(9670),o=e(7659),i=e(7466),c=e(9974),a=e(8554),u=e(1246),s=e(9212),f=function(t,r){this.stopped=t,this.result=r};t.exports=function(t,r,e){var l,p,h,d,v,y,g,b=e&&e.that,m=!(!e||!e.AS_ENTRIES),x=!(!e||!e.IS_ITERATOR),w=!(!e||!e.INTERRUPTED),O=c(r,b,1+m+w),E=function(t){return l&&s(l,"normal",t),new f(!0,t)},S=function(t){return m?(n(t),w?O(t[0],t[1],E):O(t[0],t[1])):w?O(t,E):O(t)};if(x)l=t;else{if(!(p=u(t)))throw TypeError(String(t)+" is not iterable");if(o(p)){for(h=0,d=i(t.length);d>h;h++)if((v=S(t[h]))&&v instanceof f)return v;return new f(!1)}l=a(t,p)}for(y=l.next;!(g=y.call(l)).done;){try{v=S(g.value)}catch(t){s(l,"throw",t)}if("object"==typeof v&&v&&v instanceof f)return v}return new f(!1)}},9212:function(t,r,e){var n=e(9670),o=e(8173);t.exports=function(t,r,e){var i,c;n(t);try{if(!(i=o(t,"return"))){if("throw"===r)throw e;return e}i=i.call(t)}catch(t){c=!0,i=t}if("throw"===r)throw e;if(c)throw i;return n(i),e}},3383:function(t,r,e){"use strict";var n,o,i,c=e(7293),a=e(614),u=e(30),s=e(9518),f=e(1320),l=e(5112),p=e(1913),h=l("iterator"),d=!1;[].keys&&("next"in(i=[].keys())?(o=s(s(i)))!==Object.prototype&&(n=o):d=!0),null==n||c((function(){var t={};return n[h].call(t)!==t}))?n={}:p&&(n=u(n)),a(n[h])||f(n,h,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:d}},7497:function(t){t.exports={}},5948:function(t,r,e){var n,o,i,c,a,u,s,f,l=e(7854),p=e(1236).f,h=e(261).set,d=e(6833),v=e(1528),y=e(1036),g=e(5268),b=l.MutationObserver||l.WebKitMutationObserver,m=l.document,x=l.process,w=l.Promise,O=p(l,"queueMicrotask"),E=O&&O.value;E||(n=function(){var t,r;for(g&&(t=x.domain)&&t.exit();o;){r=o.fn,o=o.next;try{r()}catch(t){throw o?c():i=void 0,t}}i=void 0,t&&t.enter()},d||g||y||!b||!m?!v&&w&&w.resolve?((s=w.resolve(void 0)).constructor=w,f=s.then,c=function(){f.call(s,n)}):c=g?function(){x.nextTick(n)}:function(){h.call(l,n)}:(a=!0,u=m.createTextNode(""),new b(n).observe(u,{characterData:!0}),c=function(){u.data=a=!a})),t.exports=E||function(t){var r={fn:t,next:void 0};i&&(i.next=r),o||(o=r,c()),i=r}},3366:function(t,r,e){var n=e(7854);t.exports=n.Promise},133:function(t,r,e){var n=e(7392),o=e(7293);t.exports=!!Object.getOwnPropertySymbols&&!o((function(){var t=Symbol();return!String(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},8536:function(t,r,e){var n=e(7854),o=e(614),i=e(2788),c=n.WeakMap;t.exports=o(c)&&/native code/.test(i(c))},8523:function(t,r,e){"use strict";var n=e(9662),o=function(t){var r,e;this.promise=new t((function(t,n){if(void 0!==r||void 0!==e)throw TypeError("Bad Promise constructor");r=t,e=n})),this.resolve=n(r),this.reject=n(e)};t.exports.f=function(t){return new o(t)}},3929:function(t,r,e){var n=e(7850);t.exports=function(t){if(n(t))throw TypeError("The method doesn't accept regular expressions");return t}},30:function(t,r,e){var n,o=e(9670),i=e(6048),c=e(748),a=e(3501),u=e(490),s=e(317),f=e(6200),l=f("IE_PROTO"),p=function(){},h=function(t){return"<script>"+t+"</"+"script>"},d=function(t){t.write(h("")),t.close();var r=t.parentWindow.Object;return t=null,r},v=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,r;v="undefined"!=typeof document?document.domain&&n?d(n):((r=s("iframe")).style.display="none",u.appendChild(r),r.src=String("javascript:"),(t=r.contentWindow.document).open(),t.write(h("document.F=Object")),t.close(),t.F):d(n);for(var e=c.length;e--;)delete v.prototype[c[e]];return v()};a[l]=!0,t.exports=Object.create||function(t,r){var e;return null!==t?(p.prototype=o(t),e=new p,p.prototype=null,e[l]=t):e=v(),void 0===r?e:i(e,r)}},6048:function(t,r,e){var n=e(9781),o=e(3070),i=e(9670),c=e(1956);t.exports=n?Object.defineProperties:function(t,r){i(t);for(var e,n=c(r),a=n.length,u=0;a>u;)o.f(t,e=n[u++],r[e]);return t}},3070:function(t,r,e){var n=e(9781),o=e(4664),i=e(9670),c=e(4948),a=Object.defineProperty;r.f=n?a:function(t,r,e){if(i(t),r=c(r),i(e),o)try{return a(t,r,e)}catch(t){}if("get"in e||"set"in e)throw TypeError("Accessors not supported");return"value"in e&&(t[r]=e.value),t}},1236:function(t,r,e){var n=e(9781),o=e(5296),i=e(9114),c=e(5656),a=e(4948),u=e(6656),s=e(4664),f=Object.getOwnPropertyDescriptor;r.f=n?f:function(t,r){if(t=c(t),r=a(r),s)try{return f(t,r)}catch(t){}if(u(t,r))return i(!o.f.call(t,r),t[r])}},8006:function(t,r,e){var n=e(6324),o=e(748).concat("length","prototype");r.f=Object.getOwnPropertyNames||function(t){return n(t,o)}},5181:function(t,r){r.f=Object.getOwnPropertySymbols},9518:function(t,r,e){var n=e(6656),o=e(614),i=e(7908),c=e(6200),a=e(8544),u=c("IE_PROTO"),s=Object.prototype;t.exports=a?Object.getPrototypeOf:function(t){var r=i(t);if(n(r,u))return r[u];var e=r.constructor;return o(e)&&r instanceof e?e.prototype:r instanceof Object?s:null}},6324:function(t,r,e){var n=e(6656),o=e(5656),i=e(1318).indexOf,c=e(3501);t.exports=function(t,r){var e,a=o(t),u=0,s=[];for(e in a)!n(c,e)&&n(a,e)&&s.push(e);for(;r.length>u;)n(a,e=r[u++])&&(~i(s,e)||s.push(e));return s}},1956:function(t,r,e){var n=e(6324),o=e(748);t.exports=Object.keys||function(t){return n(t,o)}},5296:function(t,r){"use strict";var e={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!e.call({1:2},1);r.f=o?function(t){var r=n(this,t);return!!r&&r.enumerable}:e},7674:function(t,r,e){var n=e(9670),o=e(6077);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,r=!1,e={};try{(t=Object.getOwnPropertyDescriptor(Object.prototype,"__proto__").set).call(e,[]),r=e instanceof Array}catch(t){}return function(e,i){return n(e),o(i),r?t.call(e,i):e.__proto__=i,e}}():void 0)},288:function(t,r,e){"use strict";var n=e(1694),o=e(648);t.exports=n?{}.toString:function(){return"[object "+o(this)+"]"}},2140:function(t,r,e){var n=e(614),o=e(111);t.exports=function(t,r){var e,i;if("string"===r&&n(e=t.toString)&&!o(i=e.call(t)))return i;if(n(e=t.valueOf)&&!o(i=e.call(t)))return i;if("string"!==r&&n(e=t.toString)&&!o(i=e.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},3887:function(t,r,e){var n=e(5005),o=e(8006),i=e(5181),c=e(9670);t.exports=n("Reflect","ownKeys")||function(t){var r=o.f(c(t)),e=i.f;return e?r.concat(e(t)):r}},857:function(t,r,e){var n=e(7854);t.exports=n},2534:function(t){t.exports=function(t){try{return{error:!1,value:t()}}catch(t){return{error:!0,value:t}}}},9478:function(t,r,e){var n=e(9670),o=e(111),i=e(8523);t.exports=function(t,r){if(n(t),o(r)&&r.constructor===t)return r;var e=i.f(t);return(0,e.resolve)(r),e.promise}},2248:function(t,r,e){var n=e(1320);t.exports=function(t,r,e){for(var o in r)n(t,o,r[o],e);return t}},1320:function(t,r,e){var n=e(7854),o=e(614),i=e(6656),c=e(8880),a=e(3505),u=e(2788),s=e(9909),f=e(6530).CONFIGURABLE,l=s.get,p=s.enforce,h=String(String).split("String");(t.exports=function(t,r,e,u){var s,l=!!u&&!!u.unsafe,d=!!u&&!!u.enumerable,v=!!u&&!!u.noTargetGet,y=u&&void 0!==u.name?u.name:r;o(e)&&("Symbol("===String(y).slice(0,7)&&(y="["+String(y).replace(/^Symbol\(([^)]*)\)/,"$1")+"]"),(!i(e,"name")||f&&e.name!==y)&&c(e,"name",y),(s=p(e)).source||(s.source=h.join("string"==typeof y?y:""))),t!==n?(l?!v&&t[r]&&(d=!0):delete t[r],d?t[r]=e:c(t,r,e)):d?t[r]=e:a(r,e)})(Function.prototype,"toString",(function(){return o(this)&&l(this).source||u(this)}))},7651:function(t,r,e){var n=e(9670),o=e(614),i=e(4326),c=e(2261);t.exports=function(t,r){var e=t.exec;if(o(e)){var a=e.call(t,r);return null!==a&&n(a),a}if("RegExp"===i(t))return c.call(t,r);throw TypeError("RegExp#exec called on incompatible receiver")}},2261:function(t,r,e){"use strict";var n,o,i=e(1340),c=e(7066),a=e(2999),u=e(2309),s=e(30),f=e(9909).get,l=e(9441),p=e(7168),h=RegExp.prototype.exec,d=u("native-string-replace",String.prototype.replace),v=h,y=(n=/a/,o=/b*/g,h.call(n,"a"),h.call(o,"a"),0!==n.lastIndex||0!==o.lastIndex),g=a.UNSUPPORTED_Y||a.BROKEN_CARET,b=void 0!==/()??/.exec("")[1];(y||b||g||l||p)&&(v=function(t){var r,e,n,o,a,u,l,p=this,m=f(p),x=i(t),w=m.raw;if(w)return w.lastIndex=p.lastIndex,r=v.call(w,x),p.lastIndex=w.lastIndex,r;var O=m.groups,E=g&&p.sticky,S=c.call(p),j=p.source,P=0,T=x;if(E&&(-1===(S=S.replace("y","")).indexOf("g")&&(S+="g"),T=x.slice(p.lastIndex),p.lastIndex>0&&(!p.multiline||p.multiline&&"\n"!==x.charAt(p.lastIndex-1))&&(j="(?: "+j+")",T=" "+T,P++),e=new RegExp("^(?:"+j+")",S)),b&&(e=new RegExp("^"+j+"$(?!\\s)",S)),y&&(n=p.lastIndex),o=h.call(E?e:p,T),E?o?(o.input=o.input.slice(P),o[0]=o[0].slice(P),o.index=p.lastIndex,p.lastIndex+=o[0].length):p.lastIndex=0:y&&o&&(p.lastIndex=p.global?o.index+o[0].length:n),b&&o&&o.length>1&&d.call(o[0],e,(function(){for(a=1;a<arguments.length-2;a++)void 0===arguments[a]&&(o[a]=void 0)})),o&&O)for(o.groups=u=s(null),a=0;a<O.length;a++)u[(l=O[a])[0]]=o[l[1]];return o}),t.exports=v},7066:function(t,r,e){"use strict";var n=e(9670);t.exports=function(){var t=n(this),r="";return t.global&&(r+="g"),t.ignoreCase&&(r+="i"),t.multiline&&(r+="m"),t.dotAll&&(r+="s"),t.unicode&&(r+="u"),t.sticky&&(r+="y"),r}},2999:function(t,r,e){var n=e(7293),o=e(7854).RegExp;r.UNSUPPORTED_Y=n((function(){var t=o("a","y");return t.lastIndex=2,null!=t.exec("abcd")})),r.BROKEN_CARET=n((function(){var t=o("^r","gy");return t.lastIndex=2,null!=t.exec("str")}))},9441:function(t,r,e){var n=e(7293),o=e(7854).RegExp;t.exports=n((function(){var t=o(".","s");return!(t.dotAll&&t.exec("\n")&&"s"===t.flags)}))},7168:function(t,r,e){var n=e(7293),o=e(7854).RegExp;t.exports=n((function(){var t=o("(?<a>b)","g");return"b"!==t.exec("b").groups.a||"bc"!=="b".replace(t,"$<a>c")}))},4488:function(t){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},6029:function(t){t.exports=Object.is||function(t,r){return t===r?0!==t||1/t==1/r:t!=t&&r!=r}},3505:function(t,r,e){var n=e(7854);t.exports=function(t,r){try{Object.defineProperty(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},6340:function(t,r,e){"use strict";var n=e(5005),o=e(3070),i=e(5112),c=e(9781),a=i("species");t.exports=function(t){var r=n(t),e=o.f;c&&r&&!r[a]&&e(r,a,{configurable:!0,get:function(){return this}})}},8003:function(t,r,e){var n=e(3070).f,o=e(6656),i=e(5112)("toStringTag");t.exports=function(t,r,e){t&&!o(t=e?t:t.prototype,i)&&n(t,i,{configurable:!0,value:r})}},6200:function(t,r,e){var n=e(2309),o=e(9711),i=n("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},5465:function(t,r,e){var n=e(7854),o=e(3505),i="__core-js_shared__",c=n[i]||o(i,{});t.exports=c},2309:function(t,r,e){var n=e(1913),o=e(5465);(t.exports=function(t,r){return o[t]||(o[t]=void 0!==r?r:{})})("versions",[]).push({version:"3.18.0",mode:n?"pure":"global",copyright:"© 2021 Denis Pushkarev (zloirock.ru)"})},6707:function(t,r,e){var n=e(9670),o=e(9483),i=e(5112)("species");t.exports=function(t,r){var e,c=n(t).constructor;return void 0===c||null==(e=n(c)[i])?r:o(e)}},3429:function(t,r,e){var n=e(7293);t.exports=function(t){return n((function(){var r=""[t]('"');return r!==r.toLowerCase()||r.split('"').length>3}))}},8710:function(t,r,e){var n=e(9958),o=e(1340),i=e(4488),c=function(t){return function(r,e){var c,a,u=o(i(r)),s=n(e),f=u.length;return s<0||s>=f?t?"":void 0:(c=u.charCodeAt(s))<55296||c>56319||s+1===f||(a=u.charCodeAt(s+1))<56320||a>57343?t?u.charAt(s):c:t?u.slice(s,s+2):a-56320+(c-55296<<10)+65536}};t.exports={codeAt:c(!1),charAt:c(!0)}},4986:function(t,r,e){var n=e(8113);t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)},6650:function(t,r,e){var n=e(7466),o=e(1340),i=e(8415),c=e(4488),a=Math.ceil,u=function(t){return function(r,e,u){var s,f,l=o(c(r)),p=l.length,h=void 0===u?" ":o(u),d=n(e);return d<=p||""==h?l:(s=d-p,(f=i.call(h,a(s/h.length))).length>s&&(f=f.slice(0,s)),t?l+f:f+l)}};t.exports={start:u(!1),end:u(!0)}},8415:function(t,r,e){"use strict";var n=e(9958),o=e(1340),i=e(4488);t.exports=function(t){var r=o(i(this)),e="",c=n(t);if(c<0||c==1/0)throw RangeError("Wrong number of repetitions");for(;c>0;(c>>>=1)&&(r+=r))1&c&&(e+=r);return e}},6091:function(t,r,e){var n=e(6530).PROPER,o=e(7293),i=e(1361);t.exports=function(t){return o((function(){return!!i[t]()||"​…᠎"!=="​…᠎"[t]()||n&&i[t].name!==t}))}},3111:function(t,r,e){var n=e(4488),o=e(1340),i="["+e(1361)+"]",c=RegExp("^"+i+i+"*"),a=RegExp(i+i+"*$"),u=function(t){return function(r){var e=o(n(r));return 1&t&&(e=e.replace(c,"")),2&t&&(e=e.replace(a,"")),e}};t.exports={start:u(1),end:u(2),trim:u(3)}},261:function(t,r,e){var n,o,i,c,a=e(7854),u=e(614),s=e(7293),f=e(9974),l=e(490),p=e(317),h=e(6833),d=e(5268),v=a.setImmediate,y=a.clearImmediate,g=a.process,b=a.MessageChannel,m=a.Dispatch,x=0,w={},O="onreadystatechange";try{n=a.location}catch(t){}var E=function(t){if(w.hasOwnProperty(t)){var r=w[t];delete w[t],r()}},S=function(t){return function(){E(t)}},j=function(t){E(t.data)},P=function(t){a.postMessage(String(t),n.protocol+"//"+n.host)};v&&y||(v=function(t){for(var r=[],e=arguments.length,n=1;e>n;)r.push(arguments[n++]);return w[++x]=function(){(u(t)?t:Function(t)).apply(void 0,r)},o(x),x},y=function(t){delete w[t]},d?o=function(t){g.nextTick(S(t))}:m&&m.now?o=function(t){m.now(S(t))}:b&&!h?(c=(i=new b).port2,i.port1.onmessage=j,o=f(c.postMessage,c,1)):a.addEventListener&&u(a.postMessage)&&!a.importScripts&&n&&"file:"!==n.protocol&&!s(P)?(o=P,a.addEventListener("message",j,!1)):o=O in p("script")?function(t){l.appendChild(p("script")).onreadystatechange=function(){l.removeChild(this),E(t)}}:function(t){setTimeout(S(t),0)}),t.exports={set:v,clear:y}},1400:function(t,r,e){var n=e(9958),o=Math.max,i=Math.min;t.exports=function(t,r){var e=n(t);return e<0?o(e+r,0):i(e,r)}},5656:function(t,r,e){var n=e(8361),o=e(4488);t.exports=function(t){return n(o(t))}},9958:function(t){var r=Math.ceil,e=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?e:r)(t)}},7466:function(t,r,e){var n=e(9958),o=Math.min;t.exports=function(t){return t>0?o(n(t),9007199254740991):0}},7908:function(t,r,e){var n=e(4488);t.exports=function(t){return Object(n(t))}},7593:function(t,r,e){var n=e(111),o=e(2190),i=e(8173),c=e(2140),a=e(5112)("toPrimitive");t.exports=function(t,r){if(!n(t)||o(t))return t;var e,u=i(t,a);if(u){if(void 0===r&&(r="default"),e=u.call(t,r),!n(e)||o(e))return e;throw TypeError("Can't convert object to primitive value")}return void 0===r&&(r="number"),c(t,r)}},4948:function(t,r,e){var n=e(7593),o=e(2190);t.exports=function(t){var r=n(t,"string");return o(r)?r:String(r)}},1694:function(t,r,e){var n={};n[e(5112)("toStringTag")]="z",t.exports="[object z]"===String(n)},1340:function(t,r,e){var n=e(648);t.exports=function(t){if("Symbol"===n(t))throw TypeError("Cannot convert a Symbol value to a string");return String(t)}},6330:function(t){t.exports=function(t){try{return String(t)}catch(t){return"Object"}}},9711:function(t){var r=0,e=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++r+e).toString(36)}},3307:function(t,r,e){var n=e(133);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},5112:function(t,r,e){var n=e(7854),o=e(2309),i=e(6656),c=e(9711),a=e(133),u=e(3307),s=o("wks"),f=n.Symbol,l=u?f:f&&f.withoutSetter||c;t.exports=function(t){return i(s,t)&&(a||"string"==typeof s[t])||(a&&i(f,t)?s[t]=f[t]:s[t]=l("Symbol."+t)),s[t]}},1361:function(t){t.exports="\t\n\v\f\r                 \u2028\u2029\ufeff"},9170:function(t,r,e){"use strict";var n=e(2109),o=e(9518),i=e(7674),c=e(30),a=e(8880),u=e(9114),s=e(408),f=e(1340),l=function(t,r){var e=this;if(!(e instanceof l))return new l(t,r);i&&(e=i(new Error(void 0),o(e))),void 0!==r&&a(e,"message",f(r));var n=[];return s(t,n.push,{that:n}),a(e,"errors",n),e};l.prototype=c(Error.prototype,{constructor:u(5,l),message:u(5,""),name:u(5,"AggregateError")}),n({global:!0},{AggregateError:l})},6992:function(t,r,e){"use strict";var n=e(5656),o=e(1223),i=e(7497),c=e(9909),a=e(654),u="Array Iterator",s=c.set,f=c.getterFor(u);t.exports=a(Array,"Array",(function(t,r){s(this,{type:u,target:n(t),index:0,kind:r})}),(function(){var t=f(this),r=t.target,e=t.kind,n=t.index++;return!r||n>=r.length?(t.target=void 0,{value:void 0,done:!0}):"keys"==e?{value:n,done:!1}:"values"==e?{value:r[n],done:!1}:{value:[n,r[n]],done:!1}}),"values"),i.Arguments=i.Array,o("keys"),o("values"),o("entries")},1539:function(t,r,e){var n=e(1694),o=e(1320),i=e(288);n||o(Object.prototype,"toString",i,{unsafe:!0})},7922:function(t,r,e){"use strict";var n=e(2109),o=e(9662),i=e(8523),c=e(2534),a=e(408);n({target:"Promise",stat:!0},{allSettled:function(t){var r=this,e=i.f(r),n=e.resolve,u=e.reject,s=c((function(){var e=o(r.resolve),i=[],c=0,u=1;a(t,(function(t){var o=c++,a=!1;i.push(void 0),u++,e.call(r,t).then((function(t){a||(a=!0,i[o]={status:"fulfilled",value:t},--u||n(i))}),(function(t){a||(a=!0,i[o]={status:"rejected",reason:t},--u||n(i))}))})),--u||n(i)}));return s.error&&u(s.value),e.promise}})},4668:function(t,r,e){"use strict";var n=e(2109),o=e(9662),i=e(5005),c=e(8523),a=e(2534),u=e(408),s="No one promise resolved";n({target:"Promise",stat:!0},{any:function(t){var r=this,e=c.f(r),n=e.resolve,f=e.reject,l=a((function(){var e=o(r.resolve),c=[],a=0,l=1,p=!1;u(t,(function(t){var o=a++,u=!1;c.push(void 0),l++,e.call(r,t).then((function(t){u||p||(p=!0,n(t))}),(function(t){u||p||(u=!0,c[o]=t,--l||f(new(i("AggregateError"))(c,s)))}))})),--l||f(new(i("AggregateError"))(c,s))}));return l.error&&f(l.value),e.promise}})},7727:function(t,r,e){"use strict";var n=e(2109),o=e(1913),i=e(3366),c=e(7293),a=e(5005),u=e(614),s=e(6707),f=e(9478),l=e(1320);if(n({target:"Promise",proto:!0,real:!0,forced:!!i&&c((function(){i.prototype.finally.call({then:function(){}},(function(){}))}))},{finally:function(t){var r=s(this,a("Promise")),e=u(t);return this.then(e?function(e){return f(r,t()).then((function(){return e}))}:t,e?function(e){return f(r,t()).then((function(){throw e}))}:t)}}),!o&&u(i)){var p=a("Promise").prototype.finally;i.prototype.finally!==p&&l(i.prototype,"finally",p,{unsafe:!0})}},8674:function(t,r,e){"use strict";var n,o,i,c,a=e(2109),u=e(1913),s=e(7854),f=e(5005),l=e(3366),p=e(1320),h=e(2248),d=e(7674),v=e(8003),y=e(6340),g=e(9662),b=e(614),m=e(111),x=e(5787),w=e(2788),O=e(408),E=e(7072),S=e(6707),j=e(261).set,P=e(5948),T=e(9478),A=e(842),_=e(8523),I=e(2534),R=e(9909),L=e(4705),k=e(5112),C=e(7871),B=e(5268),D=e(7392),F=k("species"),M="Promise",U=R.get,N=R.set,G=R.getterFor(M),X=l&&l.prototype,$=l,H=X,q=s.TypeError,W=s.document,V=s.process,z=_.f,Y=z,K=!!(W&&W.createEvent&&s.dispatchEvent),J=b(s.PromiseRejectionEvent),Q="unhandledrejection",Z=!1,tt=L(M,(function(){var t=w($),r=t!==String($);if(!r&&66===D)return!0;if(u&&!H.finally)return!0;if(D>=51&&/native code/.test(t))return!1;var e=new $((function(t){t(1)})),n=function(t){t((function(){}),(function(){}))};return(e.constructor={})[F]=n,!(Z=e.then((function(){}))instanceof n)||!r&&C&&!J})),rt=tt||!E((function(t){$.all(t).catch((function(){}))})),et=function(t){var r;return!(!m(t)||!b(r=t.then))&&r},nt=function(t,r){if(!t.notified){t.notified=!0;var e=t.reactions;P((function(){for(var n=t.value,o=1==t.state,i=0;e.length>i;){var c,a,u,s=e[i++],f=o?s.ok:s.fail,l=s.resolve,p=s.reject,h=s.domain;try{f?(o||(2===t.rejection&&at(t),t.rejection=1),!0===f?c=n:(h&&h.enter(),c=f(n),h&&(h.exit(),u=!0)),c===s.promise?p(q("Promise-chain cycle")):(a=et(c))?a.call(c,l,p):l(c)):p(n)}catch(t){h&&!u&&h.exit(),p(t)}}t.reactions=[],t.notified=!1,r&&!t.rejection&&it(t)}))}},ot=function(t,r,e){var n,o;K?((n=W.createEvent("Event")).promise=r,n.reason=e,n.initEvent(t,!1,!0),s.dispatchEvent(n)):n={promise:r,reason:e},!J&&(o=s["on"+t])?o(n):t===Q&&A("Unhandled promise rejection",e)},it=function(t){j.call(s,(function(){var r,e=t.facade,n=t.value;if(ct(t)&&(r=I((function(){B?V.emit("unhandledRejection",n,e):ot(Q,e,n)})),t.rejection=B||ct(t)?2:1,r.error))throw r.value}))},ct=function(t){return 1!==t.rejection&&!t.parent},at=function(t){j.call(s,(function(){var r=t.facade;B?V.emit("rejectionHandled",r):ot("rejectionhandled",r,t.value)}))},ut=function(t,r,e){return function(n){t(r,n,e)}},st=function(t,r,e){t.done||(t.done=!0,e&&(t=e),t.value=r,t.state=2,nt(t,!0))},ft=function(t,r,e){if(!t.done){t.done=!0,e&&(t=e);try{if(t.facade===r)throw q("Promise can't be resolved itself");var n=et(r);n?P((function(){var e={done:!1};try{n.call(r,ut(ft,e,t),ut(st,e,t))}catch(r){st(e,r,t)}})):(t.value=r,t.state=1,nt(t,!1))}catch(r){st({done:!1},r,t)}}};if(tt&&(H=($=function(t){x(this,$,M),g(t),n.call(this);var r=U(this);try{t(ut(ft,r),ut(st,r))}catch(t){st(r,t)}}).prototype,(n=function(t){N(this,{type:M,done:!1,notified:!1,parent:!1,reactions:[],rejection:!1,state:0,value:void 0})}).prototype=h(H,{then:function(t,r){var e=G(this),n=z(S(this,$));return n.ok=!b(t)||t,n.fail=b(r)&&r,n.domain=B?V.domain:void 0,e.parent=!0,e.reactions.push(n),0!=e.state&&nt(e,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new n,r=U(t);this.promise=t,this.resolve=ut(ft,r),this.reject=ut(st,r)},_.f=z=function(t){return t===$||t===i?new o(t):Y(t)},!u&&b(l)&&X!==Object.prototype)){c=X.then,Z||(p(X,"then",(function(t,r){var e=this;return new $((function(t,r){c.call(e,t,r)})).then(t,r)}),{unsafe:!0}),p(X,"catch",H.catch,{unsafe:!0}));try{delete X.constructor}catch(t){}d&&d(X,H)}a({global:!0,wrap:!0,forced:tt},{Promise:$}),v($,M,!1,!0),y(M),i=f(M),a({target:M,stat:!0,forced:tt},{reject:function(t){var r=z(this);return r.reject.call(void 0,t),r.promise}}),a({target:M,stat:!0,forced:u||tt},{resolve:function(t){return T(u&&this===i?$:this,t)}}),a({target:M,stat:!0,forced:rt},{all:function(t){var r=this,e=z(r),n=e.resolve,o=e.reject,i=I((function(){var e=g(r.resolve),i=[],c=0,a=1;O(t,(function(t){var u=c++,s=!1;i.push(void 0),a++,e.call(r,t).then((function(t){s||(s=!0,i[u]=t,--a||n(i))}),o)})),--a||n(i)}));return i.error&&o(i.value),e.promise},race:function(t){var r=this,e=z(r),n=e.reject,o=I((function(){var o=g(r.resolve);O(t,(function(t){o.call(r,t).then(e.resolve,n)}))}));return o.error&&n(o.value),e.promise}})},4916:function(t,r,e){"use strict";var n=e(2109),o=e(2261);n({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},5218:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("anchor")},{anchor:function(t){return o(this,"a","name",t)}})},4506:function(t,r,e){"use strict";var n=e(2109),o=e(4488),i=e(9958),c=e(7466),a=e(1340);n({target:"String",proto:!0,forced:e(7293)((function(){return"\ud842"!=="𠮷".at(0)}))},{at:function(t){var r=a(o(this)),e=c(r.length),n=i(t),u=n>=0?n:e+n;return u<0||u>=e?void 0:r.charAt(u)}})},4475:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("big")},{big:function(){return o(this,"big","","")}})},7929:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("blink")},{blink:function(){return o(this,"blink","","")}})},915:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("bold")},{bold:function(){return o(this,"b","","")}})},9841:function(t,r,e){"use strict";var n=e(2109),o=e(8710).codeAt;n({target:"String",proto:!0},{codePointAt:function(t){return o(this,t)}})},7852:function(t,r,e){"use strict";var n,o=e(2109),i=e(1236).f,c=e(7466),a=e(1340),u=e(3929),s=e(4488),f=e(4964),l=e(1913),p="".endsWith,h=Math.min,d=f("endsWith");o({target:"String",proto:!0,forced:!!(l||d||(n=i(String.prototype,"endsWith"),!n||n.writable))&&!d},{endsWith:function(t){var r=a(s(this));u(t);var e=arguments.length>1?arguments[1]:void 0,n=c(r.length),o=void 0===e?n:h(c(e),n),i=a(t);return p?p.call(r,i,o):r.slice(o-i.length,o)===i}})},9253:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("fixed")},{fixed:function(){return o(this,"tt","","")}})},2125:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("fontcolor")},{fontcolor:function(t){return o(this,"font","color",t)}})},8830:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("fontsize")},{fontsize:function(t){return o(this,"font","size",t)}})},4953:function(t,r,e){var n=e(2109),o=e(1400),i=String.fromCharCode,c=String.fromCodePoint;n({target:"String",stat:!0,forced:!!c&&1!=c.length},{fromCodePoint:function(t){for(var r,e=[],n=arguments.length,c=0;n>c;){if(r=+arguments[c++],o(r,1114111)!==r)throw RangeError(r+" is not a valid code point");e.push(r<65536?i(r):i(55296+((r-=65536)>>10),r%1024+56320))}return e.join("")}})},2023:function(t,r,e){"use strict";var n=e(2109),o=e(3929),i=e(4488),c=e(1340);n({target:"String",proto:!0,forced:!e(4964)("includes")},{includes:function(t){return!!~c(i(this)).indexOf(c(o(t)),arguments.length>1?arguments[1]:void 0)}})},8734:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("italics")},{italics:function(){return o(this,"i","","")}})},8783:function(t,r,e){"use strict";var n=e(8710).charAt,o=e(1340),i=e(9909),c=e(654),a="String Iterator",u=i.set,s=i.getterFor(a);c(String,"String",(function(t){u(this,{type:a,string:o(t),index:0})}),(function(){var t,r=s(this),e=r.string,o=r.index;return o>=e.length?{value:void 0,done:!0}:(t=n(e,o),r.index+=t.length,{value:t,done:!1})}))},9254:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("link")},{link:function(t){return o(this,"a","href",t)}})},6373:function(t,r,e){"use strict";var n=e(2109),o=e(4994),i=e(4488),c=e(7466),a=e(1340),u=e(9670),s=e(4326),f=e(7850),l=e(7066),p=e(8173),h=e(1320),d=e(7293),v=e(5112),y=e(6707),g=e(1530),b=e(7651),m=e(9909),x=e(1913),w=v("matchAll"),O="RegExp String",E="RegExp String Iterator",S=m.set,j=m.getterFor(E),P=RegExp.prototype,T="".matchAll,A=!!T&&!d((function(){"a".matchAll(/./)})),_=o((function(t,r,e,n){S(this,{type:E,regexp:t,string:r,global:e,unicode:n,done:!1})}),O,(function(){var t=j(this);if(t.done)return{value:void 0,done:!0};var r=t.regexp,e=t.string,n=b(r,e);return null===n?{value:void 0,done:t.done=!0}:t.global?(""===a(n[0])&&(r.lastIndex=g(e,c(r.lastIndex),t.unicode)),{value:n,done:!1}):(t.done=!0,{value:n,done:!1})})),I=function(t){var r,e,n,o,i,s,f=u(this),p=a(t);return r=y(f,RegExp),void 0===(e=f.flags)&&f instanceof RegExp&&!("flags"in P)&&(e=l.call(f)),n=void 0===e?"":a(e),o=new r(r===RegExp?f.source:f,n),i=!!~n.indexOf("g"),s=!!~n.indexOf("u"),o.lastIndex=c(f.lastIndex),new _(o,p,i,s)};n({target:"String",proto:!0,forced:A},{matchAll:function(t){var r,e,n,o=i(this);if(null!=t){if(f(t)&&!~a(i("flags"in P?t.flags:l.call(t))).indexOf("g"))throw TypeError("`.matchAll` does not allow non-global regexes");if(A)return T.apply(o,arguments);if(void 0===(e=p(t,w))&&x&&"RegExp"==s(t)&&(e=I),e)return e.call(t,o)}else if(A)return T.apply(o,arguments);return r=a(o),n=new RegExp(t,"g"),x?I.call(n,r):n[w](r)}}),x||w in P||h(P,w,I)},4723:function(t,r,e){"use strict";var n=e(7007),o=e(9670),i=e(7466),c=e(1340),a=e(4488),u=e(8173),s=e(1530),f=e(7651);n("match",(function(t,r,e){return[function(r){var e=a(this),n=null==r?void 0:u(r,t);return n?n.call(r,e):new RegExp(r)[t](c(e))},function(t){var n=o(this),a=c(t),u=e(r,n,a);if(u.done)return u.value;if(!n.global)return f(n,a);var l=n.unicode;n.lastIndex=0;for(var p,h=[],d=0;null!==(p=f(n,a));){var v=c(p[0]);h[d]=v,""===v&&(n.lastIndex=s(a,i(n.lastIndex),l)),d++}return 0===d?null:h}]}))},6528:function(t,r,e){"use strict";var n=e(2109),o=e(6650).end;n({target:"String",proto:!0,forced:e(4986)},{padEnd:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},3112:function(t,r,e){"use strict";var n=e(2109),o=e(6650).start;n({target:"String",proto:!0,forced:e(4986)},{padStart:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},8992:function(t,r,e){var n=e(2109),o=e(5656),i=e(7908),c=e(7466),a=e(1340),u=Array.prototype,s=u.push,f=u.join;n({target:"String",stat:!0},{raw:function(t){for(var r=o(i(t).raw),e=c(r.length),n=arguments.length,u=[],l=0;e>l;)s.call(u,a(r[l++])),l<n&&s.call(u,a(arguments[l]));return f.call(u,"")}})},2481:function(t,r,e){e(2109)({target:"String",proto:!0},{repeat:e(8415)})},8757:function(t,r,e){"use strict";var n=e(2109),o=e(4488),i=e(614),c=e(7850),a=e(1340),u=e(8173),s=e(7066),f=e(647),l=e(5112),p=e(1913),h=l("replace"),d=RegExp.prototype,v=Math.max,y=function(t,r,e){return e>t.length?-1:""===r?e:t.indexOf(r,e)};n({target:"String",proto:!0},{replaceAll:function(t,r){var e,n,l,g,b,m,x,w,O=o(this),E=0,S=0,j="";if(null!=t){if((e=c(t))&&!~a(o("flags"in d?t.flags:s.call(t))).indexOf("g"))throw TypeError("`.replaceAll` does not allow non-global regexes");if(n=u(t,h))return n.call(t,O,r);if(p&&e)return a(O).replace(t,r)}for(l=a(O),g=a(t),(b=i(r))||(r=a(r)),m=g.length,x=v(1,m),E=y(l,g,0);-1!==E;)w=b?a(r(g,E,l)):f(g,l,E,[],void 0,r),j+=l.slice(S,E)+w,S=E+m,E=y(l,g,E+x);return S<l.length&&(j+=l.slice(S)),j}})},5306:function(t,r,e){"use strict";var n=e(7007),o=e(7293),i=e(9670),c=e(614),a=e(9958),u=e(7466),s=e(1340),f=e(4488),l=e(1530),p=e(8173),h=e(647),d=e(7651),v=e(5112)("replace"),y=Math.max,g=Math.min,b="$0"==="a".replace(/./,"$0"),m=!!/./[v]&&""===/./[v]("a","$0");n("replace",(function(t,r,e){var n=m?"$":"$0";return[function(t,e){var n=f(this),o=null==t?void 0:p(t,v);return o?o.call(t,n,e):r.call(s(n),t,e)},function(t,o){var f=i(this),p=s(t);if("string"==typeof o&&-1===o.indexOf(n)&&-1===o.indexOf("$<")){var v=e(r,f,p,o);if(v.done)return v.value}var b=c(o);b||(o=s(o));var m=f.global;if(m){var x=f.unicode;f.lastIndex=0}for(var w=[];;){var O=d(f,p);if(null===O)break;if(w.push(O),!m)break;""===s(O[0])&&(f.lastIndex=l(p,u(f.lastIndex),x))}for(var E,S="",j=0,P=0;P<w.length;P++){O=w[P];for(var T=s(O[0]),A=y(g(a(O.index),p.length),0),_=[],I=1;I<O.length;I++)_.push(void 0===(E=O[I])?E:String(E));var R=O.groups;if(b){var L=[T].concat(_,A,p);void 0!==R&&L.push(R);var k=s(o.apply(void 0,L))}else k=h(T,p,A,_,R,o);A>=j&&(S+=p.slice(j,A)+k,j=A+T.length)}return S+p.slice(j)}]}),!!o((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")}))||!b||m)},4765:function(t,r,e){"use strict";var n=e(7007),o=e(9670),i=e(4488),c=e(6029),a=e(1340),u=e(8173),s=e(7651);n("search",(function(t,r,e){return[function(r){var e=i(this),n=null==r?void 0:u(r,t);return n?n.call(r,e):new RegExp(r)[t](a(e))},function(t){var n=o(this),i=a(t),u=e(r,n,i);if(u.done)return u.value;var f=n.lastIndex;c(f,0)||(n.lastIndex=0);var l=s(n,i);return c(n.lastIndex,f)||(n.lastIndex=f),null===l?-1:l.index}]}))},7268:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("small")},{small:function(){return o(this,"small","","")}})},3123:function(t,r,e){"use strict";var n=e(7007),o=e(7850),i=e(9670),c=e(4488),a=e(6707),u=e(1530),s=e(7466),f=e(1340),l=e(8173),p=e(7651),h=e(2261),d=e(2999),v=e(7293),y=d.UNSUPPORTED_Y,g=[].push,b=Math.min,m=4294967295;n("split",(function(t,r,e){var n;return n="c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length?function(t,e){var n=f(c(this)),i=void 0===e?m:e>>>0;if(0===i)return[];if(void 0===t)return[n];if(!o(t))return r.call(n,t,i);for(var a,u,s,l=[],p=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),d=0,v=new RegExp(t.source,p+"g");(a=h.call(v,n))&&!((u=v.lastIndex)>d&&(l.push(n.slice(d,a.index)),a.length>1&&a.index<n.length&&g.apply(l,a.slice(1)),s=a[0].length,d=u,l.length>=i));)v.lastIndex===a.index&&v.lastIndex++;return d===n.length?!s&&v.test("")||l.push(""):l.push(n.slice(d)),l.length>i?l.slice(0,i):l}:"0".split(void 0,0).length?function(t,e){return void 0===t&&0===e?[]:r.call(this,t,e)}:r,[function(r,e){var o=c(this),i=null==r?void 0:l(r,t);return i?i.call(r,o,e):n.call(f(o),r,e)},function(t,o){var c=i(this),l=f(t),h=e(n,c,l,o,n!==r);if(h.done)return h.value;var d=a(c,RegExp),v=c.unicode,g=(c.ignoreCase?"i":"")+(c.multiline?"m":"")+(c.unicode?"u":"")+(y?"g":"y"),x=new d(y?"^(?:"+c.source+")":c,g),w=void 0===o?m:o>>>0;if(0===w)return[];if(0===l.length)return null===p(x,l)?[l]:[];for(var O=0,E=0,S=[];E<l.length;){x.lastIndex=y?0:E;var j,P=p(x,y?l.slice(E):l);if(null===P||(j=b(s(x.lastIndex+(y?E:0)),l.length))===O)E=u(l,E,v);else{if(S.push(l.slice(O,E)),S.length===w)return S;for(var T=1;T<=P.length-1;T++)if(S.push(P[T]),S.length===w)return S;E=O=j}}return S.push(l.slice(O)),S}]}),!!v((function(){var t=/(?:)/,r=t.exec;t.exec=function(){return r.apply(this,arguments)};var e="ab".split(t);return 2!==e.length||"a"!==e[0]||"b"!==e[1]})),y)},3157:function(t,r,e){"use strict";var n,o=e(2109),i=e(1236).f,c=e(7466),a=e(1340),u=e(3929),s=e(4488),f=e(4964),l=e(1913),p="".startsWith,h=Math.min,d=f("startsWith");o({target:"String",proto:!0,forced:!!(l||d||(n=i(String.prototype,"startsWith"),!n||n.writable))&&!d},{startsWith:function(t){var r=a(s(this));u(t);var e=c(h(arguments.length>1?arguments[1]:void 0,r.length)),n=a(t);return p?p.call(r,n,e):r.slice(e,e+n.length)===n}})},7397:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("strike")},{strike:function(){return o(this,"strike","","")}})},86:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("sub")},{sub:function(){return o(this,"sub","","")}})},3650:function(t,r,e){"use strict";var n=e(2109),o=e(4488),i=e(9958),c=e(1340),a="".slice,u=Math.max,s=Math.min;n({target:"String",proto:!0},{substr:function(t,r){var e,n,f=c(o(this)),l=f.length,p=i(t);return p===1/0&&(p=0),p<0&&(p=u(l+p,0)),(e=void 0===r?l:i(r))<=0||e===1/0||p>=(n=s(p+e,l))?"":a.call(f,p,n)}})},623:function(t,r,e){"use strict";var n=e(2109),o=e(4230);n({target:"String",proto:!0,forced:e(3429)("sup")},{sup:function(){return o(this,"sup","","")}})},8702:function(t,r,e){"use strict";var n=e(2109),o=e(3111).end,i=e(6091)("trimEnd"),c=i?function(){return o(this)}:"".trimEnd;n({target:"String",proto:!0,name:"trimEnd",forced:i},{trimEnd:c,trimRight:c})},5674:function(t,r,e){"use strict";var n=e(2109),o=e(3111).start,i=e(6091)("trimStart"),c=i?function(){return o(this)}:"".trimStart;n({target:"String",proto:!0,name:"trimStart",forced:i},{trimStart:c,trimLeft:c})},3210:function(t,r,e){"use strict";var n=e(2109),o=e(3111).trim;n({target:"String",proto:!0,forced:e(6091)("trim")},{trim:function(){return o(this)}})},3948:function(t,r,e){var n=e(7854),o=e(8324),i=e(8509),c=e(6992),a=e(8880),u=e(5112),s=u("iterator"),f=u("toStringTag"),l=c.values,p=function(t,r){if(t){if(t[s]!==l)try{a(t,s,l)}catch(r){t[s]=l}if(t[f]||a(t,f,r),o[r])for(var e in c)if(t[e]!==c[e])try{a(t,e,c[e])}catch(r){t[e]=c[e]}}};for(var h in o)p(n[h]&&n[h].prototype,h);p(i,"DOMTokenList")},1150:function(t,r,e){var n=e(7633);e(3948),t.exports=n},9712:function(t,r,e){var n=e(1111);t.exports=n},5666:function(t){var r=function(t){"use strict";var r,e=Object.prototype,n=e.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},i=o.iterator||"@@iterator",c=o.asyncIterator||"@@asyncIterator",a=o.toStringTag||"@@toStringTag";function u(t,r,e){return Object.defineProperty(t,r,{value:e,enumerable:!0,configurable:!0,writable:!0}),t[r]}try{u({},"")}catch(t){u=function(t,r,e){return t[r]=e}}function s(t,r,e,n){var o=r&&r.prototype instanceof y?r:y,i=Object.create(o.prototype),c=new A(n||[]);return i._invoke=function(t,r,e){var n=l;return function(o,i){if(n===h)throw new Error("Generator is already running");if(n===d){if("throw"===o)throw i;return I()}for(e.method=o,e.arg=i;;){var c=e.delegate;if(c){var a=j(c,e);if(a){if(a===v)continue;return a}}if("next"===e.method)e.sent=e._sent=e.arg;else if("throw"===e.method){if(n===l)throw n=d,e.arg;e.dispatchException(e.arg)}else"return"===e.method&&e.abrupt("return",e.arg);n=h;var u=f(t,r,e);if("normal"===u.type){if(n=e.done?d:p,u.arg===v)continue;return{value:u.arg,done:e.done}}"throw"===u.type&&(n=d,e.method="throw",e.arg=u.arg)}}}(t,e,c),i}function f(t,r,e){try{return{type:"normal",arg:t.call(r,e)}}catch(t){return{type:"throw",arg:t}}}t.wrap=s;var l="suspendedStart",p="suspendedYield",h="executing",d="completed",v={};function y(){}function g(){}function b(){}var m={};m[i]=function(){return this};var x=Object.getPrototypeOf,w=x&&x(x(_([])));w&&w!==e&&n.call(w,i)&&(m=w);var O=b.prototype=y.prototype=Object.create(m);function E(t){["next","throw","return"].forEach((function(r){u(t,r,(function(t){return this._invoke(r,t)}))}))}function S(t,r){function e(o,i,c,a){var u=f(t[o],t,i);if("throw"!==u.type){var s=u.arg,l=s.value;return l&&"object"==typeof l&&n.call(l,"__await")?r.resolve(l.__await).then((function(t){e("next",t,c,a)}),(function(t){e("throw",t,c,a)})):r.resolve(l).then((function(t){s.value=t,c(s)}),(function(t){return e("throw",t,c,a)}))}a(u.arg)}var o;this._invoke=function(t,n){function i(){return new r((function(r,o){e(t,n,r,o)}))}return o=o?o.then(i,i):i()}}function j(t,e){var n=t.iterator[e.method];if(n===r){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=r,j(t,e),"throw"===e.method))return v;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var o=f(n,t.iterator,e.arg);if("throw"===o.type)return e.method="throw",e.arg=o.arg,e.delegate=null,v;var i=o.arg;return i?i.done?(e[t.resultName]=i.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=r),e.delegate=null,v):i:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,v)}function P(t){var r={tryLoc:t[0]};1 in t&&(r.catchLoc=t[1]),2 in t&&(r.finallyLoc=t[2],r.afterLoc=t[3]),this.tryEntries.push(r)}function T(t){var r=t.completion||{};r.type="normal",delete r.arg,t.completion=r}function A(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(P,this),this.reset(!0)}function _(t){if(t){var e=t[i];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var o=-1,c=function e(){for(;++o<t.length;)if(n.call(t,o))return e.value=t[o],e.done=!1,e;return e.value=r,e.done=!0,e};return c.next=c}}return{next:I}}function I(){return{value:r,done:!0}}return g.prototype=O.constructor=b,b.constructor=g,g.displayName=u(b,a,"GeneratorFunction"),t.isGeneratorFunction=function(t){var r="function"==typeof t&&t.constructor;return!!r&&(r===g||"GeneratorFunction"===(r.displayName||r.name))},t.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,u(t,a,"GeneratorFunction")),t.prototype=Object.create(O),t},t.awrap=function(t){return{__await:t}},E(S.prototype),S.prototype[c]=function(){return this},t.AsyncIterator=S,t.async=function(r,e,n,o,i){void 0===i&&(i=Promise);var c=new S(s(r,e,n,o),i);return t.isGeneratorFunction(e)?c:c.next().then((function(t){return t.done?t.value:c.next()}))},E(O),u(O,a,"Generator"),O[i]=function(){return this},O.toString=function(){return"[object Generator]"},t.keys=function(t){var r=[];for(var e in t)r.push(e);return r.reverse(),function e(){for(;r.length;){var n=r.pop();if(n in t)return e.value=n,e.done=!1,e}return e.done=!0,e}},t.values=_,A.prototype={constructor:A,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=r,this.done=!1,this.delegate=null,this.method="next",this.arg=r,this.tryEntries.forEach(T),!t)for(var e in this)"t"===e.charAt(0)&&n.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=r)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function o(n,o){return a.type="throw",a.arg=t,e.next=n,o&&(e.method="next",e.arg=r),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var c=this.tryEntries[i],a=c.completion;if("root"===c.tryLoc)return o("end");if(c.tryLoc<=this.prev){var u=n.call(c,"catchLoc"),s=n.call(c,"finallyLoc");if(u&&s){if(this.prev<c.catchLoc)return o(c.catchLoc,!0);if(this.prev<c.finallyLoc)return o(c.finallyLoc)}else if(u){if(this.prev<c.catchLoc)return o(c.catchLoc,!0)}else{if(!s)throw new Error("try statement without catch or finally");if(this.prev<c.finallyLoc)return o(c.finallyLoc)}}}},abrupt:function(t,r){for(var e=this.tryEntries.length-1;e>=0;--e){var o=this.tryEntries[e];if(o.tryLoc<=this.prev&&n.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=r&&r<=i.finallyLoc&&(i=null);var c=i?i.completion:{};return c.type=t,c.arg=r,i?(this.method="next",this.next=i.finallyLoc,v):this.complete(c)},complete:function(t,r){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&r&&(this.next=r),v},finish:function(t){for(var r=this.tryEntries.length-1;r>=0;--r){var e=this.tryEntries[r];if(e.finallyLoc===t)return this.complete(e.completion,e.afterLoc),T(e),v}},catch:function(t){for(var r=this.tryEntries.length-1;r>=0;--r){var e=this.tryEntries[r];if(e.tryLoc===t){var n=e.completion;if("throw"===n.type){var o=n.arg;T(e)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:_(t),resultName:e,nextLoc:n},"next"===this.method&&(this.arg=r),v}},t}(t.exports);try{regeneratorRuntime=r}catch(t){Function("r","regeneratorRuntime = r")(r)}},7147:function(t,r,e){"use strict";var n="undefined"!=typeof globalThis&&globalThis||"undefined"!=typeof self&&self||void 0!==n&&n,o="URLSearchParams"in n,i="Symbol"in n&&"iterator"in Symbol,c="FileReader"in n&&"Blob"in n&&function(){try{return new Blob,!0}catch(t){return!1}}(),a="FormData"in n,u="ArrayBuffer"in n;if(u)var s=["[object Int8Array]","[object Uint8Array]","[object Uint8ClampedArray]","[object Int16Array]","[object Uint16Array]","[object Int32Array]","[object Uint32Array]","[object Float32Array]","[object Float64Array]"],f=ArrayBuffer.isView||function(t){return t&&s.indexOf(Object.prototype.toString.call(t))>-1};function l(t){if("string"!=typeof t&&(t=String(t)),/[^a-z0-9\-#$%&'*+.^_`|~!]/i.test(t)||""===t)throw new TypeError('Invalid character in header field name: "'+t+'"');return t.toLowerCase()}function p(t){return"string"!=typeof t&&(t=String(t)),t}function h(t){var r={next:function(){var r=t.shift();return{done:void 0===r,value:r}}};return i&&(r[Symbol.iterator]=function(){return r}),r}function d(t){this.map={},t instanceof d?t.forEach((function(t,r){this.append(r,t)}),this):Array.isArray(t)?t.forEach((function(t){this.append(t[0],t[1])}),this):t&&Object.getOwnPropertyNames(t).forEach((function(r){this.append(r,t[r])}),this)}function v(t){if(t.bodyUsed)return Promise.reject(new TypeError("Already read"));t.bodyUsed=!0}function y(t){return new Promise((function(r,e){t.onload=function(){r(t.result)},t.onerror=function(){e(t.error)}}))}function g(t){var r=new FileReader,e=y(r);return r.readAsArrayBuffer(t),e}function b(t){if(t.slice)return t.slice(0);var r=new Uint8Array(t.byteLength);return r.set(new Uint8Array(t)),r.buffer}function m(){return this.bodyUsed=!1,this._initBody=function(t){var r;this.bodyUsed=this.bodyUsed,this._bodyInit=t,t?"string"==typeof t?this._bodyText=t:c&&Blob.prototype.isPrototypeOf(t)?this._bodyBlob=t:a&&FormData.prototype.isPrototypeOf(t)?this._bodyFormData=t:o&&URLSearchParams.prototype.isPrototypeOf(t)?this._bodyText=t.toString():u&&c&&((r=t)&&DataView.prototype.isPrototypeOf(r))?(this._bodyArrayBuffer=b(t.buffer),this._bodyInit=new Blob([this._bodyArrayBuffer])):u&&(ArrayBuffer.prototype.isPrototypeOf(t)||f(t))?this._bodyArrayBuffer=b(t):this._bodyText=t=Object.prototype.toString.call(t):this._bodyText="",this.headers.get("content-type")||("string"==typeof t?this.headers.set("content-type","text/plain;charset=UTF-8"):this._bodyBlob&&this._bodyBlob.type?this.headers.set("content-type",this._bodyBlob.type):o&&URLSearchParams.prototype.isPrototypeOf(t)&&this.headers.set("content-type","application/x-www-form-urlencoded;charset=UTF-8"))},c&&(this.blob=function(){var t=v(this);if(t)return t;if(this._bodyBlob)return Promise.resolve(this._bodyBlob);if(this._bodyArrayBuffer)return Promise.resolve(new Blob([this._bodyArrayBuffer]));if(this._bodyFormData)throw new Error("could not read FormData body as blob");return Promise.resolve(new Blob([this._bodyText]))},this.arrayBuffer=function(){if(this._bodyArrayBuffer){var t=v(this);return t||(ArrayBuffer.isView(this._bodyArrayBuffer)?Promise.resolve(this._bodyArrayBuffer.buffer.slice(this._bodyArrayBuffer.byteOffset,this._bodyArrayBuffer.byteOffset+this._bodyArrayBuffer.byteLength)):Promise.resolve(this._bodyArrayBuffer))}return this.blob().then(g)}),this.text=function(){var t,r,e,n=v(this);if(n)return n;if(this._bodyBlob)return t=this._bodyBlob,r=new FileReader,e=y(r),r.readAsText(t),e;if(this._bodyArrayBuffer)return Promise.resolve(function(t){for(var r=new Uint8Array(t),e=new Array(r.length),n=0;n<r.length;n++)e[n]=String.fromCharCode(r[n]);return e.join("")}(this._bodyArrayBuffer));if(this._bodyFormData)throw new Error("could not read FormData body as text");return Promise.resolve(this._bodyText)},a&&(this.formData=function(){return this.text().then(O)}),this.json=function(){return this.text().then(JSON.parse)},this}d.prototype.append=function(t,r){t=l(t),r=p(r);var e=this.map[t];this.map[t]=e?e+", "+r:r},d.prototype.delete=function(t){delete this.map[l(t)]},d.prototype.get=function(t){return t=l(t),this.has(t)?this.map[t]:null},d.prototype.has=function(t){return this.map.hasOwnProperty(l(t))},d.prototype.set=function(t,r){this.map[l(t)]=p(r)},d.prototype.forEach=function(t,r){for(var e in this.map)this.map.hasOwnProperty(e)&&t.call(r,this.map[e],e,this)},d.prototype.keys=function(){var t=[];return this.forEach((function(r,e){t.push(e)})),h(t)},d.prototype.values=function(){var t=[];return this.forEach((function(r){t.push(r)})),h(t)},d.prototype.entries=function(){var t=[];return this.forEach((function(r,e){t.push([e,r])})),h(t)},i&&(d.prototype[Symbol.iterator]=d.prototype.entries);var x=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function w(t,r){if(!(this instanceof w))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');var e,n,o=(r=r||{}).body;if(t instanceof w){if(t.bodyUsed)throw new TypeError("Already read");this.url=t.url,this.credentials=t.credentials,r.headers||(this.headers=new d(t.headers)),this.method=t.method,this.mode=t.mode,this.signal=t.signal,o||null==t._bodyInit||(o=t._bodyInit,t.bodyUsed=!0)}else this.url=String(t);if(this.credentials=r.credentials||this.credentials||"same-origin",!r.headers&&this.headers||(this.headers=new d(r.headers)),this.method=(e=r.method||this.method||"GET",n=e.toUpperCase(),x.indexOf(n)>-1?n:e),this.mode=r.mode||this.mode||null,this.signal=r.signal||this.signal,this.referrer=null,("GET"===this.method||"HEAD"===this.method)&&o)throw new TypeError("Body not allowed for GET or HEAD requests");if(this._initBody(o),!("GET"!==this.method&&"HEAD"!==this.method||"no-store"!==r.cache&&"no-cache"!==r.cache)){var i=/([?&])_=[^&]*/;if(i.test(this.url))this.url=this.url.replace(i,"$1_="+(new Date).getTime());else{this.url+=(/\?/.test(this.url)?"&":"?")+"_="+(new Date).getTime()}}}function O(t){var r=new FormData;return t.trim().split("&").forEach((function(t){if(t){var e=t.split("="),n=e.shift().replace(/\+/g," "),o=e.join("=").replace(/\+/g," ");r.append(decodeURIComponent(n),decodeURIComponent(o))}})),r}function E(t,r){if(!(this instanceof E))throw new TypeError('Please use the "new" operator, this DOM object constructor cannot be called as a function.');r||(r={}),this.type="default",this.status=void 0===r.status?200:r.status,this.ok=this.status>=200&&this.status<300,this.statusText=void 0===r.statusText?"":""+r.statusText,this.headers=new d(r.headers),this.url=r.url||"",this._initBody(t)}w.prototype.clone=function(){return new w(this,{body:this._bodyInit})},m.call(w.prototype),m.call(E.prototype),E.prototype.clone=function(){return new E(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new d(this.headers),url:this.url})},E.error=function(){var t=new E(null,{status:0,statusText:""});return t.type="error",t};var S=[301,302,303,307,308];E.redirect=function(t,r){if(-1===S.indexOf(r))throw new RangeError("Invalid status code");return new E(null,{status:r,headers:{location:t}})};var j=n.DOMException;try{new j}catch(t){(j=function(t,r){this.message=t,this.name=r;var e=Error(t);this.stack=e.stack}).prototype=Object.create(Error.prototype),j.prototype.constructor=j}function P(t,r){return new Promise((function(e,o){var i=new w(t,r);if(i.signal&&i.signal.aborted)return o(new j("Aborted","AbortError"));var a=new XMLHttpRequest;function s(){a.abort()}a.onload=function(){var t,r,n={status:a.status,statusText:a.statusText,headers:(t=a.getAllResponseHeaders()||"",r=new d,t.replace(/\r?\n[\t ]+/g," ").split("\r").map((function(t){return 0===t.indexOf("\n")?t.substr(1,t.length):t})).forEach((function(t){var e=t.split(":"),n=e.shift().trim();if(n){var o=e.join(":").trim();r.append(n,o)}})),r)};n.url="responseURL"in a?a.responseURL:n.headers.get("X-Request-URL");var o="response"in a?a.response:a.responseText;setTimeout((function(){e(new E(o,n))}),0)},a.onerror=function(){setTimeout((function(){o(new TypeError("Network request failed"))}),0)},a.ontimeout=function(){setTimeout((function(){o(new TypeError("Network request failed"))}),0)},a.onabort=function(){setTimeout((function(){o(new j("Aborted","AbortError"))}),0)},a.open(i.method,function(t){try{return""===t&&n.location.href?n.location.href:t}catch(r){return t}}(i.url),!0),"include"===i.credentials?a.withCredentials=!0:"omit"===i.credentials&&(a.withCredentials=!1),"responseType"in a&&(c?a.responseType="blob":u&&i.headers.get("Content-Type")&&-1!==i.headers.get("Content-Type").indexOf("application/octet-stream")&&(a.responseType="arraybuffer")),!r||"object"!=typeof r.headers||r.headers instanceof d?i.headers.forEach((function(t,r){a.setRequestHeader(r,t)})):Object.getOwnPropertyNames(r.headers).forEach((function(t){a.setRequestHeader(t,p(r.headers[t]))})),i.signal&&(i.signal.addEventListener("abort",s),a.onreadystatechange=function(){4===a.readyState&&i.signal.removeEventListener("abort",s)}),a.send(void 0===i._bodyInit?null:i._bodyInit)}))}P.polyfill=!0,n.fetch||(n.fetch=P,n.Headers=d,n.Request=w,n.Response=E)}},r={};function e(n){var o=r[n];if(void 0!==o)return o.exports;var i=r[n]={exports:{}};return t[n](i,i.exports,e),i.exports}e.d=function(t,r){for(var n in r)e.o(r,n)&&!e.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:r[n]})},e.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),e.o=function(t,r){return Object.prototype.hasOwnProperty.call(t,r)},e(5666),e(1150),e(9712),e(7147);e(3053)}(); window.page = undefined; window.user = undefined; </script> <script> window.orb = { worldwideNavlinks: '<li class="orb-nav-homedotcom"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/">Home</a></li><li class="orb-nav-newsdotcom"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/sport">Sport</a></li><li class="orb-nav-reeldotcom"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/reel">Reel</a></li><li class="orb-nav-worklife"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/worklife">Worklife</a></li><li class="orb-nav-traveldotcom"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/travel">Travel</a></li><li class="orb-nav-future"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/future">Future</a></li><li class="orb-nav-culture"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/culture">Culture</a></li><li class="orb-nav-music"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/culture/music">Music</a></li><li class="orb-nav-tv"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/schedules/p00fzl9m">TV</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/weather">Weather</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sounds">Sounds</a></li>', } </script> <script src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/api-forge-free.min.js"></script> <link rel="preload" href="https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Rg.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/fonts/reith/2.512/BBCReithSans_W_Bd.woff2" as="font" type="font/woff2" crossorigin> <!-- navid Web Module: 0.2.0-80.bc5da8d --> <!-- searchbox Web Module: 3.0.0-351.272996b --> <!-- navpromo Web Module: 3.0.0-272.f5cddc4 --> <!-- cookies Web Module: 0.0.3-674.a24a86c --> <!-- useractivityhelper Web Module: 1.0.0-202.7fbe59b --> <!-- reverb Web Module: 3.3.0 --> <link rel="stylesheet" href="https://web.archive.org/web/20220115221244cs_/https://static.files.bbci.co.uk/account/id-cta/1.54.4/style/id-cta.css"/><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.54.4/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function () {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof (map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20220115221244/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&ptrt=' + (ptrt ? ptrt[1] : encodeURIComponent(document.location.href))).replace(/\&amp;/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch (e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function () {return window.Promise;});define('idcta-v2/es6-promise', function () {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/account/id-cta/1.54.4/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/account/id-cta/1.54.4/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20220115221244/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function (data) { return data; });define('idcta/translations', ['idcta-v2/translations'], function (data) { return data; });})();</script> <link rel="stylesheet" href="https://web.archive.org/web/20220115221244cs_/https://nav.files.bbci.co.uk/searchbox/d3c099a283f4be8102b8b0bba5796dd7/css/box.css"> <script src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/cookies/1a29e6abc5353658fb90a9e9b2b38fd5/cookie-banner/cookie-library.bundle.js"></script><script type="text/javascript">void 0!==window.define&&define("orb/cookies",function(){return window.bbccookies})</script> <script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20220115221244/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.29.1",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,i){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=i}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var i=function(d,a){window.__reverb.__reverbLoadedPromise.then(function(e){if(d&&d.detail){var i=!!d.detail.item,n=d.detail.label,t=i?"viewability":d.detail.type,o=d.detail.elem,r=d.detail.originalEvent;d.detail.isClick&&(a=d.detail.isClick),e.userActionEvent(t,n,d.detail,o,r,a)}},function(){console.log("Reverb failed to load. Event not sent")})},n=function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){i(e,!1)}),document.addEventListener("bbc-user-click",function(e){i(e,!0)}),document.addEventListener("bbc-page-updated",n),window.addEventListener("pageshow",function(e){e.persisted&&n()})}();</script><script type="text/javascript" src="https://web.archive.org/web/20220115221244js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-3.3.0.js" async></script> <script type="text/javascript" src="/web/20220115221244js_/https://www.bbc.co.uk/accessibility/forproducts/assets/a11y-menu.min.js"></script> <script src="/web/20220115221244js_/https://www.bbc.co.uk/accessibility/forproducts/assets/prettify.js"></script> <!-- Generate with 11ty --> </head> <body> <div id="cookiePrompt"></div> <noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20220115221244im_/https://a1.api.bbc.co.uk/hit.xiti?&amp;col=1&amp;from=p&amp;ptag=js&amp;s=598253&amp;p=unknown&amp;x2=[responsive]&amp;x3=[bbc_website]&amp;x4=[en]&amp;x8=[reverb-3.3.0-nojs]&amp;x11=[]&amp;x12=[]" height="1" width="1" alt=""></p></noscript> <header id="orb-banner" role="banner" aria-label="BBC"><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks new-logo"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#orb-modules">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{&quot;id-cta-type&quot;: &quot;statusbar-orb&quot;}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20220115221244/https://account.bbc.com/account"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script><!-- Because we are now loading the notification bell CSS asynchronously, we need this inline style hack to ensure that the notification div is hidden by default, and shown only if and when the bell code is loaded from notification-ui --><a id="notification-link" class="js-notification-link animated three" href="#" style="display: none"><span class="hidden-span">Notifications</span><div class="notification-link--triangle"></div><div class="notification-link--triangle"></div><span id="not-num"></span></a> </div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/">Home</a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sport">Sport</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/weather">Weather</a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer">iPlayer</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sounds">Sounds</a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/food">Food</a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-arts"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/arts">Arts</a></li><li class="orb-nav-taster"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/taster">Taster</a></li><li class="orb-nav-local"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/news/localnews">Local</a></li><li class="orb-nav-three"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/bbcthree">Three</a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search"> <a class="orb-search__button" href="https://web.archive.org/web/20220115221244/https://search.bbc.co.uk/search" title="Search the BBC">Search</a><form class="b-f" id="orb-search-form" role="search" method="get" action="https://web.archive.org/web/20220115221244/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><label for="orb-search-q">Search the BBC</label><input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" maxlength="100" name="q" placeholder="Search"><button id="orb-search-button" class="orb-search__button">Search the BBC</button><input type="hidden" name="suggid" id="orb-search-suggid"></div></form><form id="orbit-search-form" role="search" method="get" action="https://web.archive.org/web/20220115221244/https://search.bbc.co.uk/search" accept-charset="utf-8"><div> <button id="orbit-search-button"><svg class="search-button-icon" width="1.75rem" height="1.8125rem" viewbox="0 0 28 29" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>Search BBC</title><path d="M11,0 C17.0751322,0 22,4.92486775 22,11 C22,13.5277632 21.1473793,15.8563862 19.7140404,17.7139664 L28,26.0001 L25,29.0001 L16.518046,20.5179339 C14.8960209,21.4603385 13.0110328,22 11,22 C4.92486775,22 0,17.0751322 0,11 C0,4.92486775 4.92486775,0 11,0 Z M11,2.5001 C6.30557963,2.5001 2.5,6.30567963 2.5,11.0001 C2.5,15.6945204 6.30557963,19.5001 11,19.5001 C15.6944204,19.5001 19.5,15.6945204 19.5,11.0001 C19.5,6.30567963 15.6944204,2.5001 11,2.5001 Z" id="Shape"></path></svg><svg class="search-box-icon" width="1rem" height="1rem" viewbox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><path d="M4.31263591,11.9770508 C3.26116255,10.925 2.68223368,9.52721354 2.68223368,8.04036458 C2.68223368,6.55351563 3.26116255,5.15572917 4.31325442,4.10491536 C5.36410928,3.05286458 6.76133182,2.47395833 8.24823886,2.47395833 C9.7351459,2.47395833 11.1336055,3.05348307 12.1850788,4.10491536 C14.3548251,6.27457682 14.3554436,9.80615234 12.1850788,11.9770508 C11.1336055,13.0278646 9.7351459,13.6067708 8.24823886,13.6067708 C6.76195034,13.6067708 5.36410928,13.0278646 4.31263591,11.9770508 L4.31263591,11.9770508 Z M20,17.6059245 L14.9195281,12.525651 C17.0268044,9.39980469 16.7002292,5.12171224 13.9348542,2.35520833 C12.3644478,0.785481771 10.3066526,0 8.24823886,0 C6.19106215,0 4.13264841,0.785481771 2.56347904,2.35520833 C-0.576715236,5.49589844 -0.576715236,10.5860677 2.56347904,13.7255208 C4.13326692,15.2964844 6.19106215,16.0807292 8.24823886,16.0807292 C9.81555269,16.0807292 11.3816295,15.6230469 12.733082,14.7120117 L17.8129354,19.7916667 L20,17.6059245 Z"></path></svg><span>Search BBC</span></button></div></form> </div></div><div id="orb-panels"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <div id="a11y-wrap"> <header id="a11y-navigation" aria-label="Accsessibility Main Navigation"> <div class="an-branding-container b-g-m"> <span class="an-brand">BBC Accessibility</span> </div> </header> <div class="b-g-m"> <main role="main" class="a11y-main-col gel-body-copy"> <h1 class="gel-canon-bold">BBC Accessibility Help</h1> <div class="gel-body-copy"> <p>All audiences are important to the BBC.</p> <p>This page provides links to resources and documents to help users access the BBC's content and to find out about the BBC approach to the development of rich accessible products and services.</p> </div> <div class="gel-section"> <h2>BBC Accessibility Help</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/showsandtours/questions/accessibility-information">BBC Shows and Tours, booking assistance</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer/help/questions/accessibility">BBC iPlayer, Accessibility FAQs</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer/help/questions/accessibility/accessibility-playing-content">BBC iPlayer, Playing Content</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer/categories/audio-described/featured">BBC iPlayer, Audio Described Content</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer/categories/signed/featured">BBC iPlayer, Signed Content</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sounds/help/questions/about-bbc-sounds-and-our-policies/accessibility-info">BBC Sounds Accessibility Information</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies/grownups/age-and-needs/special-needs#filter">Cbeebies, Parents Pages for Children with Special Needs</a></li> </ul> </div> </div> <div class="gel-section"> <h2>BBC Accessibility Policy</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/aboutthebbc/reports/policies">BBC Policies and Guidelines</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/foi/publication-scheme/classes/policies-and-procedures">BBC Freedom of Information</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/foi/publication-scheme/accessibility">BBC Accessibility Policy</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://downloads.bbc.co.uk/diversity/pdf/BBC_Accessibility.pdf">BBC Accessibility Policy Statement</a> [PDF]</li> </ul> </div> </div> <div class="gel-section"> <h2>BBC Programmes and Accessibility</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer/episodes/m000p35p/criptales">BBC iPlayer, Criptales</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sounds/search?q=1800%20Seconds%20on%20Autism&amp;suggid=urn%3Abbc%3Aprogrammes%3Ap06sdq0x">BBC Sounds, 1800 Seconds on Autism</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/programmes/p02r6yqw/episodes/downloads">BBC Sounds, Ouch!</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/programmes/b006m9cb">BBC 2, See Hear</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/programmes/b006qxww">BBC Radio 4, In Touch</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies/shows/something-special">CBeebies, Something Special</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies/shows/magic-hands">CBeebies, Magic Hands</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies/shows/pablo">CBeebies, Pablo</a></li> </ul> </div> </div> <div class="gel-section"> <h2>Useful BBC Accessibility Design and Technical Resources</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/opensource/projects/bbc-a11y">BBC a11y testing tool</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/academy/en/collections/designing-for-screen-readers">BBC Academy - How to Design for Screen Readers</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/accessibility/forproducts/guides/mobile/">BBC Digital Product, Web and Mobile Accessibility Guidelines</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/gel/guidelines/how-to-design-for-accessibility">BBC GEL Designing for Accessibility</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/gel/guidelines/how-to-design-accessible-games">BBC GEL Designing Accessible Games</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/gel/guidelines/how-to-make-accessible-animated-images">BBC GEL Designing Accessible Animated Images</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/gel/guidelines/how-to-design-accessible-email-newsletters">BBC GEL Designing Accessible Email Newsletters</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://bbc.github.io/gel/">BBC GEL Technical Accessibility Documents</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://bbc.github.io/accessibility-news-and-you/">BBC News Accessibility</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/opensource/">BBC Open Source Projects</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://downloads.bbc.co.uk/diversity/pdf/BBC_productionaccessguide_spreads.pdf">BBC Production Accessibility Guide</a> [PDF]</li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/rd/topics/accessibility">BBC Research and Development</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://bbc.github.io/subtitle-guidelines/">BBC Subtitle Guidelines</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://bbc.github.io/uxd-cognitive/">BBC Workplace Neurodiversity Guidelines</a></li> </ul> </div> </div> <div class="gel-section"> <h2>Diversity and Accessibility at the BBC</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/gel/articles/bbc-for-everyone">BBC for Everyone</a> [video]</li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/aboutthebbc/whatwedo/publicservices/accessservices">BBC Access Services Subtitles, Signing and Audio Description</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/aboutthebbc/reports/annualreport">BBC Annual Report</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/creativediversity/">BBC Creative Diversity The Future of Inclusion</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/diversity/">BBC Diversity</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/editorialguidelines/guidance/visually-and-hearing-impaired-audiences">BBC Editorial Policy Accessibility Guidance for Vision and Hearing Impaired Audiences</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://youtu.be/u2K9-JPIPjg">BBC See Hear, How Subtitles are Made</a> [video, external Link]</li> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies/grownups/everyones-welcome">Cbeebies Everyone's Welcome</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://www.ofcom.org.uk/research-and-data/multi-sector-research/accessibility-research">OFCOM Usability and Accessibility Research</a> [external Link]</li> </ul> </div> </div> <div class="gel-section"> <h2>Accessibility for Suppliers</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/supplying/working-with-us/accessibility">BBC Procurement Accessibility Policy and Guidance</a></li> </ul> </div> </div> <div class="gel-section"> <h2>BBC Accessibility on Social Media</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/bbca11y">BBC a11y, The BBC Digital Accessibility Team</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/bbc_ability">BBC Ability, The BBC's Disabled Staff Network</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/BBCCape">BBC CAPE, Creating A Positive Environment</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/bbcouch">BBC Ouch! Original Disability Stories</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/BBCAcademy">BBC Academy, Training and Development</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/bbcpress">BBC Press Office</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/BBCCareers">BBC Careers, Jobs, Careers Advice and Insights into Life at The BBC</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/BBCRD">BBC R&amp;D, Research and Development</a></li> <li><a href="https://web.archive.org/web/20220115221244/https://twitter.com/bbcuxd">BBC UX&amp;D, User Experience and Design Team</a></li> </ul> </div> </div> <div class="gel-section"> <h2>External Accessibility Help</h2> <div class="gel-body-copy"> <ul class="a11y-linklist"> <li><a href="https://web.archive.org/web/20220115221244/https://mcmw.abilitynet.org.uk/">Help with Using Your Computer, Tablet or phone</a> (external Link)</li> <li><a href="https://web.archive.org/web/20220115221244/https://support.apple.com/en-gb/accessibility">Apple Accessibility Support</a> (external site)</li> <li><a href="https://web.archive.org/web/20220115221244/https://www.google.com/accessibility/">Google Accessibility Support</a> (external site)</li> <li><a href="https://web.archive.org/web/20220115221244/https://www.microsoft.com/en-us/accessibility/features?activetab=pivot_1%3aprimaryr2">Microsoft Accessibility Support</a> (external site)</li> </ul> </div> </div> </main> </div> </div> </div> <div id="orb-footer" class="orb-footer" dir="ltr"> <div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-home"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/">Home</a></li><li class="orb-nav-news"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/news">News</a></li><li class="orb-nav-sport"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sport">Sport</a></li><li class="orb-nav-weather"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/weather">Weather</a></li><li class="orb-nav-iplayer"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/iplayer">iPlayer</a></li><li class="orb-nav-sounds"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/sounds">Sounds</a></li><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-food"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/food">Food</a></li><li class="orb-nav-bitesize"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-arts"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/arts">Arts</a></li><li class="orb-nav-taster"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/taster">Taster</a></li><li class="orb-nav-local"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/news/localnews">Local</a></li><li class="orb-nav-three"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/bbcthree">Three</a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb = window.orb || {}; window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20220115221244/https://www.bbcglobalnews.com/">Advertise with us<' + '/a><' + '/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.com/usingthebbc/cookies/how-does-the-bbc-use-cookies-for-advertising/">AdChoices / Do Not Sell My Info<' + '/a><' + '/li>';</script><div class="orb-footer-inner"><div><ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright &copy; 2021 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20220115221244/https://www.bbc.co.uk/editorialguidelines/guidance/feeds-and-links" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script type="importmap">{"imports":{"orbit-drawer":"https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/drawer-api.bundle.js","bbccookies":"https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/cookies/1a29e6abc5353658fb90a9e9b2b38fd5/cookie-banner/cookie-library.module.js"}}</script><script type="module" src="https://web.archive.org/web/20220115221244jm_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/orbit.js" async=""></script><script type="text/javascript" src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/redirect.bundle.js" async=""></script><script type="text/javascript" src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/performance.bundle.js" data-release="3.0.0-1708.64afffb4" data-ux="orb" async=""></script><script id="orb-js-script" data-assetpath="https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/" src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/orb.min.js"></script> <script type="text/javascript">/*<![CDATA[*/ require(['orb/nav'], function(nav) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { nav.loadJs('https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/orbit/fa75cd7320fbe45bcfbbafe7a51f9d56/js/edr.min.js'); } }); }); /*]]>*/</script> <script type="text/javascript">require.config({ paths: { "mybbc/templates": '//web.archive.org/web/20220115221244/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/templates', "mybbc/notifications": '//web.archive.org/web/20220115221244/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/js' } }); require(['mybbc/notifications/NotificationsMain', 'idcta/idcta-1'], function (NotificationsMain, idcta) { var loadNotifications = function (isUK) { if (isUK) { window.bbcpage.loadCSS('//web.archive.org/web/20220115221244/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/css/main.min.css').then(function() { NotificationsMain.run(idcta, '//web.archive.org/web/20220115221244/https://mybbc.files.bbci.co.uk/notification-ui/4.3.7/'); }); } }; window.bbcuser.isUKCombined().then(function(isUK) { loadNotifications(isUK); }); });</script> <script type="module">if (window.bbcuser && window.bbcuser.isUKCombined) { bbcuser.isUKCombined().then(function (isUK) { if (isUK) { const isOrbUx = !!document.querySelector('.orb-nav-pri-container'); if (isOrbUx) { const script = document.createElement('script'); script.src = 'https://web.archive.org/web/20220115221244/https://nav.files.bbci.co.uk/searchbox/d3c099a283f4be8102b8b0bba5796dd7//js/old-search-suggest.js'; script.async = true; script.setAttribute('data-static-prefix', 'https://web.archive.org/web/20220115221244/https://nav.files.bbci.co.uk/searchbox/d3c099a283f4be8102b8b0bba5796dd7/'); script.setAttribute('data-variant', 'default'); document.head.appendChild(script); } else { import('https://web.archive.org/web/20220115221244/https://nav.files.bbci.co.uk/searchbox/d3c099a283f4be8102b8b0bba5796dd7//js/search-suggest.js').then(drawer => { drawer.setupSearchDrawer({ searchboxAppStaticPrefix: 'https://web.archive.org/web/20220115221244/https://nav.files.bbci.co.uk/searchbox/d3c099a283f4be8102b8b0bba5796dd7/', variant: 'default', }); }); } } }); }</script> <script type="text/javascript" src="https://web.archive.org/web/20220115221244js_/https://nav.files.bbci.co.uk/navpromo/34f98a4c8573fabed16dc8acea28feb8/js/footerpromo.js" data-base="https://navpromo.api.bbci.co.uk" data-variant="" async=""></script> <script type="text/javascript">window.COOKIES_STATIC_HOST="https://web.archive.org/web/20220115221244/https://static.files.bbci.co.uk/cookies/1a29e6abc5353658fb90a9e9b2b38fd5/cookie-banner/cookie-prompt/"</script><script src="https://web.archive.org/web/20220115221244js_/https://static.files.bbci.co.uk/cookies/1a29e6abc5353658fb90a9e9b2b38fd5/cookie-banner/cookie-banners.bundle.js" async=""></script> <script src="https://web.archive.org/web/20220115221244js_/https://nav.files.bbci.co.uk//user-activity-helper/7f7e3cfe8ed2cbcec7e57473d0ed5809/js/detectview.bundle.js" async=""></script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script> </body> </html> <!-- FILE ARCHIVED ON 22:12:44 Jan 15, 2022 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 21:39:57 Nov 26, 2024. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.806 exclusion.robots: 0.03 exclusion.robots.policy: 0.018 esindex: 0.011 cdx.remote: 6.45 LoadShardBlock: 173.028 (6) PetaboxLoader3.datanode: 180.034 (8) load_resource: 303.843 (2) PetaboxLoader3.resolve: 177.476 (2) -->

Pages: 1 2 3 4 5 6 7 8 9 10