mage-ai 0.9.7__py3-none-any.whl → 0.9.9__py3-none-any.whl

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.

Potentially problematic release.


This version of mage-ai might be problematic. Click here for more details.

Files changed (161) hide show
  1. mage_ai/ai/constants.py +1 -0
  2. mage_ai/ai/generator.py +6 -0
  3. mage_ai/ai/{gen_doc_for_pipeline.py → generator_cmds.py} +5 -0
  4. mage_ai/ai/llm_pipeline_wizard.py +108 -3
  5. mage_ai/api/policies/BlockPolicy.py +1 -0
  6. mage_ai/api/policies/BlockTemplatePolicy.py +9 -0
  7. mage_ai/api/policies/LlmPolicy.py +3 -2
  8. mage_ai/api/policies/OauthAccessTokenPolicy.py +31 -0
  9. mage_ai/api/policies/PipelinePolicy.py +1 -0
  10. mage_ai/api/policies/ProjectPolicy.py +9 -0
  11. mage_ai/api/policies/SearchResultPolicy.py +32 -0
  12. mage_ai/api/policies/VariablePolicy.py +8 -0
  13. mage_ai/api/presenters/BlockTemplatePresenter.py +1 -0
  14. mage_ai/api/presenters/OauthAccessTokenPresenter.py +9 -0
  15. mage_ai/api/presenters/ProjectPresenter.py +2 -0
  16. mage_ai/api/presenters/SearchResultPresenter.py +73 -0
  17. mage_ai/api/resources/BlockResource.py +43 -4
  18. mage_ai/api/resources/BlockTemplateResource.py +15 -2
  19. mage_ai/api/resources/CustomTemplateResource.py +15 -3
  20. mage_ai/api/resources/FileContentResource.py +8 -1
  21. mage_ai/api/resources/FileResource.py +22 -2
  22. mage_ai/api/resources/OauthAccessTokenResource.py +24 -0
  23. mage_ai/api/resources/PipelineResource.py +70 -2
  24. mage_ai/api/resources/ProjectResource.py +15 -1
  25. mage_ai/api/resources/SearchResultResource.py +68 -0
  26. mage_ai/api/resources/VariableResource.py +25 -14
  27. mage_ai/cache/base.py +3 -0
  28. mage_ai/cache/block_action_object/__init__.py +282 -0
  29. mage_ai/cache/block_action_object/constants.py +4 -0
  30. mage_ai/cache/constants.py +1 -0
  31. mage_ai/data_integrations/destinations/constants.py +2 -0
  32. mage_ai/data_preparation/executors/k8s_pipeline_executor.py +1 -1
  33. mage_ai/data_preparation/models/block/__init__.py +20 -1
  34. mage_ai/data_preparation/models/block/dbt/utils/__init__.py +1 -0
  35. mage_ai/data_preparation/models/custom_templates/custom_block_template.py +8 -3
  36. mage_ai/data_preparation/models/custom_templates/utils.py +6 -3
  37. mage_ai/data_preparation/models/file.py +3 -0
  38. mage_ai/data_preparation/models/pipeline.py +10 -1
  39. mage_ai/data_preparation/models/{project.py → project/__init__.py} +17 -0
  40. mage_ai/data_preparation/models/project/constants.py +5 -0
  41. mage_ai/data_preparation/repo_manager.py +9 -6
  42. mage_ai/data_preparation/templates/constants.py +478 -1
  43. mage_ai/data_preparation/templates/template.py +9 -1
  44. mage_ai/orchestration/backfills/service.py +20 -1
  45. mage_ai/orchestration/db/__init__.py +25 -0
  46. mage_ai/orchestration/db/models/schedules.py +20 -1
  47. mage_ai/orchestration/pipeline_scheduler.py +23 -0
  48. mage_ai/server/constants.py +1 -1
  49. mage_ai/server/frontend_dist/404.html +2 -2
  50. mage_ai/server/frontend_dist/404.html.html +2 -2
  51. mage_ai/server/frontend_dist/_next/static/OwvTROmputQCA1Z9HEGDv/_buildManifest.js +1 -0
  52. mage_ai/server/frontend_dist/_next/static/chunks/{1005-ce36fe7ed460d006.js → 1005-16c1a6678de5311e.js} +1 -1
  53. mage_ai/server/frontend_dist/_next/static/chunks/1424-e22139f33196c5c1.js +1 -0
  54. mage_ai/server/frontend_dist/_next/static/chunks/1484-a76b2c31e4808379.js +1 -0
  55. mage_ai/server/frontend_dist/_next/static/chunks/2485-b569baad92049d6b.js +1 -0
  56. mage_ai/server/frontend_dist/_next/static/chunks/{2786-d8b593e5d7c42665.js → 2786-acce6ea0d9b4898e.js} +1 -1
  57. mage_ai/server/frontend_dist/_next/static/chunks/3654-573457b62efff6e2.js +1 -0
  58. mage_ai/server/frontend_dist/_next/static/chunks/3881-0eb04f7f7a244347.js +1 -0
  59. mage_ai/server/frontend_dist/_next/static/chunks/{4317-b112fe7bb532b998.js → 4317-3fe63fc9401685d6.js} +1 -1
  60. mage_ai/server/frontend_dist/_next/static/chunks/{4822-52d9d661b6bd1ae9.js → 4822-045cc7cdd7c95163.js} +1 -1
  61. mage_ai/server/frontend_dist/_next/static/chunks/{547-14029bdacc0ed267.js → 547-4ad2cdae967055b6.js} +1 -1
  62. mage_ai/server/frontend_dist/_next/static/chunks/6299-cf188c1b7a1bc33c.js +1 -0
  63. mage_ai/server/frontend_dist/_next/static/chunks/{7815-6dc55b5fd5d1f48a.js → 7815-fbd99c8f259d9e8b.js} +1 -1
  64. mage_ai/server/frontend_dist/_next/static/chunks/{8312-cdc4d6c3b9f53099.js → 8312-c88a3b1012e5448b.js} +1 -1
  65. mage_ai/server/frontend_dist/_next/static/chunks/{8952-492bf0e29d215ddd.js → 8952-e94a7334fcd5c68b.js} +1 -1
  66. mage_ai/server/frontend_dist/_next/static/chunks/9055-d0d25298cb5f4e45.js +1 -0
  67. mage_ai/server/frontend_dist/_next/static/chunks/pages/{_app-c7557dc9e725825e.js → _app-fa38a24707c76411.js} +1 -1
  68. mage_ai/server/frontend_dist/_next/static/chunks/pages/files-b9dac983c75798f2.js +1 -0
  69. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/{settings-17bb362b9683079c.js → settings-453aaa7bf78f8101.js} +1 -1
  70. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/{[user]-bfa53c0ee79920a0.js → [user]-3b502aa6d1a04cad.js} +1 -1
  71. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/{new-2f7e6bf8e2a37380.js → new-dd41d718cbb5990c.js} +1 -1
  72. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-ec748f838b7b8fad.js +1 -0
  73. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-bcc24120f5911f76.js +1 -0
  74. mage_ai/server/frontend_dist/_next/static/chunks/pages/{overview-8ffbc4b0e8a43266.js → overview-6f20b9e9cbec91d6.js} +1 -1
  75. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills/{[...slug]-373f6b8c9161e819.js → [...slug]-55212dfc15881ef2.js} +1 -1
  76. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{backfills-226bf0c5c1bfe004.js → backfills-6b4a82cd0516e121.js} +1 -1
  77. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-0705c99df236ec8a.js +1 -0
  78. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{logs-4ade07836fd577c9.js → logs-c294f5d74bd2d50f.js} +1 -1
  79. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{monitors-fd9eb711e89425e9.js → monitors-1b9e4abc54842cdf.js} +1 -1
  80. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{runs-027666ed18d3151e.js → runs-17ebe87e94242ae5.js} +1 -1
  81. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-48b60ca236a26818.js +1 -0
  82. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{syncs-de58e6b91e5e4552.js → syncs-5153f4665aaf8b17.js} +1 -1
  83. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers/{[...slug]-432843576e1ed09e.js → [...slug]-1306e85191f6b47c.js} +1 -1
  84. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/{triggers-ae31b1d0d8a4634d.js → triggers-2e731d343a26d46a.js} +1 -1
  85. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-0fab737dbc9074fc.js +1 -0
  86. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-b2354688508b0755.js +1 -0
  87. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/{users-a4f01b5c429757cc.js → users-6522c963087f18e8.js} +1 -1
  88. mage_ai/server/frontend_dist/_next/static/chunks/pages/{sign-in-1140f8ee7e89381a.js → sign-in-7dcd1257ca9660bb.js} +1 -1
  89. mage_ai/server/frontend_dist/_next/static/chunks/pages/templates/{[...slug]-f59b3f04c5a49351.js → [...slug]-78a07e7fe8973811.js} +1 -1
  90. mage_ai/server/frontend_dist/_next/static/chunks/pages/{templates-dbb209ce131390a9.js → templates-19df643f52679d5a.js} +1 -1
  91. mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-a1cf445565b68809.js +1 -0
  92. mage_ai/server/frontend_dist/files.html +2 -2
  93. mage_ai/server/frontend_dist/index.html +2 -2
  94. mage_ai/server/frontend_dist/manage/settings.html +2 -2
  95. mage_ai/server/frontend_dist/manage/users/[user].html +2 -2
  96. mage_ai/server/frontend_dist/manage/users/new.html +2 -2
  97. mage_ai/server/frontend_dist/manage/users.html +2 -2
  98. mage_ai/server/frontend_dist/manage.html +2 -2
  99. mage_ai/server/frontend_dist/overview.html +2 -2
  100. mage_ai/server/frontend_dist/pipeline-runs.html +2 -2
  101. mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html +2 -2
  102. mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html +2 -2
  103. mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html +2 -2
  104. mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html +2 -2
  105. mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html +2 -2
  106. mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html +2 -2
  107. mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html +2 -2
  108. mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html +2 -2
  109. mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html +2 -2
  110. mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html +2 -2
  111. mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html +2 -2
  112. mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html +2 -2
  113. mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html +2 -2
  114. mage_ai/server/frontend_dist/pipelines/[pipeline].html +2 -2
  115. mage_ai/server/frontend_dist/pipelines.html +2 -2
  116. mage_ai/server/frontend_dist/settings/account/profile.html +2 -2
  117. mage_ai/server/frontend_dist/settings/workspace/preferences.html +2 -2
  118. mage_ai/server/frontend_dist/settings/workspace/sync-data.html +2 -2
  119. mage_ai/server/frontend_dist/settings/workspace/users.html +2 -2
  120. mage_ai/server/frontend_dist/settings.html +2 -2
  121. mage_ai/server/frontend_dist/sign-in.html +16 -16
  122. mage_ai/server/frontend_dist/templates/[...slug].html +2 -2
  123. mage_ai/server/frontend_dist/templates.html +2 -2
  124. mage_ai/server/frontend_dist/terminal.html +2 -2
  125. mage_ai/server/frontend_dist/test.html +2 -2
  126. mage_ai/server/frontend_dist/triggers.html +2 -2
  127. mage_ai/server/frontend_dist/version-control.html +2 -2
  128. mage_ai/server/server.py +5 -0
  129. mage_ai/server/websocket_server.py +1 -0
  130. mage_ai/services/search/__init__.py +0 -0
  131. mage_ai/services/search/block_action_objects.py +33 -0
  132. mage_ai/services/search/constants.py +1 -0
  133. mage_ai/shared/array.py +7 -0
  134. mage_ai/shared/parsers.py +11 -2
  135. mage_ai/tests/shared/test_parsers.py +73 -0
  136. mage_ai/usage_statistics/constants.py +1 -0
  137. mage_ai/usage_statistics/logger.py +19 -1
  138. {mage_ai-0.9.7.dist-info → mage_ai-0.9.9.dist-info}/METADATA +9 -7
  139. {mage_ai-0.9.7.dist-info → mage_ai-0.9.9.dist-info}/RECORD +145 -132
  140. mage_ai/server/frontend_dist/_next/static/chunks/1424-de97c5aa0477894b.js +0 -1
  141. mage_ai/server/frontend_dist/_next/static/chunks/1484-c9d6bc33227070dd.js +0 -1
  142. mage_ai/server/frontend_dist/_next/static/chunks/2485-86c97f516c1abb9f.js +0 -1
  143. mage_ai/server/frontend_dist/_next/static/chunks/3215-c2f5f19b650f9a50.js +0 -1
  144. mage_ai/server/frontend_dist/_next/static/chunks/3654-bff4740b63cf280c.js +0 -1
  145. mage_ai/server/frontend_dist/_next/static/chunks/3881-7f121dbbe6e273cd.js +0 -1
  146. mage_ai/server/frontend_dist/_next/static/chunks/6299-97f283be01adf6a8.js +0 -1
  147. mage_ai/server/frontend_dist/_next/static/chunks/pages/files-daf49c7c6f7e70f8.js +0 -1
  148. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-1f6cb7656299cbd1.js +0 -1
  149. mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-4894eabb442a039c.js +0 -1
  150. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-a9bd86bee73b5762.js +0 -1
  151. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-cf51793c2112915c.js +0 -1
  152. mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-f1131ffe0d2a4a06.js +0 -1
  153. mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-170943ca00445486.js +0 -1
  154. mage_ai/server/frontend_dist/_next/static/chunks/pages/version-control-2ecda1f1437013f2.js +0 -1
  155. mage_ai/server/frontend_dist/_next/static/tMZjCwLa1LRYRzhFRdKNf/_buildManifest.js +0 -1
  156. /mage_ai/server/frontend_dist/_next/static/{tMZjCwLa1LRYRzhFRdKNf → OwvTROmputQCA1Z9HEGDv}/_middlewareManifest.js +0 -0
  157. /mage_ai/server/frontend_dist/_next/static/{tMZjCwLa1LRYRzhFRdKNf → OwvTROmputQCA1Z9HEGDv}/_ssgManifest.js +0 -0
  158. {mage_ai-0.9.7.dist-info → mage_ai-0.9.9.dist-info}/LICENSE +0 -0
  159. {mage_ai-0.9.7.dist-info → mage_ai-0.9.9.dist-info}/WHEEL +0 -0
  160. {mage_ai-0.9.7.dist-info → mage_ai-0.9.9.dist-info}/entry_points.txt +0 -0
  161. {mage_ai-0.9.7.dist-info → mage_ai-0.9.9.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-8f51011a10b384a1.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-c7557dc9e725825e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/tMZjCwLa1LRYRzhFRdKNf/_buildManifest.js" defer=""></script><script src="/_next/static/tMZjCwLa1LRYRzhFRdKNf/_ssgManifest.js" defer=""></script><script src="/_next/static/tMZjCwLa1LRYRzhFRdKNf/_middlewareManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar;}/*!sc*/
