website-xp-phone 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. package/.astro/content-assets.mjs +1 -0
  2. package/.astro/content-modules.mjs +1 -0
  3. package/.astro/content.d.ts +199 -0
  4. package/.astro/data-store.json +1 -0
  5. package/.astro/settings.json +8 -0
  6. package/.astro/types.d.ts +1 -0
  7. package/.devcontainer/devcontainer.json +23 -0
  8. package/.env.firebase.example +8 -0
  9. package/.firebaserc +5 -0
  10. package/.gitattributes +2 -0
  11. package/.github/copilot-instructions.md +131 -0
  12. package/.github/dependabot.yml +11 -0
  13. package/.github/workflows/ci.yml +45 -0
  14. package/.github/workflows/deploy-admin.yml +48 -0
  15. package/.github/workflows/static.yml +43 -0
  16. package/.gitmodules +5 -0
  17. package/FIREBASE_SETUP.md +69 -0
  18. package/README.md +63 -0
  19. package/SECURITY.md +11 -0
  20. package/admin/Admin.csproj +7 -0
  21. package/admin/Dockerfile +14 -0
  22. package/admin/Program.cs +8 -0
  23. package/deploy-admin-cloud-run.md +229 -0
  24. package/eslint.config.js +28 -0
  25. package/firebase.json +5 -0
  26. package/firestore.rules +29 -0
  27. package/index.html +52 -0
  28. package/package.json +48 -0
  29. package/pagerts_output.json +1 -0
  30. package/public/5.html +967 -0
  31. package/public/BAHNSCHRIFT.TTF +0 -0
  32. package/public/Beep.ogg +0 -0
  33. package/public/Clippy.png +0 -0
  34. package/public/Layered Network Security Model for Home Networks (slides).pdf +0 -0
  35. package/public/Layered Network Security Model for Home Networks.pdf +0 -0
  36. package/public/TODO.pdf +0 -0
  37. package/public/WoW_Config.zip +3 -0
  38. package/public/addons/energy-swing.txt +1 -0
  39. package/public/addons/lego-yoda-death-readme.txt +11 -0
  40. package/public/addons/lego-yoda-death.mp3 +0 -0
  41. package/public/addons/mana-blast.txt +1 -0
  42. package/public/addons/rage-volley.txt +1 -0
  43. package/public/addons/rueg-cell.txt +1 -0
  44. package/public/addons/rueg-elvui-profile.txt +1 -0
  45. package/public/addons/rueg-grid2.txt +214 -0
  46. package/public/addons/rueg-plater-smol.txt +1 -0
  47. package/public/addons/rueg-plater.txt +1 -0
  48. package/public/addons/rueg-wa-druid.txt +1 -0
  49. package/public/addons/rueg-wa-priest.txt +1 -0
  50. package/public/addons/rueg-wa-rogue.txt +1 -0
  51. package/public/addons/rueg-wa-shaman.txt +1 -0
  52. package/public/addons/rueg-wa-warrior.txt +1 -0
  53. package/public/addons/spirit-smash.txt +1 -0
  54. package/public/avatar.jpg +0 -0
  55. package/public/avatar.png +0 -0
  56. package/public/crunchy_kick.ogg +0 -0
  57. package/public/documents/resume.html +312 -0
  58. package/public/favicon.ico +0 -0
  59. package/public/images/Ateric1.png +0 -0
  60. package/public/images/Ateric2.png +0 -0
  61. package/public/images/equal1.png +0 -0
  62. package/public/images/hyperawareofwhatacatis.png +0 -0
  63. package/public/images/kogg1.png +0 -0
  64. package/public/images/kogg2.png +0 -0
  65. package/public/images/rueg1.png +0 -0
  66. package/public/images/rueg2.png +0 -0
  67. package/public/incorrect_responses.txt +126 -0
  68. package/public/loading.css +51 -0
  69. package/public/resume.pdf +0 -0
  70. package/public/robots.txt +9 -0
  71. package/public/soundcloud.json +57 -0
  72. package/public/spinner.svg +12 -0
  73. package/public/tada.wav +0 -0
  74. package/public/yooh.mp3 +0 -0
  75. package/render.yaml +5 -0
  76. package/scripts/ensure-blog-worktree.mjs +24 -0
  77. package/scripts/generate-soundcloud-json.mjs +198 -0
  78. package/scripts/git-worktree-helper.mjs +122 -0
  79. package/scripts/hoist-dev-blog-local.mjs +149 -0
  80. package/scripts/music-schema.mjs +56 -0
  81. package/scripts/publish-soundcloud-json.mjs +32 -0
  82. package/scripts/sync-music-links-from-worktree.mjs +32 -0
  83. package/src/App.tsx +1500 -0
  84. package/src/addons.json +76 -0
  85. package/src/components/Addon.tsx +223 -0
  86. package/src/components/BlogContent.tsx +103 -0
  87. package/src/components/CopyToClipboardButton.tsx +21 -0
  88. package/src/components/MenuBar.tsx +151 -0
  89. package/src/components/MenuBarWithContext.tsx +6 -0
  90. package/src/components/Modal.tsx +17 -0
  91. package/src/components/MusicContent.tsx +309 -0
  92. package/src/components/NavBarController.tsx +55 -0
  93. package/src/components/NavBarControllerWrapper.tsx +13 -0
  94. package/src/components/Page.tsx +56 -0
  95. package/src/components/SitemapContent.tsx +125 -0
  96. package/src/contacts.json +32 -0
  97. package/src/env.d.ts +13 -0
  98. package/src/lib/assistantStateMachine.ts +80 -0
  99. package/src/lib/audioOverlap.ts +99 -0
  100. package/src/lib/keyboardInputUtils.ts +182 -0
  101. package/src/lib/musicSchema.ts +85 -0
  102. package/src/lib/naggingAssistantClient.ts +241 -0
  103. package/src/lib/resumeAnalytics.ts +163 -0
  104. package/src/main.tsx +35 -0
  105. package/src/pages.json +50 -0
  106. package/src/sections.json +243 -0
  107. package/src/src+addons.zip +3 -0
  108. package/src/styles/main.css +465 -0
  109. package/src/utils/blogSecurity.ts +87 -0
  110. package/src/utils/menuItems.ts +33 -0
  111. package/src/windowing/MinimizedSections.tsx +86 -0
  112. package/src/windowing/Section.tsx +586 -0
  113. package/src/windowing/context.tsx +13 -0
  114. package/src/windowing/hooks.ts +10 -0
  115. package/src/windowing/index.ts +7 -0
  116. package/src/windowing/provider.tsx +74 -0
  117. package/src/windowing/server.ts +3 -0
  118. package/src/windowing/types.ts +33 -0
  119. package/src/windowing/utils.ts +135 -0
  120. package/tests/generate-soundcloud-json.test.mjs +63 -0
  121. package/tests/music-schema.test.mjs +53 -0
  122. package/tsconfig.json +26 -0
  123. package/vite.config.ts +304 -0
