├── .gitignore ├── assets ├── images │ ├── repos.png │ ├── app_id.png │ ├── new-app.png │ ├── check_runs.png │ ├── create_app.png │ ├── deploy-key.png │ ├── electrocat.png │ ├── gundamcat.png │ ├── identicon.png │ ├── site │ │ ├── logo.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── be-social.gif │ │ ├── rendered-footnote.png │ │ └── favicon.svg │ ├── check_suites.png │ ├── homepage-url.png │ ├── oauth_prompt.png │ ├── private_key.png │ ├── profile-page.png │ ├── repo-settings.png │ ├── sinatra-404.png │ ├── webhook-url.png │ ├── add-deploy-key.png │ ├── lynn_hashimoto.png │ ├── personal_token.png │ ├── webhook-secret.png │ ├── actions-log-group.png │ ├── contribution_cta.png │ ├── intro-to-apps-flow.png │ ├── pagination_sample.png │ ├── smee-new-channel.png │ ├── smee-unique-domain.png │ ├── table-of-contents.png │ ├── webhook_sample_url.png │ ├── environments-sidebar.png │ ├── install_permissions.png │ ├── payload_request_tab.png │ ├── payload_response_tab.png │ ├── secret-scanning-flow.png │ ├── webhook_secret_token.png │ ├── actions-select-workflow.png │ ├── bad-screenshot-example.png │ ├── check_run_annotations.png │ ├── git-database-overview.png │ ├── good-screenshot-example.png │ ├── text-match-search-api.png │ ├── actions-workflow-dispatch.png │ ├── actions-approve-deployments.png │ ├── actions-review-deployments.png │ ├── webhooks_recent_deliveries.png │ ├── actions-manually-run-workflow.png │ ├── actions-runner-installed-software-link.png │ └── installing-github-enterprise-server-on-aws.png └── static │ ├── 0s8YxtA8VSFhWu4HYZUhw │ ├── _ssgManifest.js │ └── _buildManifest.js │ ├── css │ ├── dd306679c9f68cf52b62.css │ ├── d295182d1a641491182d.css │ ├── 6e8fb69a1b143c878a36.css │ ├── e1865f2991efb8bf9f4a.css │ ├── a9399f931f88e7ca3226.css │ └── 4b91b3c79044cdd85bab.css │ └── chunks │ ├── pages │ ├── index-a30b17cdecae90149cf2.js │ ├── [versionId] │ │ ├── [productId]-d90737b06a3bc64ca1ae.js │ │ ├── [productId] │ │ │ └── [...restPage]-ecf1c037e12964e76798.js │ │ ├── actions │ │ │ └── automating-builds-and-tests │ │ │ │ └── building-and-testing-nodejs-or-python-8aa794d3713b437b8140.js │ │ ├── codespaces │ │ │ └── setting-up-your-project-for-codespaces │ │ │ │ └── setting-up-your-project-for-codespaces-254676c6f8868fd185ad.js │ │ └── graphql │ │ │ └── overview │ │ │ └── explorer-809cdab2aa7a0a761e7c.js │ ├── [versionId]-ea1b03edd27f18758ce3.js │ ├── _error-c4ab2a6832d909dabb6d.js │ ├── 500-88ee590904509b4c6c7f.js │ └── 404-96fa0b9cf82dec0ba9c0.js │ ├── 37.51ecb37b11059be7de05.js │ ├── webpack-4dbd7df24731c507b010.js │ ├── 792.0d477648adb8e941f9ec.js │ ├── 729-74bb5ca202eb8230e4e7.js │ ├── 270.cff8aa9425e486bbc69d.js │ ├── 113-6f2e30a583e771730fab.js │ └── 691-ff48621ef0db165980c2.js ├── express-sirv.js ├── express-serve-static.js ├── polka-sirv.js ├── polka-serve-static.js ├── fastify-static.js ├── package.json └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /assets/images/repos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/repos.png -------------------------------------------------------------------------------- /assets/images/app_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/app_id.png -------------------------------------------------------------------------------- /assets/images/new-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/new-app.png -------------------------------------------------------------------------------- /assets/images/check_runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/check_runs.png -------------------------------------------------------------------------------- /assets/images/create_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/create_app.png -------------------------------------------------------------------------------- /assets/images/deploy-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/deploy-key.png -------------------------------------------------------------------------------- /assets/images/electrocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/electrocat.png -------------------------------------------------------------------------------- /assets/images/gundamcat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/gundamcat.png -------------------------------------------------------------------------------- /assets/images/identicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/identicon.png -------------------------------------------------------------------------------- /assets/images/site/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/site/logo.png -------------------------------------------------------------------------------- /assets/static/0s8YxtA8VSFhWu4HYZUhw/_ssgManifest.js: -------------------------------------------------------------------------------- 1 | self.__SSG_MANIFEST=new Set,self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB(); -------------------------------------------------------------------------------- /assets/images/check_suites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/check_suites.png -------------------------------------------------------------------------------- /assets/images/homepage-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/homepage-url.png -------------------------------------------------------------------------------- /assets/images/oauth_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/oauth_prompt.png -------------------------------------------------------------------------------- /assets/images/private_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/private_key.png -------------------------------------------------------------------------------- /assets/images/profile-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/profile-page.png -------------------------------------------------------------------------------- /assets/images/repo-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/repo-settings.png -------------------------------------------------------------------------------- /assets/images/sinatra-404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/sinatra-404.png -------------------------------------------------------------------------------- /assets/images/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/site/favicon.ico -------------------------------------------------------------------------------- /assets/images/site/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/site/favicon.png -------------------------------------------------------------------------------- /assets/images/webhook-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/webhook-url.png -------------------------------------------------------------------------------- /assets/images/add-deploy-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/add-deploy-key.png -------------------------------------------------------------------------------- /assets/images/lynn_hashimoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/lynn_hashimoto.png -------------------------------------------------------------------------------- /assets/images/personal_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/personal_token.png -------------------------------------------------------------------------------- /assets/images/site/be-social.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/site/be-social.gif -------------------------------------------------------------------------------- /assets/images/webhook-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/webhook-secret.png -------------------------------------------------------------------------------- /assets/images/actions-log-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-log-group.png -------------------------------------------------------------------------------- /assets/images/contribution_cta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/contribution_cta.png -------------------------------------------------------------------------------- /assets/images/intro-to-apps-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/intro-to-apps-flow.png -------------------------------------------------------------------------------- /assets/images/pagination_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/pagination_sample.png -------------------------------------------------------------------------------- /assets/images/smee-new-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/smee-new-channel.png -------------------------------------------------------------------------------- /assets/images/smee-unique-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/smee-unique-domain.png -------------------------------------------------------------------------------- /assets/images/table-of-contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/table-of-contents.png -------------------------------------------------------------------------------- /assets/images/webhook_sample_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/webhook_sample_url.png -------------------------------------------------------------------------------- /assets/images/environments-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/environments-sidebar.png -------------------------------------------------------------------------------- /assets/images/install_permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/install_permissions.png -------------------------------------------------------------------------------- /assets/images/payload_request_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/payload_request_tab.png -------------------------------------------------------------------------------- /assets/images/payload_response_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/payload_response_tab.png -------------------------------------------------------------------------------- /assets/images/secret-scanning-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/secret-scanning-flow.png -------------------------------------------------------------------------------- /assets/images/webhook_secret_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/webhook_secret_token.png -------------------------------------------------------------------------------- /assets/images/actions-select-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-select-workflow.png -------------------------------------------------------------------------------- /assets/images/bad-screenshot-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/bad-screenshot-example.png -------------------------------------------------------------------------------- /assets/images/check_run_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/check_run_annotations.png -------------------------------------------------------------------------------- /assets/images/git-database-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/git-database-overview.png -------------------------------------------------------------------------------- /assets/images/good-screenshot-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/good-screenshot-example.png -------------------------------------------------------------------------------- /assets/images/site/rendered-footnote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/site/rendered-footnote.png -------------------------------------------------------------------------------- /assets/images/text-match-search-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/text-match-search-api.png -------------------------------------------------------------------------------- /assets/images/actions-workflow-dispatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-workflow-dispatch.png -------------------------------------------------------------------------------- /assets/images/actions-approve-deployments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-approve-deployments.png -------------------------------------------------------------------------------- /assets/images/actions-review-deployments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-review-deployments.png -------------------------------------------------------------------------------- /assets/images/webhooks_recent_deliveries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/webhooks_recent_deliveries.png -------------------------------------------------------------------------------- /assets/images/actions-manually-run-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-manually-run-workflow.png -------------------------------------------------------------------------------- /assets/static/css/dd306679c9f68cf52b62.css: -------------------------------------------------------------------------------- 1 | .Lead_container__7YW6Y code{font-size:85%;background-color:var(--color-canvas-subtle);border-radius:6px;padding:.1em .2em} -------------------------------------------------------------------------------- /assets/images/actions-runner-installed-software-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/actions-runner-installed-software-link.png -------------------------------------------------------------------------------- /assets/images/installing-github-enterprise-server-on-aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterbe/express-vs-fastify-vs-polka/main/assets/images/installing-github-enterprise-server-on-aws.png -------------------------------------------------------------------------------- /assets/static/chunks/pages/index-a30b17cdecae90149cf2.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[405],{45301:function(n,_,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/",function(){return u(9691)}])}},function(n){n.O(0,[547,478,729,967,691,774,888,179],(function(){return _=45301,n(n.s=_);var _}));var _=n.O();_N_E=_}]); -------------------------------------------------------------------------------- /express-sirv.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const app = express(); 3 | const port = 3000; 4 | 5 | app.use(require("sirv")("assets")); 6 | 7 | app.get("/", (req, res) => { 8 | res.send("Hello World!"); 9 | }); 10 | 11 | app.listen(port, () => { 12 | console.log(`Example app listening on port ${port}`); 13 | }); 14 | -------------------------------------------------------------------------------- /express-serve-static.js: -------------------------------------------------------------------------------- 1 | const express = require("express"); 2 | const app = express(); 3 | const port = 3000; 4 | 5 | app.use(express.static("assets")); 6 | 7 | app.get("/", (req, res) => { 8 | res.send("Hello World!"); 9 | }); 10 | 11 | app.listen(port, () => { 12 | console.log(`Example app listening on port ${port}`); 13 | }); 14 | -------------------------------------------------------------------------------- /assets/static/chunks/pages/[versionId]/[productId]-d90737b06a3bc64ca1ae.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[190],{67790:function(n,_,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/[versionId]/[productId]",function(){return u(64485)}])}},function(n){n.O(0,[774,547,478,729,113,967,485,888,179],(function(){return _=67790,n(n.s=_);var _}));var _=n.O();_N_E=_}]); -------------------------------------------------------------------------------- /polka-sirv.js: -------------------------------------------------------------------------------- 1 | const polka = require("polka"); 2 | 3 | const { PORT = 3000 } = process.env; 4 | const serve = require("sirv")("assets"); 5 | 6 | polka() 7 | .use(serve) 8 | .get("/health", (req, res) => { 9 | res.end("OK"); 10 | }) 11 | .listen(PORT, (err) => { 12 | if (err) throw err; 13 | console.log(`> Running on localhost:${PORT}`); 14 | }); 15 | -------------------------------------------------------------------------------- /polka-serve-static.js: -------------------------------------------------------------------------------- 1 | const polka = require("polka"); 2 | 3 | const { PORT = 3000 } = process.env; 4 | const serve = require("serve-static")("assets"); 5 | 6 | polka() 7 | .use(serve) 8 | .get("/health", (req, res) => { 9 | res.end("OK"); 10 | }) 11 | .listen(PORT, (err) => { 12 | if (err) throw err; 13 | console.log(`> Running on localhost:${PORT}`); 14 | }); 15 | -------------------------------------------------------------------------------- /assets/static/chunks/pages/[versionId]-ea1b03edd27f18758ce3.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[938],{84173:function(n,u,_){"use strict";_.r(u),_.d(u,{__N_SSP:function(){return r}});var t=_(9691),r=!0;u.default=t.default},81074:function(n,u,_){(window.__NEXT_P=window.__NEXT_P||[]).push(["/[versionId]",function(){return _(84173)}])}},function(n){n.O(0,[547,478,729,967,691,774,888,179],(function(){return u=81074,n(n.s=u);var u}));var u=n.O();_N_E=u}]); -------------------------------------------------------------------------------- /assets/static/chunks/pages/[versionId]/[productId]/[...restPage]-ecf1c037e12964e76798.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[66],{51648:function(n,u,t){"use strict";t.r(u),t.d(u,{__N_SSP:function(){return r}});var _=t(64485),r=!0;u.default=_.default},6854:function(n,u,t){(window.__NEXT_P=window.__NEXT_P||[]).push(["/[versionId]/[productId]/[...restPage]",function(){return t(51648)}])}},function(n){n.O(0,[774,547,478,729,113,967,485,888,179],(function(){return u=6854,n(n.s=u);var u}));var u=n.O();_N_E=u}]); -------------------------------------------------------------------------------- /fastify-static.js: -------------------------------------------------------------------------------- 1 | const path = require("path"); 2 | const fastify = require("fastify")({ 3 | // logger: true, 4 | }); 5 | 6 | fastify.register(require("fastify-static"), { 7 | root: path.resolve("assets"), 8 | // prefix: '/public/', // optional: default '/' 9 | }); 10 | 11 | fastify.get("/", async (request, reply) => { 12 | return { hello: "world" }; 13 | }); 14 | 15 | const start = async () => { 16 | try { 17 | await fastify.listen(3000); 18 | } catch (err) { 19 | fastify.log.error(err); 20 | process.exit(1); 21 | } 22 | }; 23 | start(); 24 | -------------------------------------------------------------------------------- /assets/static/chunks/pages/[versionId]/actions/automating-builds-and-tests/building-and-testing-nodejs-or-python-8aa794d3713b437b8140.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[510],{39042:function(n,t,u){"use strict";u.r(t),u.d(t,{__N_SSP:function(){return _}});var i=u(64646),_=!0;t.default=i.Z},40542:function(n,t,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/[versionId]/actions/automating-builds-and-tests/building-and-testing-nodejs-or-python",function(){return u(39042)}])}},function(n){n.O(0,[774,547,478,414,967,646,888,179],(function(){return t=40542,n(n.s=t);var t}));var t=n.O();_N_E=t}]); -------------------------------------------------------------------------------- /assets/static/chunks/pages/[versionId]/codespaces/setting-up-your-project-for-codespaces/setting-up-your-project-for-codespaces-254676c6f8868fd185ad.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[651],{63085:function(n,e,u){"use strict";u.r(e),u.d(e,{__N_SSP:function(){return r}});var o=u(64646),r=!0;e.default=o.Z},40988:function(n,e,u){(window.__NEXT_P=window.__NEXT_P||[]).push(["/[versionId]/codespaces/setting-up-your-project-for-codespaces/setting-up-your-project-for-codespaces",function(){return u(63085)}])}},function(n){n.O(0,[774,547,478,414,967,646,888,179],(function(){return e=40988,n(n.s=e);var e}));var e=n.O();_N_E=e}]); -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "express-vs-fastify-vs-polka", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "fastify-static": "NODE_ENV=production node fastify-static.js", 8 | "express-serve-static": "NODE_ENV=production node express-serve-static.js", 9 | "express-sirv": "NODE_ENV=production node express-sirv.js", 10 | "polka-serve-static": "NODE_ENV=production node polka-serve-static.js", 11 | "polka-sirv": "NODE_ENV=production node polka-sirv.js" 12 | }, 13 | "keywords": [], 14 | "author": "", 15 | "license": "ISC", 16 | "dependencies": { 17 | "express": "4.17.2", 18 | "fastify": "3.27.1", 19 | "fastify-static": "4.5.0", 20 | "polka": "0.5.2", 21 | "serve-static": "1.14.2", 22 | "sirv": "2.0.2" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /assets/images/site/favicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /assets/static/chunks/pages/[versionId]/graphql/overview/explorer-809cdab2aa7a0a761e7c.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[344],{57631:function(e,n,r){"use strict";r.r(n),r.d(n,{__N_SSP:function(){return s},default:function(){return a}});var i=r(91013),l=r(27967),t=r(67294),o=r(85893),s=!0;function a(e){var n=e.mainContext,r=e.graphqlExplorerUrl,s=n.page,a=n.airGap,c=(0,t.useRef)(null);return(0,t.useEffect)((function(){var e,n;window.location.search&&(null===(e=c.current)||void 0===e||null===(n=e.contentWindow)||void 0===n||n.postMessage(window.location.search,r))}),[]),(0,o.jsx)(i.Tr.Provider,{value:n,children:(0,o.jsxs)(l.H,{children:[(0,o.jsx)("div",{className:"container-xl px-3 px-md-6 my-4 my-lg-4",children:(0,o.jsx)("h1",{children:s.title})}),(0,o.jsx)("div",{children:a?(0,o.jsx)("p",{children:"GraphQL explorer is not available on this environment."}):(0,o.jsx)("iframe",{ref:c,style:{height:715},className:"border width-full",scrolling:"no",src:r,children:(0,o.jsx)("p",{children:"You must have iframes enabled to use this feature."})})})]})})}},64e3:function(e,n,r){(window.__NEXT_P=window.__NEXT_P||[]).push(["/[versionId]/graphql/overview/explorer",function(){return r(57631)}])}},function(e){e.O(0,[547,478,967,774,888,179],(function(){return n=64e3,e(e.s=n);var n}));var n=e.O();_N_E=n}]); -------------------------------------------------------------------------------- /assets/static/css/d295182d1a641491182d.css: -------------------------------------------------------------------------------- 1 | .SidebarProduct_sidebarArticle____jm-:before{content:"";position:absolute;left:-webkit-calc(1.5rem + 2px);left:calc(1.5rem + 2px);height:100%;border-left:1px solid var(--color-fg-default);width:1px;top:0}.SidebarProduct_sidebarArticleActive__2_znz:before{border-left-width:2px}.HeaderNotifications_container__2uS-f{position:relative}.HeaderNotifications_container__2uS-f a{color:var(--color-accent-fg);text-decoration:underline}.Search_resultsContainer__3RRWL mark{font-weight:bolder;background:none;color:inherit}.Search_searchResultContent__3-h9R mark{font-weight:bolder}.Search_searchResultContent__3-h9R{max-height:4rem}.Search_resultsContainerHeader__2sv4X{width:0;border-radius:0 0 0 4px;-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.Search_resultsContainerOpen__2sCFk.Search_resultsContainerHeader__2sv4X{width:60vw;max-width:48rem}.Search_searchInput__ydDV7{-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.Search_searchInputHeader__CsM1j{width:16rem}.Search_headerSearchOpen___Gvzu{background:var(--color-primer-canvas-backdrop)}.Search_searchInputExpanded__2V6qC{width:54vw;max-width:43rem}.Search_headerSearchResults__1e7fz{max-height:80vh}.Search_searchWording__B5Adz{margin:.6rem 0 .5rem .5rem}.Search_selectWording__24SMn{margin:.64rem .5rem 0 0}.Search_versionSearchContainer__2D7UK{overflow:hidden}.Breadcrumbs_breadcrumbs__3yP-O{clip-path:inset(-.5rem -.5rem -.5rem 0)}.Header_header__GIthp{display:unset}.Header_portalRoot__spMj8 *{z-index:3!important}.Survey_visuallyHidden__2GBPC{opacity:0;margin:-.4em}.Survey_customRadio__2woIu+label:before{content:"X";color:transparent;margin:0 -33px 0 -17px;padding:7px 20px}.Survey_customRadio__2woIu:focus+label:before{outline:1px auto -webkit-focus-ring-color} -------------------------------------------------------------------------------- /assets/static/chunks/37.51ecb37b11059be7de05.js: -------------------------------------------------------------------------------- 1 | "use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[37],{61037:function(r,t,n){n.r(t),n.d(t,{default:function(){return f}});var e=n(67294),o=n(30837),a=n(14636);function i(r,t){var n="undefined"!==typeof Symbol&&r[Symbol.iterator]||r["@@iterator"];if(!n){if(Array.isArray(r)||(n=function(r,t){if(!r)return;if("string"===typeof r)return u(r,t);var n=Object.prototype.toString.call(r).slice(8,-1);"Object"===n&&r.constructor&&(n=r.constructor.name);if("Map"===n||"Set"===n)return Array.from(r);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return u(r,t)}(r))||t&&r&&"number"===typeof r.length){n&&(r=n);var e=0,o=function(){};return{s:o,n:function(){return e>=r.length?{done:!0}:{done:!1,value:r[e++]}},e:function(r){throw r},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var a,i=!0,l=!1;return{s:function(){n=n.call(r)},n:function(){var r=n.next();return i=r.done,r},e:function(r){l=!0,a=r},f:function(){try{i||null==n.return||n.return()}finally{if(l)throw a}}}}function u(r,t){(null==t||t>r.length)&&(t=r.length);for(var n=0,e=new Array(t);n=i)&&Object.keys(n.O).every((function(e){return n.O[e](r[c])}))?r.splice(c--,1):(f=!1,i0&&e[a-1][2]>i;a--)e[a]=e[a-1];e[a]=[r,o,i]}}(),n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.f={},n.e=function(e){return Promise.all(Object.keys(n.f).reduce((function(t,r){return n.f[r](e,t),t}),[]))},n.u=function(e){return"static/chunks/"+e+"."+{37:"51ecb37b11059be7de05",270:"cff8aa9425e486bbc69d",792:"0d477648adb8e941f9ec"}[e]+".js"},n.miniCssF=function(e){return"static/css/"+{66:"a9399f931f88e7ca3226",190:"a9399f931f88e7ca3226",197:"dd306679c9f68cf52b62",344:"d295182d1a641491182d",405:"6e8fb69a1b143c878a36",488:"4b91b3c79044cdd85bab",510:"e1865f2991efb8bf9f4a",573:"dd306679c9f68cf52b62",651:"e1865f2991efb8bf9f4a",820:"dd306679c9f68cf52b62",888:"cb969f8a55b248825acc",938:"6e8fb69a1b143c878a36"}[e]+".css"},n.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={},t="_N_E:";n.l=function(r,o,i,u){if(e[r])e[r].push(o);else{var f,c;if(void 0!==i)for(var d=document.getElementsByTagName("script"),a=0;a=0&&(l=!1),r[s?"replace":"push"](t,n,{shallow:i,locale:o,scroll:l}))}(e,s,d,p,m,v,x,j)},onMouseEnter:function(e){c.isLocalURL(d)&&(r.props&&"function"===typeof r.props.onMouseEnter&&r.props.onMouseEnter(e),u(s,d,p,{priority:!0}))}};if(e.passHref||"a"===r.type&&!("href"in r.props)){var E="undefined"!==typeof j?j:s&&s.locale,k=s&&s.isLocaleDomain&&c.getDomainLocale(p,E,s&&s.locales,s&&s.domainLocales);_.href=k||c.addBasePath(c.addLocale(p,E,s&&s.defaultLocale))}return i.default.cloneElement(r,_)};r.default=f},7426:function(e,r,t){"use strict";var n=t(53848);Object.defineProperty(r,"__esModule",{value:!0}),r.useIntersection=function(e){var r=e.rootMargin,t=e.disabled||!c,o=s.useRef(),a=s.useState(!1),u=n(a,2),f=u[0],d=u[1],p=s.useCallback((function(e){o.current&&(o.current(),o.current=void 0),t||f||e&&e.tagName&&(o.current=function(e,r,t){var n=function(e){var r=e.rootMargin||"",t=l.get(r);if(t)return t;var n=new Map,s=new IntersectionObserver((function(e){e.forEach((function(e){var r=n.get(e.target),t=e.isIntersecting||e.intersectionRatio>0;r&&t&&r(t)}))}),e);return l.set(r,t={id:r,observer:s,elements:n}),t}(t),s=n.id,i=n.observer,c=n.elements;return c.set(e,r),i.observe(e),function(){c.delete(e),i.unobserve(e),0===c.size&&(i.disconnect(),l.delete(s))}}(e,(function(e){return e&&d(e)}),{rootMargin:r}))}),[t,r,f]);return s.useEffect((function(){if(!c&&!f){var e=i.requestIdleCallback((function(){return d(!0)}));return function(){return i.cancelIdleCallback(e)}}}),[f]),[p,f]};var s=t(67294),i=t(73447),c="undefined"!==typeof IntersectionObserver;var l=new Map},33020:function(e,r,t){"use strict";t.r(r);var n=t(25687),s=t(85893);r.default=function(){return(0,s.jsx)(n.pY,{})}},21711:function(e,r,t){(window.__NEXT_P=window.__NEXT_P||[]).push(["/_error",function(){return t(33020)}])},48072:function(e){e.exports={container:"Lead_container__7YW6Y"}},41664:function(e,r,t){e.exports=t(92167)},11163:function(e,r,t){e.exports=t(34651)}},function(e){e.O(0,[547,774,888,179],(function(){return r=21711,e(e.s=r);var r}));var r=e.O();_N_E=r}]); -------------------------------------------------------------------------------- /assets/static/chunks/pages/500-88ee590904509b4c6c7f.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[573],{94184:function(e,t){var r;!function(){"use strict";var n={}.hasOwnProperty;function s(){for(var e=[],t=0;t=0&&(l=!1),t[s?"replace":"push"](r,n,{shallow:i,locale:o,scroll:l}))}(e,s,d,p,m,v,x,j)},onMouseEnter:function(e){c.isLocalURL(d)&&(t.props&&"function"===typeof t.props.onMouseEnter&&t.props.onMouseEnter(e),u(s,d,p,{priority:!0}))}};if(e.passHref||"a"===t.type&&!("href"in t.props)){var E="undefined"!==typeof j?j:s&&s.locale,k=s&&s.isLocaleDomain&&c.getDomainLocale(p,E,s&&s.locales,s&&s.domainLocales);_.href=k||c.addBasePath(c.addLocale(p,E,s&&s.defaultLocale))}return i.default.cloneElement(t,_)};t.default=f},7426:function(e,t,r){"use strict";var n=r(53848);Object.defineProperty(t,"__esModule",{value:!0}),t.useIntersection=function(e){var t=e.rootMargin,r=e.disabled||!c,o=s.useRef(),a=s.useState(!1),u=n(a,2),f=u[0],d=u[1],p=s.useCallback((function(e){o.current&&(o.current(),o.current=void 0),r||f||e&&e.tagName&&(o.current=function(e,t,r){var n=function(e){var t=e.rootMargin||"",r=l.get(t);if(r)return r;var n=new Map,s=new IntersectionObserver((function(e){e.forEach((function(e){var t=n.get(e.target),r=e.isIntersecting||e.intersectionRatio>0;t&&r&&t(r)}))}),e);return l.set(t,r={id:t,observer:s,elements:n}),r}(r),s=n.id,i=n.observer,c=n.elements;return c.set(e,t),i.observe(e),function(){c.delete(e),i.unobserve(e),0===c.size&&(i.disconnect(),l.delete(s))}}(e,(function(e){return e&&d(e)}),{rootMargin:t}))}),[r,t,f]);return s.useEffect((function(){if(!c&&!f){var e=i.requestIdleCallback((function(){return d(!0)}));return function(){return i.cancelIdleCallback(e)}}}),[f]),[p,f]};var s=r(67294),i=r(73447),c="undefined"!==typeof IntersectionObserver;var l=new Map},28608:function(e,t,r){"use strict";r.r(t),r.d(t,{default:function(){return i}});var n=r(25687),s=r(85893);function i(){return(0,s.jsx)(n.pY,{})}},50662:function(e,t,r){(window.__NEXT_P=window.__NEXT_P||[]).push(["/500",function(){return r(28608)}])},48072:function(e){e.exports={container:"Lead_container__7YW6Y"}},41664:function(e,t,r){e.exports=r(92167)},11163:function(e,t,r){e.exports=r(34651)}},function(e){e.O(0,[547,774,888,179],(function(){return t=50662,e(e.s=t);var t}));var t=e.O();_N_E=t}]); -------------------------------------------------------------------------------- /assets/static/chunks/pages/404-96fa0b9cf82dec0ba9c0.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[197],{94184:function(e,t){var r;!function(){"use strict";var n={}.hasOwnProperty;function s(){for(var e=[],t=0;t=0&&(l=!1),t[s?"replace":"push"](r,n,{shallow:i,locale:o,scroll:l}))}(e,s,d,h,m,x,v,j)},onMouseEnter:function(e){c.isLocalURL(d)&&(t.props&&"function"===typeof t.props.onMouseEnter&&t.props.onMouseEnter(e),u(s,d,h,{priority:!0}))}};if(e.passHref||"a"===t.type&&!("href"in t.props)){var E="undefined"!==typeof j?j:s&&s.locale,k=s&&s.isLocaleDomain&&c.getDomainLocale(h,E,s&&s.locales,s&&s.domainLocales);_.href=k||c.addBasePath(c.addLocale(h,E,s&&s.defaultLocale))}return i.default.cloneElement(t,_)};t.default=f},7426:function(e,t,r){"use strict";var n=r(53848);Object.defineProperty(t,"__esModule",{value:!0}),t.useIntersection=function(e){var t=e.rootMargin,r=e.disabled||!c,o=s.useRef(),a=s.useState(!1),u=n(a,2),f=u[0],d=u[1],h=s.useCallback((function(e){o.current&&(o.current(),o.current=void 0),r||f||e&&e.tagName&&(o.current=function(e,t,r){var n=function(e){var t=e.rootMargin||"",r=l.get(t);if(r)return r;var n=new Map,s=new IntersectionObserver((function(e){e.forEach((function(e){var t=n.get(e.target),r=e.isIntersecting||e.intersectionRatio>0;t&&r&&t(r)}))}),e);return l.set(t,r={id:t,observer:s,elements:n}),r}(r),s=n.id,i=n.observer,c=n.elements;return c.set(e,t),i.observe(e),function(){c.delete(e),i.unobserve(e),0===c.size&&(i.disconnect(),l.delete(s))}}(e,(function(e){return e&&d(e)}),{rootMargin:t}))}),[r,t,f]);return s.useEffect((function(){if(!c&&!f){var e=i.requestIdleCallback((function(){return d(!0)}));return function(){return i.cancelIdleCallback(e)}}}),[f]),[h,f]};var s=r(67294),i=r(73447),c="undefined"!==typeof IntersectionObserver;var l=new Map},97348:function(e,t,r){"use strict";r.r(t);var n=r(25687),s=r(9008),i=r(85529),c=r(52638),l=r(97527),o=r(85893);t.default=function(){var e=(0,c.a)().isEnterprise;return(0,o.jsxs)("div",{className:"min-h-screen d-flex flex-column",children:[(0,o.jsxs)(s.default,{children:[(0,o.jsx)("title",{children:"404 - Page not found"}),(0,o.jsx)("meta",{name:"status",content:"404"})]}),(0,o.jsx)(n.AG,{}),(0,o.jsx)("div",{className:"container-xl p-responsive py-6 width-full flex-1",children:(0,o.jsxs)("article",{className:"col-md-10 col-lg-7 mx-auto",children:[(0,o.jsx)("h1",{children:"Ooops!"}),(0,o.jsx)(l.r,{children:"It looks like this page doesn't exist."}),(0,o.jsx)("p",{className:"f3",children:"We track these errors automatically, but if the problem persists please feel free to contact us."}),(0,o.jsxs)("a",{id:"contact-us",href:e?"https://enterprise.github.com/support":"https://support.github.com/contact",className:"btn btn-outline mt-2",children:[(0,o.jsx)(i.CommentDiscussionIcon,{size:"small",className:"octicon mr-1"}),"Contact support"]})]})}),(0,o.jsx)(n.zb,{})]})}},9014:function(e,t,r){(window.__NEXT_P=window.__NEXT_P||[]).push(["/404",function(){return r(97348)}])},48072:function(e){e.exports={container:"Lead_container__7YW6Y"}},41664:function(e,t,r){e.exports=r(92167)},11163:function(e,t,r){e.exports=r(34651)}},function(e){e.O(0,[547,774,888,179],(function(){return t=9014,e(e.s=t);var t}));var t=e.O();_N_E=t}]); -------------------------------------------------------------------------------- /assets/static/css/e1865f2991efb8bf9f4a.css: -------------------------------------------------------------------------------- 1 | .MarkdownContent_markdownBody__2Fa4B [class~=highlight] pre,.MarkdownContent_markdownBody__2Fa4B pre{margin-top:.5rem}.MarkdownContent_markdownBody__2Fa4B [class~=height-constrained-code-block] pre{max-height:32rem;overflow:auto}.MarkdownContent_markdownBody__2Fa4B [class~=code-extra]{margin-top:1.5rem}.MarkdownContent_markdownBody__2Fa4B [class~=code-extra] pre{margin-top:0!important;border-top-left-radius:0!important;border-top-right-radius:0!important;border-left:1px solid var(--color-border-default)!important;border-bottom:1px solid var(--color-border-default)!important;border-right:1px solid var(--color-border-default)!important}.MarkdownContent_markdownBody__2Fa4B pre [class~=bluebox],.MarkdownContent_markdownBody__2Fa4B pre [class~=greenbox],.MarkdownContent_markdownBody__2Fa4B pre [class~=redbox]{color:var(--color-fg-on-emphasis);padding:0 .25rem;border-radius:4px}.MarkdownContent_markdownBody__2Fa4B pre [class~=redbox]{background-color:var(--color-danger-emphasis)}.MarkdownContent_markdownBody__2Fa4B pre [class~=greenbox]{background-color:var(--color-success-emphasis)}.MarkdownContent_markdownBody__2Fa4B pre [class~=bluebox]{background-color:var(--color-accent-emphasis)}.MarkdownContent_markdownBody__2Fa4B h1,.MarkdownContent_markdownBody__2Fa4B h2,.MarkdownContent_markdownBody__2Fa4B h3,.MarkdownContent_markdownBody__2Fa4B h4,.MarkdownContent_markdownBody__2Fa4B h5{padding-top:1rem}.MarkdownContent_markdownBody__2Fa4B h2 a{color:var(--color-accent-fg)}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling){counter-reset:li;list-style:none;position:relative;padding-bottom:.5rem;padding-left:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li{padding:.5rem 0 .5rem 2.5rem;border:0;position:relative;margin-bottom:.25rem}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li:before{width:-webkit-calc(1.5rem - 2px);width:calc(1.5rem - 2px);height:-webkit-calc(1.5rem - 2px);height:calc(1.5rem - 2px);font-size:-webkit-calc(1rem - 2px);font-size:calc(1rem - 2px);margin:1px 0 0 .5rem;content:counter(li);counter-increment:li;position:absolute;left:0;color:var(--color-canvas-default);font-weight:500;text-align:center;border-radius:50%;background-color:var(--color-fg-default)}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p{margin:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p:first-child{margin-top:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li [class~=extended-markdown],.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p:not(:first-child){margin-top:1rem}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling) ol li:before.no-styling{display:none}.MarkdownContent_markdownBody__2Fa4B ol ol,.MarkdownContent_markdownBody__2Fa4B ol ul,.MarkdownContent_markdownBody__2Fa4B ul ol,.MarkdownContent_markdownBody__2Fa4B ul ul{margin-top:1rem;margin-bottom:1rem}.MarkdownContent_markdownBody__2Fa4B div>ol:not([type]){list-style-type:none}.MarkdownContent_markdownBody__2Fa4B table{display:table;border-collapse:collapse;position:relative;font-size:90%;width:100%;line-height:1.5;table-layout:auto}.MarkdownContent_markdownBody__2Fa4B table code{font-size:85%;padding:.2em .4em;background-color:var(--color-canvas-subtle);border-radius:6px}.MarkdownContent_markdownBody__2Fa4B table pre>code{padding:0;background-color:transparent}.MarkdownContent_markdownBody__2Fa4B table thead tr{border:none}.MarkdownContent_markdownBody__2Fa4B table th{font-weight:400;text-align:left;position:sticky;vertical-align:top;z-index:1;top:0;background:var(--color-canvas-default);-webkit-box-shadow:0 3px 0 0 var(--color-canvas-subtle);box-shadow:0 3px 0 0 var(--color-canvas-subtle);padding:.75rem .5rem;border:0}.MarkdownContent_markdownBody__2Fa4B table th[align=center]{text-align:center}.MarkdownContent_markdownBody__2Fa4B table th[align=right]{text-align:right}.MarkdownContent_markdownBody__2Fa4B table td:first-child,.MarkdownContent_markdownBody__2Fa4B table th:first-child{padding-left:0}.MarkdownContent_markdownBody__2Fa4B table td{padding:.75rem .5rem;border:0;vertical-align:top}.MarkdownContent_markdownBody__2Fa4B table td p{padding:0;margin:0}.MarkdownContent_markdownBody__2Fa4B table tr:nth-child(2n){background:none}.MarkdownContent_markdownBody__2Fa4B table td.MarkdownContent_has-nested-table__LPfu3{width:100%}.MarkdownContent_markdownBody__2Fa4B table td.MarkdownContent_has-nested-table__LPfu3 table{table-layout:auto}.MarkdownContent_markdownBody__2Fa4B a{text-decoration:underline}.MarkdownContent_markdownBody__2Fa4B summary{outline:none}.MarkdownContent_markdownBody__2Fa4B summary h1,.MarkdownContent_markdownBody__2Fa4B summary h2,.MarkdownContent_markdownBody__2Fa4B summary h3,.MarkdownContent_markdownBody__2Fa4B summary h4,.MarkdownContent_markdownBody__2Fa4B summary h5,.MarkdownContent_markdownBody__2Fa4B summary h6{display:inline-block;margin-top:.5rem;margin-bottom:.5rem}.MarkdownContent_markdownBody__2Fa4B summary h1 p,.MarkdownContent_markdownBody__2Fa4B summary h2 p,.MarkdownContent_markdownBody__2Fa4B summary h3 p,.MarkdownContent_markdownBody__2Fa4B summary h4 p,.MarkdownContent_markdownBody__2Fa4B summary h5 p,.MarkdownContent_markdownBody__2Fa4B summary h6 p{margin:0;padding:0}.MarkdownContent_markdownBody__2Fa4B h4 a{text-decoration:none}.MarkdownContent_markdownBody__2Fa4B h1:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h2:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h3:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h4:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h5:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h6:hover [class~=octicon-link]{visibility:visible!important}.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]{padding:.5rem;margin-left:-2rem;color:var(--color-fg-muted)}.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]:focus{outline:none}.MarkdownContent_markdownBody__2Fa4B h1:target,.MarkdownContent_markdownBody__2Fa4B h2:target,.MarkdownContent_markdownBody__2Fa4B h3:target,.MarkdownContent_markdownBody__2Fa4B h4:target,.MarkdownContent_markdownBody__2Fa4B h5:target,.MarkdownContent_markdownBody__2Fa4B h6:target{scroll-margin-top:75px}.MarkdownContent_markdownBody__2Fa4B [class~=danger] ol,.MarkdownContent_markdownBody__2Fa4B [class~=danger] ul,.MarkdownContent_markdownBody__2Fa4B [class~=note] ol,.MarkdownContent_markdownBody__2Fa4B [class~=note] ul,.MarkdownContent_markdownBody__2Fa4B [class~=tip] ol,.MarkdownContent_markdownBody__2Fa4B [class~=tip] ul,.MarkdownContent_markdownBody__2Fa4B [class~=warning] ol,.MarkdownContent_markdownBody__2Fa4B [class~=warning] ul{margin-bottom:0}.ArticleMarkdown_articleMarkdown__1dX3y pre{padding:0;background-color:unset}.ArticleMarkdown_articleMarkdown__1dX3y table{table-layout:fixed!important}.SidebarProduct_sidebarArticle____jm-:before{content:"";position:absolute;left:-webkit-calc(1.5rem + 2px);left:calc(1.5rem + 2px);height:100%;border-left:1px solid var(--color-fg-default);width:1px;top:0}.SidebarProduct_sidebarArticleActive__2_znz:before{border-left-width:2px}.HeaderNotifications_container__2uS-f{position:relative}.HeaderNotifications_container__2uS-f a{color:var(--color-accent-fg);text-decoration:underline}.Search_resultsContainer__3RRWL mark{font-weight:bolder;background:none;color:inherit}.Search_searchResultContent__3-h9R mark{font-weight:bolder}.Search_searchResultContent__3-h9R{max-height:4rem}.Search_resultsContainerHeader__2sv4X{width:0;border-radius:0 0 0 4px;-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.Search_resultsContainerOpen__2sCFk.Search_resultsContainerHeader__2sv4X{width:60vw;max-width:48rem}.Search_searchInput__ydDV7{-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.Search_searchInputHeader__CsM1j{width:16rem}.Search_headerSearchOpen___Gvzu{background:var(--color-primer-canvas-backdrop)}.Search_searchInputExpanded__2V6qC{width:54vw;max-width:43rem}.Search_headerSearchResults__1e7fz{max-height:80vh}.Search_searchWording__B5Adz{margin:.6rem 0 .5rem .5rem}.Search_selectWording__24SMn{margin:.64rem .5rem 0 0}.Search_versionSearchContainer__2D7UK{overflow:hidden}.Breadcrumbs_breadcrumbs__3yP-O{clip-path:inset(-.5rem -.5rem -.5rem 0)}.Header_header__GIthp{display:unset}.Header_portalRoot__spMj8 *{z-index:3!important}.Survey_visuallyHidden__2GBPC{opacity:0;margin:-.4em}.Survey_customRadio__2woIu+label:before{content:"X";color:transparent;margin:0 -33px 0 -17px;padding:7px 20px}.Survey_customRadio__2woIu:focus+label:before{outline:1px auto -webkit-focus-ring-color}.Callout_container__ppasH p{margin:0}.Lead_container__7YW6Y code{font-size:85%;background-color:var(--color-canvas-subtle);border-radius:6px;padding:.1em .2em} -------------------------------------------------------------------------------- /assets/static/css/a9399f931f88e7ca3226.css: -------------------------------------------------------------------------------- 1 | .Callout_container__ppasH p{margin:0}.SidebarProduct_sidebarArticle____jm-:before{content:"";position:absolute;left:-webkit-calc(1.5rem + 2px);left:calc(1.5rem + 2px);height:100%;border-left:1px solid var(--color-fg-default);width:1px;top:0}.SidebarProduct_sidebarArticleActive__2_znz:before{border-left-width:2px}.HeaderNotifications_container__2uS-f{position:relative}.HeaderNotifications_container__2uS-f a{color:var(--color-accent-fg);text-decoration:underline}.Search_resultsContainer__3RRWL mark{font-weight:bolder;background:none;color:inherit}.Search_searchResultContent__3-h9R mark{font-weight:bolder}.Search_searchResultContent__3-h9R{max-height:4rem}.Search_resultsContainerHeader__2sv4X{width:0;border-radius:0 0 0 4px;-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.Search_resultsContainerOpen__2sCFk.Search_resultsContainerHeader__2sv4X{width:60vw;max-width:48rem}.Search_searchInput__ydDV7{-webkit-transition:width .3s ease-in-out;transition:width .3s ease-in-out}.Search_searchInputHeader__CsM1j{width:16rem}.Search_headerSearchOpen___Gvzu{background:var(--color-primer-canvas-backdrop)}.Search_searchInputExpanded__2V6qC{width:54vw;max-width:43rem}.Search_headerSearchResults__1e7fz{max-height:80vh}.Search_searchWording__B5Adz{margin:.6rem 0 .5rem .5rem}.Search_selectWording__24SMn{margin:.64rem .5rem 0 0}.Search_versionSearchContainer__2D7UK{overflow:hidden}.Breadcrumbs_breadcrumbs__3yP-O{clip-path:inset(-.5rem -.5rem -.5rem 0)}.Header_header__GIthp{display:unset}.Header_portalRoot__spMj8 *{z-index:3!important}.Survey_visuallyHidden__2GBPC{opacity:0;margin:-.4em}.Survey_customRadio__2woIu+label:before{content:"X";color:transparent;margin:0 -33px 0 -17px;padding:7px 20px}.Survey_customRadio__2woIu:focus+label:before{outline:1px auto -webkit-focus-ring-color}.MarkdownContent_markdownBody__2Fa4B [class~=highlight] pre,.MarkdownContent_markdownBody__2Fa4B pre{margin-top:.5rem}.MarkdownContent_markdownBody__2Fa4B [class~=height-constrained-code-block] pre{max-height:32rem;overflow:auto}.MarkdownContent_markdownBody__2Fa4B [class~=code-extra]{margin-top:1.5rem}.MarkdownContent_markdownBody__2Fa4B [class~=code-extra] pre{margin-top:0!important;border-top-left-radius:0!important;border-top-right-radius:0!important;border-left:1px solid var(--color-border-default)!important;border-bottom:1px solid var(--color-border-default)!important;border-right:1px solid var(--color-border-default)!important}.MarkdownContent_markdownBody__2Fa4B pre [class~=bluebox],.MarkdownContent_markdownBody__2Fa4B pre [class~=greenbox],.MarkdownContent_markdownBody__2Fa4B pre [class~=redbox]{color:var(--color-fg-on-emphasis);padding:0 .25rem;border-radius:4px}.MarkdownContent_markdownBody__2Fa4B pre [class~=redbox]{background-color:var(--color-danger-emphasis)}.MarkdownContent_markdownBody__2Fa4B pre [class~=greenbox]{background-color:var(--color-success-emphasis)}.MarkdownContent_markdownBody__2Fa4B pre [class~=bluebox]{background-color:var(--color-accent-emphasis)}.MarkdownContent_markdownBody__2Fa4B h1,.MarkdownContent_markdownBody__2Fa4B h2,.MarkdownContent_markdownBody__2Fa4B h3,.MarkdownContent_markdownBody__2Fa4B h4,.MarkdownContent_markdownBody__2Fa4B h5{padding-top:1rem}.MarkdownContent_markdownBody__2Fa4B h2 a{color:var(--color-accent-fg)}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling){counter-reset:li;list-style:none;position:relative;padding-bottom:.5rem;padding-left:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li{padding:.5rem 0 .5rem 2.5rem;border:0;position:relative;margin-bottom:.25rem}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li:before{width:-webkit-calc(1.5rem - 2px);width:calc(1.5rem - 2px);height:-webkit-calc(1.5rem - 2px);height:calc(1.5rem - 2px);font-size:-webkit-calc(1rem - 2px);font-size:calc(1rem - 2px);margin:1px 0 0 .5rem;content:counter(li);counter-increment:li;position:absolute;left:0;color:var(--color-canvas-default);font-weight:500;text-align:center;border-radius:50%;background-color:var(--color-fg-default)}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p{margin:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p:first-child{margin-top:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li [class~=extended-markdown],.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p:not(:first-child){margin-top:1rem}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling) ol li:before.no-styling{display:none}.MarkdownContent_markdownBody__2Fa4B ol ol,.MarkdownContent_markdownBody__2Fa4B ol ul,.MarkdownContent_markdownBody__2Fa4B ul ol,.MarkdownContent_markdownBody__2Fa4B ul ul{margin-top:1rem;margin-bottom:1rem}.MarkdownContent_markdownBody__2Fa4B div>ol:not([type]){list-style-type:none}.MarkdownContent_markdownBody__2Fa4B table{display:table;border-collapse:collapse;position:relative;font-size:90%;width:100%;line-height:1.5;table-layout:auto}.MarkdownContent_markdownBody__2Fa4B table code{font-size:85%;padding:.2em .4em;background-color:var(--color-canvas-subtle);border-radius:6px}.MarkdownContent_markdownBody__2Fa4B table pre>code{padding:0;background-color:transparent}.MarkdownContent_markdownBody__2Fa4B table thead tr{border:none}.MarkdownContent_markdownBody__2Fa4B table th{font-weight:400;text-align:left;position:sticky;vertical-align:top;z-index:1;top:0;background:var(--color-canvas-default);-webkit-box-shadow:0 3px 0 0 var(--color-canvas-subtle);box-shadow:0 3px 0 0 var(--color-canvas-subtle);padding:.75rem .5rem;border:0}.MarkdownContent_markdownBody__2Fa4B table th[align=center]{text-align:center}.MarkdownContent_markdownBody__2Fa4B table th[align=right]{text-align:right}.MarkdownContent_markdownBody__2Fa4B table td:first-child,.MarkdownContent_markdownBody__2Fa4B table th:first-child{padding-left:0}.MarkdownContent_markdownBody__2Fa4B table td{padding:.75rem .5rem;border:0;vertical-align:top}.MarkdownContent_markdownBody__2Fa4B table td p{padding:0;margin:0}.MarkdownContent_markdownBody__2Fa4B table tr:nth-child(2n){background:none}.MarkdownContent_markdownBody__2Fa4B table td.MarkdownContent_has-nested-table__LPfu3{width:100%}.MarkdownContent_markdownBody__2Fa4B table td.MarkdownContent_has-nested-table__LPfu3 table{table-layout:auto}.MarkdownContent_markdownBody__2Fa4B a{text-decoration:underline}.MarkdownContent_markdownBody__2Fa4B summary{outline:none}.MarkdownContent_markdownBody__2Fa4B summary h1,.MarkdownContent_markdownBody__2Fa4B summary h2,.MarkdownContent_markdownBody__2Fa4B summary h3,.MarkdownContent_markdownBody__2Fa4B summary h4,.MarkdownContent_markdownBody__2Fa4B summary h5,.MarkdownContent_markdownBody__2Fa4B summary h6{display:inline-block;margin-top:.5rem;margin-bottom:.5rem}.MarkdownContent_markdownBody__2Fa4B summary h1 p,.MarkdownContent_markdownBody__2Fa4B summary h2 p,.MarkdownContent_markdownBody__2Fa4B summary h3 p,.MarkdownContent_markdownBody__2Fa4B summary h4 p,.MarkdownContent_markdownBody__2Fa4B summary h5 p,.MarkdownContent_markdownBody__2Fa4B summary h6 p{margin:0;padding:0}.MarkdownContent_markdownBody__2Fa4B h4 a{text-decoration:none}.MarkdownContent_markdownBody__2Fa4B h1:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h2:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h3:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h4:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h5:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h6:hover [class~=octicon-link]{visibility:visible!important}.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]{padding:.5rem;margin-left:-2rem;color:var(--color-fg-muted)}.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]:focus{outline:none}.MarkdownContent_markdownBody__2Fa4B h1:target,.MarkdownContent_markdownBody__2Fa4B h2:target,.MarkdownContent_markdownBody__2Fa4B h3:target,.MarkdownContent_markdownBody__2Fa4B h4:target,.MarkdownContent_markdownBody__2Fa4B h5:target,.MarkdownContent_markdownBody__2Fa4B h6:target{scroll-margin-top:75px}.MarkdownContent_markdownBody__2Fa4B [class~=danger] ol,.MarkdownContent_markdownBody__2Fa4B [class~=danger] ul,.MarkdownContent_markdownBody__2Fa4B [class~=note] ol,.MarkdownContent_markdownBody__2Fa4B [class~=note] ul,.MarkdownContent_markdownBody__2Fa4B [class~=tip] ol,.MarkdownContent_markdownBody__2Fa4B [class~=tip] ul,.MarkdownContent_markdownBody__2Fa4B [class~=warning] ol,.MarkdownContent_markdownBody__2Fa4B [class~=warning] ul{margin-bottom:0}.Lead_container__7YW6Y code{font-size:85%;background-color:var(--color-canvas-subtle);border-radius:6px;padding:.1em .2em}.BumpLink_container__jkn7q:hover .BumpLink_symbol__1kqFd{opacity:1;-webkit-transform:translateX(3px);transform:translateX(3px)}.BumpLink_symbol__1kqFd{display:inline-block;-webkit-transform:translateX(0);color:inherit;opacity:0;-webkit-transition:.2s;transition:.2s;transform:translateX(0)}.GuidesHero_fadeLeft__11PH7{background:-webkit-gradient(linear,left top,right top,from(var(--color-canvas-default)),to(transparent));background:-webkit-linear-gradient(left,var(--color-canvas-default),transparent);background:linear-gradient(to right,var(--color-canvas-default),transparent)}.GuidesHero_fadeRight__3bjNi{background:-webkit-gradient(linear,right top,left top,from(var(--color-canvas-default)),to(transparent));background:-webkit-linear-gradient(right,var(--color-canvas-default),transparent);background:linear-gradient(to left,var(--color-canvas-default),transparent)}.LearningTrack_fadeBottom__2_HTW{background:-webkit-gradient(linear,left bottom,left top,from(var(--color-canvas-default)),to(transparent));background:-webkit-linear-gradient(bottom,var(--color-canvas-default),transparent);background:linear-gradient(to top,var(--color-canvas-default),transparent)}.LearningTrack_removeHoverEvents__3v9qj{pointer-events:none}.LearningTrack_hashAnchor__1DcGK:target{scroll-margin-top:75px} -------------------------------------------------------------------------------- /assets/static/chunks/792.0d477648adb8e941f9ec.js: -------------------------------------------------------------------------------- 1 | "use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[792],{45792:function(e,r,t){t.r(r),t.d(r,{default:function(){return l}});var s=t(92809),o=t(67294),c=t(11163),n=JSON.parse('{"/rest/reference/repos#list-repository-collaborators":"/rest/reference/collaborators#list-repository-collaborators","/rest/reference/repos#check-if-a-user-is-a-repository-collaborator":"/rest/reference/collaborators#check-if-a-user-is-a-repository-collaborator","/rest/reference/repos#add-a-repository-collaborator":"/rest/reference/collaborators#add-a-repository-collaborator","/rest/reference/repos#remove-a-repository-collaborator":"/rest/reference/collaborators#remove-a-repository-collaborator","/rest/reference/repos#get-repository-permissions-for-a-user":"/rest/reference/collaborators#get-repository-permissions-for-a-user","/rest/reference/repos#list-commit-comments-for-a-repository":"/rest/reference/commits#list-commit-comments-for-a-repository","/rest/reference/repos#get-a-commit-comment":"/rest/reference/commits#get-a-commit-comment","/rest/reference/repos#update-a-commit-comment":"/rest/reference/commits#update-a-commit-comment","/rest/reference/repos#delete-a-commit-comment":"/rest/reference/commits#delete-a-commit-comment","/rest/reference/repos#list-commits":"/rest/reference/commits#list-commits","/rest/reference/repos#list-branches-for-head-commit":"/rest/reference/commits#list-branches-for-head-commit","/rest/reference/repos#list-commit-comments":"/rest/reference/commits#list-commit-comments","/rest/reference/repos#create-a-commit-comment":"/rest/reference/commits#create-a-commit-comment","/rest/reference/repos#list-pull-requests-associated-with-a-commit":"/rest/reference/commits#list-pull-requests-associated-with-a-commit","/rest/reference/repos#get-a-commit":"/rest/reference/commits#get-a-commit","/rest/reference/repos#get-the-combined-status-for-a-specific-reference":"/rest/reference/commits#get-the-combined-status-for-a-specific-reference","/rest/reference/repos#list-commit-statuses-for-a-reference":"/rest/reference/commits#list-commit-statuses-for-a-reference","/rest/reference/repos#get-community-profile-metrics":"/rest/reference/metrics#get-community-profile-metrics","/rest/reference/repos#compare-two-commits":"/rest/reference/commits#compare-two-commits","/rest/reference/repos#get-all-environments":"/rest/reference/deployments#get-all-environments","/rest/reference/repos#get-an-environment":"/rest/reference/deployments#get-an-environment","/rest/reference/repos#create-or-update-an-environment":"/rest/reference/deployments#create-or-update-an-environment","/rest/reference/repos#delete-an-environment":"/rest/reference/deployments#delete-an-environment","/rest/reference/repos#list-repository-invitations":"/rest/reference/collaborators#list-repository-invitations","/rest/reference/repos#update-a-repository-invitation":"/rest/reference/collaborators#update-a-repository-invitation","/rest/reference/repos#delete-a-repository-invitation":"/rest/reference/collaborators#delete-a-repository-invitation","/rest/reference/repos#list-deploy-keys":"/rest/reference/deployments#list-deploy-keys","/rest/reference/repos#create-a-deploy-key":"/rest/reference/deployments#create-a-deploy-key","/rest/reference/repos#get-a-deploy-key":"/rest/reference/deployments#get-a-deploy-key","/rest/reference/repos#delete-a-deploy-key":"/rest/reference/deployments#delete-a-deploy-key","/rest/reference/repos#get-a-github-pages-site":"/rest/reference/pages#get-a-github-pages-site","/rest/reference/repos#create-a-github-pages-site":"/rest/reference/pages#create-a-github-pages-site","/rest/reference/repos#update-information-about-a-github-pages-site":"/rest/reference/pages#update-information-about-a-github-pages-site","/rest/reference/repos#delete-a-github-pages-site":"/rest/reference/pages#delete-a-github-pages-site","/rest/reference/repos#list-github-pages-builds":"/rest/reference/pages#list-github-pages-builds","/rest/reference/repos#request-a-github-pages-build":"/rest/reference/pages#request-a-github-pages-build","/rest/reference/repos#get-latest-pages-build":"/rest/reference/pages#get-latest-pages-build","/rest/reference/repos#get-github-pages-build":"/rest/reference/pages#get-github-pages-build","/rest/reference/repos#get-a-dns-health-check-for-github-pages":"/rest/reference/pages#get-a-dns-health-check-for-github-pages","/rest/reference/repos#get-the-weekly-commit-activity":"/rest/reference/metrics#get-the-weekly-commit-activity","/rest/reference/repos#get-the-last-year-of-commit-activity":"/rest/reference/metrics#get-the-last-year-of-commit-activity","/rest/reference/repos#get-all-contributor-commit-activity":"/rest/reference/metrics#get-all-contributor-commit-activity","/rest/reference/repos#get-the-weekly-commit-count":"/rest/reference/metrics#get-the-weekly-commit-count","/rest/reference/repos#get-the-hourly-commit-count-for-each-day":"/rest/reference/metrics#get-the-hourly-commit-count-for-each-day","/rest/reference/repos#create-a-commit-status":"/rest/reference/commits#create-a-commit-status","/rest/reference/repos#get-repository-clones":"/rest/reference/metrics#get-repository-clones","/rest/reference/repos#get-top-referral-paths":"/rest/reference/metrics#get-top-referral-paths","/rest/reference/repos#get-top-referral-sources":"/rest/reference/metrics#get-top-referral-sources","/rest/reference/repos#get-page-views":"/rest/reference/metrics#get-page-views","/rest/reference/repos#list-repository-invitations-for-the-authenticated-user":"/rest/reference/collaborators#list-repository-invitations-for-the-authenticated-user","/rest/reference/repos#accept-a-repository-invitation":"/rest/reference/collaborators#accept-a-repository-invitation","/rest/reference/repos#decline-a-repository-invitation":"/rest/reference/collaborators#decline-a-repository-invitation","/rest/reference/repos#list-branches":"/rest/reference/branches#list-branches","/rest/reference/repos#get-a-branch":"/rest/reference/branches#get-a-branch","/rest/reference/repos#rename-a-branch":"/rest/reference/branches#rename-a-branch","/rest/reference/repos#sync-a-fork-branch-with-the-upstream-repository":"/rest/reference/branches#sync-a-fork-branch-with-the-upstream-repository","/rest/reference/repos#merge-a-branch":"/rest/reference/branches#merge-a-branch","/rest/reference/repos#add-app-access-restrictions":"/rest/reference/branches#add-app-access-restrictions","/rest/reference/repos#add-status-check-contexts":"/rest/reference/branches#add-status-check-contexts","/rest/reference/repos#add-team-access-restrictions":"/rest/reference/branches#add-team-access-restrictions","/rest/reference/repos#add-user-access-restrictions":"/rest/reference/branches#add-user-access-restrictions","/rest/reference/repos#create-commit-signature-protection":"/rest/reference/branches#create-commit-signature-protection","/rest/reference/repos#delete-access-restrictions":"/rest/reference/branches#delete-access-restrictions","/rest/reference/repos#delete-admin-branch-protection":"/rest/reference/branches#delete-admin-branch-protection","/rest/reference/repos#delete-branch-protection":"/rest/reference/branches#delete-branch-protection","/rest/reference/repos#delete-commit-signature-protection":"/rest/reference/branches#delete-commit-signature-protection","/rest/reference/repos#delete-pull-request-review-protection":"/rest/reference/branches#delete-pull-request-review-protection","/rest/reference/repos#get-access-restrictions":"/rest/reference/branches#get-access-restrictions","/rest/reference/repos#get-admin-branch-protection":"/rest/reference/branches#get-admin-branch-protection","/rest/reference/repos#get-all-status-check-contexts":"/rest/reference/branches#get-all-status-check-contexts","/rest/reference/repos#list-apps-with-access-to-the-protected-branch":"/rest/reference/branches#list-apps-with-access-to-the-protected-branch","/rest/reference/repos#update-pull-request-review-protection":"/rest/reference/branches#update-pull-request-review-protection","/rest/reference/repos#get-branch-protection":"/rest/reference/branches#get-branch-protection","/rest/reference/repos#get-commit-signature-protection":"/rest/reference/branches#get-commit-signature-protection","/rest/reference/repos#get-pull-request-review-protection":"/rest/reference/branches#get-pull-request-review-protection","/rest/reference/repos#get-status-checks-protection":"/rest/reference/branches#get-status-checks-protection","/rest/reference/repos#list-teams-with-access-to-the-protected-branch":"/rest/reference/branches#list-teams-with-access-to-the-protected-branch","/rest/reference/repos#list-users-with-access-to-the-protected-branch":"/rest/reference/branches#list-users-with-access-to-the-protected-branch","/rest/reference/repos#remove-app-access-restrictions":"/rest/reference/branches#remove-app-access-restrictions","/rest/reference/repos#remove-status-check-contexts":"/rest/reference/branches#remove-status-check-contexts","/rest/reference/repos#remove-status-check-protection":"/rest/reference/branches#remove-status-check-protection","/rest/reference/repos#remove-team-access-restrictions":"/rest/reference/branches#remove-team-access-restrictions","/rest/reference/repos#remove-user-access-restrictions":"/rest/reference/branches#remove-user-access-restrictions","/rest/reference/repos#set-admin-branch-protection":"/rest/reference/branches#set-admin-branch-protection","/rest/reference/repos#set-app-access-restrictions":"/rest/reference/branches#set-app-access-restrictions","/rest/reference/repos#set-status-check-contexts":"/rest/reference/branches#set-status-check-contexts","/rest/reference/repos#set-team-access-restrictions":"/rest/reference/branches#set-team-access-restrictions","/rest/reference/repos#set-user-access-restrictions":"/rest/reference/branches#set-user-access-restrictions","/rest/reference/repos#update-branch-protection":"/rest/reference/branches#update-branch-protection","/rest/reference/repos#update-status-check-protection":"/rest/reference/branches#update-status-check-protection","/rest/reference/repos#create-a-deployment-status":"/rest/reference/deployments#create-a-deployment-status","/rest/reference/repos#list-deployment-statuses":"/rest/reference/deployments#list-deployment-statuses","/rest/reference/repos#get-a-deployment-status":"/rest/reference/deployments#get-a-deployment-status","/rest/reference/repos#list-deployments":"/rest/reference/deployments#list-deployments","/rest/reference/repos#create-a-deployment":"/rest/reference/deployments#create-a-deployment","/rest/reference/repos#get-a-deployment":"/rest/reference/deployments#get-a-deployment","/rest/reference/repos#delete-a-deployment":"/rest/reference/deployments#delete-a-deployment","/rest/reference/repos#list-releases":"/rest/reference/releases#list-releases","/rest/reference/repos#create-a-release":"/rest/reference/releases#create-a-release","/rest/reference/repos#generate-release-notes":"/rest/reference/releases#generate-release-notes","/rest/reference/repos#get-the-latest-release":"/rest/reference/releases#get-the-latest-release","/rest/reference/repos#get-a-release-by-tag-name":"/rest/reference/releases#get-a-release-by-tag-name","/rest/reference/repos#get-a-release":"/rest/reference/releases#get-a-release","/rest/reference/repos#update-a-release":"/rest/reference/releases#update-a-release","/rest/reference/repos#delete-a-release":"/rest/reference/releases#delete-a-release","/rest/reference/repos#delete-a-release-asset":"/rest/reference/releases#delete-a-release-asset","/rest/reference/repos#get-a-release-asset":"/rest/reference/releases#get-a-release-asset","/rest/reference/repos#list-release-assets":"/rest/reference/releases#list-release-assets","/rest/reference/repos#update-a-release-asset":"/rest/reference/releases#update-a-release-asset","/rest/reference/repos#upload-a-release-asset":"/rest/reference/releases#upload-a-release-asset","/rest/reference/repos#list-repository-webhooks":"/rest/reference/webhooks#list-repository-webhooks","/rest/reference/repos#create-a-repository-webhook":"/rest/reference/webhooks#create-a-repository-webhook","/rest/reference/repos#get-a-repository-webhook":"/rest/reference/webhooks#get-a-repository-webhook","/rest/reference/repos#update-a-repository-webhook":"/rest/reference/webhooks#update-a-repository-webhook","/rest/reference/repos#delete-a-repository-webhook":"/rest/reference/webhooks#delete-a-repository-webhook","/rest/reference/repos#ping-a-repository-webhook":"/rest/reference/webhooks#ping-a-repository-webhook","/rest/reference/repos#test-the-push-repository-webhook":"/rest/reference/webhooks#test-the-push-repository-webhook","/rest/reference/repos#get-a-webhook-configuration-for-a-repository":"/rest/reference/webhooks#get-a-webhook-configuration-for-a-repository","/rest/reference/repos#update-a-webhook-configuration-for-a-repository":"/rest/reference/webhooks#update-a-webhook-configuration-for-a-repository","/rest/reference/repos#get-a-delivery-for-a-repository-webhook":"/rest/reference/webhooks#get-a-delivery-for-a-repository-webhook","/rest/reference/repos#list-deliveries-for-a-repository-webhook":"/rest/reference/webhooks#list-deliveries-for-a-repository-webhook","/rest/reference/repos#redeliver-a-delivery-for-a-repository-webhook":"/rest/reference/webhooks#redeliver-a-delivery-for-a-repository-webhook"}'),a=JSON.parse('{"/rest/reference/repos#statuses":"/rest/reference/commits#commit-statuses"}');function i(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(e);r&&(s=s.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,s)}return t}function p(e){for(var r=1;r=t?e:""+Array(t+1-n.length).join(r)+e},v={s:S,z:function(e){var t=-e.utcOffset(),r=Math.abs(t),n=Math.floor(r/60),i=r%60;return(t<=0?"+":"-")+S(n,2,"0")+":"+S(i,2,"0")},m:function e(t,r){if(t.date()>>0}},44287:function(e,t,r){"use strict";var n=r(34155);function i(e,t){for(var r=0;r/g,">").replace(/"/g,""").replace(/'/g,"'")}function s(e,...n){const t=Object.create(null);for(const i in e)t[i]=e[i];return n.forEach((function(e){for(const n in e)t[n]=e[n]})),t}const a=e=>!!e.kind;class c{constructor(e,n){this.buffer="",this.classPrefix=n.classPrefix,e.walk(this)}addText(e){this.buffer+=o(e)}openNode(e){if(!a(e))return;let n=e.kind;n=e.sublanguage?`language-${n}`:((e,{prefix:n})=>{if(e.includes(".")){const t=e.split(".");return[`${n}${t.shift()}`,...t.map(((e,n)=>`${e}${"_".repeat(n+1)}`))].join(" ")}return`${n}${e}`})(n,{prefix:this.classPrefix}),this.span(n)}closeNode(e){a(e)&&(this.buffer+="")}value(){return this.buffer}span(e){this.buffer+=``}}class l{constructor(){this.rootNode={children:[]},this.stack=[this.rootNode]}get top(){return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){this.top.children.push(e)}openNode(e){const n={kind:e,children:[]};this.add(n),this.stack.push(n)}closeNode(){if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)}walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,n){return"string"===typeof n?e.addText(n):n.children&&(e.openNode(n),n.children.forEach((n=>this._walk(e,n))),e.closeNode(n)),e}static _collapse(e){"string"!==typeof e&&e.children&&(e.children.every((e=>"string"===typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{l._collapse(e)})))}}class u extends l{constructor(e){super(),this.options=e}addKeyword(e,n){""!==e&&(this.openNode(n),this.addText(e),this.closeNode())}addText(e){""!==e&&this.add(e)}addSublanguage(e,n){const t=e.root;t.kind=n,t.sublanguage=!0,this.add(t)}toHTML(){return new c(this,this.options).value()}finalize(){return!0}}function g(e){return e?"string"===typeof e?e:e.source:null}function d(...e){return e.map((e=>g(e))).join("")}function h(...e){return"("+(function(e){const n=e[e.length-1];return"object"===typeof n&&n.constructor===Object?(e.splice(e.length-1,1),n):{}}(e).capture?"":"?:")+e.map((e=>g(e))).join("|")+")"}function f(e){return new RegExp(e.toString()+"|").exec("").length-1}const p=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./;function b(e,{joinWith:n}){let t=0;return e.map((e=>{t+=1;const n=t;let i=g(e),r="";for(;i.length>0;){const e=p.exec(i);if(!e){r+=i;break}r+=i.substring(0,e.index),i=i.substring(e.index+e[0].length),"\\"===e[0][0]&&e[1]?r+="\\"+String(Number(e[1])+n):(r+=e[0],"("===e[0]&&t++)}return r})).map((e=>`(${e})`)).join(n)}const m="[a-zA-Z]\\w*",E="[a-zA-Z_]\\w*",w="\\b\\d+(\\.\\d+)?",x="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",_="\\b(0b[01]+)",y={begin:"\\\\[\\s\\S]",relevance:0},N={scope:"string",begin:"'",end:"'",illegal:"\\n",contains:[y]},O={scope:"string",begin:'"',end:'"',illegal:"\\n",contains:[y]},v=function(e,n,t={}){const i=s({scope:"comment",begin:e,end:n,contains:[]},t);i.contains.push({scope:"doctag",begin:"[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)",end:/(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/,excludeBegin:!0,relevance:0});const r=h("I","a","is","so","us","to","at","if","in","it","on",/[A-Za-z]+['](d|ve|re|ll|t|s|n)/,/[A-Za-z]+[-][a-z]+/,/[A-Za-z][a-z]{2,}/);return i.contains.push({begin:d(/[ ]+/,"(",r,/[.]?[:]?([.][ ]|[ ])/,"){3}")}),i},k=v("//","$"),M=v("/\\*","\\*/"),S=v("#","$"),R={scope:"number",begin:w,relevance:0},A={scope:"number",begin:x,relevance:0},j={scope:"number",begin:_,relevance:0},I={begin:/(?=\/[^/\n]*\/)/,contains:[{scope:"regexp",begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[y,{begin:/\[/,end:/\]/,relevance:0,contains:[y]}]}]},T={scope:"title",begin:m,relevance:0},B={scope:"title",begin:E,relevance:0},L={begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0};var C=Object.freeze({__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:m,UNDERSCORE_IDENT_RE:E,NUMBER_RE:w,C_NUMBER_RE:x,BINARY_NUMBER_RE:_,RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~",SHEBANG:(e={})=>{const n=/^#![ ]*\//;return e.binary&&(e.begin=d(n,/.*\b/,e.binary,/\b.*/)),s({scope:"meta",begin:n,end:/$/,relevance:0,"on:begin":(e,n)=>{0!==e.index&&n.ignoreMatch()}},e)},BACKSLASH_ESCAPE:y,APOS_STRING_MODE:N,QUOTE_STRING_MODE:O,PHRASAL_WORDS_MODE:{begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/},COMMENT:v,C_LINE_COMMENT_MODE:k,C_BLOCK_COMMENT_MODE:M,HASH_COMMENT_MODE:S,NUMBER_MODE:R,C_NUMBER_MODE:A,BINARY_NUMBER_MODE:j,REGEXP_MODE:I,TITLE_MODE:T,UNDERSCORE_TITLE_MODE:B,METHOD_GUARD:L,END_SAME_AS_BEGIN:function(e){return Object.assign(e,{"on:begin":(e,n)=>{n.data._beginMatch=e[1]},"on:end":(e,n)=>{n.data._beginMatch!==e[1]&&n.ignoreMatch()}})}});function D(e,n){"."===e.input[e.index-1]&&n.ignoreMatch()}function P(e,n){void 0!==e.className&&(e.scope=e.className,delete e.className)}function $(e,n){n&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)",e.__beforeBegin=D,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords,void 0===e.relevance&&(e.relevance=0))}function H(e,n){Array.isArray(e.illegal)&&(e.illegal=h(...e.illegal))}function U(e,n){if(e.match){if(e.begin||e.end)throw new Error("begin & end are not supported with match");e.begin=e.match,delete e.match}}function K(e,n){void 0===e.relevance&&(e.relevance=1)}const z=(e,n)=>{if(!e.beforeMatch)return;if(e.starts)throw new Error("beforeMatch cannot be used with starts");const t=Object.assign({},e);Object.keys(e).forEach((n=>{delete e[n]})),e.keywords=t.keywords,e.begin=d(t.beforeMatch,d("(?=",t.begin,")")),e.starts={relevance:0,contains:[Object.assign(t,{endsParent:!0})]},e.relevance=0,delete t.beforeMatch},W=["of","and","for","in","not","or","if","then","parent","list","value"];function G(e,n,t="keyword"){const i=Object.create(null);return"string"===typeof e?r(t,e.split(" ")):Array.isArray(e)?r(t,e):Object.keys(e).forEach((function(t){Object.assign(i,G(e[t],n,t))})),i;function r(e,t){n&&(t=t.map((e=>e.toLowerCase()))),t.forEach((function(n){const t=n.split("|");i[t[0]]=[e,X(t[0],t[1])]}))}}function X(e,n){return n?Number(n):function(e){return W.includes(e.toLowerCase())}(e)?0:1}const Z={},F=e=>{console.error(e)},V=(e,...n)=>{console.log(`WARN: ${e}`,...n)},J=(e,n)=>{Z[`${e}/${n}`]||(console.log(`Deprecated as of ${e}. ${n}`),Z[`${e}/${n}`]=!0)},q=new Error;function Q(e,n,{key:t}){let i=0;const r=e[t],o={},s={};for(let a=1;a<=n.length;a++)s[a+i]=r[a],o[a+i]=!0,i+=f(n[a-1]);e[t]=s,e[t]._emit=o,e[t]._multi=!0}function Y(e){!function(e){e.scope&&"object"===typeof e.scope&&null!==e.scope&&(e.beginScope=e.scope,delete e.scope)}(e),"string"===typeof e.beginScope&&(e.beginScope={_wrap:e.beginScope}),"string"===typeof e.endScope&&(e.endScope={_wrap:e.endScope}),function(e){if(Array.isArray(e.begin)){if(e.skip||e.excludeBegin||e.returnBegin)throw F("skip, excludeBegin, returnBegin not compatible with beginScope: {}"),q;if("object"!==typeof e.beginScope||null===e.beginScope)throw F("beginScope must be object"),q;Q(e,e.begin,{key:"beginScope"}),e.begin=b(e.begin,{joinWith:""})}}(e),function(e){if(Array.isArray(e.end)){if(e.skip||e.excludeEnd||e.returnEnd)throw F("skip, excludeEnd, returnEnd not compatible with endScope: {}"),q;if("object"!==typeof e.endScope||null===e.endScope)throw F("endScope must be object"),q;Q(e,e.end,{key:"endScope"}),e.end=b(e.end,{joinWith:""})}}(e)}function ee(e){function n(n,t){return new RegExp(g(n),"m"+(e.case_insensitive?"i":"")+(t?"g":""))}class t{constructor(){this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0}addRule(e,n){n.position=this.position++,this.matchIndexes[this.matchAt]=n,this.regexes.push([n,e]),this.matchAt+=f(e)+1}compile(){0===this.regexes.length&&(this.exec=()=>null);const e=this.regexes.map((e=>e[1]));this.matcherRe=n(b(e,{joinWith:"|"}),!0),this.lastIndex=0}exec(e){this.matcherRe.lastIndex=this.lastIndex;const n=this.matcherRe.exec(e);if(!n)return null;const t=n.findIndex(((e,n)=>n>0&&void 0!==e)),i=this.matchIndexes[t];return n.splice(0,t),Object.assign(n,i)}}class i{constructor(){this.rules=[],this.multiRegexes=[],this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){if(this.multiRegexes[e])return this.multiRegexes[e];const n=new t;return this.rules.slice(e).forEach((([e,t])=>n.addRule(e,t))),n.compile(),this.multiRegexes[e]=n,n}resumingScanAtSamePosition(){return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,n){this.rules.push([e,n]),"begin"===n.type&&this.count++}exec(e){const n=this.getMatcher(this.regexIndex);n.lastIndex=this.lastIndex;let t=n.exec(e);if(this.resumingScanAtSamePosition())if(t&&t.index===this.lastIndex);else{const n=this.getMatcher(0);n.lastIndex=this.lastIndex+1,t=n.exec(e)}return t&&(this.regexIndex+=t.position+1,this.regexIndex===this.count&&this.considerAll()),t}}if(e.compilerExtensions||(e.compilerExtensions=[]),e.contains&&e.contains.includes("self"))throw new Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.");return e.classNameAliases=s(e.classNameAliases||{}),function t(r,o){const a=r;if(r.isCompiled)return a;[P,U,Y,z].forEach((e=>e(r,o))),e.compilerExtensions.forEach((e=>e(r,o))),r.__beforeBegin=null,[$,H,K].forEach((e=>e(r,o))),r.isCompiled=!0;let c=null;return"object"===typeof r.keywords&&r.keywords.$pattern&&(r.keywords=Object.assign({},r.keywords),c=r.keywords.$pattern,delete r.keywords.$pattern),c=c||/\w+/,r.keywords&&(r.keywords=G(r.keywords,e.case_insensitive)),a.keywordPatternRe=n(c,!0),o&&(r.begin||(r.begin=/\B|\b/),a.beginRe=n(r.begin),r.end||r.endsWithParent||(r.end=/\B|\b/),r.end&&(a.endRe=n(r.end)),a.terminatorEnd=g(r.end)||"",r.endsWithParent&&o.terminatorEnd&&(a.terminatorEnd+=(r.end?"|":"")+o.terminatorEnd)),r.illegal&&(a.illegalRe=n(r.illegal)),r.contains||(r.contains=[]),r.contains=[].concat(...r.contains.map((function(e){return function(e){e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((function(n){return s(e,{variants:null},n)})));if(e.cachedVariants)return e.cachedVariants;if(ne(e))return s(e,{starts:e.starts?s(e.starts):null});if(Object.isFrozen(e))return s(e);return e}("self"===e?r:e)}))),r.contains.forEach((function(e){t(e,a)})),r.starts&&t(r.starts,o),a.matcher=function(e){const n=new i;return e.contains.forEach((e=>n.addRule(e.begin,{rule:e,type:"begin"}))),e.terminatorEnd&&n.addRule(e.terminatorEnd,{type:"end"}),e.illegal&&n.addRule(e.illegal,{type:"illegal"}),n}(a),a}(e)}function ne(e){return!!e&&(e.endsWithParent||ne(e.starts))}const te=o,ie=s,re=Symbol("nomatch");var oe=function(e){const n=Object.create(null),t=Object.create(null),o=[];let s=!0;const a="Could not find the language '{}', did you forget to load/include a language module?",c={disableAutodetect:!0,name:"Plain text",contains:[]};let l={ignoreUnescapedHTML:!1,noHighlightRe:/^(no-?highlight)$/i,languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-",cssSelector:"pre code",languages:null,__emitter:u};function g(e){return l.noHighlightRe.test(e)}function d(e,n,t){let i="",r="";"object"===typeof n?(i=e,t=n.ignoreIllegals,r=n.language):(J("10.7.0","highlight(lang, code, ...args) has been deprecated."),J("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"),r=e,i=n),void 0===t&&(t=!0);const o={code:i,language:r};_("before:highlight",o);const s=o.result?o.result:h(o.language,o.code,t);return s.code=o.code,_("after:highlight",s),s}function h(e,t,i,o){const c=Object.create(null);function u(){if(!v.keywords)return void M.addText(S);let e=0;v.keywordPatternRe.lastIndex=0;let n=v.keywordPatternRe.exec(S),t="";for(;n;){t+=S.substring(e,n.index);const r=y.case_insensitive?n[0].toLowerCase():n[0],o=(i=r,v.keywords[i]);if(o){const[e,i]=o;if(M.addText(t),t="",c[r]=(c[r]||0)+1,c[r]<=7&&(R+=i),e.startsWith("_"))t+=n[0];else{const t=y.classNameAliases[e]||e;M.addKeyword(n[0],t)}}else t+=n[0];e=v.keywordPatternRe.lastIndex,n=v.keywordPatternRe.exec(S)}var i;t+=S.substr(e),M.addText(t)}function g(){null!=v.subLanguage?function(){if(""===S)return;let e=null;if("string"===typeof v.subLanguage){if(!n[v.subLanguage])return void M.addText(S);e=h(v.subLanguage,S,!0,k[v.subLanguage]),k[v.subLanguage]=e._top}else e=f(S,v.subLanguage.length?v.subLanguage:null);v.relevance>0&&(R+=e.relevance),M.addSublanguage(e._emitter,e.language)}():u(),S=""}function d(e,n){let t=1;for(;void 0!==n[t];){if(!e._emit[t]){t++;continue}const i=y.classNameAliases[e[t]]||e[t],r=n[t];i?M.addKeyword(r,i):(S=r,u(),S=""),t++}}function p(e,n){return e.scope&&"string"===typeof e.scope&&M.openNode(y.classNameAliases[e.scope]||e.scope),e.beginScope&&(e.beginScope._wrap?(M.addKeyword(S,y.classNameAliases[e.beginScope._wrap]||e.beginScope._wrap),S=""):e.beginScope._multi&&(d(e.beginScope,n),S="")),v=Object.create(e,{parent:{value:v}}),v}function b(e,n,t){let i=function(e,n){const t=e&&e.exec(n);return t&&0===t.index}(e.endRe,t);if(i){if(e["on:end"]){const t=new r(e);e["on:end"](n,t),t.isMatchIgnored&&(i=!1)}if(i){for(;e.endsParent&&e.parent;)e=e.parent;return e}}if(e.endsWithParent)return b(e.parent,n,t)}function m(e){return 0===v.matcher.regexIndex?(S+=e[0],1):(I=!0,0)}function w(e){const n=e[0],i=t.substr(e.index),r=b(v,e,i);if(!r)return re;const o=v;v.endScope&&v.endScope._wrap?(g(),M.addKeyword(n,v.endScope._wrap)):v.endScope&&v.endScope._multi?(g(),d(v.endScope,e)):o.skip?S+=n:(o.returnEnd||o.excludeEnd||(S+=n),g(),o.excludeEnd&&(S=n));do{v.scope&&M.closeNode(),v.skip||v.subLanguage||(R+=v.relevance),v=v.parent}while(v!==r.parent);return r.starts&&p(r.starts,e),o.returnEnd?0:n.length}let x={};function _(n,o){const a=o&&o[0];if(S+=n,null==a)return g(),0;if("begin"===x.type&&"end"===o.type&&x.index===o.index&&""===a){if(S+=t.slice(o.index,o.index+1),!s){const n=new Error(`0 width match regex (${e})`);throw n.languageName=e,n.badRule=x.rule,n}return 1}if(x=o,"begin"===o.type)return function(e){const n=e[0],t=e.rule,i=new r(t),o=[t.__beforeBegin,t["on:begin"]];for(const r of o)if(r&&(r(e,i),i.isMatchIgnored))return m(n);return t.skip?S+=n:(t.excludeBegin&&(S+=n),g(),t.returnBegin||t.excludeBegin||(S=n)),p(t,e),t.returnBegin?0:n.length}(o);if("illegal"===o.type&&!i){const e=new Error('Illegal lexeme "'+a+'" for mode "'+(v.scope||"")+'"');throw e.mode=v,e}if("end"===o.type){const e=w(o);if(e!==re)return e}if("illegal"===o.type&&""===a)return 1;if(j>1e5&&j>3*o.index){throw new Error("potential infinite loop, way more iterations than matches")}return S+=a,a.length}const y=E(e);if(!y)throw F(a.replace("{}",e)),new Error('Unknown language: "'+e+'"');const N=ee(y);let O="",v=o||N;const k={},M=new l.__emitter(l);!function(){const e=[];for(let n=v;n!==y;n=n.parent)n.scope&&e.unshift(n.scope);e.forEach((e=>M.openNode(e)))}();let S="",R=0,A=0,j=0,I=!1;try{for(v.matcher.considerAll();;){j++,I?I=!1:v.matcher.considerAll(),v.matcher.lastIndex=A;const e=v.matcher.exec(t);if(!e)break;const n=_(t.substring(A,e.index),e);A=e.index+n}return _(t.substr(A)),M.closeAllNodes(),M.finalize(),O=M.toHTML(),{language:e,value:O,relevance:R,illegal:!1,_emitter:M,_top:v}}catch(T){if(T.message&&T.message.includes("Illegal"))return{language:e,value:te(t),illegal:!0,relevance:0,_illegalBy:{message:T.message,index:A,context:t.slice(A-100,A+100),mode:T.mode,resultSoFar:O},_emitter:M};if(s)return{language:e,value:te(t),illegal:!1,relevance:0,errorRaised:T,_emitter:M,_top:v};throw T}}function f(e,t){t=t||l.languages||Object.keys(n);const i=function(e){const n={value:te(e),illegal:!1,relevance:0,_top:c,_emitter:new l.__emitter(l)};return n._emitter.addText(e),n}(e),r=t.filter(E).filter(x).map((n=>h(n,e,!1)));r.unshift(i);const o=r.sort(((e,n)=>{if(e.relevance!==n.relevance)return n.relevance-e.relevance;if(e.language&&n.language){if(E(e.language).supersetOf===n.language)return 1;if(E(n.language).supersetOf===e.language)return-1}return 0})),[s,a]=o,u=s;return u.secondBest=a,u}function p(e){let n=null;const i=function(e){let n=e.className+" ";n+=e.parentNode?e.parentNode.className:"";const t=l.languageDetectRe.exec(n);if(t){const n=E(t[1]);return n||(V(a.replace("{}",t[1])),V("Falling back to no-highlight mode for this block.",e)),n?t[1]:"no-highlight"}return n.split(/\s+/).find((e=>g(e)||E(e)))}(e);if(g(i))return;_("before:highlightElement",{el:e,language:i}),!l.ignoreUnescapedHTML&&e.children.length>0&&(console.warn("One of your code blocks includes unescaped HTML. This is a potentially serious security risk."),console.warn("https://github.com/highlightjs/highlight.js/issues/2886"),console.warn(e)),n=e;const r=n.textContent,o=i?d(r,{language:i,ignoreIllegals:!0}):f(r);e.innerHTML=o.value,function(e,n,i){const r=n&&t[n]||i;e.classList.add("hljs"),e.classList.add(`language-${r}`)}(e,i,o.language),e.result={language:o.language,re:o.relevance,relevance:o.relevance},o.secondBest&&(e.secondBest={language:o.secondBest.language,relevance:o.secondBest.relevance}),_("after:highlightElement",{el:e,result:o,text:r})}let b=!1;function m(){if("loading"===document.readyState)return void(b=!0);document.querySelectorAll(l.cssSelector).forEach(p)}function E(e){return e=(e||"").toLowerCase(),n[e]||n[t[e]]}function w(e,{languageName:n}){"string"===typeof e&&(e=[e]),e.forEach((e=>{t[e.toLowerCase()]=n}))}function x(e){const n=E(e);return n&&!n.disableAutodetect}function _(e,n){const t=e;o.forEach((function(e){e[t]&&e[t](n)}))}"undefined"!==typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(function(){b&&m()}),!1),Object.assign(e,{highlight:d,highlightAuto:f,highlightAll:m,highlightElement:p,highlightBlock:function(e){return J("10.7.0","highlightBlock will be removed entirely in v12.0"),J("10.7.0","Please use highlightElement now."),p(e)},configure:function(e){l=ie(l,e)},initHighlighting:()=>{m(),J("10.6.0","initHighlighting() deprecated. Use highlightAll() now.")},initHighlightingOnLoad:function(){m(),J("10.6.0","initHighlightingOnLoad() deprecated. Use highlightAll() now.")},registerLanguage:function(t,i){let r=null;try{r=i(e)}catch(o){if(F("Language definition for '{}' could not be registered.".replace("{}",t)),!s)throw o;F(o),r=c}r.name||(r.name=t),n[t]=r,r.rawDefinition=i.bind(null,e),r.aliases&&w(r.aliases,{languageName:t})},unregisterLanguage:function(e){delete n[e];for(const n of Object.keys(t))t[n]===e&&delete t[n]},listLanguages:function(){return Object.keys(n)},getLanguage:E,registerAliases:w,autoDetection:x,inherit:ie,addPlugin:function(e){!function(e){e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=n=>{e["before:highlightBlock"](Object.assign({block:n.el},n))}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=n=>{e["after:highlightBlock"](Object.assign({block:n.el},n))})}(e),o.push(e)}}),e.debugMode=function(){s=!1},e.safeMode=function(){s=!0},e.versionString="11.2.0";for(const r in C)"object"===typeof C[r]&&i(C[r]);return Object.assign(e,C),e}({});e.exports=oe},30837:function(e,n,t){"use strict";var i=t(33390);n.Z=i},14636:function(e,n){"use strict";n.Z=function(e){const n={beginKeywords:["true","false","null"].join(" ")};return{name:"JSON",contains:[{className:"attr",begin:/"(\\.|[^\\"\r\n])*"(?=\s*:)/,relevance:1.01},{match:/[{}[\],:]/,className:"punctuation",relevance:0},e.QUOTE_STRING_MODE,n,e.C_NUMBER_MODE,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE],illegal:"\\S"}}}}]); -------------------------------------------------------------------------------- /assets/static/chunks/113-6f2e30a583e771730fab.js: -------------------------------------------------------------------------------- 1 | (self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[113],{71507:function(u,e,D){"use strict";var t=D(29163),r=D(61397),n=D(53205);const F=t.ZP.h2.withConfig({displayName:"Heading",componentId:"sc-1cjoo9h-0"})(["font-weight:",";font-size:",";margin:0;",";"],(0,r.U2)("fontWeights.bold"),(0,r.U2)("fontSizes.5"),n.Z);e.Z=F},89545:function(u,e,D){"use strict";var t=D(94184),r=D.n(t),n=D(67294),F=D(29163),o=D(61397),a=D(53205);function i(){return(i=Object.assign||function(u){for(var e=1;e *{margin-left:",";}> *:first-child{margin-left:0;}}.SubNav-actions{align-self:center;}",";"],(0,o.U2)("space.2"),a.Z);function s({actions:u,className:e,children:D,label:t,...F}){const o=r()(e,"SubNav");return n.createElement(l,i({className:o,"aria-label":t},F),n.createElement("div",{className:"SubNav-body"},D),u&&n.createElement("div",{className:"SubNav-actions"},u))}s.displayName="SubNav";const c=F.ZP.div.withConfig({displayName:"SubNav__SubNavLinks",componentId:"sc-f7w0xa-1"})(["display:flex;",";"],a.Z),C=F.ZP.a.attrs((u=>({activeClassName:"string"===typeof u.to?"selected":"",className:r()("SubNav-item",u.selected&&"selected",u.className)}))).withConfig({displayName:"SubNav__SubNavLink",componentId:"sc-f7w0xa-2"})(["padding-left:",";padding-right:",";font-weight:",";font-size:",";line-height:20px;min-height:34px;color:",";text-align:center;text-decoration:none;border-top:1px solid ",";border-bottom:1px solid ",";border-right:1px solid ",";display:flex;align-items:center;&:first-of-type{border-top-left-radius:",";border-bottom-left-radius:",";border-left:1px solid ",";}&:last-of-type{border-top-right-radius:",";border-bottom-right-radius:",";}&:hover,&:focus{text-decoration:none;background-color:",";transition:0.2s ease;.SubNav-octicon{color:",";}}&.selected{color:",";background-color:",";border-color:",";.SubNav-octicon{color:",";}}",";"],(0,o.U2)("space.3"),(0,o.U2)("space.3"),(0,o.U2)("fontWeights.semibold"),(0,o.U2)("fontSizes.1"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.border.default"),(0,o.U2)("colors.border.default"),(0,o.U2)("colors.border.default"),(0,o.U2)("radii.2"),(0,o.U2)("radii.2"),(0,o.U2)("colors.border.default"),(0,o.U2)("radii.2"),(0,o.U2)("radii.2"),(0,o.U2)("colors.canvas.subtle"),(0,o.U2)("colors.fg.muted"),(0,o.U2)("colors.fg.onEmphasis"),(0,o.U2)("colors.accent.emphasis"),(0,o.U2)("colors.accent.emphasis"),(0,o.U2)("colors.fg.onEmphasis"),a.Z);C.displayName="SubNav.Link",c.displayName="SubNav.Links",e.Z=Object.assign(s,{Link:C,Links:c})},83757:function(u,e,D){"use strict";var t=D(94184),r=D.n(t),n=D(67294),F=D(29163),o=D(61397),a=D(53205);const i=F.ZP.div.withConfig({displayName:"TabNav__TabNavBase",componentId:"sc-1xod0ow-0"})(["margin-top:0;border-bottom:1px solid ",";",""],(0,o.U2)("colors.border.default"),a.Z),l=F.ZP.nav.withConfig({displayName:"TabNav__TabNavBody",componentId:"sc-1xod0ow-1"})(["display:flex;margin-bottom:-1px;overflow:auto;"]);function s({children:u,"aria-label":e,...D}){return n.createElement(i,D,n.createElement(l,{"aria-label":e},u))}s.displayName="TabNav";const c=F.ZP.a.attrs((u=>({activeClassName:"string"===typeof u.to?"selected":"",className:r()("TabNav-item",u.selected&&"selected",u.className)}))).withConfig({displayName:"TabNav__TabNavLink",componentId:"sc-1xod0ow-2"})(["padding:8px 12px;font-size:",";line-height:20px;color:",";text-decoration:none;background-color:transparent;border:1px solid transparent;border-bottom:0;&:hover,&:focus{color:",";text-decoration:none;}&.selected{color:",";border-color:",";border-top-right-radius:",";border-top-left-radius:",";background-color:",";}",";"],(0,o.U2)("fontSizes.1"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.border.default"),(0,o.U2)("radii.2"),(0,o.U2)("radii.2"),(0,o.U2)("colors.canvas.default"),a.Z);c.displayName="TabNav.Link",e.Z=Object.assign(s,{Link:c})},6891:function(u,e,D){"use strict";var t=D(94184),r=D.n(t),n=D(67294),F=D(29163),o=D(61397),a=D(53205);function i(){return(i=Object.assign||function(u){for(var e=1;e({activeClassName:"string"===typeof u.to?"selected":"",className:r()("UnderlineNav-item",u.selected&&"selected",u.className)}))).withConfig({displayName:"UnderlineNav__UnderlineNavLink",componentId:"sc-zrnxqt-1"})(["padding:"," ",";margin-right:",";font-size:",";line-height:",";color:",";text-align:center;border-bottom:2px solid transparent;text-decoration:none;&:hover,&:focus{color:",";text-decoration:none;border-bottom-color:",";transition:0.2s ease;.UnderlineNav-octicon{color:",";}}&.selected{color:",";border-bottom-color:",";.UnderlineNav-octicon{color:",";}}",";"],(0,o.U2)("space.3"),(0,o.U2)("space.2"),(0,o.U2)("space.3"),(0,o.U2)("fontSizes.1"),(0,o.U2)("lineHeights.default"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.neutral.muted"),(0,o.U2)("colors.fg.muted"),(0,o.U2)("colors.fg.default"),(0,o.U2)("colors.primer.border.active"),(0,o.U2)("colors.fg.default"),a.Z);c.displayName="UnderlineNav.Link",e.Z=Object.assign(s,{Link:c})},69671:function(u,e,D){const t=D(81701);u.exports=n;const r=Object.hasOwnProperty;function n(){if(!(this instanceof n))return new n;this.reset()}function F(u,e){return"string"!==typeof u?"":(e||(u=u.toLowerCase()),u.replace(t,"").replace(/ /g,"-"))}n.prototype.slug=function(u,e){const D=this;let t=F(u,!0===e);const n=t;for(;r.call(D.occurrences,t);)D.occurrences[n]++,t=n+"-"+D.occurrences[n];return D.occurrences[t]=0,t},n.prototype.reset=function(){this.occurrences=Object.create(null)},n.slug=F},81701:function(u){u.exports=/[\0-\x1F!-,\.\/:-@\[-\^`\{-\xA9\xAB-\xB4\xB6-\xB9\xBB-\xBF\xD7\xF7\u02C2-\u02C5\u02D2-\u02DF\u02E5-\u02EB\u02ED\u02EF-\u02FF\u0375\u0378\u0379\u037E\u0380-\u0385\u0387\u038B\u038D\u03A2\u03F6\u0482\u0530\u0557\u0558\u055A-\u055F\u0589-\u0590\u05BE\u05C0\u05C3\u05C6\u05C8-\u05CF\u05EB-\u05EE\u05F3-\u060F\u061B-\u061F\u066A-\u066D\u06D4\u06DD\u06DE\u06E9\u06FD\u06FE\u0700-\u070F\u074B\u074C\u07B2-\u07BF\u07F6-\u07F9\u07FB\u07FC\u07FE\u07FF\u082E-\u083F\u085C-\u085F\u086B-\u089F\u08B5\u08BE-\u08D2\u08E2\u0964\u0965\u0970\u0984\u098D\u098E\u0991\u0992\u09A9\u09B1\u09B3-\u09B5\u09BA\u09BB\u09C5\u09C6\u09C9\u09CA\u09CF-\u09D6\u09D8-\u09DB\u09DE\u09E4\u09E5\u09F2-\u09FB\u09FD\u09FF\u0A00\u0A04\u0A0B-\u0A0E\u0A11\u0A12\u0A29\u0A31\u0A34\u0A37\u0A3A\u0A3B\u0A3D\u0A43-\u0A46\u0A49\u0A4A\u0A4E-\u0A50\u0A52-\u0A58\u0A5D\u0A5F-\u0A65\u0A76-\u0A80\u0A84\u0A8E\u0A92\u0AA9\u0AB1\u0AB4\u0ABA\u0ABB\u0AC6\u0ACA\u0ACE\u0ACF\u0AD1-\u0ADF\u0AE4\u0AE5\u0AF0-\u0AF8\u0B00\u0B04\u0B0D\u0B0E\u0B11\u0B12\u0B29\u0B31\u0B34\u0B3A\u0B3B\u0B45\u0B46\u0B49\u0B4A\u0B4E-\u0B55\u0B58-\u0B5B\u0B5E\u0B64\u0B65\u0B70\u0B72-\u0B81\u0B84\u0B8B-\u0B8D\u0B91\u0B96-\u0B98\u0B9B\u0B9D\u0BA0-\u0BA2\u0BA5-\u0BA7\u0BAB-\u0BAD\u0BBA-\u0BBD\u0BC3-\u0BC5\u0BC9\u0BCE\u0BCF\u0BD1-\u0BD6\u0BD8-\u0BE5\u0BF0-\u0BFF\u0C0D\u0C11\u0C29\u0C3A-\u0C3C\u0C45\u0C49\u0C4E-\u0C54\u0C57\u0C5B-\u0C5F\u0C64\u0C65\u0C70-\u0C7F\u0C84\u0C8D\u0C91\u0CA9\u0CB4\u0CBA\u0CBB\u0CC5\u0CC9\u0CCE-\u0CD4\u0CD7-\u0CDD\u0CDF\u0CE4\u0CE5\u0CF0\u0CF3-\u0CFF\u0D04\u0D0D\u0D11\u0D45\u0D49\u0D4F-\u0D53\u0D58-\u0D5E\u0D64\u0D65\u0D70-\u0D79\u0D80\u0D81\u0D84\u0D97-\u0D99\u0DB2\u0DBC\u0DBE\u0DBF\u0DC7-\u0DC9\u0DCB-\u0DCE\u0DD5\u0DD7\u0DE0-\u0DE5\u0DF0\u0DF1\u0DF4-\u0E00\u0E3B-\u0E3F\u0E4F\u0E5A-\u0E80\u0E83\u0E85\u0E8B\u0EA4\u0EA6\u0EBE\u0EBF\u0EC5\u0EC7\u0ECE\u0ECF\u0EDA\u0EDB\u0EE0-\u0EFF\u0F01-\u0F17\u0F1A-\u0F1F\u0F2A-\u0F34\u0F36\u0F38\u0F3A-\u0F3D\u0F48\u0F6D-\u0F70\u0F85\u0F98\u0FBD-\u0FC5\u0FC7-\u0FFF\u104A-\u104F\u109E\u109F\u10C6\u10C8-\u10CC\u10CE\u10CF\u10FB\u1249\u124E\u124F\u1257\u1259\u125E\u125F\u1289\u128E\u128F\u12B1\u12B6\u12B7\u12BF\u12C1\u12C6\u12C7\u12D7\u1311\u1316\u1317\u135B\u135C\u1360-\u137F\u1390-\u139F\u13F6\u13F7\u13FE-\u1400\u166D\u166E\u1680\u169B-\u169F\u16EB-\u16ED\u16F9-\u16FF\u170D\u1715-\u171F\u1735-\u173F\u1754-\u175F\u176D\u1771\u1774-\u177F\u17D4-\u17D6\u17D8-\u17DB\u17DE\u17DF\u17EA-\u180A\u180E\u180F\u181A-\u181F\u1879-\u187F\u18AB-\u18AF\u18F6-\u18FF\u191F\u192C-\u192F\u193C-\u1945\u196E\u196F\u1975-\u197F\u19AC-\u19AF\u19CA-\u19CF\u19DA-\u19FF\u1A1C-\u1A1F\u1A5F\u1A7D\u1A7E\u1A8A-\u1A8F\u1A9A-\u1AA6\u1AA8-\u1AAF\u1ABF-\u1AFF\u1B4C-\u1B4F\u1B5A-\u1B6A\u1B74-\u1B7F\u1BF4-\u1BFF\u1C38-\u1C3F\u1C4A-\u1C4C\u1C7E\u1C7F\u1C89-\u1C8F\u1CBB\u1CBC\u1CC0-\u1CCF\u1CD3\u1CFB-\u1CFF\u1DFA\u1F16\u1F17\u1F1E\u1F1F\u1F46\u1F47\u1F4E\u1F4F\u1F58\u1F5A\u1F5C\u1F5E\u1F7E\u1F7F\u1FB5\u1FBD\u1FBF-\u1FC1\u1FC5\u1FCD-\u1FCF\u1FD4\u1FD5\u1FDC-\u1FDF\u1FED-\u1FF1\u1FF5\u1FFD-\u203E\u2041-\u2053\u2055-\u2070\u2072-\u207E\u2080-\u208F\u209D-\u20CF\u20F1-\u2101\u2103-\u2106\u2108\u2109\u2114\u2116-\u2118\u211E-\u2123\u2125\u2127\u2129\u212E\u213A\u213B\u2140-\u2144\u214A-\u214D\u214F-\u215F\u2189-\u24B5\u24EA-\u2BFF\u2C2F\u2C5F\u2CE5-\u2CEA\u2CF4-\u2CFF\u2D26\u2D28-\u2D2C\u2D2E\u2D2F\u2D68-\u2D6E\u2D70-\u2D7E\u2D97-\u2D9F\u2DA7\u2DAF\u2DB7\u2DBF\u2DC7\u2DCF\u2DD7\u2DDF\u2E00-\u2E2E\u2E30-\u3004\u3008-\u3020\u3030\u3036\u3037\u303D-\u3040\u3097\u3098\u309B\u309C\u30A0\u30FB\u3100-\u3104\u3130\u318F-\u319F\u31BB-\u31EF\u3200-\u33FF\u4DB6-\u4DFF\u9FF0-\u9FFF\uA48D-\uA4CF\uA4FE\uA4FF\uA60D-\uA60F\uA62C-\uA63F\uA673\uA67E\uA6F2-\uA716\uA720\uA721\uA789\uA78A\uA7C0\uA7C1\uA7C7-\uA7F6\uA828-\uA83F\uA874-\uA87F\uA8C6-\uA8CF\uA8DA-\uA8DF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA954-\uA95F\uA97D-\uA97F\uA9C1-\uA9CE\uA9DA-\uA9DF\uA9FF\uAA37-\uAA3F\uAA4E\uAA4F\uAA5A-\uAA5F\uAA77-\uAA79\uAAC3-\uAADA\uAADE\uAADF\uAAF0\uAAF1\uAAF7-\uAB00\uAB07\uAB08\uAB0F\uAB10\uAB17-\uAB1F\uAB27\uAB2F\uAB5B\uAB68-\uAB6F\uABEB\uABEE\uABEF\uABFA-\uABFF\uD7A4-\uD7AF\uD7C7-\uD7CA\uD7FC-\uD7FF\uE000-\uF8FF\uFA6E\uFA6F\uFADA-\uFAFF\uFB07-\uFB12\uFB18-\uFB1C\uFB29\uFB37\uFB3D\uFB3F\uFB42\uFB45\uFBB2-\uFBD2\uFD3E-\uFD4F\uFD90\uFD91\uFDC8-\uFDEF\uFDFC-\uFDFF\uFE10-\uFE1F\uFE30-\uFE32\uFE35-\uFE4C\uFE50-\uFE6F\uFE75\uFEFD-\uFF0F\uFF1A-\uFF20\uFF3B-\uFF3E\uFF40\uFF5B-\uFF65\uFFBF-\uFFC1\uFFC8\uFFC9\uFFD0\uFFD1\uFFD8\uFFD9\uFFDD-\uFFFF]|\uD800[\uDC0C\uDC27\uDC3B\uDC3E\uDC4E\uDC4F\uDC5E-\uDC7F\uDCFB-\uDD3F\uDD75-\uDDFC\uDDFE-\uDE7F\uDE9D-\uDE9F\uDED1-\uDEDF\uDEE1-\uDEFF\uDF20-\uDF2C\uDF4B-\uDF4F\uDF7B-\uDF7F\uDF9E\uDF9F\uDFC4-\uDFC7\uDFD0\uDFD6-\uDFFF]|\uD801[\uDC9E\uDC9F\uDCAA-\uDCAF\uDCD4-\uDCD7\uDCFC-\uDCFF\uDD28-\uDD2F\uDD64-\uDDFF\uDF37-\uDF3F\uDF56-\uDF5F\uDF68-\uDFFF]|\uD802[\uDC06\uDC07\uDC09\uDC36\uDC39-\uDC3B\uDC3D\uDC3E\uDC56-\uDC5F\uDC77-\uDC7F\uDC9F-\uDCDF\uDCF3\uDCF6-\uDCFF\uDD16-\uDD1F\uDD3A-\uDD7F\uDDB8-\uDDBD\uDDC0-\uDDFF\uDE04\uDE07-\uDE0B\uDE14\uDE18\uDE36\uDE37\uDE3B-\uDE3E\uDE40-\uDE5F\uDE7D-\uDE7F\uDE9D-\uDEBF\uDEC8\uDEE7-\uDEFF\uDF36-\uDF3F\uDF56-\uDF5F\uDF73-\uDF7F\uDF92-\uDFFF]|\uD803[\uDC49-\uDC7F\uDCB3-\uDCBF\uDCF3-\uDCFF\uDD28-\uDD2F\uDD3A-\uDEFF\uDF1D-\uDF26\uDF28-\uDF2F\uDF51-\uDFDF\uDFF7-\uDFFF]|\uD804[\uDC47-\uDC65\uDC70-\uDC7E\uDCBB-\uDCCF\uDCE9-\uDCEF\uDCFA-\uDCFF\uDD35\uDD40-\uDD43\uDD47-\uDD4F\uDD74\uDD75\uDD77-\uDD7F\uDDC5-\uDDC8\uDDCD-\uDDCF\uDDDB\uDDDD-\uDDFF\uDE12\uDE38-\uDE3D\uDE3F-\uDE7F\uDE87\uDE89\uDE8E\uDE9E\uDEA9-\uDEAF\uDEEB-\uDEEF\uDEFA-\uDEFF\uDF04\uDF0D\uDF0E\uDF11\uDF12\uDF29\uDF31\uDF34\uDF3A\uDF45\uDF46\uDF49\uDF4A\uDF4E\uDF4F\uDF51-\uDF56\uDF58-\uDF5C\uDF64\uDF65\uDF6D-\uDF6F\uDF75-\uDFFF]|\uD805[\uDC4B-\uDC4F\uDC5A-\uDC5D\uDC60-\uDC7F\uDCC6\uDCC8-\uDCCF\uDCDA-\uDD7F\uDDB6\uDDB7\uDDC1-\uDDD7\uDDDE-\uDDFF\uDE41-\uDE43\uDE45-\uDE4F\uDE5A-\uDE7F\uDEB9-\uDEBF\uDECA-\uDEFF\uDF1B\uDF1C\uDF2C-\uDF2F\uDF3A-\uDFFF]|\uD806[\uDC3B-\uDC9F\uDCEA-\uDCFE\uDD00-\uDD9F\uDDA8\uDDA9\uDDD8\uDDD9\uDDE2\uDDE5-\uDDFF\uDE3F-\uDE46\uDE48-\uDE4F\uDE9A-\uDE9C\uDE9E-\uDEBF\uDEF9-\uDFFF]|\uD807[\uDC09\uDC37\uDC41-\uDC4F\uDC5A-\uDC71\uDC90\uDC91\uDCA8\uDCB7-\uDCFF\uDD07\uDD0A\uDD37-\uDD39\uDD3B\uDD3E\uDD48-\uDD4F\uDD5A-\uDD5F\uDD66\uDD69\uDD8F\uDD92\uDD99-\uDD9F\uDDAA-\uDEDF\uDEF7-\uDFFF]|\uD808[\uDF9A-\uDFFF]|\uD809[\uDC6F-\uDC7F\uDD44-\uDFFF]|[\uD80A\uD80B\uD80E-\uD810\uD812-\uD819\uD823-\uD82B\uD82D\uD82E\uD830-\uD833\uD837\uD839\uD83D-\uD83F\uD87B-\uD87D\uD87F-\uDB3F\uDB41-\uDBFF][\uDC00-\uDFFF]|\uD80D[\uDC2F-\uDFFF]|\uD811[\uDE47-\uDFFF]|\uD81A[\uDE39-\uDE3F\uDE5F\uDE6A-\uDECF\uDEEE\uDEEF\uDEF5-\uDEFF\uDF37-\uDF3F\uDF44-\uDF4F\uDF5A-\uDF62\uDF78-\uDF7C\uDF90-\uDFFF]|\uD81B[\uDC00-\uDE3F\uDE80-\uDEFF\uDF4B-\uDF4E\uDF88-\uDF8E\uDFA0-\uDFDF\uDFE2\uDFE4-\uDFFF]|\uD821[\uDFF8-\uDFFF]|\uD822[\uDEF3-\uDFFF]|\uD82C[\uDD1F-\uDD4F\uDD53-\uDD63\uDD68-\uDD6F\uDEFC-\uDFFF]|\uD82F[\uDC6B-\uDC6F\uDC7D-\uDC7F\uDC89-\uDC8F\uDC9A-\uDC9C\uDC9F-\uDFFF]|\uD834[\uDC00-\uDD64\uDD6A-\uDD6C\uDD73-\uDD7A\uDD83\uDD84\uDD8C-\uDDA9\uDDAE-\uDE41\uDE45-\uDFFF]|\uD835[\uDC55\uDC9D\uDCA0\uDCA1\uDCA3\uDCA4\uDCA7\uDCA8\uDCAD\uDCBA\uDCBC\uDCC4\uDD06\uDD0B\uDD0C\uDD15\uDD1D\uDD3A\uDD3F\uDD45\uDD47-\uDD49\uDD51\uDEA6\uDEA7\uDEC1\uDEDB\uDEFB\uDF15\uDF35\uDF4F\uDF6F\uDF89\uDFA9\uDFC3\uDFCC\uDFCD]|\uD836[\uDC00-\uDDFF\uDE37-\uDE3A\uDE6D-\uDE74\uDE76-\uDE83\uDE85-\uDE9A\uDEA0\uDEB0-\uDFFF]|\uD838[\uDC07\uDC19\uDC1A\uDC22\uDC25\uDC2B-\uDCFF\uDD2D-\uDD2F\uDD3E\uDD3F\uDD4A-\uDD4D\uDD4F-\uDEBF\uDEFA-\uDFFF]|\uD83A[\uDCC5-\uDCCF\uDCD7-\uDCFF\uDD4C-\uDD4F\uDD5A-\uDFFF]|\uD83B[\uDC00-\uDDFF\uDE04\uDE20\uDE23\uDE25\uDE26\uDE28\uDE33\uDE38\uDE3A\uDE3C-\uDE41\uDE43-\uDE46\uDE48\uDE4A\uDE4C\uDE50\uDE53\uDE55\uDE56\uDE58\uDE5A\uDE5C\uDE5E\uDE60\uDE63\uDE65\uDE66\uDE6B\uDE73\uDE78\uDE7D\uDE7F\uDE8A\uDE9C-\uDEA0\uDEA4\uDEAA\uDEBC-\uDFFF]|\uD83C[\uDC00-\uDD2F\uDD4A-\uDD4F\uDD6A-\uDD6F\uDD8A-\uDFFF]|\uD869[\uDED7-\uDEFF]|\uD86D[\uDF35-\uDF3F]|\uD86E[\uDC1E\uDC1F]|\uD873[\uDEA2-\uDEAF]|\uD87A[\uDFE1-\uDFFF]|\uD87E[\uDE1E-\uDFFF]|\uDB40[\uDC00-\uDCFF\uDDF0-\uDFFF]/g},18674:function(u){u.exports=function(u){return function(e){return null==u?void 0:u[e]}}},89464:function(u,e,D){var t=D(18674)({"&":"&","<":"<",">":">",'"':""","'":"'"});u.exports=t},7187:function(u,e,D){var t=D(89464),r=D(79833),n=/[&<>"']/g,F=RegExp(n.source);u.exports=function(u){return(u=r(u))&&F.test(u)?u.replace(n,t):u}},98771:function(u,e,D){"use strict";var t=D(61682);function r(u,e){var D=Object.keys(u);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(u);e&&(t=t.filter((function(e){return Object.getOwnPropertyDescriptor(u,e).enumerable}))),D.push.apply(D,t)}return D}function n(u){for(var e=1;e=u.length?{done:!0}:{done:!1,value:u[t++]}},e:function(u){throw u},f:r}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var n,F=!0,o=!1;return{s:function(){D=D.call(u)},n:function(){var u=D.next();return F=u.done,u},e:function(u){o=!0,n=u},f:function(){try{F||null==D.return||D.return()}finally{if(o)throw n}}}}function i(u,e){(null==e||e>u.length)&&(e=u.length);for(var D=0,t=new Array(e);D0&&void 0!==arguments[0]?arguments[0]:[];return new Promise((function(e){var D=function(){return f=!0,e()};b(d,u).then(D,D)}))},window.__NEXT_PRELOADREADY=p.preloadReady;var m=p;e.default=m},5152:function(u,e,D){u.exports=D(98771)},96776:function(u,e,D){"use strict";function t(u,e){return function(u,e){var D=u;if(!D)return Promise.resolve(e());var t=D.ownerDocument.documentElement;function r(u){for(var e=[];u;){var D=u.getBoundingClientRect(),t=D.top,r=D.left;e.push({element:u,top:t,left:r}),u=u.parentElement}return e}function n(u){for(var e=0;e[class*=col-]{padding-right:16px!important;padding-left:16px!important}.PatchNotes_gutter-condensed__1_5BD{margin-right:-8px;margin-left:-8px}.PatchNotes_gutter-condensed__1_5BD>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.PatchNotes_gutter-spacious__Sb6is{margin-right:-24px;margin-left:-24px}.PatchNotes_gutter-spacious__Sb6is>[class*=col-]{padding-right:24px!important;padding-left:24px!important}@media(min-width:544px){.PatchNotes_gutter-sm__3RSsC{margin-right:-16px;margin-left:-16px}.PatchNotes_gutter-sm__3RSsC>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.PatchNotes_gutter-sm-condensed__21uCP{margin-right:-8px;margin-left:-8px}.PatchNotes_gutter-sm-condensed__21uCP>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.PatchNotes_gutter-sm-spacious__2_RCD{margin-right:-24px;margin-left:-24px}.PatchNotes_gutter-sm-spacious__2_RCD>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media(min-width:768px){.PatchNotes_gutter-md__1NYMy{margin-right:-16px;margin-left:-16px}.PatchNotes_gutter-md__1NYMy>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.PatchNotes_gutter-md-condensed__19yC8{margin-right:-8px;margin-left:-8px}.PatchNotes_gutter-md-condensed__19yC8>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.PatchNotes_gutter-md-spacious__2quqq{margin-right:-24px;margin-left:-24px}.PatchNotes_gutter-md-spacious__2quqq>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media(min-width:1012px){.PatchNotes_gutter-lg__grCOz{margin-right:-16px;margin-left:-16px}.PatchNotes_gutter-lg__grCOz>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.PatchNotes_gutter-lg-condensed__eZVJi{margin-right:-8px;margin-left:-8px}.PatchNotes_gutter-lg-condensed__eZVJi>[class*=col-]{padding-right:8px!important;padding-left:8px!important}.PatchNotes_gutter-lg-spacious__3L-cs{margin-right:-24px;margin-left:-24px}.PatchNotes_gutter-lg-spacious__3L-cs>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}@media(min-width:1280px){.PatchNotes_gutter-xl__2NKut{margin-right:-16px;margin-left:-16px}.PatchNotes_gutter-xl__2NKut>[class*=col-]{padding-right:16px!important;padding-left:16px!important}.PatchNotes_gutter-xl-condensed__ZGpD-{margin-right:-8px;margin-left:-8px}.PatchNotes_gutter-xl-condensed__ZGpD->[class*=col-]{padding-right:8px!important;padding-left:8px!important}.PatchNotes_gutter-xl-spacious__1PRMw{margin-right:-24px;margin-left:-24px}.PatchNotes_gutter-xl-spacious__1PRMw>[class*=col-]{padding-right:24px!important;padding-left:24px!important}}.PatchNotes_offset-1__3SKLJ{margin-left:8.33333333%!important}.PatchNotes_offset-2__WaovZ{margin-left:16.66666666%!important}.PatchNotes_offset-3__peSlC{margin-left:24.99999999%!important}.PatchNotes_offset-4__xAkqQ{margin-left:33.33333332%!important}.PatchNotes_offset-5__3pmaX{margin-left:41.66666665%!important}.PatchNotes_offset-6__2E5ME{margin-left:49.99999998%!important}.PatchNotes_offset-7__2Tmiu{margin-left:58.33333331%!important}.PatchNotes_offset-8__2HNt8{margin-left:66.66666664%!important}.PatchNotes_offset-9__Ro5DT{margin-left:74.99999997%!important}.PatchNotes_offset-10__3BhXk{margin-left:83.3333333%!important}.PatchNotes_offset-11__1QR1e{margin-left:91.66666663%!important}@media(min-width:544px){.PatchNotes_offset-sm-1__349V9{margin-left:8.33333333%!important}.PatchNotes_offset-sm-2__c-dqT{margin-left:16.66666666%!important}.PatchNotes_offset-sm-3__1qey2{margin-left:24.99999999%!important}.PatchNotes_offset-sm-4__2654C{margin-left:33.33333332%!important}.PatchNotes_offset-sm-5__Yx7Zo{margin-left:41.66666665%!important}.PatchNotes_offset-sm-6__2shqk{margin-left:49.99999998%!important}.PatchNotes_offset-sm-7__32zPf{margin-left:58.33333331%!important}.PatchNotes_offset-sm-8__4gKAl{margin-left:66.66666664%!important}.PatchNotes_offset-sm-9__2QIYv{margin-left:74.99999997%!important}.PatchNotes_offset-sm-10__1x3SC{margin-left:83.3333333%!important}.PatchNotes_offset-sm-11__1gwYO{margin-left:91.66666663%!important}}@media(min-width:768px){.PatchNotes_offset-md-1__WlQmE{margin-left:8.33333333%!important}.PatchNotes_offset-md-2__3McTV{margin-left:16.66666666%!important}.PatchNotes_offset-md-3__3UZQf{margin-left:24.99999999%!important}.PatchNotes_offset-md-4__3iAeJ{margin-left:33.33333332%!important}.PatchNotes_offset-md-5__1qvdo{margin-left:41.66666665%!important}.PatchNotes_offset-md-6__1nWfD{margin-left:49.99999998%!important}.PatchNotes_offset-md-7__26sAs{margin-left:58.33333331%!important}.PatchNotes_offset-md-8__30Ode{margin-left:66.66666664%!important}.PatchNotes_offset-md-9__3duP4{margin-left:74.99999997%!important}.PatchNotes_offset-md-10__1E4Cp{margin-left:83.3333333%!important}.PatchNotes_offset-md-11__uXG5H{margin-left:91.66666663%!important}}@media(min-width:1012px){.PatchNotes_offset-lg-1__1ddB8{margin-left:8.33333333%!important}.PatchNotes_offset-lg-2__Qtxtd{margin-left:16.66666666%!important}.PatchNotes_offset-lg-3__vj1ug{margin-left:24.99999999%!important}.PatchNotes_offset-lg-4__1X8tW{margin-left:33.33333332%!important}.PatchNotes_offset-lg-5__o8Bhs{margin-left:41.66666665%!important}.PatchNotes_offset-lg-6__1hf1l{margin-left:49.99999998%!important}.PatchNotes_offset-lg-7__2J2OP{margin-left:58.33333331%!important}.PatchNotes_offset-lg-8__3l5q1{margin-left:66.66666664%!important}.PatchNotes_offset-lg-9__3sIeZ{margin-left:74.99999997%!important}.PatchNotes_offset-lg-10__8s7Ur{margin-left:83.3333333%!important}.PatchNotes_offset-lg-11__3UvQk{margin-left:91.66666663%!important}}@media(min-width:1280px){.PatchNotes_offset-xl-1__2UWwz{margin-left:8.33333333%!important}.PatchNotes_offset-xl-2__A86kO{margin-left:16.66666666%!important}.PatchNotes_offset-xl-3__TMbxD{margin-left:24.99999999%!important}.PatchNotes_offset-xl-4__3DE_h{margin-left:33.33333332%!important}.PatchNotes_offset-xl-5__3v6sn{margin-left:41.66666665%!important}.PatchNotes_offset-xl-6__1QOhj{margin-left:49.99999998%!important}.PatchNotes_offset-xl-7__2pN4Q{margin-left:58.33333331%!important}.PatchNotes_offset-xl-8__1HoNw{margin-left:66.66666664%!important}.PatchNotes_offset-xl-9__2KGKr{margin-left:74.99999997%!important}.PatchNotes_offset-xl-10__1-gQX{margin-left:83.3333333%!important}.PatchNotes_offset-xl-11__3XBCa{margin-left:91.66666663%!important}}.PatchNotes_Layout__3zkSA{display:grid;--Layout-sidebar-width:220px;--Layout-gutter:16px;grid-auto-flow:column;grid-template-columns:auto 0 minmax(0,-webkit-calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter)));grid-template-columns:auto 0 minmax(0,calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter)));grid-gap:var(--Layout-gutter)}@media(max-width:calc(544px - 0.02px)){.PatchNotes_Layout__3zkSA{grid-auto-flow:row;grid-template-columns:1fr!important}.PatchNotes_Layout__3zkSA .PatchNotes_Layout-divider__1W3n0,.PatchNotes_Layout__3zkSA .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA .PatchNotes_Layout-sidebar__1GgyY{width:100%!important;grid-column:1!important}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-flowRow-start__3hMOD .PatchNotes_Layout-sidebar__1GgyY{grid-row:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-sidebar__1GgyY,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-flowRow-start__3hMOD .PatchNotes_Layout-main__3aAm2{grid-row:2/span 2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-main__3aAm2{grid-row:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-flowRow-none__1aFej .PatchNotes_Layout-sidebar__1GgyY{display:none}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1{--Layout-gutter:0}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0{height:1px;grid-row:2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0.PatchNotes_Layout-divider--flowRow-hidden__aVT1P{display:none}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0.PatchNotes_Layout-divider--flowRow-shallow__2rhKV{height:8px;margin-right:0;background:var(--color-canvas-inset);border-left:0 solid var(--color-border-default);border-bottom:1px solid var(--color-border-default);border-right:0 solid var(--color-border-default);border-top:1px solid var(--color-border-default)}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-sidebar__1GgyY{grid-row:3/span 1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-main__3aAm2{grid-row:1}}@media(max-width:calc(768px - 0.02px)){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC{grid-auto-flow:row;grid-template-columns:1fr!important}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC .PatchNotes_Layout-divider__1W3n0,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC .PatchNotes_Layout-sidebar__1GgyY{width:100%!important;grid-column:1!important}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--sidebarPosition-flowRow-start__3hMOD .PatchNotes_Layout-sidebar__1GgyY{grid-row:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-sidebar__1GgyY,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--sidebarPosition-flowRow-start__3hMOD .PatchNotes_Layout-main__3aAm2{grid-row:2/span 2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-main__3aAm2{grid-row:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--sidebarPosition-flowRow-none__1aFej .PatchNotes_Layout-sidebar__1GgyY{display:none}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1{--Layout-gutter:0}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0{height:1px;grid-row:2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0.PatchNotes_Layout-divider--flowRow-hidden__aVT1P{display:none}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0.PatchNotes_Layout-divider--flowRow-shallow__2rhKV{height:8px;margin-right:0;background:var(--color-canvas-inset);border-left:0 solid var(--color-border-default);border-bottom:1px solid var(--color-border-default);border-right:0 solid var(--color-border-default);border-top:1px solid var(--color-border-default)}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-sidebar__1GgyY{grid-row:3/span 1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-md__1GIzC.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-main__3aAm2{grid-row:1}}@media(max-width:calc(1012px - 0.02px)){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8{grid-auto-flow:row;grid-template-columns:1fr!important}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8 .PatchNotes_Layout-divider__1W3n0,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8 .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8 .PatchNotes_Layout-sidebar__1GgyY{width:100%!important;grid-column:1!important}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--sidebarPosition-flowRow-start__3hMOD .PatchNotes_Layout-sidebar__1GgyY{grid-row:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-sidebar__1GgyY,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--sidebarPosition-flowRow-start__3hMOD .PatchNotes_Layout-main__3aAm2{grid-row:2/span 2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-main__3aAm2{grid-row:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--sidebarPosition-flowRow-none__1aFej .PatchNotes_Layout-sidebar__1GgyY{display:none}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1{--Layout-gutter:0}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0{height:1px;grid-row:2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0.PatchNotes_Layout-divider--flowRow-hidden__aVT1P{display:none}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0.PatchNotes_Layout-divider--flowRow-shallow__2rhKV{height:8px;margin-right:0;background:var(--color-canvas-inset);border-left:0 solid var(--color-border-default);border-bottom:1px solid var(--color-border-default);border-right:0 solid var(--color-border-default);border-top:1px solid var(--color-border-default)}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-sidebar__1GgyY{grid-row:3/span 1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--flowRow-until-lg__1m4C8.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-flowRow-end__y4kK_ .PatchNotes_Layout-main__3aAm2{grid-row:1}}.PatchNotes_Layout__3zkSA .PatchNotes_Layout-sidebar__1GgyY{grid-column:1}.PatchNotes_Layout__3zkSA .PatchNotes_Layout-divider__1W3n0{display:none}.PatchNotes_Layout__3zkSA .PatchNotes_Layout-main__3aAm2{grid-column:2/span 2}@media(min-width:1012px){.PatchNotes_Layout__3zkSA{--Layout-gutter:24px}}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--gutter-none__IFhDA{--Layout-gutter:0}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--gutter-condensed__2_7vf{--Layout-gutter:16px}@media(min-width:1012px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--gutter-spacious__1uUM_{--Layout-gutter:32px}}@media(min-width:1280px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--gutter-spacious__1uUM_{--Layout-gutter:40px}}@media(min-width:544px){.PatchNotes_Layout__3zkSA{--Layout-sidebar-width:220px}}@media(min-width:768px){.PatchNotes_Layout__3zkSA{--Layout-sidebar-width:256px}}@media(min-width:1012px){.PatchNotes_Layout__3zkSA{--Layout-sidebar-width:296px}}@media(min-width:768px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebar-narrow__1dOLj{--Layout-sidebar-width:240px}}@media(min-width:1012px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebar-narrow__1dOLj{--Layout-sidebar-width:256px}}@media(min-width:768px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebar-wide__3h8XT{--Layout-sidebar-width:296px}}@media(min-width:1012px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebar-wide__3h8XT{--Layout-sidebar-width:320px}}@media(min-width:1280px){.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebar-wide__3h8XT{--Layout-sidebar-width:344px}}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-start__1yNVF .PatchNotes_Layout-sidebar__1GgyY{grid-column:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-start__1yNVF .PatchNotes_Layout-main__3aAm2{grid-column:2/span 2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-end__3etjo{grid-template-columns:minmax(0,-webkit-calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter))) 0 auto;grid-template-columns:minmax(0,calc(100% - var(--Layout-sidebar-width) - var(--Layout-gutter))) 0 auto}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-end__3etjo .PatchNotes_Layout-main__3aAm2{grid-column:1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--sidebarPosition-end__3etjo .PatchNotes_Layout-sidebar__1GgyY{grid-column:2/span 2}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-divider__1W3n0{display:block;grid-column:2;width:1px;margin-right:-1px;background:var(--color-border-default)}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1 .PatchNotes_Layout-main__3aAm2,.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-end__3etjo .PatchNotes_Layout-sidebar__1GgyY{grid-column:3/span 1}.PatchNotes_Layout__3zkSA.PatchNotes_Layout--divided__1jaY1.PatchNotes_Layout--sidebarPosition-end__3etjo .PatchNotes_Layout-main__3aAm2{grid-column:1}.PatchNotes_Layout-divider__1W3n0{display:none;width:1px}.PatchNotes_Layout-sidebar__1GgyY{width:var(--Layout-sidebar-width)}.PatchNotes_Layout-main__3aAm2{min-width:0}.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-lg__1YxgK,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-md__3prTV,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-xl__1Fd7X{margin-right:auto;margin-left:auto}.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-lg__1YxgK>.PatchNotes_container-lg__k9cAf,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-lg__1YxgK>.PatchNotes_container-md__2QRZw,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-lg__1YxgK>.PatchNotes_container-xl__3qxuw,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-md__3prTV>.PatchNotes_container-lg__k9cAf,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-md__3prTV>.PatchNotes_container-md__2QRZw,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-md__3prTV>.PatchNotes_container-xl__3qxuw,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-xl__1Fd7X>.PatchNotes_container-lg__k9cAf,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-xl__1Fd7X>.PatchNotes_container-md__2QRZw,.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-xl__1Fd7X>.PatchNotes_container-xl__3qxuw{margin-left:0}.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-md__3prTV{max-width:-webkit-calc(768px + var(--Layout-sidebar-width) + var(--Layout-gutter));max-width:calc(768px + var(--Layout-sidebar-width) + var(--Layout-gutter))}.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-lg__1YxgK{max-width:-webkit-calc(1012px + var(--Layout-sidebar-width) + var(--Layout-gutter));max-width:calc(1012px + var(--Layout-sidebar-width) + var(--Layout-gutter))}.PatchNotes_Layout-main__3aAm2 .PatchNotes_Layout-main-centered-xl__1Fd7X{max-width:-webkit-calc(1280px + var(--Layout-sidebar-width) + var(--Layout-gutter));max-width:calc(1280px + var(--Layout-sidebar-width) + var(--Layout-gutter))}.PatchNotes_sectionHeading__1ECVJ{scroll-margin-top:70px!important}.PatchNotes_aside__1iWN0{width:260px;height:-webkit-calc(100vh - 70px);height:calc(100vh - 70px);top:70px}.MarkdownContent_markdownBody__2Fa4B [class~=highlight] pre,.MarkdownContent_markdownBody__2Fa4B pre{margin-top:.5rem}.MarkdownContent_markdownBody__2Fa4B [class~=height-constrained-code-block] pre{max-height:32rem;overflow:auto}.MarkdownContent_markdownBody__2Fa4B [class~=code-extra]{margin-top:1.5rem}.MarkdownContent_markdownBody__2Fa4B [class~=code-extra] pre{margin-top:0!important;border-top-left-radius:0!important;border-top-right-radius:0!important;border-left:1px solid var(--color-border-default)!important;border-bottom:1px solid var(--color-border-default)!important;border-right:1px solid var(--color-border-default)!important}.MarkdownContent_markdownBody__2Fa4B pre [class~=bluebox],.MarkdownContent_markdownBody__2Fa4B pre [class~=greenbox],.MarkdownContent_markdownBody__2Fa4B pre [class~=redbox]{color:var(--color-fg-on-emphasis);padding:0 .25rem;border-radius:4px}.MarkdownContent_markdownBody__2Fa4B pre [class~=redbox]{background-color:var(--color-danger-emphasis)}.MarkdownContent_markdownBody__2Fa4B pre [class~=greenbox]{background-color:var(--color-success-emphasis)}.MarkdownContent_markdownBody__2Fa4B pre [class~=bluebox]{background-color:var(--color-accent-emphasis)}.MarkdownContent_markdownBody__2Fa4B h1,.MarkdownContent_markdownBody__2Fa4B h2,.MarkdownContent_markdownBody__2Fa4B h3,.MarkdownContent_markdownBody__2Fa4B h4,.MarkdownContent_markdownBody__2Fa4B h5{padding-top:1rem}.MarkdownContent_markdownBody__2Fa4B h2 a{color:var(--color-accent-fg)}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling){counter-reset:li;list-style:none;position:relative;padding-bottom:.5rem;padding-left:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li{padding:.5rem 0 .5rem 2.5rem;border:0;position:relative;margin-bottom:.25rem}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li:before{width:-webkit-calc(1.5rem - 2px);width:calc(1.5rem - 2px);height:-webkit-calc(1.5rem - 2px);height:calc(1.5rem - 2px);font-size:-webkit-calc(1rem - 2px);font-size:calc(1rem - 2px);margin:1px 0 0 .5rem;content:counter(li);counter-increment:li;position:absolute;left:0;color:var(--color-canvas-default);font-weight:500;text-align:center;border-radius:50%;background-color:var(--color-fg-default)}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p{margin:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p:first-child{margin-top:0}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li [class~=extended-markdown],.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling)>li p:not(:first-child){margin-top:1rem}.MarkdownContent_markdownBody__2Fa4B ol:not(.no-styling) ol li:before.no-styling{display:none}.MarkdownContent_markdownBody__2Fa4B ol ol,.MarkdownContent_markdownBody__2Fa4B ol ul,.MarkdownContent_markdownBody__2Fa4B ul ol,.MarkdownContent_markdownBody__2Fa4B ul ul{margin-top:1rem;margin-bottom:1rem}.MarkdownContent_markdownBody__2Fa4B div>ol:not([type]){list-style-type:none}.MarkdownContent_markdownBody__2Fa4B table{display:table;border-collapse:collapse;position:relative;font-size:90%;width:100%;line-height:1.5;table-layout:auto}.MarkdownContent_markdownBody__2Fa4B table code{font-size:85%;padding:.2em .4em;background-color:var(--color-canvas-subtle);border-radius:6px}.MarkdownContent_markdownBody__2Fa4B table pre>code{padding:0;background-color:transparent}.MarkdownContent_markdownBody__2Fa4B table thead tr{border:none}.MarkdownContent_markdownBody__2Fa4B table th{font-weight:400;text-align:left;position:sticky;vertical-align:top;z-index:1;top:0;background:var(--color-canvas-default);-webkit-box-shadow:0 3px 0 0 var(--color-canvas-subtle);box-shadow:0 3px 0 0 var(--color-canvas-subtle);padding:.75rem .5rem;border:0}.MarkdownContent_markdownBody__2Fa4B table th[align=center]{text-align:center}.MarkdownContent_markdownBody__2Fa4B table th[align=right]{text-align:right}.MarkdownContent_markdownBody__2Fa4B table td:first-child,.MarkdownContent_markdownBody__2Fa4B table th:first-child{padding-left:0}.MarkdownContent_markdownBody__2Fa4B table td{padding:.75rem .5rem;border:0;vertical-align:top}.MarkdownContent_markdownBody__2Fa4B table td p{padding:0;margin:0}.MarkdownContent_markdownBody__2Fa4B table tr:nth-child(2n){background:none}.MarkdownContent_markdownBody__2Fa4B table td.MarkdownContent_has-nested-table__LPfu3{width:100%}.MarkdownContent_markdownBody__2Fa4B table td.MarkdownContent_has-nested-table__LPfu3 table{table-layout:auto}.MarkdownContent_markdownBody__2Fa4B a{text-decoration:underline}.MarkdownContent_markdownBody__2Fa4B summary{outline:none}.MarkdownContent_markdownBody__2Fa4B summary h1,.MarkdownContent_markdownBody__2Fa4B summary h2,.MarkdownContent_markdownBody__2Fa4B summary h3,.MarkdownContent_markdownBody__2Fa4B summary h4,.MarkdownContent_markdownBody__2Fa4B summary h5,.MarkdownContent_markdownBody__2Fa4B summary h6{display:inline-block;margin-top:.5rem;margin-bottom:.5rem}.MarkdownContent_markdownBody__2Fa4B summary h1 p,.MarkdownContent_markdownBody__2Fa4B summary h2 p,.MarkdownContent_markdownBody__2Fa4B summary h3 p,.MarkdownContent_markdownBody__2Fa4B summary h4 p,.MarkdownContent_markdownBody__2Fa4B summary h5 p,.MarkdownContent_markdownBody__2Fa4B summary h6 p{margin:0;padding:0}.MarkdownContent_markdownBody__2Fa4B h4 a{text-decoration:none}.MarkdownContent_markdownBody__2Fa4B h1:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h2:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h3:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h4:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h5:hover [class~=octicon-link],.MarkdownContent_markdownBody__2Fa4B h6:hover [class~=octicon-link]{visibility:visible!important}.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link],.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]{padding:.5rem;margin-left:-2rem;color:var(--color-fg-muted)}.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h1>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h2>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h3>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h4>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h5>a[class~=doctocat-link]:focus,.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]:active,.MarkdownContent_markdownBody__2Fa4B h6>a[class~=doctocat-link]:focus{outline:none}.MarkdownContent_markdownBody__2Fa4B h1:target,.MarkdownContent_markdownBody__2Fa4B h2:target,.MarkdownContent_markdownBody__2Fa4B h3:target,.MarkdownContent_markdownBody__2Fa4B h4:target,.MarkdownContent_markdownBody__2Fa4B h5:target,.MarkdownContent_markdownBody__2Fa4B h6:target{scroll-margin-top:75px}.MarkdownContent_markdownBody__2Fa4B [class~=danger] ol,.MarkdownContent_markdownBody__2Fa4B [class~=danger] ul,.MarkdownContent_markdownBody__2Fa4B [class~=note] ol,.MarkdownContent_markdownBody__2Fa4B [class~=note] ul,.MarkdownContent_markdownBody__2Fa4B [class~=tip] ol,.MarkdownContent_markdownBody__2Fa4B [class~=tip] ul,.MarkdownContent_markdownBody__2Fa4B [class~=warning] ol,.MarkdownContent_markdownBody__2Fa4B [class~=warning] ul{margin-bottom:0} --------------------------------------------------------------------------------