1
+ <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-8f51011a10b384a1.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-fa38a24707c76411.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/OwvTROmputQCA1Z9HEGDv/_buildManifest.js" defer=""></script><script src="/_next/static/OwvTROmputQCA1Z9HEGDv/_ssgManifest.js" defer=""></script><script src="/_next/static/OwvTROmputQCA1Z9HEGDv/_middlewareManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar;}/*!sc*/
2
2
  *,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit;}/*!sc*/
3
3
  data-styled.g4[id="sc-global-czSCUT1"]{content:"sc-global-czSCUT1,"}/*!sc*/
4
4
  .kOVcuR .Toastify__toast-container{margin-top:24px;padding:0 !important;width:500px !important;}/*!sc*/
@@ -19,4 +19,4 @@ data-styled.g5[id="ToastWrapper-sc-1a33ph1-0"]{content:"kOVcuR,"}/*!sc*/
19
19
  .next-error-h1 {
20
20
  border-right: 1px solid rgba(255, 255, 255, .3);
21
21
  }
22
- }</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","dashboard":"#18181C","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F","tag":"#3A4550"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"tMZjCwLa1LRYRzhFRdKNf","nextExport":true,"isFallback":false,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>
22
+ }</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","dashboard":"#18181C","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F","tag":"#3A4550"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"OwvTROmputQCA1Z9HEGDv","nextExport":true,"isFallback":false,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>
@@ -1,4 +1,4 @@
1
- <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-8f51011a10b384a1.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-c7557dc9e725825e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/tMZjCwLa1LRYRzhFRdKNf/_buildManifest.js" defer=""></script><script src="/_next/static/tMZjCwLa1LRYRzhFRdKNf/_ssgManifest.js" defer=""></script><script src="/_next/static/tMZjCwLa1LRYRzhFRdKNf/_middlewareManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar;}/*!sc*/
1
+ <!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-8f51011a10b384a1.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-fa38a24707c76411.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/OwvTROmputQCA1Z9HEGDv/_buildManifest.js" defer=""></script><script src="/_next/static/OwvTROmputQCA1Z9HEGDv/_ssgManifest.js" defer=""></script><script src="/_next/static/OwvTROmputQCA1Z9HEGDv/_middlewareManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar;}/*!sc*/
2
2
  *,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit;}/*!sc*/
3
3
  data-styled.g4[id="sc-global-czSCUT1"]{content:"sc-global-czSCUT1,"}/*!sc*/
4
4
  .kOVcuR .Toastify__toast-container{margin-top:24px;padding:0 !important;width:500px !important;}/*!sc*/
@@ -19,4 +19,4 @@ data-styled.g5[id="ToastWrapper-sc-1a33ph1-0"]{content:"kOVcuR,"}/*!sc*/
19
19
  .next-error-h1 {
20
20
  border-right: 1px solid rgba(255, 255, 255, .3);
21
21
  }