@@ -0,0 +1 @@
1
+ [{"title":"GitHub · Change is constant. GitHub keeps you ahead. · GitHub","url":"https://github.com/","resources":[{"text":{"key":"class","value":"px-2 tmp-py-4 color-bg-accent-emphasis color-fg-on-emphasis show-on-focus js-skip-to-content"},"link":{"key":"href","value":"#start-of-content"}},{"text":{"key":"class","value":"tmp-mr-lg-3 color-fg-inherit flex-order-2 js-prevent-focus-on-mobile-nav"},"link":{"key":"href","value":"/"}},{"text":{"key":"class","value":"HeaderMenu-link HeaderMenu-button d-inline-flex f5 no-underline border color-border-default rounded-2 px-2 py-1 color-fg-inherit js-prevent-focus-on-mobile-nav"},"link":{"key":"href","value":"/login"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/copilot"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/spark"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/models"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/mcp"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/actions"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/codespaces"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/issues"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/code-review"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/security/advanced-security"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/security/advanced-security/code-security"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/security/advanced-security/secret-protection"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/why-github"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://docs.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.blog"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.blog/changelog"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/marketplace"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/enterprise"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/team"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/enterprise/startups"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/industry/nonprofits"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/use-case/app-modernization"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/use-case/devsecops"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/use-case/devops"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/use-case/ci-cd"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/use-case"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/industry/healthcare"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/industry/financial-services"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/industry/manufacturing"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/industry/government"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/industry"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/articles?topic=ai"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/articles?topic=software-development"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/articles?topic=devops"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/articles?topic=security"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/articles"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/customer-stories"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/events"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources/whitepapers"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/solutions/executive-insights"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://skills.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://docs.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://support.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/orgs/community/discussions"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/trust-center"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/partners"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/resources"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/sponsors"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://securitylab.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://maintainers.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/accelerator"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://stars.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://archiveprogram.github.com"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/topics"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/trending"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/collections"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/enterprise"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/security/advanced-security"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/features/copilot/copilot-business"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4"},"link":{"key":"href","value":"https://github.com/premium-support"}},{"text":{"key":"class","value":"NavLink-module__link__EG3d4 MarketingNavigation-module__navLink__hUomM"},"link":{"key":"href","value":"https://github.com/pricing"}},{"text":{"key":"class","value":"Link color-fg-accent text-normal ml-2 tmp-ml-2"},"link":{"key":"href","value":"https://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax"}},{"text":{"key":"class","value":"Link--inTextBlock"},"link":{"key":"href","value":"https://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax"}},{"text":{"key":"class","value":"HeaderMenu-link HeaderMenu-link--sign-in HeaderMenu-button flex-shrink-0 no-underline d-none d-lg-inline-flex border border-lg-0 rounded px-2 py-1"},"link":{"key":"href","value":"/login"}},{"text":{"key":"class","value":"HeaderMenu-link HeaderMenu-link--sign-up HeaderMenu-button flex-shrink-0 d-flex d-lg-inline-flex no-underline border color-border-default rounded px-2 py-1"},"link":{"key":"href","value":"/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F&source=header-home"}},{"text":{"key":"class","value":"Primer_Brand__Button-module__Button___lDruK Primer_Brand__Button-module__Button--secondary___akMC2 Primer_Brand__Button-module__Button--size-medium___EyCyw CtaForm-secondaryAction CtaForm-nextToFormAction js-hero-action"},"link":{"key":"href","value":"/github-copilot/pro"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS lp-SectionTemplate-content-link"},"link":{"key":"href","value":"/features/copilot"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS Primer_Brand__Pillar-module__Pillar__link___yiBNY lp-SectionTemplate-customer-link"},"link":{"key":"href","value":"/customer-stories/duolingo"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS Primer_Brand__Pillar-module__Pillar__link___yiBNY lp-SectionTemplate-customer-link"},"link":{"key":"href","value":"https://www.gartner.com/reprints/?id=1-2LVTG7RP&ct=250915&st=sb"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/features/actions"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/features/codespaces"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/mobile"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/marketplace"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS lp-SectionHero-text-link"},"link":{"key":"href","value":"/security/advanced-security"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS Primer_Brand__Pillar-module__Pillar__link___yiBNY lp-SectionTemplate-content-link"},"link":{"key":"href","value":"/security/advanced-security/code-security"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS Primer_Brand__Pillar-module__Pillar__link___yiBNY lp-SectionTemplate-content-link"},"link":{"key":"href","value":"/security/advanced-security/software-supply-chain"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS Primer_Brand__Pillar-module__Pillar__link___yiBNY lp-SectionTemplate-content-link"},"link":{"key":"href","value":"/security/advanced-security/secret-protection"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS lp-SectionTemplate-content-link"},"link":{"key":"href","value":"/features/issues"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/features/issues"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/features/discussions"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/features/code-review"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS"},"link":{"key":"href","value":"/sponsors"}},{"text":{"key":"class","value":"Primer_Brand__Button-module__Button___lDruK Primer_Brand__Button-module__Button--secondary___akMC2 Primer_Brand__Button-module__Button--size-medium___EyCyw lp-CustomerStories-button"},"link":{"key":"href","value":"/customer-stories/figma"}},{"text":{"key":"class","value":"Primer_Brand__Button-module__Button___lDruK Primer_Brand__Button-module__Button--secondary___akMC2 Primer_Brand__Button-module__Button--size-medium___EyCyw lp-CustomerStories-button"},"link":{"key":"href","value":"/customer-stories/mercedes-benz"}},{"text":{"key":"class","value":"Primer_Brand__Button-module__Button___lDruK Primer_Brand__Button-module__Button--secondary___akMC2 Primer_Brand__Button-module__Button--size-medium___EyCyw lp-CustomerStories-button"},"link":{"key":"href","value":"/customer-stories/mercado-libre"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS lp-CustomerStories-link"},"link":{"key":"href","value":"/customer-stories"}},{"text":{"key":"class","value":"Primer_Brand__Link-module__Link___lvKjM Primer_Brand__Link-module__Link--accent___FWEDd Primer_Brand__Link-module__Link--arrow-end___l0EPS lp-CustomerStories-link"},"link":{"key":"href","value":"/solutions"}},{"text":{"key":"class","value":"Primer_Brand__Button-module__Button___lDruK Primer_Brand__Button-module__Button--secondary___akMC2 Primer_Brand__Button-module__Button--size-medium___EyCyw CtaForm-secondaryAction CtaForm-nextToFormAction"},"link":{"key":"href","value":"/github-copilot/pro"}},{"text":{"key":"src","value":"#hero"},"link":{"key":"href","value":"#hero"}},{"text":{"key":"class","value":"color-fg-default d-inline-block"},"link":{"key":"href","value":"/"}},{"text":{"key":"class","value":"btn-mktg tmp-mb-4 btn-muted-mktg"},"link":{"key":"href","value":"https://github.com/newsletter"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/features"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/enterprise"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/features/copilot"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/features/ai"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/security"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/pricing"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/team"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://resources.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/github/roadmap"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/resources/articles/devops-tools-comparison"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://docs.github.com/get-started/exploring-integrations/about-building-integrations"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://partner.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/edu"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://cli.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://desktop.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/mobile"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/marketplace"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/mcp"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://docs.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.community"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://services.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/enterprise/premium-support"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://skills.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://www.githubstatus.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://support.github.com?tags=dotcom-footer"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/about"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/why-github"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/customer-stories?type=enterprise"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.blog"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/readme"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.careers"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/newsroom"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/about/diversity"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://socialimpact.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://shop.github.com"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://docs.github.com/site-policy/github-terms/github-terms-of-service"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://docs.github.com/site-policy/privacy-policies/github-privacy-statement"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"https://github.com/github/site-policy/pull/582"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/sitemap"}},{"text":{"key":"class","value":"Link--secondary"},"link":{"key":"href","value":"/git-guides"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://www.linkedin.com/company/github"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://www.instagram.com/github"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://www.youtube.com/github"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://x.com/github"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://www.tiktok.com/@github"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://www.twitch.tv/github"}},{"text":{"key":"class","value":"footer-social-icon d-block Link--outlineOffset"},"link":{"key":"href","value":"https://github.com/github"}},{"text":{"key":"src","value":"https://github.githubassets.com"},"link":{"key":"href","value":"https://github.githubassets.com"}},{"text":{"key":"src","value":"https://avatars.githubusercontent.com"},"link":{"key":"href","value":"https://avatars.githubusercontent.com"}},{"text":{"key":"src","value":"https://github-cloud.s3.amazonaws.com"},"link":{"key":"href","value":"https://github-cloud.s3.amazonaws.com"}},{"text":{"key":"src","value":"https://user-images.githubusercontent.com/"},"link":{"key":"href","value":"https://user-images.githubusercontent.com/"}},{"text":{"key":"src","value":"https://github.githubassets.com"},"link":{"key":"href","value":"https://github.githubassets.com"}},{"text":{"key":"src","value":"https://avatars.githubusercontent.com"},"link":{"key":"href","value":"https://avatars.githubusercontent.com"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/global-banner-disable-7f8c9b12bd1db3c7.js"},"link":{"key":"href","value":"https://github.githubassets.com/assets/global-banner-disable-7f8c9b12bd1db3c7.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2"},"link":{"key":"href","value":"https://github.githubassets.com/assets/MonaSansVF-wdth-wght-opsz-902d64c7ad02.woff2"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/light-2ff56e1b36116ee2.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/light-2ff56e1b36116ee2.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/light_high_contrast-f7f95d7633592089.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/light_high_contrast-f7f95d7633592089.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/dark-2d1fe43dbc9adf1f.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/dark-2d1fe43dbc9adf1f.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/dark_high_contrast-d530ee188d165539.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/dark_high_contrast-d530ee188d165539.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/primer-primitives-7f694b60439d06c0.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/primer-primitives-7f694b60439d06c0.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/primer-b48faa60c69660fa.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/primer-b48faa60c69660fa.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/global-81a5f61ff87ac6f0.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/global-81a5f61ff87ac6f0.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/github-f825c0edd7ad57f8.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/github-f825c0edd7ad57f8.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/site-8e580c38ab6535be.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/site-8e580c38ab6535be.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/landing-pages-270babc3e592e1db.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/landing-pages-270babc3e592e1db.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/home-b65ad196250a1364.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/home-b65ad196250a1364.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/react-core.0c5a60be620dab14.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/react-core.0c5a60be620dab14.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/primer-react-css.48c74afb1f96b5a7.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/primer-react-css.48c74afb1f96b5a7.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/landing-pages.95e52e4789131d48.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/landing-pages.95e52e4789131d48.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/"},"link":{"key":"href","value":"https://github.githubassets.com/"}},{"text":{"key":"src","value":"/opensearch.xml"},"link":{"key":"href","value":"/opensearch.xml"}},{"text":{"key":"src","value":"https://github.com/fluidicon.png"},"link":{"key":"href","value":"https://github.com/fluidicon.png"}},{"text":{"key":"src","value":"https://github.com"},"link":{"key":"href","value":"https://github.com"}},{"text":{"key":"src","value":"https://github.com?locale=pt-br"},"link":{"key":"href","value":"https://github.com?locale=pt-br"}},{"text":{"key":"src","value":"https://github.com?locale=es-419"},"link":{"key":"href","value":"https://github.com?locale=es-419"}},{"text":{"key":"src","value":"https://github.com?locale=ja"},"link":{"key":"href","value":"https://github.com?locale=ja"}},{"text":{"key":"src","value":"https://github.com?locale=ko-kr"},"link":{"key":"href","value":"https://github.com?locale=ko-kr"}},{"text":{"key":"src","value":"https://github.com?locale=fr-fr"},"link":{"key":"href","value":"https://github.com?locale=fr-fr"}},{"text":{"key":"src","value":"https://github.com?locale=de-de"},"link":{"key":"href","value":"https://github.com?locale=de-de"}},{"text":{"key":"src","value":"https://github.com/"},"link":{"key":"href","value":"https://github.com/"}},{"text":{"key":"src","value":"https://github.com"},"link":{"key":"href","value":"https://github.com"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/pinned-octocat-093da3e6fa40.svg"},"link":{"key":"href","value":"https://github.githubassets.com/assets/pinned-octocat-093da3e6fa40.svg"}},{"text":{"key":"class","value":"js-site-favicon"},"link":{"key":"href","value":"https://github.githubassets.com/favicons/favicon.png"}},{"text":{"key":"class","value":"js-site-favicon"},"link":{"key":"href","value":"https://github.githubassets.com/favicons/favicon.svg"}},{"text":{"key":"src","value":"/manifest.json"},"link":{"key":"href","value":"/manifest.json"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/primer-react-css.48c74afb1f96b5a7.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/primer-react-css.48c74afb1f96b5a7.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/keyboard-shortcuts-dialog.670668115736ecbc.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/keyboard-shortcuts-dialog.670668115736ecbc.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/primer-react-css.48c74afb1f96b5a7.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/primer-react-css.48c74afb1f96b5a7.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/marketing-navigation.9c460dc5436e5da3.module.css"},"link":{"key":"href","value":"https://github.githubassets.com/assets/marketing-navigation.9c460dc5436e5da3.module.css"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/high-contrast-cookie-218067197ba03c91.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/high-contrast-cookie-218067197ba03c91.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/wp-runtime-a47dc0411ec7d2be.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/wp-runtime-a47dc0411ec7d2be.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/fetch-utilities-3140609b5732710f.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/fetch-utilities-3140609b5732710f.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/28839-7adfdde5afeb1a03.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/28839-7adfdde5afeb1a03.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/85924-ac5602ef611dc506.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/85924-ac5602ef611dc506.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/34646-4c7883eb242d5210.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/34646-4c7883eb242d5210.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/environment-8e8857b66d545299.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/environment-8e8857b66d545299.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/runtime-helpers-cb4dfbc9d23f30be.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/runtime-helpers-cb4dfbc9d23f30be.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/2966-d68f2b4558d86113.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/2966-d68f2b4558d86113.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/96232-540ff5f81016a9ca.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/96232-540ff5f81016a9ca.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/41013-647932573fc130af.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/41013-647932573fc130af.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/51210-45dfb7dd106f6b96.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/51210-45dfb7dd106f6b96.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/81058-fc9ccbdd06141af8.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/81058-fc9ccbdd06141af8.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/81683-382ccc88e034ea1d.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/81683-382ccc88e034ea1d.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/46740-5a373320e5ef9c01.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/46740-5a373320e5ef9c01.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/82097-b1ab4d7cbdda0f4a.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/82097-b1ab4d7cbdda0f4a.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/67466-79abcbf599986a00.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/67466-79abcbf599986a00.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/github-elements-928ee121cbc88eff.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/github-elements-928ee121cbc88eff.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/element-registry-9700d6f59e3c7632.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/element-registry-9700d6f59e3c7632.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/react-core-b2929a643e0ecc05.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/react-core-b2929a643e0ecc05.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/react-lib-1353f2cef82bcdc0.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/react-lib-1353f2cef82bcdc0.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/79039-69acf717ffc901a4.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/79039-69acf717ffc901a4.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/61110-073153e0413daf3a.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/61110-073153e0413daf3a.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/2887-91b9c645d570616a.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/2887-91b9c645d570616a.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/26533-f22c29ae5e9b1ed2.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/26533-f22c29ae5e9b1ed2.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/86483-c3a819d46503a3da.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/86483-c3a819d46503a3da.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/49521-3b553cd29062db6a.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/49521-3b553cd29062db6a.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/60481-24b13ea726837f7b.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/60481-24b13ea726837f7b.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/46287-3a1f3269a02b8060.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/46287-3a1f3269a02b8060.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/33805-da9f821452a32f15.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/33805-da9f821452a32f15.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/89627-40275597692dc855.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/89627-40275597692dc855.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/79087-4f706db8aa2ec0fb.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/79087-4f706db8aa2ec0fb.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/71410-874f65a04c129aeb.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/71410-874f65a04c129aeb.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/99328-a2c6b180d25cb160.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/99328-a2c6b180d25cb160.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/behaviors-d9f0cee1f9e3eb0f.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/behaviors-d9f0cee1f9e3eb0f.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/4244-97fb660009234136.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/4244-97fb660009234136.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/notifications-global-442a23b66c306470.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/notifications-global-442a23b66c306470.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/10284-c7eca2de15da2db7.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/10284-c7eca2de15da2db7.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/22445-604e65e2ca54f03d.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/22445-604e65e2ca54f03d.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/marketing-essentials-e60b26cbfd1e741e.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/marketing-essentials-e60b26cbfd1e741e.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/primer-react-0eccd57ee759dfd8.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/primer-react-0eccd57ee759dfd8.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/octicons-react-60e727d7a1b6f52c.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/octicons-react-60e727d7a1b6f52c.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/89602-a5f6b5137a0e6e26.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/89602-a5f6b5137a0e6e26.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/23680-ebc1658f92b3666a.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/23680-ebc1658f92b3666a.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/68751-830b37204cdf7847.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/68751-830b37204cdf7847.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/47062-d1fa0b73fede728f.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/47062-d1fa0b73fede728f.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/70641-df7d286b6e757eb5.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/70641-df7d286b6e757eb5.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/46752-7bd8967216f7ea42.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/46752-7bd8967216f7ea42.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/65043-58417ea03a23223d.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/65043-58417ea03a23223d.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/71236-fdb2ebd28df18c79.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/71236-fdb2ebd28df18c79.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/23576-a8960869d82a265b.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/23576-a8960869d82a265b.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/48761-e0d707ef4ac523be.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/48761-e0d707ef4ac523be.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/26024-460fed32b167946f.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/26024-460fed32b167946f.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/63991-90c8c13c6389bc01.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/63991-90c8c13c6389bc01.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/55077-ecee4192c897786f.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/55077-ecee4192c897786f.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/95090-2cb2afdeaf009047.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/95090-2cb2afdeaf009047.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/37826-36074ccbdf2fd58c.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/37826-36074ccbdf2fd58c.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/63050-9f22093e0909629c.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/63050-9f22093e0909629c.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/39250-1f50271ac510e8d5.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/39250-1f50271ac510e8d5.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/60196-cdf69ceb16269baf.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/60196-cdf69ceb16269baf.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/54838-1a14af40ddd0e5aa.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/54838-1a14af40ddd0e5aa.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/landing-pages-29d9816a92404e81.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/landing-pages-29d9816a92404e81.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/global-banner-disable-7f8c9b12bd1db3c7.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/global-banner-disable-7f8c9b12bd1db3c7.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/90350-89ca7e5359af8f77.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/90350-89ca7e5359af8f77.js"}},{"text":{"key":"src","value":"https://github.githubassets.com/assets/sessions-e0da6ce03532723c.js"},"link":{"key":"src","value":"https://github.githubassets.com/assets/sessions-e0da6ce03532723c.js"}}]}]