22
- }</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","dashboard":"#18181C","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F","tag":"#3A4550"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"tMZjCwLa1LRYRzhFRdKNf","nextExport":true,"isFallback":false,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>
22
+ }</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","dashboard":"#18181C","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F","tag":"#3A4550"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"OwvTROmputQCA1Z9HEGDv","nextExport":true,"isFallback":false,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>
@@ -0,0 +1 @@
1
+ self.__BUILD_MANIFEST=function(s,e,i,n,c,t,a,p,l,u,r,g,d,k,f,b,h,j,o,m,_,w,E,O,v,A,B,L,D,T,y,C,I){return{__rewrites:{beforeFiles:[],afterFiles:[{source:"/CLOUD_NOTEBOOK_BASE_PATH_PLACEHOLDER_/datasets",destination:B},{source:"/CLOUD_NOTEBOOK_BASE_PATH_PLACEHOLDER_",destination:B}],fallback:[]},"/":["static/chunks/pages/index-32917acd76697307.js"],"/_error":["static/chunks/pages/_error-235304e5badb19eb.js"],"/files":[s,n,g,_,"static/chunks/5643-1f8a6d8a392fe96b.js",e,i,c,t,d,v,"static/chunks/pages/files-b9dac983c75798f2.js"],"/manage":[s,n,g,e,i,c,d,"static/chunks/pages/manage-bcc24120f5911f76.js"],"/manage/settings":[s,n,g,"static/chunks/4398-5d5c07021ccd37b8.js",e,i,d,"static/chunks/pages/manage/settings-453aaa7bf78f8101.js"],"/manage/users":[s,e,i,c,"static/chunks/pages/manage/users-ec748f838b7b8fad.js"],"/manage/users/new":[s,e,i,w,"static/chunks/pages/manage/users/new-dd41d718cbb5990c.js"],"/manage/users/[user]":[s,e,i,c,w,"static/chunks/pages/manage/users/[user]-3b502aa6d1a04cad.js"],"/overview":[s,n,p,l,r,g,k,b,h,j,e,i,c,t,u,d,f,o,E,L,"static/chunks/pages/overview-6f20b9e9cbec91d6.js"],"/pipeline-runs":[s,n,e,i,c,O,"static/chunks/pages/pipeline-runs-14d37c2c2ea9e9a2.js"],"/pipelines":[s,n,p,l,r,g,k,h,e,i,c,t,u,d,f,o,E,"static/chunks/pages/pipelines-0fab737dbc9074fc.js"],"/pipelines/[pipeline]":["static/chunks/pages/pipelines/[pipeline]-ca9457e1a6bced4b.js"],"/pipelines/[pipeline]/backfills":[s,n,e,i,c,a,"static/chunks/pages/pipelines/[pipeline]/backfills-6b4a82cd0516e121.js"],"/pipelines/[pipeline]/backfills/[...slug]":[s,n,p,l,r,m,A,e,i,c,t,a,u,O,"static/chunks/pages/pipelines/[pipeline]/backfills/[...slug]-55212dfc15881ef2.js"],"/pipelines/[pipeline]/edit":[D,s,n,p,l,r,g,k,b,m,h,j,_,T,"static/chunks/2991-d0b13a172f9c1dcd.js",e,i,c,t,u,d,f,o,E,v,y,"static/chunks/pages/pipelines/[pipeline]/edit-0705c99df236ec8a.js"],"/pipelines/[pipeline]/logs":[s,n,p,k,A,e,i,c,t,a,f,"static/chunks/pages/pipelines/[pipeline]/logs-c294f5d74bd2d50f.js"],"/pipelines/[pipeline]/monitors":[s,n,b,j,"static/chunks/2834-d2a1c03968995e8e.js",e,i,a,L,"static/chunks/pages/pipelines/[pipeline]/monitors-1b9e4abc54842cdf.js"],"/pipelines/[pipeline]/monitors/block-runs":[s,n,b,j,"static/chunks/9404-1fb0792716d46efc.js",e,i,t,a,"static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-489d02937d5f4695.js"],"/pipelines/[pipeline]/monitors/block-runtime":[D,s,n,b,j,"static/chunks/9464-84f4879568c00a93.js",e,i,t,a,"static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-6bec539394ac7514.js"],"/pipelines/[pipeline]/runs":[s,n,p,l,r,m,e,i,c,t,a,u,O,C,"static/chunks/pages/pipelines/[pipeline]/runs-17ebe87e94242ae5.js"],"/pipelines/[pipeline]/runs/[run]":[s,n,p,l,r,k,b,m,T,e,i,c,t,a,u,f,y,C,"static/chunks/pages/pipelines/[pipeline]/runs/[run]-f1ef481c7beb8aef.js"],"/pipelines/[pipeline]/settings":[s,n,e,i,a,"static/chunks/pages/pipelines/[pipeline]/settings-48b60ca236a26818.js"],"/pipelines/[pipeline]/syncs":[s,n,e,i,c,a,"static/chunks/pages/pipelines/[pipeline]/syncs-5153f4665aaf8b17.js"],"/pipelines/[pipeline]/triggers":[s,n,p,l,e,i,c,t,a,u,I,"static/chunks/pages/pipelines/[pipeline]/triggers-2e731d343a26d46a.js"],"/pipelines/[pipeline]/triggers/[...slug]":[s,n,p,l,r,m,A,e,i,c,t,a,u,O,"static/chunks/pages/pipelines/[pipeline]/triggers/[...slug]-1306e85191f6b47c.js"],"/settings":["static/chunks/pages/settings-d594a66a568306da.js"],"/settings/account/profile":[s,e,i,w,"static/chunks/pages/settings/account/profile-d2224a447987fa69.js"],"/settings/workspace/preferences":[s,e,i,"static/chunks/pages/settings/workspace/preferences-b2354688508b0755.js"],"/settings/workspace/sync-data":[s,e,i,"static/chunks/pages/settings/workspace/sync-data-dd827816bf4a7908.js"],"/settings/workspace/users":[s,e,i,c,w,"static/chunks/pages/settings/workspace/users-6522c963087f18e8.js"],"/sign-in":[s,e,"static/chunks/pages/sign-in-7dcd1257ca9660bb.js"],"/templates":[s,n,p,l,r,g,k,h,e,i,c,t,u,d,f,o,E,"static/chunks/pages/templates-19df643f52679d5a.js"],"/templates/[...slug]":[s,n,p,l,r,g,k,h,e,i,c,t,u,d,f,o,"static/chunks/pages/templates/[...slug]-78a07e7fe8973811.js"],"/terminal":[s,e,i,"static/chunks/pages/terminal-d483cf913167fd8d.js"],"/test":[_,"static/chunks/pages/test-b24d77dc84843924.js"],"/triggers":[s,e,i,c,I,"static/chunks/pages/triggers-ecf780af6044e77e.js"],"/version-control":[s,n,_,"static/chunks/7768-2325216ed654ad05.js",e,i,c,t,v,"static/chunks/pages/version-control-a1cf445565b68809.js"],sortedPages:["/","/_app","/_error","/files","/manage","/manage/settings","/manage/users","/manage/users/new","/manage/users/[user]","/overview","/pipeline-runs","/pipelines","/pipelines/[pipeline]","/pipelines/[pipeline]/backfills","/pipelines/[pipeline]/backfills/[...slug]","/pipelines/[pipeline]/edit","/pipelines/[pipeline]/logs","/pipelines/[pipeline]/monitors","/pipelines/[pipeline]/monitors/block-runs","/pipelines/[pipeline]/monitors/block-runtime","/pipelines/[pipeline]/runs","/pipelines/[pipeline]/runs/[run]","/pipelines/[pipeline]/settings","/pipelines/[pipeline]/syncs","/pipelines/[pipeline]/triggers","/pipelines/[pipeline]/triggers/[...slug]","/settings","/settings/account/profile","/settings/workspace/preferences","/settings/workspace/sync-data","/settings/workspace/users","/sign-in","/templates","/templates/[...slug]","/terminal","/test","/triggers","/version-control"]}}("static/chunks/844-1e171f361e63b36d.js","static/chunks/1424-e22139f33196c5c1.js","static/chunks/1005-16c1a6678de5311e.js","static/chunks/9902-b7981346a40ecdc3.js","static/chunks/7815-fbd99c8f259d9e8b.js","static/chunks/3654-573457b62efff6e2.js","static/chunks/547-4ad2cdae967055b6.js","static/chunks/426-df62b0bd693bbb87.js","static/chunks/1774-aa51ef1da7217ff9.js","static/chunks/8952-e94a7334fcd5c68b.js","static/chunks/8792-10e45963e2486454.js","static/chunks/8789-4f858e520d46973b.js","static/chunks/7722-a74e6f977993e75e.js","static/chunks/4259-b71c17f69499f7bd.js","static/chunks/4822-045cc7cdd7c95163.js","static/chunks/5896-42c94d54cd2c5706.js","static/chunks/9055-d0d25298cb5f4e45.js","static/chunks/2714-1e79e9f2e998b544.js","static/chunks/1484-a76b2c31e4808379.js","static/chunks/7849-dc70fad5f838d909.js","static/chunks/7011-81dd8269c4806d26.js","static/chunks/3881-0eb04f7f7a244347.js","static/chunks/2485-b569baad92049d6b.js","static/chunks/8312-c88a3b1012e5448b.js","static/chunks/6299-cf188c1b7a1bc33c.js","static/chunks/4495-4f0340aa82e0c623.js","/datasets","static/chunks/6786-4209f6577f9d4c91.js","static/chunks/29107295-989a0767a635d9d5.js","static/chunks/5872-1767c45ee6690ae5.js","static/chunks/437-89b2e8ea46a3cec4.js","static/chunks/2786-acce6ea0d9b4898e.js","static/chunks/4317-3fe63fc9401685d6.js"),self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
@@ -1 +1 @@
1
- "use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[1005],{85019:function(e,n,t){var r=t(21831),i=t(82394),o=t(12691),c=t.n(o),d=t(82684),l=t(34376),a=t(57639),u=t(34744),s=t(93461),f=t(67971),h=t(882),p=t(11135),g=t(86673),m=t(19711),v=t(46261),b=t(10503),x=t(72454),y=t(99994),w=t(49125),j=t(28598);function k(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function O(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?k(Object(t),!0).forEach((function(n){(0,i.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):k(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Z=3*w.iI,I=[{id:"main",items:[{Icon:b.G6,id:"overview",label:function(){return"Overview"},linkProps:{href:"/overview"}},{Icon:b.vd,id:"pipelines",label:function(){return"Pipelines"},linkProps:{href:"/pipelines"}},{Icon:b.Bf,id:"triggers",label:function(){return"Triggers"},linkProps:{href:"/triggers"}},{Icon:b.Pf,id:"pipeline-runs",label:function(){return"Pipelines runs"},linkProps:{href:"/pipeline-runs"}}]},{id:"misc",items:[{Icon:b.$l,id:"files",label:function(){return"Files"},linkProps:{href:"/files"}},{Icon:b.zQ,id:"templates",label:function(){return"Templates"},linkProps:{href:"/templates"}},{Icon:b.Pt,id:"version-control",label:function(){return"Version control"},linkProps:{href:"/version-control"}},{Icon:b.oI,id:"terminal",label:function(){return"Terminal"},linkProps:{href:"/terminal"}},{Icon:b.Zr,id:"settings",label:function(){return"Settings"},linkProps:{href:"/settings"}}]}];n.Z=function(e){var n=e.aligned,t=e.navigationItems,i=e.showMore,o=e.visible,b=(0,l.useRouter)().pathname,k=(0,d.useCallback)((function(e,t){var r,d,l,a=e.Icon,u=e.IconSelected,k=e.disabled,I=e.id,P=e.isSelected,C=e.label,_=e.linkProps,S=e.onClick,E=P?P(b,e):!!b.match(new RegExp("^/".concat(I,"[/]*"))),M=E&&u?u:a,N=null===C||void 0===C?void 0:C(),z={primary:!M,selected:i&&E,showMore:i,withGradient:u};E&&u?(d=(0,j.jsx)("div",{style:{height:Z,width:Z},children:(0,j.jsx)(M,{muted:!0,size:Z})}),(i||o)&&(d=(0,j.jsx)(x.E7,O(O({},z),{},{children:(0,j.jsx)(M,{muted:!0,size:Z})}))),r=(0,j.jsx)(h.Z,{backgroundGradient:y.yr,backgroundPanel:!0,basic:!0,borderWidth:2,disabled:k,linkProps:_,onClick:S,paddingUnits:1,children:d}),i&&(r=d)):(!E||E&&!u)&&(d=(0,j.jsx)(x.E7,O(O({},z),{},{children:M?(0,j.jsx)(M,{muted:!E,size:Z}):(0,j.jsx)(m.ZP,{children:"Edit"})})),r=(0,j.jsx)(p.ZP,{disabled:k,inline:!0,linkProps:_,noHoverUnderline:!0,noPadding:!0,onClick:S,primary:E,sameColorAsText:!0,uuid:"VerticalNavigation/".concat(I),children:d}),i&&(r=d)),l="right"===n?(0,j.jsxs)(f.Z,{alignItems:"center",fullWidth:!0,justifyContent:"flex-end",children:[(0,j.jsx)(s.Z,{flex:1,justifyContent:"flex-end",children:(0,j.jsx)(m.ZP,{noWrapping:!0,children:N})}),(0,j.jsx)(g.Z,{mr:2}),d]}):(0,j.jsxs)(f.Z,{alignItems:"center",children:[d,(0,j.jsx)(g.Z,{mr:2}),(0,j.jsx)(s.Z,{flex:1,children:(0,j.jsx)(m.ZP,{noWrapping:!0,children:N})})]});var B,D=(0,j.jsx)(x.J8,{href:"#",onClick:S,selected:E,children:l});return _&&(D=(0,j.jsx)(c(),O(O({},_),{},{passHref:!0,children:D}))),"right"===n&&(r=(0,j.jsx)(f.Z,{alignItems:"center",fullWidth:!0,justifyContent:"flex-end",children:r})),B=o?D:i?r:(0,j.jsx)(v.Z,{appearBefore:"right"===n,height:5*w.iI,label:N,size:null,widthFitContent:!0,children:r}),(0,j.jsx)(g.Z,{mt:i&&o?0:t>=1?w.cd:0,children:B},"button-".concat(I))}),[n,b,i,o]),P=(0,d.useMemo)((function(){var e=[];return(t||I).forEach((function(n,t){var i=n.id,c=n.items;(null===c||void 0===c?void 0:c.length)>=1?(t>=1&&e.push((0,j.jsx)(g.Z,{my:o?w.cd:w.cd+1,children:(0,j.jsx)(u.Z,{light:!0})},i)),e.push.apply(e,(0,r.Z)(c.map((function(e,n){return k(e,n)}))))):e.push(k(n,t))})),e}),[k,t,o]);return(0,j.jsx)(a.Z,{children:P})}},72454:function(e,n,t){t.d(n,{E7:function(){return b},HS:function(){return v},Hn:function(){return y},J8:function(){return x},Nk:function(){return p},k1:function(){return h},lm:function(){return m}});var r=t(82684),i=t(38626),o=t(86673),c=t(23831),d=t(73942),l=t(3055),a=t(49125),u=t(37391),s=t(90880),f=t(28598),h=a.cd*a.iI+5*a.iI+a.cd*a.iI+1,p=i.default.div.withConfig({displayName:"indexstyle__ContainerStyle",componentId:"sc-ecogjt-0"})(["display:flex;flex-direction:row;height:calc(100vh - ","px);position:fixed;top:","px;width:100%;",""],l.Mz,l.Mz,(function(e){return"\n background-color: ".concat((e.theme.background||c.Z.background).page,";\n ")})),g=i.default.div.withConfig({displayName:"indexstyle__VerticalNavigationStyleComponent",componentId:"sc-ecogjt-1"})(["height:100%;"," "," "," @keyframes animate-in{0%{width:","px;}100%{width:","px;}}"," ",""],(function(e){return"\n background-color: ".concat((e.theme.background||c.Z.background).panel,";\n ")}),(function(e){return!e.borderless&&"right"!==e.aligned&&"\n border-right: 1px solid ".concat((e.theme.borders||c.Z.borders).medium,";\n ")}),(function(e){return!e.borderless&&"right"===e.aligned&&"\n border-left: 1px solid ".concat((e.theme.borders||c.Z.borders).medium,";\n ")}),21*a.iI,34*a.iI,(function(e){return e.showMore&&e.visible&&"\n &:hover {\n animation: animate-in 100ms linear forwards;\n position: fixed;\n z-index: 100;\n }\n "}),(function(e){return e.showMore&&e.visible&&"right"===e.aligned&&"\n &:hover {\n right: 0;\n top: ".concat(l.Mz,"px;\n }\n ")}));function m(e){var n=e.aligned,t=e.borderless,i=e.children,c=e.showMore,d=(0,r.useRef)(null),l=(0,r.useState)(!1),u=l[0],s=l[1];return(0,f.jsx)(g,{aligned:n,borderless:t&&!u,onMouseEnter:c?function(){clearTimeout(d.current),d.current=setTimeout((function(){s(!0)}),300)}:null,onMouseLeave:c?function(){clearTimeout(d.current),s(!1)}:null,showMore:c,visible:u,children:(0,f.jsx)(o.Z,{px:c&&u?0:a.cd,py:c&&u?1:a.cd,children:r.cloneElement(i,{showMore:c,visible:u})})})}var v=i.default.div.withConfig({displayName:"indexstyle__SubheaderStyle",componentId:"sc-ecogjt-2"})(["padding:","px;position:sticky;top:0;width:100%;z-index:3;",""],a.cd*a.iI,(function(e){return"\n background-color: ".concat((e.theme.background||c.Z.background).page,";\n border-bottom: 1px solid ").concat((e.theme.borders||c.Z.borders).medium,";\n ")})),b=(i.default.div.withConfig({displayName:"indexstyle__ContentStyle",componentId:"sc-ecogjt-3"})([""," overflow:auto;",""],u.w5,(function(e){return"\n height: calc(100vh - ".concat(l.Mz+(e.heightOffset||0),"px);\n ")})),i.default.div.withConfig({displayName:"indexstyle__NavigationItemStyle",componentId:"sc-ecogjt-4"})(["align-items:center;border-radius:","px;display:flex;height:","px;justify-content:center;padding:","px;width:","px;"," "," "," ",""],d.n_,5*a.iI,a.iI,5*a.iI,(function(e){return e.primary&&"\n ".concat((0,s.eR)(),"\n background: ").concat((e.theme||c.Z).chart.backgroundPrimary,";\n border: 1px solid ").concat((e.theme||c.Z).feature.active,";\n\n &:hover {\n background-color: ").concat((e.theme||c.Z).interactive.linkSecondary,";\n }\n ")}),(function(e){return e.selected&&!e.withGradient&&"\n background-color: ".concat((e.theme.interactive||c.Z.interactive).linkPrimary,";\n ")}),(function(e){return e.selected&&e.withGradient&&"\n background-color: ".concat((e.theme.background||c.Z.background).codeTextarea,";\n ")}),(function(e){return!e.selected&&e.showMore&&"\n background-color: ".concat((e.theme.interactive||c.Z.interactive).defaultBackground,";\n ")}))),x=i.default.a.withConfig({displayName:"indexstyle__NavigationLinkStyle",componentId:"sc-ecogjt-5"})([""," display:block;padding:","px ","px;"," ",""],(0,s.eR)(),1*a.iI,a.iI*a.cd,(function(e){return!e.selected&&"\n &:hover {\n background-color: ".concat((e.theme.interactive||c.Z.interactive).hoverBackground,";\n }\n ")}),(function(e){return e.selected&&"\n background-color: ".concat((e.theme.interactive||c.Z.interactive).linkPrimaryHover,";\n ")})),y=i.default.div.withConfig({displayName:"indexstyle__ImageStyle",componentId:"sc-ecogjt-6"})(["background-position:0 0;background-repeat:no-repeat;background-size:contain;height:","px;width:","px;"," ",""],12*a.iI,12*a.iI,(function(e){return"\n background-image: url(".concat(e.imageUrl,");\n ")}),(function(e){return e.size&&"\n height: ".concat(e.size,"px;\n width: ").concat(e.size,"px;\n ")}))},82386:function(e,n,t){t.d(n,{E$:function(){return C},MK:function(){return b},MP:function(){return Z},Md:function(){return u},OM:function(){return m},Ru:function(){return I},S9:function(){return B},VW:function(){return h},W7:function(){return j},Wi:function(){return g},YJ:function(){return O},Zj:function(){return M},Zt:function(){return a},aH:function(){return E},bC:function(){return N},dN:function(){return s},ff:function(){return P},l8:function(){return p},lU:function(){return z},rS:function(){return S},uX:function(){return v},v7:function(){return _},ve:function(){return f},ym:function(){return k}});var r=t(38626),i=t(23831),o=t(73942),c=t(3055),d=t(49125),l=t(37391),a=64*d.iI,u=30*d.iI,s=21.25*d.iI,f=35*d.iI,h=.5*d.iI,p=13*d.iI,g=3*d.cd*d.iI,m=6*d.iI,v=2*d.cd*3*d.iI,b=(r.default.div.withConfig({displayName:"indexstyle__HeaderStyle",componentId:"sc-1lxpneo-0"})(["position:fixed;z-index:3;"," "," ",""],(function(e){return"\n border-bottom: 1px solid ".concat((e.theme.monotone||i.Z.monotone).grey200,";\n ")}),(function(e){return!e.beforeVisible&&"\n width: 100%;\n "}),(function(e){return e.beforeVisible&&"\n left: ".concat(f,"px;\n width: calc(100% - ").concat(f,"px);\n ")})),r.default.div.withConfig({displayName:"indexstyle__NewHeaderStyle",componentId:"sc-1lxpneo-1"})(["height:","px;position:fixed;top:0;width:100%;z-index:4;"],c.Mz)),x=(r.default.div.withConfig({displayName:"indexstyle__TabStyle",componentId:"sc-1lxpneo-2"})(["border-top-left-radius:","px;border-top-right-radius:","px;padding:","px ","px;position:relative;top:1px;"," "," ",""],o.n_,o.n_,1*d.iI,2*d.iI,(function(e){return"\n border-left: 1px solid ".concat((e.theme.monotone||i.Z.monotone).grey200,";\n border-right: 1px solid ").concat((e.theme.monotone||i.Z.monotone).grey200,";\n border-top: 1px solid ").concat((e.theme.monotone||i.Z.monotone).grey200,";\n ")}),(function(e){return!e.first&&"\n margin-left: ".concat(1*d.iI,"px;\n ")}),(function(e){return e.selected&&"\n border-bottom: 1px solid ".concat((e.theme.monotone||i.Z.monotone).white,";\n ")})),(0,r.css)(["position:fixed;z-index:2;",""],(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).panel,";\n height: calc(100% - ").concat("undefined"===typeof e.heightOffset?v:e.heightOffset,"px);\n top: ").concat("undefined"===typeof e.heightOffset?v:e.heightOffset,"px;\n ")}))),y=(0,r.css)([""," height:100%;overflow:auto;position:relative;z-index:2;",""],l.w5,(function(e){return e.verticalOffset&&"\n height: calc(100% - ".concat(e.verticalOffset,"px);\n top: ").concat(e.verticalOffset,"px;\n ")})),w=(0,r.css)(["height:calc(100% + ","px);position:absolute;top:-","px;width:","px;z-index:6;&:hover{","}"," ",""],g,g,h,(function(e){return!e.disabled&&"\n border-color: ".concat((e.theme.text||i.Z.text).fileBrowser," !important;\n ")}),(function(e){return!e.disabled&&"\n cursor: col-resize;\n "}),(function(e){return e.active&&!e.disabled&&"\n border-color: ".concat((e.theme.text||i.Z.text).fileBrowser," !important;\n ")})),j=r.default.div.withConfig({displayName:"indexstyle__AsideHeaderStyle",componentId:"sc-1lxpneo-3"})(["border-bottom:1px solid transparent;height:","px;position:fixed;top:","px;z-index:4;"," "," ",""],m,g,(0,l.y$)(),(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).panel,";\n ")}),(function(e){return!e.visible&&"\n border-left: 1px solid transparent;\n border-right: 1px solid transparent;\n border-bottom-color: ".concat((e.theme.borders||i.Z.borders).medium," !important;\n ")})),k=r.default.div.withConfig({displayName:"indexstyle__AsideHeaderInnerStyle",componentId:"sc-1lxpneo-4"})(["display:flex;flex:1;overflow:auto;padding:0 ","px;"," ",""],2*d.iI,(0,l.y$)(),(function(e){return e.noPadding&&"\n padding: 0;\n "})),O=r.default.div.withConfig({displayName:"indexstyle__AsideSubheaderStyle",componentId:"sc-1lxpneo-5"})(["border-bottom:1px solid transparent;height:","px;overflow-x:auto;position:absolute;top:","px;"," "," ",""],g,g,(0,l.y$)(),(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).table,";\n ")}),(function(e){return!e.visible&&"\n border-color: ".concat((e.theme.borders||i.Z.borders).medium," !important;\n ")})),Z=r.default.aside.withConfig({displayName:"indexstyle__BeforeStyle",componentId:"sc-1lxpneo-6"})([""," left:0;"],x),I=r.default.div.withConfig({displayName:"indexstyle__BeforeInnerStyle",componentId:"sc-1lxpneo-7"})([""," overflow:hidden;&:hover{overflow:auto;}"],y),P=r.default.aside.withConfig({displayName:"indexstyle__AfterStyle",componentId:"sc-1lxpneo-8"})([""," right:0;"],x),C=r.default.div.withConfig({displayName:"indexstyle__AfterInnerStyle",componentId:"sc-1lxpneo-9"})([""," ",""],y,(function(e){return e.overflow&&"\n overflow: ".concat(e.overflow,";\n ")})),_=r.default.div.withConfig({displayName:"indexstyle__DraggableStyle",componentId:"sc-1lxpneo-10"})([""," "," ",""],w,(function(e){return"undefined"!==typeof e.left&&"\n border-left: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n left: ").concat(e.left,"px;\n ")}),(function(e){return"undefined"!==typeof e.right&&"\n border-right: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n right: ").concat(e.right,"px;\n ")})),S=r.default.div.withConfig({displayName:"indexstyle__MainWrapper",componentId:"sc-1lxpneo-11"})(["height:100%;position:fixed;z-index:1;",""],(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).codeArea,";\n ")})),E=r.default.div.withConfig({displayName:"indexstyle__MainContentStyle",componentId:"sc-1lxpneo-12"})(["position:fixed;z-index:2;",""],(function(e){return"\n height: calc(100% - ".concat(e.headerOffset||0,"px);\n top: ").concat(e.headerOffset||0,"px;\n ")})),M=r.default.div.withConfig({displayName:"indexstyle__MainContentInnerStyle",componentId:"sc-1lxpneo-13"})([""," height:100%;overflow:auto;"],l.w5),N=r.default.div.withConfig({displayName:"indexstyle__NavigationStyle",componentId:"sc-1lxpneo-14"})(["position:relative;"]),z=r.default.div.withConfig({displayName:"indexstyle__NavigationInnerStyle",componentId:"sc-1lxpneo-15"})(["height:100%;position:fixed;z-index:6;"," ",""],(function(e){return"left"===e.aligned&&"\n border-right: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n left: 0;\n ")}),(function(e){return"right"===e.aligned&&"\n border-left: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n right: 0;\n ")})),B=r.default.div.withConfig({displayName:"indexstyle__NavigationContainerStyle",componentId:"sc-1lxpneo-16"})([""," overflow:auto;position:absolute;width:fit-content;"," "," "," ",""],l.w5,(function(e){return"\n height: calc(100vh - ".concat(e.heightOffset,"px);\n ")}),(function(e){return e.fullWidth&&"\n width: calc(100% - ".concat(e.widthOffset||0,"px);\n ")}),(function(e){return e.widthOffset&&"left"===e.aligned&&"\n left: ".concat(e.widthOffset,"px;\n ")}),(function(e){return e.widthOffset&&"right"===e.aligned&&"\n right: ".concat(e.widthOffset,"px;\n ")}))},32063:function(e,n,t){var r=t(82684),i=t(1887),o=t.n(i),c=t(60328),d=t(57639),l=t(93461),a=t(67971),u=t(86673),s=t(46261),f=t(85019),h=t(82386),p=t(10503),g=t(91427),m=t(49125),v=t(72454),b=t(24141),x=t(28598);n.Z=function(e){var n=e.after,t=e.afterHeader,i=e.afterHeightOffset,y=e.afterHidden,w=e.afterMousedownActive,j=e.afterNavigationItems,k=e.afterOverflow,O=e.afterSubheader,Z=e.afterWidth,I=void 0===Z?0:Z,P=e.before,C=e.beforeHeader,_=e.beforeHeightOffset,S=e.beforeHidden,E=e.beforeMousedownActive,M=e.beforeNavigationItems,N=e.beforeWidth,z=void 0===N?0:N,B=e.children,D=e.header,W=e.headerOffset,H=void 0===W?0:W,A=e.hideAfterCompletely,R=e.leftOffset,F=void 0===R?0:R,L=e.mainContainerHeader,T=e.mainContainerRef,U=e.navigationShowMore,V=e.setAfterHidden,G=e.setAfterMousedownActive,$=e.setAfterWidth,X=e.setBeforeHidden,q=e.setBeforeMousedownActive,J=e.setBeforeWidth,Q=(e.uuid,(0,b.i)().width),Y=(0,r.useRef)(null),K=(0,r.useRef)(null),ee=(0,r.useRef)(null),ne=(0,r.useRef)(null),te=(0,r.useCallback)((function(){var e=!y;null===V||void 0===V||V(e),(0,g.t8)(g.zg,e)}),[y,V]),re=(0,r.useCallback)((function(){var e=!S;X(e),(0,g.t8)(g.Uu,e)}),[S,X]);(0,r.useEffect)((function(){var e,n,t,r,i=function(e){var n,t;((null===ee||void 0===ee||null===(n=ee.current)||void 0===n||null===(t=n.getBoundingClientRect)||void 0===t?void 0:t.call(n))||{}).x;if(Q){var r=e.x;r+h.l8>Q-I&&(r=Q-I-h.l8),r-=2*F,J(Math.max(r,h.dN))}},o=function(e){var n,t;e.offsetX>=e.target.offsetWidth-h.VW&&e.offsetX<=e.target.offsetWidth+h.VW&&(null===q||void 0===q||q(!0),e.preventDefault(),null===(n=document)||void 0===n||null===(t=n.addEventListener)||void 0===t||t.call(n,"mousemove",i,!1))},c=function(){var e,n;null===q||void 0===q||q(!1),null===(e=document)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousemove",i,!1)};return null===ne||void 0===ne||null===(e=ne.current)||void 0===e||null===(n=e.addEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.addEventListener)||void 0===r||r.call(t,"mouseup",c,!1),function(){var e,n,t,r;null===ne||void 0===ne||null===(e=ne.current)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.removeEventListener)||void 0===r||r.call(t,"mouseup",c,!1),c()}}),[I,S,F,ee,ne,q,J,Q]),(0,r.useEffect)((function(){var e,n,t,r,i=function(e){var n,t;((null===Y||void 0===Y||null===(n=Y.current)||void 0===n||null===(t=n.getBoundingClientRect)||void 0===t?void 0:t.call(n))||{}).x;if(Q){var r=Q-e.x;r+h.l8>Q-z&&(r=Q-z-h.l8),$(Math.max(r,h.Md))}},o=function(e){var n,t;e.offsetX>=-1*h.VW&&e.offsetX<=h.VW&&(null===G||void 0===G||G(!0),e.preventDefault(),null===(n=document)||void 0===n||null===(t=n.addEventListener)||void 0===t||t.call(n,"mousemove",i,!1))},c=function(){var e,n;null===G||void 0===G||G(!1),null===(e=document)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousemove",i,!1)};return null===K||void 0===K||null===(e=K.current)||void 0===e||null===(n=e.addEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.addEventListener)||void 0===r||r.call(t,"mouseup",c,!1),function(){var e,n,t,r;null===K||void 0===K||null===(e=K.current)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.removeEventListener)||void 0===r||r.call(t,"mouseup",c,!1),c()}}),[y,z,Y,K,G,$,Q]);var ie=A&&y,oe=ie?0:y?4*m.iI:I,ce=S?4*m.iI:z,de="calc(100% - ".concat(ce+oe+F,"px)"),le=(0,r.useMemo)((function(){return(null===j||void 0===j?void 0:j.length)>=1}),[j]),ae=(0,r.useMemo)((function(){return(0,x.jsxs)(x.Fragment,{children:[V&&(0,x.jsxs)(x.Fragment,{children:[(0,x.jsx)(h.W7,{style:{width:le?oe-(v.k1-1):oe},visible:y,children:(0,x.jsxs)(a.Z,{alignItems:"center",fullHeight:!0,fullWidth:!0,children:[(0,x.jsxs)(l.Z,{children:[(0,x.jsx)(u.Z,{pl:y?1:2}),(0,x.jsxs)(c.Z,{noBackground:!0,noBorder:!0,noPadding:!0,onClick:function(){return te()},children:[y&&(0,x.jsx)(p.s$,{neutral:!0,size:2*m.iI}),!y&&(0,x.jsx)(p._Q,{neutral:!0,size:2*m.iI})]})]}),!y&&t]})}),!y&&O&&(0,x.jsx)(h.YJ,{style:{width:le?oe-(v.k1+1):oe},visible:y,children:O})]}),(0,x.jsx)(h.E$,{noScrollbarTrackBackground:!0,overflow:k,ref:Y,verticalOffset:t?O?h.Wi+i:i:null,children:!y&&n})]})}),[n,t,i,y,k,O,oe,le,Y,V,te]),ue=(0,r.useMemo)((function(){return(null===M||void 0===M?void 0:M.length)>=1}),[M]),se=(0,r.useMemo)((function(){return(0,x.jsxs)(x.Fragment,{children:[X&&(0,x.jsx)(h.W7,{style:{overflow:S?"visible":"hidden",width:ue?ce-(v.k1+2):ce},visible:S,children:(0,x.jsxs)(a.Z,{alignItems:"center",fullHeight:!0,fullWidth:!0,justifyContent:"space-between",children:[(0,x.jsxs)(h.ym,{noPadding:!0,children:[(0,x.jsx)(u.Z,{pl:S?1:0}),!S&&C]}),(0,x.jsxs)(l.Z,{children:[(0,x.jsx)(s.Z,{appearAbove:!S,appearBefore:!S,block:!0,label:S?"Show sidebar":"Hide sidebar",size:null,widthFitContent:!0,children:(0,x.jsxs)(c.Z,{noBackground:!0,noBorder:!0,noPadding:!0,onClick:function(){return re()},children:[S&&(0,x.jsx)(p._Q,{neutral:!0,size:2*m.iI}),!S&&(0,x.jsx)(p.s$,{neutral:!0,size:2*m.iI})]})},S?"before-is-hidden":"before-is-visible"),(0,x.jsx)(u.Z,{pr:S?1:2})]})]})}),(0,x.jsx)(h.Ru,{noScrollbarTrackBackground:!0,ref:ee,verticalOffset:C?_:null,children:!S&&P})]})}),[P,C,_,S,ce,ue,ee,X,re]);return(0,x.jsxs)(d.Z,{children:[(w&&!y||E&&!S)&&(0,x.jsx)(o(),{children:(0,x.jsx)("style",{dangerouslySetInnerHTML:{__html:"\n body {\n cursor: col-resize;\n }\n "}})}),D&&(0,x.jsx)(h.MK,{children:D}),P&&(0,x.jsxs)(h.MP,{heightOffset:_,style:{left:F,width:ce},children:[(0,x.jsx)(h.v7,{active:E,disabled:S,ref:ne,right:0}),ue&&(0,x.jsxs)(h.bC,{children:[!S&&(0,x.jsxs)(x.Fragment,{children:[(0,x.jsx)(h.lU,{aligned:"left",children:(0,x.jsx)(v.lm,{aligned:"left",borderless:!0,showMore:U,children:(0,x.jsx)(f.Z,{aligned:"left",navigationItems:M})})}),(0,x.jsx)(h.S9,{aligned:"left",fullWidth:!0,heightOffset:_,widthOffset:v.k1+1,children:se})]}),S&&se]}),!ue&&se]}),(0,x.jsxs)(h.rS,{style:{left:ce+F,width:de},children:[L,(0,x.jsx)(h.aH,{headerOffset:(L?h.uX:h.Wi)+H,style:{width:de},children:(0,x.jsx)(h.Zj,{noScrollbarTrackBackground:!0,ref:T,children:B})})]}),n&&!ie&&(0,x.jsxs)(h.ff,{heightOffset:i,style:{width:oe},children:[(0,x.jsx)(h.v7,{active:w,disabled:y,left:0,ref:K}),le&&(0,x.jsxs)(h.bC,{children:[!y&&(0,x.jsxs)(x.Fragment,{children:[(0,x.jsx)(h.lU,{aligned:"right",children:(0,x.jsx)(v.lm,{aligned:"right",borderless:!0,showMore:U,children:(0,x.jsx)(f.Z,{aligned:"right",navigationItems:j})})}),(0,x.jsx)(h.S9,{aligned:"right",fullWidth:!0,heightOffset:i,widthOffset:v.k1+1,children:ae})]}),y&&ae]}),!le&&ae]})]})}},41788:function(e,n,t){t.d(n,{Z:function(){return P}});var r=t(77837),i=t(26304),o=t(62243),c=t(29385),d=t(80022),l=t(99177),a=t(93189),u=t(15544),s=t(82394),f=t(38860),h=t.n(f),p=t(82684),g=t(56663),m=t.n(g),v=t(35490),b=t(55361),x=t(30332),y=t(9736),w=t(59e3),j=t(28598),k=["auth"];function O(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Z(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?O(Object(t),!0).forEach((function(n){(0,s.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):O(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}function I(e){var n=function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var t,r=(0,u.Z)(e);if(n){var i=(0,u.Z)(this).constructor;t=Reflect.construct(r,arguments,i)}else t=r.apply(this,arguments);return(0,a.Z)(this,t)}}function P(e){return function(n){(0,l.Z)(a,n);var t=I(a);function a(){var e;(0,o.Z)(this,a);for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];return e=t.call.apply(t,[this].concat(r)),(0,s.Z)((0,d.Z)(e),"state",{auth:new v.Z(e.props.token)}),e}return(0,c.Z)(a,[{key:"componentDidMount",value:function(){this.setState({auth:new v.Z(this.props.token)})}},{key:"render",value:function(){var n=this.props,t=(n.auth,(0,i.Z)(n,k));return(0,j.jsx)(e,Z({auth:this.state.auth},t))}}],[{key:"getInitialProps",value:function(){var n=(0,r.Z)(h().mark((function n(t){var r,i,o,c,d,l,a,u,s;return h().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(r=m()(t),i=(0,y.ex)(t),o=i.id,c=r[b.Mv],d=r[x.qt],l=new v.Z(c),a=Z(Z({},t),{},{auth:l,currentGroupId:o,theme:d}),(0,y.YB)(t)&&l.isExpired&&(console.log("OAuth token has expired."),u=Z(Z({},t.query),{},{redirect_url:t.asPath}),(0,w.nL)("/sign-in?".concat((0,w.uM)(u)),t.res)),!e.getInitialProps){n.next=12;break}return n.next=10,e.getInitialProps(a);case 10:return s=n.sent,n.abrupt("return",Z(Z({},s),{},{auth:l,currentGroupId:o,theme:d}));case 12:return n.abrupt("return",a);case 13:case"end":return n.stop()}}),n)})));return function(e){return n.apply(this,arguments)}}()}]),a}(p.Component)}},882:function(e,n,t){var r=t(82394),i=t(26304),o=t(38626),c=t(60328),d=t(23831),l=t(73942),a=t(99994),u=t(49125),s=t(28598),f=["backgroundGradient","backgroundPanel","borderWidth","children","compact","paddingUnits","paddingUnitsHorizontal","paddingUnitsVertical"];function h(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function p(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?h(Object(t),!0).forEach((function(n){(0,r.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):h(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var g=o.default.div.withConfig({displayName:"GradientButton__ButtonContentStyle",componentId:"sc-1gzx4r1-0"})(["border-radius:","px;height:fit-content;"," ",""],l.n_,(function(e){return!e.backgroundPanel&&"\n background-color: ".concat((e.theme.background||d.Z.background).page,";\n ")}),(function(e){return e.backgroundPanel&&"\n background-color: ".concat((e.theme.background||d.Z.background).panel,";\n ")}));n.Z=function(e){var n=e.backgroundGradient,t=void 0===n?a.TD:n,r=e.backgroundPanel,o=e.borderWidth,d=void 0===o?1:o,l=e.children,h=e.compact,m=e.paddingUnits,v=e.paddingUnitsHorizontal,b=void 0===v?1.5:v,x=e.paddingUnitsVertical,y=void 0===x?1.25:x,w=(0,i.Z)(e,f),j=b,k=y;return m&&(j=m,k=m),h&&(j*=.75,k*=.75),(0,s.jsx)(c.Z,p(p({},w),{},{backgroundGradient:t,noPadding:!0,padding:"".concat(d,"px"),pointerEventsEnabled:!0,children:(0,s.jsx)(g,{backgroundPanel:r,children:(0,s.jsx)("div",{style:{paddingBottom:k*u.iI-d,paddingLeft:j*u.iI-d,paddingRight:j*u.iI-d,paddingTop:k*u.iI-d},children:l})})}))}},34744:function(e,n,t){var r=t(82394),i=t(26304),o=(t(82684),t(38626)),c=t(86673),d=t(23831),l=t(49125),a=t(28598),u=["short"];function s(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function f(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?s(Object(t),!0).forEach((function(n){(0,r.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):s(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var h=o.default.div.withConfig({displayName:"Divider__DividerContainerStyle",componentId:"sc-1m7lqco-0"})([""," ",""],(function(e){return e.short&&"\n width: ".concat(21*l.iI,"px;\n ")}),(function(e){return!e.short&&"\n width: 100%;\n "})),p=o.default.div.withConfig({displayName:"Divider__DividerStyle",componentId:"sc-1m7lqco-1"})(["height:1px;"," "," "," "," "," ",""],(function(e){return!(e.light||e.medium)&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).grey200,";\n ")}),(function(e){return e.muted&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).grey500,";\n ")}),(function(e){return e.light&&"\n background-color: ".concat((e.theme.borders||d.Z.borders).light,";\n ")}),(function(e){return e.medium&&"\n background-color: ".concat((e.theme.borders||d.Z.borders).medium,";\n ")}),(function(e){return e.prominent&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).grey300,";\n ")}),(function(e){return e.black&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).black,";\n ")})),g=function(e){var n=e.short,t=(0,i.Z)(e,u);return(0,a.jsx)(h,{short:n,children:(0,a.jsx)(c.Z,f(f({},t),{},{children:(0,a.jsx)(p,f({},t))}))})};g.defaultProps={short:!1},n.Z=g},99994:function(e,n,t){t.d(n,{eW:function(){return a},TD:function(){return d},yr:function(){return l}});var r=t(73899),i="#FF144D",o="#DEBB92",c="#2A60FE",d=("linear-gradient(90deg, ".concat(o,", ").concat("#CBFE00",")"),"linear-gradient(90deg, ".concat(i,", #C86DD7)")),l=("linear-gradient(90deg, ".concat("#95ECE2",", ").concat(c,")"),"linear-gradient(90deg, ".concat("#9B6CA7",", ").concat(o,")"),"linear-gradient(90deg, ".concat("#C72400",", ").concat(o,")"),"linear-gradient(100.38deg, ".concat(i," 41.11%, #FF9559 86.99%)"),"linear-gradient(100.38deg, ".concat("#6B50D7"," 41.11%, #677FFF 86.99%)"),"linear-gradient(100.38deg, ".concat(c," 41.11%, #B880FF 86.99%)"),"linear-gradient(90deg, ".concat(r.t4," 20.13%, #2AB2FE)")),a="linear-gradient(90deg, ".concat(r.Ck," 0%, ").concat(r.t4," 53.13%, ").concat(r.X_," 100%)")},66166:function(e,n,t){var r=t(82684);n.Z=function(e){var n=(0,r.useRef)();return(0,r.useEffect)((function(){n.current=e}),[e]),n.current}}}]);
1
+ "use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[1005],{85019:function(e,n,t){var r=t(21831),i=t(82394),o=t(12691),c=t.n(o),d=t(82684),l=t(34376),a=t(57639),u=t(34744),s=t(93461),f=t(67971),h=t(882),p=t(11135),g=t(86673),m=t(19711),v=t(46261),b=t(22341),x=t(72454),y=t(99994),w=t(49125),j=t(28598);function k(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function O(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?k(Object(t),!0).forEach((function(n){(0,i.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):k(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Z=3*w.iI,I=[{id:"main",items:[{Icon:b.G6,id:"overview",label:function(){return"Overview"},linkProps:{href:"/overview"}},{Icon:b.vd,id:"pipelines",label:function(){return"Pipelines"},linkProps:{href:"/pipelines"}},{Icon:b.Bf,id:"triggers",label:function(){return"Triggers"},linkProps:{href:"/triggers"}},{Icon:b.Pf,id:"pipeline-runs",label:function(){return"Pipelines runs"},linkProps:{href:"/pipeline-runs"}}]},{id:"misc",items:[{Icon:b.$l,id:"files",label:function(){return"Files"},linkProps:{href:"/files"}},{Icon:b.zQ,id:"templates",label:function(){return"Templates"},linkProps:{href:"/templates"}},{Icon:b.Pt,id:"version-control",label:function(){return"Version control"},linkProps:{href:"/version-control"}},{Icon:b.oI,id:"terminal",label:function(){return"Terminal"},linkProps:{href:"/terminal"}},{Icon:b.Zr,id:"settings",label:function(){return"Settings"},linkProps:{href:"/settings"}}]}];n.Z=function(e){var n=e.aligned,t=e.navigationItems,i=e.showMore,o=e.visible,b=(0,l.useRouter)().pathname,k=(0,d.useCallback)((function(e,t){var r,d,l,a=e.Icon,u=e.IconSelected,k=e.disabled,I=e.id,P=e.isSelected,C=e.label,_=e.linkProps,S=e.onClick,E=P?P(b,e):!!b.match(new RegExp("^/".concat(I,"[/]*"))),M=E&&u?u:a,N=null===C||void 0===C?void 0:C(),z={primary:!M,selected:i&&E,showMore:i,withGradient:u};E&&u?(d=(0,j.jsx)("div",{style:{height:Z,width:Z},children:(0,j.jsx)(M,{muted:!0,size:Z})}),(i||o)&&(d=(0,j.jsx)(x.E7,O(O({},z),{},{children:(0,j.jsx)(M,{muted:!0,size:Z})}))),r=(0,j.jsx)(h.Z,{backgroundGradient:y.yr,backgroundPanel:!0,basic:!0,borderWidth:2,disabled:k,linkProps:_,onClick:S,paddingUnits:1,children:d}),i&&(r=d)):(!E||E&&!u)&&(d=(0,j.jsx)(x.E7,O(O({},z),{},{children:M?(0,j.jsx)(M,{muted:!E,size:Z}):(0,j.jsx)(m.ZP,{children:"Edit"})})),r=(0,j.jsx)(p.ZP,{disabled:k,inline:!0,linkProps:_,noHoverUnderline:!0,noPadding:!0,onClick:S,primary:E,sameColorAsText:!0,uuid:"VerticalNavigation/".concat(I),children:d}),i&&(r=d)),l="right"===n?(0,j.jsxs)(f.Z,{alignItems:"center",fullWidth:!0,justifyContent:"flex-end",children:[(0,j.jsx)(s.Z,{flex:1,justifyContent:"flex-end",children:(0,j.jsx)(m.ZP,{noWrapping:!0,children:N})}),(0,j.jsx)(g.Z,{mr:2}),d]}):(0,j.jsxs)(f.Z,{alignItems:"center",children:[d,(0,j.jsx)(g.Z,{mr:2}),(0,j.jsx)(s.Z,{flex:1,children:(0,j.jsx)(m.ZP,{noWrapping:!0,children:N})})]});var B,D=(0,j.jsx)(x.J8,{href:"#",onClick:S,selected:E,children:l});return _&&(D=(0,j.jsx)(c(),O(O({},_),{},{passHref:!0,children:D}))),"right"===n&&(r=(0,j.jsx)(f.Z,{alignItems:"center",fullWidth:!0,justifyContent:"flex-end",children:r})),B=o?D:i?r:(0,j.jsx)(v.Z,{appearBefore:"right"===n,height:5*w.iI,label:N,size:null,widthFitContent:!0,children:r}),(0,j.jsx)(g.Z,{mt:i&&o?0:t>=1?w.cd:0,children:B},"button-".concat(I))}),[n,b,i,o]),P=(0,d.useMemo)((function(){var e=[];return(t||I).forEach((function(n,t){var i=n.id,c=n.items;(null===c||void 0===c?void 0:c.length)>=1?(t>=1&&e.push((0,j.jsx)(g.Z,{my:o?w.cd:w.cd+1,children:(0,j.jsx)(u.Z,{light:!0})},i)),e.push.apply(e,(0,r.Z)(c.map((function(e,n){return k(e,n)}))))):e.push(k(n,t))})),e}),[k,t,o]);return(0,j.jsx)(a.Z,{children:P})}},72454:function(e,n,t){t.d(n,{E7:function(){return b},HS:function(){return v},Hn:function(){return y},J8:function(){return x},Nk:function(){return p},k1:function(){return h},lm:function(){return m}});var r=t(82684),i=t(38626),o=t(86673),c=t(23831),d=t(73942),l=t(3055),a=t(49125),u=t(37391),s=t(90880),f=t(28598),h=a.cd*a.iI+5*a.iI+a.cd*a.iI+1,p=i.default.div.withConfig({displayName:"indexstyle__ContainerStyle",componentId:"sc-ecogjt-0"})(["display:flex;flex-direction:row;height:calc(100vh - ","px);position:fixed;top:","px;width:100%;",""],l.Mz,l.Mz,(function(e){return"\n background-color: ".concat((e.theme.background||c.Z.background).page,";\n ")})),g=i.default.div.withConfig({displayName:"indexstyle__VerticalNavigationStyleComponent",componentId:"sc-ecogjt-1"})(["height:100%;"," "," "," @keyframes animate-in{0%{width:","px;}100%{width:","px;}}"," ",""],(function(e){return"\n background-color: ".concat((e.theme.background||c.Z.background).panel,";\n ")}),(function(e){return!e.borderless&&"right"!==e.aligned&&"\n border-right: 1px solid ".concat((e.theme.borders||c.Z.borders).medium,";\n ")}),(function(e){return!e.borderless&&"right"===e.aligned&&"\n border-left: 1px solid ".concat((e.theme.borders||c.Z.borders).medium,";\n ")}),21*a.iI,34*a.iI,(function(e){return e.showMore&&e.visible&&"\n &:hover {\n animation: animate-in 100ms linear forwards;\n position: fixed;\n z-index: 100;\n }\n "}),(function(e){return e.showMore&&e.visible&&"right"===e.aligned&&"\n &:hover {\n right: 0;\n top: ".concat(l.Mz,"px;\n }\n ")}));function m(e){var n=e.aligned,t=e.borderless,i=e.children,c=e.showMore,d=(0,r.useRef)(null),l=(0,r.useState)(!1),u=l[0],s=l[1];return(0,f.jsx)(g,{aligned:n,borderless:t&&!u,onMouseEnter:c?function(){clearTimeout(d.current),d.current=setTimeout((function(){s(!0)}),300)}:null,onMouseLeave:c?function(){clearTimeout(d.current),s(!1)}:null,showMore:c,visible:u,children:(0,f.jsx)(o.Z,{px:c&&u?0:a.cd,py:c&&u?1:a.cd,children:r.cloneElement(i,{showMore:c,visible:u})})})}var v=i.default.div.withConfig({displayName:"indexstyle__SubheaderStyle",componentId:"sc-ecogjt-2"})(["padding:","px;position:sticky;top:0;width:100%;z-index:3;",""],a.cd*a.iI,(function(e){return"\n background-color: ".concat((e.theme.background||c.Z.background).page,";\n border-bottom: 1px solid ").concat((e.theme.borders||c.Z.borders).medium,";\n ")})),b=(i.default.div.withConfig({displayName:"indexstyle__ContentStyle",componentId:"sc-ecogjt-3"})([""," overflow:auto;",""],u.w5,(function(e){return"\n height: calc(100vh - ".concat(l.Mz+(e.heightOffset||0),"px);\n ")})),i.default.div.withConfig({displayName:"indexstyle__NavigationItemStyle",componentId:"sc-ecogjt-4"})(["align-items:center;border-radius:","px;display:flex;height:","px;justify-content:center;padding:","px;width:","px;"," "," "," ",""],d.n_,5*a.iI,a.iI,5*a.iI,(function(e){return e.primary&&"\n ".concat((0,s.eR)(),"\n background: ").concat((e.theme||c.Z).chart.backgroundPrimary,";\n border: 1px solid ").concat((e.theme||c.Z).feature.active,";\n\n &:hover {\n background-color: ").concat((e.theme||c.Z).interactive.linkSecondary,";\n }\n ")}),(function(e){return e.selected&&!e.withGradient&&"\n background-color: ".concat((e.theme.interactive||c.Z.interactive).linkPrimary,";\n ")}),(function(e){return e.selected&&e.withGradient&&"\n background-color: ".concat((e.theme.background||c.Z.background).codeTextarea,";\n ")}),(function(e){return!e.selected&&e.showMore&&"\n background-color: ".concat((e.theme.interactive||c.Z.interactive).defaultBackground,";\n ")}))),x=i.default.a.withConfig({displayName:"indexstyle__NavigationLinkStyle",componentId:"sc-ecogjt-5"})([""," display:block;padding:","px ","px;"," ",""],(0,s.eR)(),1*a.iI,a.iI*a.cd,(function(e){return!e.selected&&"\n &:hover {\n background-color: ".concat((e.theme.interactive||c.Z.interactive).hoverBackground,";\n }\n ")}),(function(e){return e.selected&&"\n background-color: ".concat((e.theme.interactive||c.Z.interactive).linkPrimaryHover,";\n ")})),y=i.default.div.withConfig({displayName:"indexstyle__ImageStyle",componentId:"sc-ecogjt-6"})(["background-position:0 0;background-repeat:no-repeat;background-size:contain;height:","px;width:","px;"," ",""],12*a.iI,12*a.iI,(function(e){return"\n background-image: url(".concat(e.imageUrl,");\n ")}),(function(e){return e.size&&"\n height: ".concat(e.size,"px;\n width: ").concat(e.size,"px;\n ")}))},82386:function(e,n,t){t.d(n,{E$:function(){return C},MK:function(){return b},MP:function(){return Z},Md:function(){return u},OM:function(){return m},Ru:function(){return I},S9:function(){return B},VW:function(){return h},W7:function(){return j},Wi:function(){return g},YJ:function(){return O},Zj:function(){return M},Zt:function(){return a},aH:function(){return E},bC:function(){return N},dN:function(){return s},ff:function(){return P},l8:function(){return p},lU:function(){return z},rS:function(){return S},uX:function(){return v},v7:function(){return _},ve:function(){return f},ym:function(){return k}});var r=t(38626),i=t(23831),o=t(73942),c=t(3055),d=t(49125),l=t(37391),a=64*d.iI,u=30*d.iI,s=21.25*d.iI,f=35*d.iI,h=.5*d.iI,p=13*d.iI,g=3*d.cd*d.iI,m=6*d.iI,v=2*d.cd*3*d.iI,b=(r.default.div.withConfig({displayName:"indexstyle__HeaderStyle",componentId:"sc-1lxpneo-0"})(["position:fixed;z-index:3;"," "," ",""],(function(e){return"\n border-bottom: 1px solid ".concat((e.theme.monotone||i.Z.monotone).grey200,";\n ")}),(function(e){return!e.beforeVisible&&"\n width: 100%;\n "}),(function(e){return e.beforeVisible&&"\n left: ".concat(f,"px;\n width: calc(100% - ").concat(f,"px);\n ")})),r.default.div.withConfig({displayName:"indexstyle__NewHeaderStyle",componentId:"sc-1lxpneo-1"})(["height:","px;position:fixed;top:0;width:100%;z-index:4;"],c.Mz)),x=(r.default.div.withConfig({displayName:"indexstyle__TabStyle",componentId:"sc-1lxpneo-2"})(["border-top-left-radius:","px;border-top-right-radius:","px;padding:","px ","px;position:relative;top:1px;"," "," ",""],o.n_,o.n_,1*d.iI,2*d.iI,(function(e){return"\n border-left: 1px solid ".concat((e.theme.monotone||i.Z.monotone).grey200,";\n border-right: 1px solid ").concat((e.theme.monotone||i.Z.monotone).grey200,";\n border-top: 1px solid ").concat((e.theme.monotone||i.Z.monotone).grey200,";\n ")}),(function(e){return!e.first&&"\n margin-left: ".concat(1*d.iI,"px;\n ")}),(function(e){return e.selected&&"\n border-bottom: 1px solid ".concat((e.theme.monotone||i.Z.monotone).white,";\n ")})),(0,r.css)(["position:fixed;z-index:2;",""],(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).panel,";\n height: calc(100% - ").concat("undefined"===typeof e.heightOffset?v:e.heightOffset,"px);\n top: ").concat("undefined"===typeof e.heightOffset?v:e.heightOffset,"px;\n ")}))),y=(0,r.css)([""," height:100%;overflow:auto;position:relative;z-index:2;",""],l.w5,(function(e){return e.verticalOffset&&"\n height: calc(100% - ".concat(e.verticalOffset,"px);\n top: ").concat(e.verticalOffset,"px;\n ")})),w=(0,r.css)(["height:calc(100% + ","px);position:absolute;top:-","px;width:","px;z-index:6;&:hover{","}"," ",""],g,g,h,(function(e){return!e.disabled&&"\n border-color: ".concat((e.theme.text||i.Z.text).fileBrowser," !important;\n ")}),(function(e){return!e.disabled&&"\n cursor: col-resize;\n "}),(function(e){return e.active&&!e.disabled&&"\n border-color: ".concat((e.theme.text||i.Z.text).fileBrowser," !important;\n ")})),j=r.default.div.withConfig({displayName:"indexstyle__AsideHeaderStyle",componentId:"sc-1lxpneo-3"})(["border-bottom:1px solid transparent;height:","px;position:fixed;top:","px;z-index:4;"," "," ",""],m,g,(0,l.y$)(),(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).panel,";\n ")}),(function(e){return!e.visible&&"\n border-left: 1px solid transparent;\n border-right: 1px solid transparent;\n border-bottom-color: ".concat((e.theme.borders||i.Z.borders).medium," !important;\n ")})),k=r.default.div.withConfig({displayName:"indexstyle__AsideHeaderInnerStyle",componentId:"sc-1lxpneo-4"})(["display:flex;flex:1;overflow:auto;padding:0 ","px;"," ",""],2*d.iI,(0,l.y$)(),(function(e){return e.noPadding&&"\n padding: 0;\n "})),O=r.default.div.withConfig({displayName:"indexstyle__AsideSubheaderStyle",componentId:"sc-1lxpneo-5"})(["border-bottom:1px solid transparent;height:","px;overflow-x:auto;position:absolute;top:","px;"," "," ",""],g,g,(0,l.y$)(),(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).table,";\n ")}),(function(e){return!e.visible&&"\n border-color: ".concat((e.theme.borders||i.Z.borders).medium," !important;\n ")})),Z=r.default.aside.withConfig({displayName:"indexstyle__BeforeStyle",componentId:"sc-1lxpneo-6"})([""," left:0;"],x),I=r.default.div.withConfig({displayName:"indexstyle__BeforeInnerStyle",componentId:"sc-1lxpneo-7"})([""," overflow:hidden;&:hover{overflow:auto;}"],y),P=r.default.aside.withConfig({displayName:"indexstyle__AfterStyle",componentId:"sc-1lxpneo-8"})([""," right:0;"],x),C=r.default.div.withConfig({displayName:"indexstyle__AfterInnerStyle",componentId:"sc-1lxpneo-9"})([""," ",""],y,(function(e){return e.overflow&&"\n overflow: ".concat(e.overflow,";\n ")})),_=r.default.div.withConfig({displayName:"indexstyle__DraggableStyle",componentId:"sc-1lxpneo-10"})([""," "," ",""],w,(function(e){return"undefined"!==typeof e.left&&"\n border-left: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n left: ").concat(e.left,"px;\n ")}),(function(e){return"undefined"!==typeof e.right&&"\n border-right: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n right: ").concat(e.right,"px;\n ")})),S=r.default.div.withConfig({displayName:"indexstyle__MainWrapper",componentId:"sc-1lxpneo-11"})(["height:100%;position:fixed;z-index:1;",""],(function(e){return"\n background-color: ".concat((e.theme.background||i.Z.background).codeArea,";\n ")})),E=r.default.div.withConfig({displayName:"indexstyle__MainContentStyle",componentId:"sc-1lxpneo-12"})(["position:fixed;z-index:2;",""],(function(e){return"\n height: calc(100% - ".concat(e.headerOffset||0,"px);\n top: ").concat(e.headerOffset||0,"px;\n ")})),M=r.default.div.withConfig({displayName:"indexstyle__MainContentInnerStyle",componentId:"sc-1lxpneo-13"})([""," height:100%;overflow:auto;"],l.w5),N=r.default.div.withConfig({displayName:"indexstyle__NavigationStyle",componentId:"sc-1lxpneo-14"})(["position:relative;"]),z=r.default.div.withConfig({displayName:"indexstyle__NavigationInnerStyle",componentId:"sc-1lxpneo-15"})(["height:100%;position:fixed;z-index:6;"," ",""],(function(e){return"left"===e.aligned&&"\n border-right: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n left: 0;\n ")}),(function(e){return"right"===e.aligned&&"\n border-left: 1px solid ".concat((e.theme.borders||i.Z.borders).medium,";\n right: 0;\n ")})),B=r.default.div.withConfig({displayName:"indexstyle__NavigationContainerStyle",componentId:"sc-1lxpneo-16"})([""," overflow:auto;position:absolute;width:fit-content;"," "," "," ",""],l.w5,(function(e){return"\n height: calc(100vh - ".concat(e.heightOffset,"px);\n ")}),(function(e){return e.fullWidth&&"\n width: calc(100% - ".concat(e.widthOffset||0,"px);\n ")}),(function(e){return e.widthOffset&&"left"===e.aligned&&"\n left: ".concat(e.widthOffset,"px;\n ")}),(function(e){return e.widthOffset&&"right"===e.aligned&&"\n right: ".concat(e.widthOffset,"px;\n ")}))},32063:function(e,n,t){var r=t(82684),i=t(1887),o=t.n(i),c=t(60328),d=t(57639),l=t(93461),a=t(67971),u=t(86673),s=t(46261),f=t(85019),h=t(82386),p=t(22341),g=t(91427),m=t(49125),v=t(72454),b=t(24141),x=t(28598);n.Z=function(e){var n=e.after,t=e.afterHeader,i=e.afterHeightOffset,y=e.afterHidden,w=e.afterMousedownActive,j=e.afterNavigationItems,k=e.afterOverflow,O=e.afterSubheader,Z=e.afterWidth,I=void 0===Z?0:Z,P=e.before,C=e.beforeHeader,_=e.beforeHeightOffset,S=e.beforeHidden,E=e.beforeMousedownActive,M=e.beforeNavigationItems,N=e.beforeWidth,z=void 0===N?0:N,B=e.children,D=e.header,W=e.headerOffset,H=void 0===W?0:W,A=e.hideAfterCompletely,R=e.leftOffset,F=void 0===R?0:R,L=e.mainContainerHeader,T=e.mainContainerRef,U=e.navigationShowMore,V=e.setAfterHidden,G=e.setAfterMousedownActive,$=e.setAfterWidth,X=e.setBeforeHidden,q=e.setBeforeMousedownActive,J=e.setBeforeWidth,Q=(e.uuid,(0,b.i)().width),Y=(0,r.useRef)(null),K=(0,r.useRef)(null),ee=(0,r.useRef)(null),ne=(0,r.useRef)(null),te=(0,r.useCallback)((function(){var e=!y;null===V||void 0===V||V(e),(0,g.t8)(g.zg,e)}),[y,V]),re=(0,r.useCallback)((function(){var e=!S;X(e),(0,g.t8)(g.Uu,e)}),[S,X]);(0,r.useEffect)((function(){var e,n,t,r,i=function(e){var n,t;((null===ee||void 0===ee||null===(n=ee.current)||void 0===n||null===(t=n.getBoundingClientRect)||void 0===t?void 0:t.call(n))||{}).x;if(Q){var r=e.x;r+h.l8>Q-I&&(r=Q-I-h.l8),r-=2*F,J(Math.max(r,h.dN))}},o=function(e){var n,t;e.offsetX>=e.target.offsetWidth-h.VW&&e.offsetX<=e.target.offsetWidth+h.VW&&(null===q||void 0===q||q(!0),e.preventDefault(),null===(n=document)||void 0===n||null===(t=n.addEventListener)||void 0===t||t.call(n,"mousemove",i,!1))},c=function(){var e,n;null===q||void 0===q||q(!1),null===(e=document)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousemove",i,!1)};return null===ne||void 0===ne||null===(e=ne.current)||void 0===e||null===(n=e.addEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.addEventListener)||void 0===r||r.call(t,"mouseup",c,!1),function(){var e,n,t,r;null===ne||void 0===ne||null===(e=ne.current)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.removeEventListener)||void 0===r||r.call(t,"mouseup",c,!1),c()}}),[I,S,F,ee,ne,q,J,Q]),(0,r.useEffect)((function(){var e,n,t,r,i=function(e){var n,t;((null===Y||void 0===Y||null===(n=Y.current)||void 0===n||null===(t=n.getBoundingClientRect)||void 0===t?void 0:t.call(n))||{}).x;if(Q){var r=Q-e.x;r+h.l8>Q-z&&(r=Q-z-h.l8),$(Math.max(r,h.Md))}},o=function(e){var n,t;e.offsetX>=-1*h.VW&&e.offsetX<=h.VW&&(null===G||void 0===G||G(!0),e.preventDefault(),null===(n=document)||void 0===n||null===(t=n.addEventListener)||void 0===t||t.call(n,"mousemove",i,!1))},c=function(){var e,n;null===G||void 0===G||G(!1),null===(e=document)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousemove",i,!1)};return null===K||void 0===K||null===(e=K.current)||void 0===e||null===(n=e.addEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.addEventListener)||void 0===r||r.call(t,"mouseup",c,!1),function(){var e,n,t,r;null===K||void 0===K||null===(e=K.current)||void 0===e||null===(n=e.removeEventListener)||void 0===n||n.call(e,"mousedown",o,!1),null===(t=document)||void 0===t||null===(r=t.removeEventListener)||void 0===r||r.call(t,"mouseup",c,!1),c()}}),[y,z,Y,K,G,$,Q]);var ie=A&&y,oe=ie?0:y?4*m.iI:I,ce=S?4*m.iI:z,de="calc(100% - ".concat(ce+oe+F,"px)"),le=(0,r.useMemo)((function(){return(null===j||void 0===j?void 0:j.length)>=1}),[j]),ae=(0,r.useMemo)((function(){return(0,x.jsxs)(x.Fragment,{children:[V&&(0,x.jsxs)(x.Fragment,{children:[(0,x.jsx)(h.W7,{style:{width:le?oe-(v.k1-1):oe},visible:y,children:(0,x.jsxs)(a.Z,{alignItems:"center",fullHeight:!0,fullWidth:!0,children:[(0,x.jsxs)(l.Z,{children:[(0,x.jsx)(u.Z,{pl:y?1:2}),(0,x.jsxs)(c.Z,{noBackground:!0,noBorder:!0,noPadding:!0,onClick:function(){return te()},children:[y&&(0,x.jsx)(p.s$,{neutral:!0,size:2*m.iI}),!y&&(0,x.jsx)(p._Q,{neutral:!0,size:2*m.iI})]})]}),!y&&t]})}),!y&&O&&(0,x.jsx)(h.YJ,{style:{width:le?oe-(v.k1+1):oe},visible:y,children:O})]}),(0,x.jsx)(h.E$,{noScrollbarTrackBackground:!0,overflow:k,ref:Y,verticalOffset:t?O?h.Wi+i:i:null,children:!y&&n})]})}),[n,t,i,y,k,O,oe,le,Y,V,te]),ue=(0,r.useMemo)((function(){return(null===M||void 0===M?void 0:M.length)>=1}),[M]),se=(0,r.useMemo)((function(){return(0,x.jsxs)(x.Fragment,{children:[X&&(0,x.jsx)(h.W7,{style:{overflow:S?"visible":"hidden",width:ue?ce-(v.k1+2):ce},visible:S,children:(0,x.jsxs)(a.Z,{alignItems:"center",fullHeight:!0,fullWidth:!0,justifyContent:"space-between",children:[(0,x.jsxs)(h.ym,{noPadding:!0,children:[(0,x.jsx)(u.Z,{pl:S?1:0}),!S&&C]}),(0,x.jsxs)(l.Z,{children:[(0,x.jsx)(s.Z,{appearAbove:!S,appearBefore:!S,block:!0,label:S?"Show sidebar":"Hide sidebar",size:null,widthFitContent:!0,children:(0,x.jsxs)(c.Z,{noBackground:!0,noBorder:!0,noPadding:!0,onClick:function(){return re()},children:[S&&(0,x.jsx)(p._Q,{neutral:!0,size:2*m.iI}),!S&&(0,x.jsx)(p.s$,{neutral:!0,size:2*m.iI})]})},S?"before-is-hidden":"before-is-visible"),(0,x.jsx)(u.Z,{pr:S?1:2})]})]})}),(0,x.jsx)(h.Ru,{noScrollbarTrackBackground:!0,ref:ee,verticalOffset:C?_:null,children:!S&&P})]})}),[P,C,_,S,ce,ue,ee,X,re]);return(0,x.jsxs)(d.Z,{children:[(w&&!y||E&&!S)&&(0,x.jsx)(o(),{children:(0,x.jsx)("style",{dangerouslySetInnerHTML:{__html:"\n body {\n cursor: col-resize;\n }\n "}})}),D&&(0,x.jsx)(h.MK,{children:D}),P&&(0,x.jsxs)(h.MP,{heightOffset:_,style:{left:F,width:ce},children:[(0,x.jsx)(h.v7,{active:E,disabled:S,ref:ne,right:0}),ue&&(0,x.jsxs)(h.bC,{children:[!S&&(0,x.jsxs)(x.Fragment,{children:[(0,x.jsx)(h.lU,{aligned:"left",children:(0,x.jsx)(v.lm,{aligned:"left",borderless:!0,showMore:U,children:(0,x.jsx)(f.Z,{aligned:"left",navigationItems:M})})}),(0,x.jsx)(h.S9,{aligned:"left",fullWidth:!0,heightOffset:_,widthOffset:v.k1+1,children:se})]}),S&&se]}),!ue&&se]}),(0,x.jsxs)(h.rS,{style:{left:ce+F,width:de},children:[L,(0,x.jsx)(h.aH,{headerOffset:(L?h.uX:h.Wi)+H,style:{width:de},children:(0,x.jsx)(h.Zj,{noScrollbarTrackBackground:!0,ref:T,children:B})})]}),n&&!ie&&(0,x.jsxs)(h.ff,{heightOffset:i,style:{width:oe},children:[(0,x.jsx)(h.v7,{active:w,disabled:y,left:0,ref:K}),le&&(0,x.jsxs)(h.bC,{children:[!y&&(0,x.jsxs)(x.Fragment,{children:[(0,x.jsx)(h.lU,{aligned:"right",children:(0,x.jsx)(v.lm,{aligned:"right",borderless:!0,showMore:U,children:(0,x.jsx)(f.Z,{aligned:"right",navigationItems:j})})}),(0,x.jsx)(h.S9,{aligned:"right",fullWidth:!0,heightOffset:i,widthOffset:v.k1+1,children:ae})]}),y&&ae]}),!le&&ae]})]})}},41788:function(e,n,t){t.d(n,{Z:function(){return P}});var r=t(77837),i=t(26304),o=t(62243),c=t(29385),d=t(80022),l=t(99177),a=t(93189),u=t(15544),s=t(82394),f=t(38860),h=t.n(f),p=t(82684),g=t(56663),m=t.n(g),v=t(35490),b=t(55361),x=t(30332),y=t(9736),w=t(59e3),j=t(28598),k=["auth"];function O(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Z(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?O(Object(t),!0).forEach((function(n){(0,s.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):O(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}function I(e){var n=function(){if("undefined"===typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"===typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var t,r=(0,u.Z)(e);if(n){var i=(0,u.Z)(this).constructor;t=Reflect.construct(r,arguments,i)}else t=r.apply(this,arguments);return(0,a.Z)(this,t)}}function P(e){return function(n){(0,l.Z)(a,n);var t=I(a);function a(){var e;(0,o.Z)(this,a);for(var n=arguments.length,r=new Array(n),i=0;i<n;i++)r[i]=arguments[i];return e=t.call.apply(t,[this].concat(r)),(0,s.Z)((0,d.Z)(e),"state",{auth:new v.Z(e.props.token)}),e}return(0,c.Z)(a,[{key:"componentDidMount",value:function(){this.setState({auth:new v.Z(this.props.token)})}},{key:"render",value:function(){var n=this.props,t=(n.auth,(0,i.Z)(n,k));return(0,j.jsx)(e,Z({auth:this.state.auth},t))}}],[{key:"getInitialProps",value:function(){var n=(0,r.Z)(h().mark((function n(t){var r,i,o,c,d,l,a,u,s;return h().wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(r=m()(t),i=(0,y.ex)(t),o=i.id,c=r[b.Mv],d=r[x.qt],l=new v.Z(c),a=Z(Z({},t),{},{auth:l,currentGroupId:o,theme:d}),(0,y.YB)(t)&&l.isExpired&&(console.log("OAuth token has expired."),u=Z(Z({},t.query),{},{redirect_url:t.asPath}),(0,w.nL)("/sign-in?".concat((0,w.uM)(u)),t.res)),!e.getInitialProps){n.next=12;break}return n.next=10,e.getInitialProps(a);case 10:return s=n.sent,n.abrupt("return",Z(Z({},s),{},{auth:l,currentGroupId:o,theme:d}));case 12:return n.abrupt("return",a);case 13:case"end":return n.stop()}}),n)})));return function(e){return n.apply(this,arguments)}}()}]),a}(p.Component)}},882:function(e,n,t){var r=t(82394),i=t(26304),o=t(38626),c=t(60328),d=t(23831),l=t(73942),a=t(99994),u=t(49125),s=t(28598),f=["backgroundGradient","backgroundPanel","borderWidth","children","compact","paddingUnits","paddingUnitsHorizontal","paddingUnitsVertical"];function h(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function p(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?h(Object(t),!0).forEach((function(n){(0,r.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):h(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var g=o.default.div.withConfig({displayName:"GradientButton__ButtonContentStyle",componentId:"sc-1gzx4r1-0"})(["border-radius:","px;height:fit-content;"," ",""],l.n_,(function(e){return!e.backgroundPanel&&"\n background-color: ".concat((e.theme.background||d.Z.background).page,";\n ")}),(function(e){return e.backgroundPanel&&"\n background-color: ".concat((e.theme.background||d.Z.background).panel,";\n ")}));n.Z=function(e){var n=e.backgroundGradient,t=void 0===n?a.TD:n,r=e.backgroundPanel,o=e.borderWidth,d=void 0===o?1:o,l=e.children,h=e.compact,m=e.paddingUnits,v=e.paddingUnitsHorizontal,b=void 0===v?1.5:v,x=e.paddingUnitsVertical,y=void 0===x?1.25:x,w=(0,i.Z)(e,f),j=b,k=y;return m&&(j=m,k=m),h&&(j*=.75,k*=.75),(0,s.jsx)(c.Z,p(p({},w),{},{backgroundGradient:t,noPadding:!0,padding:"".concat(d,"px"),pointerEventsEnabled:!0,children:(0,s.jsx)(g,{backgroundPanel:r,children:(0,s.jsx)("div",{style:{paddingBottom:k*u.iI-d,paddingLeft:j*u.iI-d,paddingRight:j*u.iI-d,paddingTop:k*u.iI-d},children:l})})}))}},34744:function(e,n,t){var r=t(82394),i=t(26304),o=(t(82684),t(38626)),c=t(86673),d=t(23831),l=t(49125),a=t(28598),u=["short"];function s(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function f(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?s(Object(t),!0).forEach((function(n){(0,r.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):s(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var h=o.default.div.withConfig({displayName:"Divider__DividerContainerStyle",componentId:"sc-1m7lqco-0"})([""," ",""],(function(e){return e.short&&"\n width: ".concat(21*l.iI,"px;\n ")}),(function(e){return!e.short&&"\n width: 100%;\n "})),p=o.default.div.withConfig({displayName:"Divider__DividerStyle",componentId:"sc-1m7lqco-1"})(["height:1px;"," "," "," "," "," ",""],(function(e){return!(e.light||e.medium)&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).grey200,";\n ")}),(function(e){return e.muted&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).grey500,";\n ")}),(function(e){return e.light&&"\n background-color: ".concat((e.theme.borders||d.Z.borders).light,";\n ")}),(function(e){return e.medium&&"\n background-color: ".concat((e.theme.borders||d.Z.borders).medium,";\n ")}),(function(e){return e.prominent&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).grey300,";\n ")}),(function(e){return e.black&&"\n background-color: ".concat((e.theme.monotone||d.Z.monotone).black,";\n ")})),g=function(e){var n=e.short,t=(0,i.Z)(e,u);return(0,a.jsx)(h,{short:n,children:(0,a.jsx)(c.Z,f(f({},t),{},{children:(0,a.jsx)(p,f({},t))}))})};g.defaultProps={short:!1},n.Z=g},99994:function(e,n,t){t.d(n,{eW:function(){return a},TD:function(){return d},yr:function(){return l}});var r=t(73899),i="#FF144D",o="#DEBB92",c="#2A60FE",d=("linear-gradient(90deg, ".concat(o,", ").concat("#CBFE00",")"),"linear-gradient(90deg, ".concat(i,", #C86DD7)")),l=("linear-gradient(90deg, ".concat("#95ECE2",", ").concat(c,")"),"linear-gradient(90deg, ".concat("#9B6CA7",", ").concat(o,")"),"linear-gradient(90deg, ".concat("#C72400",", ").concat(o,")"),"linear-gradient(100.38deg, ".concat(i," 41.11%, #FF9559 86.99%)"),"linear-gradient(100.38deg, ".concat("#6B50D7"," 41.11%, #677FFF 86.99%)"),"linear-gradient(100.38deg, ".concat(c," 41.11%, #B880FF 86.99%)"),"linear-gradient(90deg, ".concat(r.t4," 20.13%, #2AB2FE)")),a="linear-gradient(90deg, ".concat(r.Ck," 0%, ").concat(r.t4," 53.13%, ").concat(r.X_," 100%)")},66166:function(e,n,t){var r=t(82684);n.Z=function(e){var n=(0,r.useRef)();return(0,r.useEffect)((function(){n.current=e}),[e]),n.current}}}]);