@ovalbee/reportifact 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/README.md +16 -16
  2. package/dist/Chart-Cmh3H_Wv.js +5634 -0
  3. package/dist/Chart-jF5jqxGZ.cjs +1 -0
  4. package/dist/ImageGallery-CPZM1tc_.cjs +1 -0
  5. package/dist/ImageGallery-DQzba-4p.js +163 -0
  6. package/dist/MetricCallout-C7SUQTrj.js +39 -0
  7. package/dist/MetricCallout-CxhVOiqg.cjs +1 -0
  8. package/dist/MetricCards-DW-_QLhI.cjs +1 -0
  9. package/dist/MetricCards-JR4hUW4_.js +61 -0
  10. package/dist/MetricsTable-CH8vIbWG.cjs +1 -0
  11. package/dist/MetricsTable-OXsVygq0.js +98 -0
  12. package/dist/Reportifact.vue.d.ts +3 -2
  13. package/dist/ReportifactWidgetHost-DIlz4TxO.js +13 -0
  14. package/dist/ReportifactWidgetHost-xDT1ykZc.cjs +1 -0
  15. package/dist/Timeline-DSGSvRjj.js +295 -0
  16. package/dist/Timeline-P3CpGmBD.cjs +1 -0
  17. package/dist/WidgetWrapper-AmnP99H8.js +62 -0
  18. package/dist/WidgetWrapper-C0lc1m0V.cjs +1 -0
  19. package/dist/components/TableOfContents.vue.d.ts +3 -4
  20. package/dist/dist-DBIuOmpr.cjs +27 -0
  21. package/dist/dist-DEKe39T1.js +23629 -0
  22. package/dist/markdownTable-BCLRoyPL.cjs +2 -0
  23. package/dist/markdownTable-DHdS_81b.js +40 -0
  24. package/dist/middleware.cjs +1 -1
  25. package/dist/middleware.js +146 -175
  26. package/dist/portable/ReportifactWidgetHost.vue.d.ts +7 -11
  27. package/dist/portable/contracts.d.ts +6 -1
  28. package/dist/portable/usePortableSource.d.ts +18 -0
  29. package/dist/reportifact.cjs +63 -64
  30. package/dist/reportifact.d.ts +1 -1
  31. package/dist/reportifact.js +4909 -5223
  32. package/dist/rolldown-runtime-DF3sbh8G.cjs +1 -0
  33. package/dist/style.css +2 -13
  34. package/dist/usePortableSource--y_qMDXB.js +55 -0
  35. package/dist/usePortableSource-CN5URH4d.cjs +1 -0
  36. package/dist/utils/tfeventsParser.cjs +1 -1
  37. package/dist/utils/tfeventsParser.js +298 -327
  38. package/dist/widgets/Card.vue.d.ts +2 -1
  39. package/dist/widgets/Chart.vue.d.ts +7 -9
  40. package/dist/widgets/HelpTooltip.vue.d.ts +2 -1
  41. package/dist/widgets/ImageGallery.vue.d.ts +7 -10
  42. package/dist/widgets/Markdown.vue.d.ts +3 -2
  43. package/dist/widgets/MetricCallout.vue.d.ts +5 -8
  44. package/dist/widgets/MetricCards.vue.d.ts +5 -5
  45. package/dist/widgets/MetricTable.vue.d.ts +2 -1
  46. package/dist/widgets/MetricsTable.vue.d.ts +7 -9
  47. package/dist/widgets/ModelClassComparison.vue.d.ts +3 -2
  48. package/dist/widgets/ModelComparisonGallery.vue.d.ts +3 -2
  49. package/dist/widgets/Notice.vue.d.ts +2 -1
  50. package/dist/widgets/ReportifactWidget.vue.d.ts +3 -4
  51. package/dist/widgets/Scope.vue.d.ts +2 -3
  52. package/dist/widgets/Table.vue.d.ts +3 -2
  53. package/dist/widgets/Tensorboard.vue.d.ts +3 -2
  54. package/dist/widgets/Timeline.vue.d.ts +7 -9
  55. package/dist/widgets/WidgetWrapper.vue.d.ts +22 -18
  56. package/dist/widgets/chart-config/range.d.ts +2 -0
  57. package/dist/widgets/chart-config/shared.d.ts +25 -0
  58. package/dist/widgets/chart-config/types.d.ts +12 -3
  59. package/dist/widgets/chart.cjs +1 -1
  60. package/dist/widgets/chart.d.ts +3 -3
  61. package/dist/widgets/chart.js +2 -5
  62. package/dist/widgets/chartSizing.d.ts +10 -0
  63. package/dist/widgets/contracts.cjs +1 -1
  64. package/dist/widgets/contracts.d.ts +1 -1
  65. package/dist/widgets/contracts.js +0 -1
  66. package/dist/widgets/host.cjs +1 -1
  67. package/dist/widgets/host.d.ts +3 -3
  68. package/dist/widgets/host.js +2 -5
  69. package/dist/widgets/image-gallery.cjs +1 -1
  70. package/dist/widgets/image-gallery.d.ts +3 -3
  71. package/dist/widgets/image-gallery.js +2 -5
  72. package/dist/widgets/markdownTable.d.ts +1 -1
  73. package/dist/widgets/metric-callout.cjs +1 -1
  74. package/dist/widgets/metric-callout.d.ts +3 -3
  75. package/dist/widgets/metric-callout.js +2 -5
  76. package/dist/widgets/metric-cards.cjs +1 -1
  77. package/dist/widgets/metric-cards.d.ts +3 -3
  78. package/dist/widgets/metric-cards.js +2 -5
  79. package/dist/widgets/metrics-table.cjs +1 -1
  80. package/dist/widgets/metrics-table.d.ts +3 -3
  81. package/dist/widgets/metrics-table.js +2 -5
  82. package/dist/widgets/timeline.cjs +1 -1
  83. package/dist/widgets/timeline.d.ts +3 -3
  84. package/dist/widgets/timeline.js +2 -5
  85. package/package.json +5 -10
  86. package/dist/Chart.vue_vue_type_style_index_0_lang-Bp14Es_r.js +0 -5946
  87. package/dist/Chart.vue_vue_type_style_index_0_lang-Dj7m6i3v.cjs +0 -1
  88. package/dist/ImageGallery.vue_vue_type_style_index_0_lang-BB4dG0CB.cjs +0 -1
  89. package/dist/ImageGallery.vue_vue_type_style_index_0_lang-DPY6mSdA.js +0 -191
  90. package/dist/MetricCallout.vue_vue_type_style_index_0_lang-BZbc-Wkf.js +0 -49
  91. package/dist/MetricCallout.vue_vue_type_style_index_0_lang-WpuALh8Z.cjs +0 -1
  92. package/dist/MetricCards.vue_vue_type_style_index_0_lang-CDPSu7no.cjs +0 -1
  93. package/dist/MetricCards.vue_vue_type_style_index_0_lang-CfxCCXmB.js +0 -33
  94. package/dist/MetricsTable.vue_vue_type_style_index_0_lang-BzrxoJW4.cjs +0 -1
  95. package/dist/MetricsTable.vue_vue_type_style_index_0_lang-CO9HvYfr.js +0 -132
  96. package/dist/ReportifactWidgetHost-A73gQ3bT.cjs +0 -1
  97. package/dist/ReportifactWidgetHost-BjKBwCWI.js +0 -17
  98. package/dist/Timeline.vue_vue_type_style_index_0_lang-BTA6fIp9.js +0 -2640
  99. package/dist/Timeline.vue_vue_type_style_index_0_lang-CZ8Y2pXG.cjs +0 -2
  100. package/dist/WidgetWrapper.vue_vue_type_style_index_0_lang-BQQ4Vv5j.cjs +0 -1
  101. package/dist/WidgetWrapper.vue_vue_type_style_index_0_lang-D-oXqmI2.js +0 -59
  102. package/dist/entries/figure.d.ts +0 -1
  103. package/dist/index-3DTuh2Dr.cjs +0 -47
  104. package/dist/index-DevYhXSC.js +0 -22104
  105. package/dist/markdownTable-B5207r3E.js +0 -32
  106. package/dist/markdownTable-Cbn1Du3L.cjs +0 -2
  107. package/dist/portable/ReportifactFigure.vue.d.ts +0 -40
  108. package/dist/useFetch-BfOAq-Kg.cjs +0 -1
  109. package/dist/useFetch-CHQm_TmB.js +0 -35
  110. package/dist/widgets/figure.cjs +0 -1
  111. package/dist/widgets/figure.d.ts +0 -6
  112. package/dist/widgets/figure.js +0 -84
@@ -0,0 +1 @@
1
+ var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||(e((t={exports:{}}).exports,t),e=null),t.exports),s=(e,n)=>{let r={};for(var i in e)t(r,i,{get:e[i],enumerable:!0});return n||t(r,Symbol.toStringTag,{value:`Module`}),r},c=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},l=(n,r,o)=>(o=n==null?{}:e(i(n)),c(r||!n||!n.__esModule||!a.call(n,`default`)?t(o,`default`,{value:n,enumerable:!0}):o,n));Object.defineProperty(exports,"n",{enumerable:!0,get:function(){return s}}),Object.defineProperty(exports,"r",{enumerable:!0,get:function(){return l}}),Object.defineProperty(exports,"t",{enumerable:!0,get:function(){return o}});
package/dist/style.css CHANGED
@@ -1,13 +1,2 @@
1
- .reportifact{--reportifact-bg: #ffffff;--reportifact-toc-bg: #ffffff;--reportifact-bg-subtle: #f8fafc;--reportifact-bg-muted: #f1f5f9;--reportifact-bg-overlay: rgba(255, 255, 255, .9);--reportifact-text: #1f2937;--reportifact-text-muted: #64748b;--reportifact-text-faint: #94a3b8;--reportifact-border: #e2e8f0;--reportifact-error-bg: #fef2f2;--reportifact-error-text: #dc2626;--reportifact-highlight: #fef08a;--reportifact-accent: #0ea5e9;--reportifact-focus-border: #3b82f6;--reportifact-tone-low: #ef4444;--reportifact-tone-low-bg: #fee2e2;--reportifact-tone-low-border: #fecaca;--reportifact-tone-mid: #d97706;--reportifact-tone-mid-bg: #fef3c7;--reportifact-tone-mid-border: #fde68a;--reportifact-tone-high: #059669;--reportifact-tone-high-bg: #d1fae5;--reportifact-tone-high-border: #a7f3d0;--reportifact-widget-gap: 16px;--reportifact-section-gap: 32px;display:flex;flex-direction:column;color:var(--reportifact-text);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;font-size:14px;line-height:1.5}.dark .reportifact{--reportifact-tone-low: #f06464;--reportifact-tone-low-bg: rgba(239, 68, 68, .16);--reportifact-tone-low-border: rgba(239, 68, 68, .32);--reportifact-tone-mid: #d99a2b;--reportifact-tone-mid-bg: rgba(217, 119, 6, .16);--reportifact-tone-mid-border: rgba(217, 119, 6, .32);--reportifact-tone-high: #41b883;--reportifact-tone-high-bg: rgba(16, 185, 129, .14);--reportifact-tone-high-border: rgba(16, 185, 129, .3)}.reportifact-skeleton-line{height:16px;border-radius:4px;background:linear-gradient(90deg,var(--reportifact-border) 25%,var(--reportifact-bg-muted) 50%,var(--reportifact-border) 75%);background-size:200% 100%;animation:reportifact-skeleton-pulse 1.5s ease-in-out infinite}.reportifact-skeleton-column{display:flex;flex-direction:column;gap:12px}@keyframes reportifact-skeleton-pulse{0%{background-position:200% 0}to{background-position:-200% 0}}.reportifact-widget-host{width:100%;min-width:0}.reportifact-widget-wrapper,.reportifact-widget-content{position:relative}.reportifact-widget-error{padding:16px;background:var(--reportifact-error-bg);border-radius:8px}.reportifact-widget-error-message{color:var(--reportifact-error-text);font-size:14px;text-align:center}.reportifact-chart-skeleton{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;padding:16px;height:var(--reportifact-chart-height);display:flex;flex-direction:column;overflow:hidden}.reportifact-chart-skeleton-body{width:100%;flex:1;min-height:0;border-radius:4px}.reportifact-chart-container{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;padding:16px;width:100%;height:var(--reportifact-chart-height);display:flex;flex-direction:column;overflow:hidden}.reportifact-chart{width:100%;flex:1;min-height:0}.reportifact-metric-cards{display:grid;grid-template-columns:repeat(4,minmax(92px,1fr));gap:10px;padding:12px;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg)}.reportifact-metric-card{position:relative;min-height:148px;overflow:hidden;padding:14px;border:1px solid var(--reportifact-border);border-radius:6px;background:var(--reportifact-bg)}.reportifact-metric-card-fill{position:absolute;inset:auto 0 0;border-top:1px solid transparent}.reportifact-metric-card--low .reportifact-metric-card-fill{border-top-color:var(--reportifact-tone-low-border);background:var(--reportifact-tone-low-bg)}.reportifact-metric-card--mid .reportifact-metric-card-fill{border-top-color:var(--reportifact-tone-mid-border);background:var(--reportifact-tone-mid-bg)}.reportifact-metric-card--high .reportifact-metric-card-fill{border-top-color:var(--reportifact-tone-high-border);background:var(--reportifact-tone-high-bg)}.reportifact-metric-card-label,.reportifact-metric-card-value,.reportifact-metric-card-description{position:relative;z-index:1}.reportifact-metric-card-label{display:block;color:var(--reportifact-text-muted);font-size:11px;font-weight:750;letter-spacing:.04em;text-transform:uppercase}.reportifact-metric-card-value{display:block;margin-top:10px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:26px;line-height:1}.reportifact-metric-card--low .reportifact-metric-card-value{color:var(--reportifact-tone-low)}.reportifact-metric-card--mid .reportifact-metric-card-value{color:var(--reportifact-tone-mid)}.reportifact-metric-card--high .reportifact-metric-card-value{color:var(--reportifact-tone-high)}.reportifact-metric-card-description{margin:8px 0 0;color:var(--reportifact-text-muted);font-size:12px}@media (max-width: 720px){.reportifact-metric-cards{grid-template-columns:repeat(2,minmax(92px,1fr))}}.reportifact-metric-callout{overflow:hidden;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg)}.reportifact-metric-callout-header{display:grid;grid-template-columns:148px minmax(0,1fr);gap:14px;align-items:center;padding:14px 15px;border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle)}.reportifact-metric-callout-label{color:var(--reportifact-text-muted);font-size:11px;font-weight:750;letter-spacing:.04em;text-transform:uppercase}.reportifact-metric-callout-value{display:block;margin-top:5px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:28px;line-height:1}.reportifact-metric-callout-value--low{color:var(--reportifact-tone-low)}.reportifact-metric-callout-value--mid{color:var(--reportifact-tone-mid)}.reportifact-metric-callout-value--high{color:var(--reportifact-tone-high)}.reportifact-metric-callout-description,.reportifact-metric-callout-body{color:var(--reportifact-text-muted)}.reportifact-metric-callout-body{padding:13px 15px}.rm-skeleton{display:flex;flex-direction:column;gap:10px;padding:4px 0}.rm-skeleton-row{display:flex;gap:10px;align-items:center}.rm-title{font-weight:bolder;font-size:13px;margin-bottom:8px;color:var(--reportifact-text)}.rm-metrics{display:grid;grid-template-columns:auto 3.8em 1fr;align-items:center;gap:8px 10px;padding:2px 0;max-width:400px}.rm-metrics--with-pct{grid-template-columns:auto 3.8em 1fr auto}.rm-row{display:contents}.rm-name{font-weight:500;font-size:13px;white-space:nowrap;color:var(--reportifact-text)}.rm-value{font-family:monospace;font-size:13px;text-align:right;color:var(--reportifact-text-muted)}.rm-bar-track{height:6px;background:var(--reportifact-bg-muted);border-radius:3px;overflow:hidden;min-width:40px}.rm-bar-fill{height:100%;background:var(--reportifact-accent);border-radius:3px;transition:width .3s ease}.rm-pct{font-size:12px;color:var(--reportifact-text-muted);white-space:nowrap;min-width:3.2em;text-align:right}.rm-empty{grid-column:1 / -1;color:var(--reportifact-text-faint);font-style:italic;font-size:13px}.rm-table{width:100%;max-width:400px;border-collapse:collapse;font-size:13px}.rm-table th{text-align:left;padding:6px 8px;font-weight:500;border-bottom:1px solid var(--reportifact-border);color:var(--reportifact-text-muted);font-size:12px}.rm-table td{padding:5px 8px;border-bottom:1px solid var(--reportifact-border);color:var(--reportifact-text)}.rm-table tr:last-child td{border-bottom:none}.rm-table tbody tr:hover td{background:var(--reportifact-bg-subtle)}.reportifact-timeline-container{position:relative;background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;padding:16px;width:100%;height:var(--reportifact-chart-height);display:flex;flex-direction:column;overflow:hidden}.reportifact-timeline-toolbar{position:absolute;top:12px;right:12px;z-index:1;display:flex;gap:2px;border:1px solid var(--reportifact-border);border-radius:6px;padding:2px;background:var(--reportifact-bg-subtle)}.reportifact-timeline-mode{border:none;background:transparent;color:var(--reportifact-text-muted);font-size:11px;line-height:1;padding:4px 8px;border-radius:4px;cursor:pointer}.reportifact-timeline-mode.is-active{background:var(--reportifact-bg);color:var(--reportifact-text);box-shadow:0 1px 2px #00000014}.reportifact-image-gallery{container-type:inline-size;display:grid;gap:12px;grid-template-columns:repeat(4,minmax(0,1fr))}.reportifact-image-gallery-tile{min-width:0}.reportifact-image-gallery-frame{position:relative;aspect-ratio:var(--reportifact-gallery-aspect-ratio);overflow:hidden;border-radius:8px;background:var(--reportifact-bg-subtle)}.reportifact-image-gallery-image,.reportifact-image-gallery-overlay{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.reportifact-image-gallery-image--contain{object-fit:contain}.reportifact-image-gallery-image--cover{object-fit:cover}.reportifact-image-gallery-overlay{pointer-events:none}.reportifact-image-gallery-empty{display:flex;height:100%;align-items:center;justify-content:center;color:var(--reportifact-text-muted);font-size:12px}.reportifact-image-gallery-skeleton{height:100%;min-height:160px}.reportifact-image-gallery-more{margin-top:10px;padding:0;border:0;background:transparent;color:var(--reportifact-accent);cursor:pointer;font:inherit;font-size:14px;font-weight:600;text-align:left}.reportifact-image-gallery-more:hover{text-decoration:underline}@container (max-width: 720px){.reportifact-image-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}}.reportifact-figure{width:100%;margin:24px 0}.reportifact-figure-title{margin-bottom:10px;font-size:15px;font-weight:700}.reportifact-figure-skeleton{display:flex;min-height:280px;flex-direction:column;gap:16px;padding:16px;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg)}.reportifact-figure-fallback{display:block;width:100%;height:auto;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg)}.reportifact-figure-runtime-fallback{display:none}.reportifact-widget-host:has(.reportifact-widget-error)>.reportifact-widget-wrapper:has(+.reportifact-figure-runtime-fallback){display:none}.reportifact-widget-host:has(.reportifact-widget-error)>.reportifact-figure-runtime-fallback{display:block}.reportifact-figure-caption{display:flex;flex-wrap:wrap;justify-content:space-between;gap:8px 16px;margin-top:8px;color:var(--reportifact-text-muted, #64748b);font-size:13px}.reportifact-figure-caption a{color:var(--reportifact-accent, #0ea5e9)}pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}/*!
2
- Theme: StackOverflow Light
3
- Description: Light theme as used on stackoverflow.com
4
- Author: stackoverflow.com
5
- Maintainer: @Hirse
6
- Website: https://github.com/StackExchange/Stacks
7
- License: MIT
8
- Updated: 2021-05-15
9
-
10
- Updated for @stackoverflow/stacks v0.64.0
11
- Code Blocks: /blob/v0.64.0/lib/css/components/_stacks-code-blocks.less
12
- Colors: /blob/v0.64.0/lib/css/exports/_stacks-constants-colors.less
13
- */.hljs{color:#2f3337;background:#f6f6f6}.hljs-subst{color:#2f3337}.hljs-comment{color:#656e77}.hljs-keyword,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-section,.hljs-attr{color:#015692}.hljs-attribute{color:#803378}.hljs-name,.hljs-type,.hljs-number,.hljs-selector-id,.hljs-quote,.hljs-template-tag{color:#b75501}.hljs-selector-class{color:#015692}.hljs-string,.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr{color:#54790d}.hljs-meta,.hljs-selector-pseudo{color:#015692}.hljs-built_in,.hljs-title,.hljs-literal{color:#b75501}.hljs-bullet,.hljs-code{color:#535a60}.hljs-meta .hljs-string{color:#54790d}.hljs-deletion{color:#c02d2e}.hljs-addition{color:#2f6f44}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.reportifact-markdown h1,.reportifact-markdown h2,.reportifact-markdown h3,.reportifact-markdown h4,.reportifact-markdown h5,.reportifact-markdown h6{font-weight:500;font-size:15px;margin-top:10px;margin-bottom:5px}.reportifact-markdown p{margin:0 0 5px}.reportifact-markdown pre{overflow-x:auto;max-width:100%}.reportifact-markdown pre code.hljs{border-radius:4px;padding:10px;font-size:13px;display:block;width:100%;box-sizing:border-box;margin-bottom:5px}.reportifact-markdown img{max-width:100%;height:auto}.reportifact-markdown a{color:var(--reportifact-accent);text-decoration:underline}.reportifact-markdown a:hover{text-decoration:none}.reportifact-table-container{font-size:13px;width:fit-content;max-width:100%;margin-inline:0 auto;overflow:hidden;background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px}.reportifact-table-header{display:flex;justify-content:space-between;align-items:center;padding:10px;border-bottom:1px solid var(--reportifact-border)}.reportifact-table-filter-wrapper{position:relative;display:flex;align-items:center}.reportifact-table-filter{padding:4px 28px 4px 30px;border:1px solid var(--reportifact-border);border-radius:4px;background:var(--reportifact-bg-muted);color:var(--reportifact-text-muted);width:180px;font-size:13px;transition:border-color .15s,background .15s}.reportifact-table-filter-icon{position:absolute;left:8px;color:var(--reportifact-text-faint);width:15px;height:15px}.reportifact-table-filter:focus{outline:none;border-color:var(--reportifact-text-faint);background:var(--reportifact-bg)}.reportifact-table-filter::placeholder{color:var(--reportifact-text-faint)}.reportifact-table-filter-loading{padding-right:28px}.reportifact-table-filter-spinner{position:absolute;right:8px;color:var(--reportifact-text-muted);display:flex;align-items:center;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.reportifact-table-spacer{flex:1}.reportifact-table-pagination{display:flex;align-items:center;color:var(--reportifact-text-muted);font-size:13px}.reportifact-table-pagination-btn{display:flex;align-items:center;justify-content:center;width:28px;height:28px;padding:0;border:none;background:transparent;color:var(--reportifact-text-muted);cursor:pointer;border-radius:4px;transition:color .15s,background .15s}.reportifact-table-pagination-btn:hover:not(:disabled){color:var(--reportifact-text);background:var(--reportifact-bg-muted)}.reportifact-table-pagination-btn:disabled{color:var(--reportifact-text-faint);cursor:default}.reportifact-table-pagination-info{padding:0 4px;white-space:nowrap}.reportifact-table-scroll{overflow-x:auto;overflow-y:visible;position:relative;scrollbar-width:thin;scrollbar-color:var(--reportifact-border) var(--reportifact-bg-subtle)}.reportifact-table-scroll::-webkit-scrollbar{height:10px}.reportifact-table-scroll::-webkit-scrollbar-track{background:var(--reportifact-bg-subtle)}.reportifact-table-scroll::-webkit-scrollbar-thumb{background:var(--reportifact-border);border:2px solid var(--reportifact-bg-subtle);border-radius:999px}.reportifact-table-scroll::-webkit-scrollbar-thumb:hover{background:var(--reportifact-text-faint)}.reportifact-table-element{width:100%;border-collapse:collapse;table-layout:auto}.reportifact-table-th{padding:6px 12px;text-align:left;font-weight:600;color:var(--reportifact-text);background:var(--reportifact-bg-subtle);border-bottom:2px solid var(--reportifact-border);white-space:nowrap;-webkit-user-select:none;user-select:none}.reportifact-table-th-sortable{cursor:pointer}.reportifact-table-th-sortable:hover{background:var(--reportifact-bg-muted)}.reportifact-table-th-fixed{position:sticky;left:0;z-index:2;background:var(--reportifact-bg-subtle);box-shadow:inset -1px 0 0 var(--reportifact-border)}.reportifact-table-th-content{display:flex;align-items:center;gap:4px}.reportifact-table-tooltip{display:inline-flex;color:var(--reportifact-text-faint);cursor:help}.reportifact-table-tooltip svg{width:14px;height:14px}.reportifact-table-sort-icon{display:inline-flex;margin-left:2px}.reportifact-table-sort-icon svg{width:14px;height:14px;color:var(--reportifact-accent)}.reportifact-table-th-sortable:hover .reportifact-table-sort-inactive{opacity:1}.reportifact-table-row{border-bottom:1px solid var(--reportifact-border)}.reportifact-table-row:last-child{border-bottom:none}.reportifact-table-row:hover{background:var(--reportifact-bg-subtle)}.reportifact-table-row-clickable{cursor:pointer}.reportifact-table-container td{padding:6px 12px;white-space:nowrap;background:var(--reportifact-bg)}.reportifact-table-td-fixed{position:sticky;left:0;z-index:1;background:var(--reportifact-bg);box-shadow:inset -1px 0 0 var(--reportifact-border)}.reportifact-table-row:hover td{background:var(--reportifact-bg-subtle)}.reportifact-table-empty{padding:40px;text-align:center;color:var(--reportifact-text-faint)}.reportifact-table-highlight{background:var(--reportifact-highlight);padding:0;font-weight:inherit}.reportifact-table-loading-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:color-mix(in srgb,var(--reportifact-bg) 90%,transparent);z-index:10;animation:fadeIn .2s ease-in}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.reportifact-tensorboard-skeleton,.reportifact-tensorboard-container{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;padding:16px;height:var(--reportifact-chart-height);display:flex;flex-direction:column;overflow:hidden}.reportifact-tensorboard-skeleton{display:flex;flex-direction:column}.reportifact-tensorboard-skeleton-body{width:100%;flex:1;min-height:0;border-radius:4px}.reportifact-tensorboard-header{display:flex;justify-content:center;align-items:center;margin-bottom:12px;flex-shrink:0}.reportifact-tensorboard-select{padding:6px 32px 6px 12px;border:1px solid var(--reportifact-border);border-radius:4px;background-color:var(--reportifact-bg);background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 10px center;background-size:12px;font-size:13px;font-weight:600;color:var(--reportifact-text);cursor:pointer;min-width:200px;max-width:100%;appearance:none;-webkit-appearance:none;-moz-appearance:none}.reportifact-tensorboard-select:hover{border-color:var(--reportifact-text-faint)}.reportifact-tensorboard-select:focus{outline:none;border-color:var(--reportifact-focus-border);box-shadow:0 0 0 3px color-mix(in srgb,var(--reportifact-focus-border) 10%,transparent)}.reportifact-tensorboard-chart{width:100%;flex:1;min-height:0}.reportifact-comparison-matrix-host{width:100%;container-name:comparison-matrix;container-type:inline-size}.reportifact-comparison-matrix-skeleton{display:grid;gap:16px;padding:16px;border:1px solid var(--reportifact-border);border-radius:10px;background:var(--reportifact-bg)}.reportifact-comparison-matrix{position:relative;overflow:visible;border:1px solid var(--reportifact-border);border-radius:10px;background:var(--reportifact-bg);color:var(--reportifact-text);font-size:13px}.reportifact-comparison-matrix-header{display:flex;min-height:56px;align-items:center;justify-content:space-between;gap:12px 24px;border-bottom:1px solid var(--reportifact-border);padding:10px 16px;border-radius:9px 9px 0 0;background:var(--reportifact-bg-subtle)}.reportifact-comparison-matrix-controls{display:flex;min-width:0;align-items:center;gap:10px}.reportifact-comparison-matrix-segmented{display:inline-flex;min-width:0;gap:2px;overflow-x:auto;border-radius:6px;padding:2px;background:var(--reportifact-bg-muted)}.reportifact-comparison-matrix-segmented button,.reportifact-comparison-matrix-pagination button{border:0;border-radius:5px;background:transparent;color:var(--reportifact-text-muted);cursor:pointer;font:inherit}.reportifact-comparison-matrix-segmented button{min-width:40px;padding:3px 8px;white-space:nowrap}.reportifact-comparison-matrix-segmented button:hover,.reportifact-comparison-matrix-pagination button:hover:not(:disabled){background:var(--reportifact-bg);color:var(--reportifact-text)}.reportifact-comparison-matrix-segmented button.is-active{background:var(--reportifact-bg);box-shadow:0 1px 3px #0f172a1a;color:var(--reportifact-text);font-weight:600}.reportifact-comparison-matrix-search{width:170px;min-width:120px}.reportifact-comparison-matrix-search input{width:100%;border:1px solid var(--reportifact-border);border-radius:6px;padding:6px 9px;background:var(--reportifact-bg);color:var(--reportifact-text);font:inherit}.reportifact-comparison-matrix-pagination{display:inline-flex;align-items:center;gap:5px;color:var(--reportifact-text-muted);white-space:nowrap}.reportifact-comparison-matrix-pagination button{width:26px;height:26px;font-size:18px}.reportifact-comparison-matrix-pagination button:disabled{cursor:default;opacity:.35}.reportifact-comparison-matrix-legend{display:flex;min-width:0;flex-wrap:wrap;justify-content:flex-end;gap:7px 18px}.reportifact-comparison-matrix-legend-item{display:inline-flex;min-width:0;align-items:center;gap:7px}.reportifact-comparison-matrix-legend-name{max-width:210px;overflow:hidden;color:var(--reportifact-text-muted);text-overflow:ellipsis;white-space:nowrap}.reportifact-comparison-matrix-shape{display:inline-block;width:10px;height:10px;flex:0 0 auto;border:0;border-radius:50%;background:var(--reportifact-comparison-model-color)}.reportifact-comparison-matrix-table-wrap{width:100%;overflow:visible}.reportifact-comparison-matrix table{width:100%;border-collapse:collapse;table-layout:fixed}.reportifact-comparison-matrix-class-col{width:160px}.reportifact-comparison-matrix th,.reportifact-comparison-matrix td{border-bottom:1px solid var(--reportifact-border);padding:0 14px;text-align:left}.reportifact-comparison-matrix tbody tr:last-child th,.reportifact-comparison-matrix tbody tr:last-child td{border-bottom:0}.reportifact-comparison-matrix thead th{height:52px;background:var(--reportifact-bg);color:var(--reportifact-text-muted);font-size:11px;font-weight:600;letter-spacing:.04em;text-transform:uppercase}.reportifact-comparison-matrix tbody th,.reportifact-comparison-matrix tbody td{height:54px}.reportifact-comparison-matrix tbody tr:hover>*{background:color-mix(in srgb,var(--reportifact-bg-subtle) 58%,transparent)}.reportifact-comparison-matrix-class-column{overflow:hidden;font-weight:600;text-overflow:ellipsis;white-space:nowrap}.reportifact-comparison-matrix tbody .reportifact-comparison-matrix-class-column{font-size:14px;letter-spacing:0;text-transform:none}.reportifact-comparison-matrix-score-column{padding-right:9px!important;padding-left:9px!important}.reportifact-comparison-matrix-axis{position:relative;height:16px;margin:0 6px;color:var(--reportifact-text-muted);font-size:12px;font-variant-numeric:tabular-nums;font-weight:700;letter-spacing:0;text-transform:none}.reportifact-comparison-matrix-axis>span{position:absolute;top:50%;transform:translate(-50%,-50%)}.reportifact-comparison-matrix-axis>span:first-child{transform:translateY(-50%)}.reportifact-comparison-matrix-axis>span:last-child{transform:translate(-100%,-50%)}.reportifact-comparison-matrix-plot{position:relative;width:100%;height:44px}.reportifact-comparison-matrix-plot-inner{position:absolute;top:0;right:6px;bottom:0;left:6px;border-right:1px solid var(--reportifact-border);border-left:1px solid var(--reportifact-border)}.reportifact-comparison-matrix-track{position:absolute;top:50%;right:0;left:0;height:1px;background:var(--reportifact-border);transform:translateY(-50%)}.reportifact-comparison-matrix-tick{position:absolute;top:50%;width:1px;height:8px;border-radius:1px;background:color-mix(in srgb,var(--reportifact-text-muted) 45%,transparent);transform:translate(-50%,-50%)}.reportifact-comparison-matrix-marker{position:absolute;z-index:1;display:grid;width:20px;height:20px;place-items:center;outline:none;transform:translate(-50%,-50%)}.reportifact-comparison-matrix-marker.is-edge-start{transform:translateY(-50%)}.reportifact-comparison-matrix-marker.is-edge-end{transform:translate(-100%,-50%)}.reportifact-comparison-matrix-marker:hover,.reportifact-comparison-matrix-marker:focus-visible{z-index:4}.reportifact-comparison-matrix-marker:focus-visible{border-radius:999px;box-shadow:0 0 0 2px var(--reportifact-focus-border)}.reportifact-comparison-matrix-marker .reportifact-comparison-matrix-shape{width:11px;height:11px}.reportifact-comparison-matrix-tooltip{position:absolute;z-index:5;top:calc(100% + 5px);left:50%;display:grid;min-width:190px;max-width:280px;grid-template-columns:10px minmax(0,1fr) auto;align-items:center;gap:7px;visibility:hidden;border:1px solid var(--reportifact-border);border-radius:7px;padding:8px 9px;background:var(--reportifact-bg);box-shadow:0 7px 20px #0f172a2b;opacity:0;pointer-events:none;transform:translate(-50%) translateY(-2px);transition:opacity .1s ease,transform .1s ease,visibility .1s ease}.reportifact-comparison-matrix-marker.is-edge-start .reportifact-comparison-matrix-tooltip{left:0;transform:translateY(-2px)}.reportifact-comparison-matrix-marker.is-edge-end .reportifact-comparison-matrix-tooltip{right:0;left:auto;transform:translateY(-2px)}.reportifact-comparison-matrix-marker:hover .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker:focus-visible .reportifact-comparison-matrix-tooltip{visibility:visible;opacity:1;transform:translate(-50%) translateY(0)}.reportifact-comparison-matrix-marker.is-edge-start:hover .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker.is-edge-start:focus-visible .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker.is-edge-end:hover .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker.is-edge-end:focus-visible .reportifact-comparison-matrix-tooltip{transform:translateY(0)}.reportifact-comparison-matrix-tooltip .reportifact-comparison-matrix-shape{width:9px;height:9px}.reportifact-comparison-matrix-tooltip span:nth-child(2){overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.reportifact-comparison-matrix-tooltip strong{font-size:11px;font-variant-numeric:tabular-nums}.reportifact-comparison-matrix-values-column{padding-right:16px!important;padding-left:16px!important}.reportifact-comparison-matrix-value-grid{display:grid;align-items:center;gap:10px;text-align:right}.reportifact-comparison-matrix-value-grid>span{overflow:hidden;color:var(--reportifact-comparison-model-color);font-size:13px;font-variant-numeric:tabular-nums;font-weight:500;text-overflow:ellipsis;white-space:nowrap}.reportifact-comparison-matrix-value-grid>span.is-best{font-weight:700}.reportifact-comparison-matrix-value-grid>span.is-missing{color:var(--reportifact-text-faint)}.reportifact-comparison-matrix-no-values{position:absolute;top:50%;left:50%;color:var(--reportifact-text-faint);font-size:10px;transform:translate(-50%,-50%);white-space:nowrap}.reportifact-comparison-matrix-empty{padding:28px;color:var(--reportifact-text-faint);text-align:center}.reportifact-comparison-matrix-visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap}@container comparison-matrix (max-width: 900px){.reportifact-comparison-matrix-header{flex-wrap:wrap;gap:10px 16px}.reportifact-comparison-matrix-legend{flex:1 1 100%;justify-content:flex-start}}@container comparison-matrix (max-width: 600px){.reportifact-comparison-matrix-header{padding:10px 12px}.reportifact-comparison-matrix-controls{flex:1 1 100%;flex-wrap:wrap}.reportifact-comparison-matrix-segmented{flex:1 1 100%}.reportifact-comparison-matrix-segmented button{flex:1 0 auto}.reportifact-comparison-matrix-search{flex:1 1 150px}.reportifact-comparison-matrix-class-col{width:120px}}.reportifact-model-comparison-gallery{container-type:inline-size;display:grid;gap:12px;grid-template-columns:repeat(var(--reportifact-model-comparison-gallery-columns, 4),minmax(0,1fr))}.reportifact-model-comparison-gallery-tile{min-width:0;width:100%;color:inherit;font:inherit;text-align:left}.reportifact-model-comparison-gallery-tile--rich{overflow:hidden;border:1px solid var(--reportifact-border);border-radius:10px;background:var(--reportifact-bg)}.reportifact-model-comparison-gallery-tile--actionable{position:relative;cursor:pointer;transition:border-color .15s ease}.reportifact-model-comparison-gallery-tile--actionable:hover{border-color:color-mix(in srgb,var(--reportifact-accent) 55%,var(--reportifact-border))}.reportifact-model-comparison-gallery-action{position:absolute;z-index:1;top:0;right:0;bottom:0;left:0;padding:0;border:0;border-radius:inherit;background:transparent;cursor:pointer}.reportifact-model-comparison-gallery-action:focus-visible{outline:0;box-shadow:inset 0 0 0 2px var(--reportifact-accent)}.reportifact-model-comparison-gallery-sr-only{position:absolute;width:1px;height:1px;padding:0;border:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}.reportifact-model-comparison-gallery-frame{position:relative;aspect-ratio:var(--reportifact-model-comparison-gallery-aspect-ratio);overflow:hidden;border-radius:8px;background:var(--reportifact-bg-subtle)}.reportifact-model-comparison-gallery-tile--rich .reportifact-model-comparison-gallery-frame{border-radius:0;border-bottom:1px solid var(--reportifact-border)}.reportifact-model-comparison-gallery-image,.reportifact-model-comparison-gallery-overlay{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.reportifact-model-comparison-gallery-image--contain{object-fit:contain}.reportifact-model-comparison-gallery-image--cover{object-fit:cover}.reportifact-model-comparison-gallery-overlay{pointer-events:none}.reportifact-model-comparison-gallery-empty{display:flex;height:100%;flex-direction:column;align-items:center;justify-content:center;gap:8px;color:var(--reportifact-text-muted);font-size:12px}.reportifact-model-comparison-gallery-content{padding:10px 12px 11px}.reportifact-model-comparison-gallery-label{overflow:hidden;color:var(--reportifact-text);font-size:13px;font-weight:650;line-height:1.35;text-overflow:ellipsis;white-space:nowrap}.reportifact-model-comparison-gallery-details{display:grid;gap:4px;margin:7px 0 0}.reportifact-model-comparison-gallery-detail{display:grid;grid-template-columns:fit-content(50%) minmax(0,1fr);align-items:baseline;gap:10px;font-size:12px;line-height:1.35}.reportifact-model-comparison-gallery-detail dt{overflow:hidden;color:var(--reportifact-text-muted);text-overflow:ellipsis;white-space:nowrap}.reportifact-model-comparison-gallery-detail dd{min-width:0;margin:0;overflow-wrap:break-word;color:var(--reportifact-text);font-variant-numeric:tabular-nums;font-weight:600;text-align:right}.reportifact-model-comparison-gallery-detail:first-child{padding-bottom:6px;border-bottom:1px solid var(--reportifact-border);margin-bottom:2px}.reportifact-model-comparison-gallery-detail:first-child dd{font-size:15px;font-weight:700}.reportifact-model-comparison-gallery-skeleton{height:100%;min-height:160px}.reportifact-model-comparison-gallery-more{margin-top:10px;padding:0;border:0;background:transparent;color:var(--reportifact-accent);cursor:pointer;font:inherit;font-size:14px;font-weight:600;text-align:left}.reportifact-model-comparison-gallery-more:hover{text-decoration:underline}@container (max-width: 720px){.reportifact-model-comparison-gallery{grid-template-columns:repeat(var(--reportifact-model-comparison-gallery-narrow-columns, 2),minmax(0,1fr))}.reportifact-model-comparison-gallery-detail{grid-template-columns:minmax(64px,1fr) minmax(0,2fr)}}@container (max-width: 420px){.reportifact-model-comparison-gallery{grid-template-columns:minmax(0,1fr)}}.reportifact-card{height:100%;min-width:0;overflow:hidden;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg)}.reportifact-card--subtle{background:var(--reportifact-bg-subtle)}.reportifact-card--dashed{border-style:dashed;background:var(--reportifact-bg-subtle)}.reportifact-card-header{display:flex;min-width:0;align-items:center;justify-content:space-between;gap:12px;padding:13px 15px;border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle)}.reportifact-card-header>div{min-width:0}.reportifact-card--subtle .reportifact-card-header{padding-bottom:0;border-bottom:0}.reportifact-card-title{overflow-wrap:anywhere;color:var(--reportifact-text);font-size:15px;font-weight:700}.reportifact-card--subtle .reportifact-card-title{color:var(--reportifact-text-muted);font-size:11px;letter-spacing:.04em;text-transform:uppercase}.reportifact-card-subtitle{margin-top:4px;color:var(--reportifact-text-muted);font-size:12px}.reportifact-card-badge{display:inline-flex;min-height:24px;flex:0 0 auto;align-items:center;border-radius:999px;padding:3px 9px;font-size:12px;font-weight:600}.reportifact-card-badge--low{background:var(--reportifact-tone-low-bg);color:var(--reportifact-tone-low)}.reportifact-card-badge--mid{background:var(--reportifact-tone-mid-bg);color:var(--reportifact-tone-mid)}.reportifact-card-badge--high{background:var(--reportifact-tone-high-bg);color:var(--reportifact-tone-high)}.reportifact-card-body{min-width:0;padding:15px}.reportifact-card--subtle .reportifact-card-body{padding-top:12px}.reportifact-card-body p{margin:0 0 6px}.reportifact-card-body p:last-child{margin-bottom:0}.reportifact-card-body table{table-layout:auto;width:100%;max-width:100%;margin-top:12px;border:0;border-collapse:collapse;border-radius:0;background:transparent;font-size:inherit;overflow:visible}.reportifact-card-body table:first-child{margin-top:0}.reportifact-card-body tr{vertical-align:top!important}.reportifact-card-body th,.reportifact-card-body td{padding:8px 10px;border-bottom:1px solid var(--reportifact-border);text-align:left;vertical-align:top!important;white-space:normal!important;word-break:normal;overflow-wrap:anywhere}.reportifact-card-body th{color:var(--reportifact-text-muted);font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.reportifact-card-body td{color:var(--reportifact-text-muted)}.reportifact-card-body td:first-child{width:1%;color:var(--reportifact-text);font-weight:700;white-space:nowrap!important}.reportifact-card-body td:nth-child(2),.reportifact-card-body th:nth-child(2){width:auto;white-space:normal!important}.reportifact-card-body tr:last-child td{border-bottom:0}.reportifact-help-tooltip{position:relative;display:inline-flex;align-items:center;margin-left:6px;vertical-align:middle}.reportifact-help-tooltip-trigger{display:inline-flex;width:18px;height:18px;align-items:center;justify-content:center;border:1px solid var(--reportifact-border);border-radius:999px;background:var(--reportifact-bg);color:var(--reportifact-text-muted);cursor:help;font:inherit;font-size:12px;font-weight:700;line-height:1;padding:0}.reportifact-help-tooltip-content{position:absolute;left:calc(100% + 12px);top:50%;z-index:50;width:max-content;max-width:min(520px,80vw);transform:translateY(-50%);padding:10px 12px;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg);color:var(--reportifact-text);font-size:13px;font-weight:450;line-height:1.4;opacity:0;pointer-events:none;white-space:normal}.reportifact-help-tooltip-content:after{content:"";position:absolute;left:-6px;top:50%;width:10px;height:10px;transform:translateY(-50%) rotate(45deg);border-bottom:1px solid var(--reportifact-border);border-left:1px solid var(--reportifact-border);background:var(--reportifact-bg)}.reportifact-help-tooltip:hover .reportifact-help-tooltip-content,.reportifact-help-tooltip:focus-within .reportifact-help-tooltip-content{opacity:1}.reportifact-metric-table{overflow:hidden;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg)}.reportifact-metric-table-header{padding:13px 15px;border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle)}.reportifact-metric-table-header strong{display:block;font-size:15px}.reportifact-metric-table-header div{margin-top:4px;color:var(--reportifact-text-muted);font-size:12px}.reportifact-metric-table-columns{display:grid;grid-template-columns:148px 72px minmax(0,1fr);gap:12px;padding:9px 15px;border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle)}.reportifact-metric-table.is-compare .reportifact-metric-table-columns{grid-template-columns:148px 72px 72px minmax(0,1fr)}.reportifact-metric-table-column{font-size:12px;font-weight:600;text-align:right;color:var(--reportifact-text-muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.reportifact-metric-table-body{display:grid;gap:9px 12px;padding:12px 15px}.reportifact-metric-table-row{display:grid;grid-template-columns:148px 72px minmax(0,1fr);gap:12px;align-items:baseline}.reportifact-metric-table.is-compare .reportifact-metric-table-row{grid-template-columns:148px 72px 72px minmax(0,1fr)}.reportifact-metric-table-name{white-space:nowrap}.reportifact-metric-table-value{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;text-align:right}.reportifact-metric-table-value--low{color:var(--reportifact-tone-low)}.reportifact-metric-table-value--mid{color:var(--reportifact-tone-mid)}.reportifact-metric-table-value--high{color:var(--reportifact-tone-high)}.reportifact-metric-table-description{color:var(--reportifact-text-muted)}@media (max-width: 720px){.reportifact-metric-table-row{grid-template-columns:1fr auto}.reportifact-metric-table.is-compare .reportifact-metric-table-row{grid-template-columns:1fr auto auto}.reportifact-metric-table-description{grid-column:1 / -1}}.reportifact-notice{padding:16px;border:1px solid var(--reportifact-border);border-radius:8px;background:var(--reportifact-bg-subtle)}.reportifact-notice--dashed{border-style:dashed}.reportifact-notice-title{display:block;margin-bottom:6px;font-weight:750}.reportifact-notice-body{color:var(--reportifact-text-muted)}.reportifact-scope{position:sticky;top:0;z-index:30;display:flex;align-items:center;gap:12px;padding:10px 0;margin-bottom:8px;background:var(--reportifact-bg);border-bottom:1px solid var(--reportifact-border)}.reportifact-scope-anchor{font-size:13px;color:var(--reportifact-text-muted);white-space:nowrap}.reportifact-scope-crumbs{display:inline-flex;align-items:center;gap:5px}.reportifact-scope-tag-icon{display:inline-flex;margin-right:1px;color:var(--reportifact-text-faint);opacity:.6}.reportifact-scope-dd{position:relative;display:flex}.reportifact-scope-dim{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:6px 9px;border:none;background:transparent;border-radius:6px;font:inherit;font-size:13px;font-weight:600;color:var(--reportifact-text-muted);cursor:pointer;white-space:nowrap;transition:background .12s ease,color .12s ease}.reportifact-scope-dim:hover{background:var(--reportifact-bg-muted);color:var(--reportifact-text)}.reportifact-scope-sep{color:var(--reportifact-border);font-size:14px}.reportifact-scope-val{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:inline-flex;align-items:center;gap:6px;padding:6px 9px;border:none;background:var(--reportifact-bg-muted);border-radius:6px;font:inherit;font-size:13px;font-weight:600;color:var(--reportifact-text);cursor:pointer;white-space:nowrap;transition:background .12s ease}.reportifact-scope-val:hover{background:var(--reportifact-border)}.reportifact-scope-chevron{display:inline-flex;color:var(--reportifact-text-muted);opacity:.6}.reportifact-scope-menu{position:absolute;left:0;top:calc(100% + 6px);min-width:200px;max-height:280px;overflow:auto;padding:5px;background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;box-shadow:0 10px 28px #10182824;z-index:60}.reportifact-scope-item{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:flex;align-items:center;gap:8px;width:100%;padding:7px 9px;border:none;background:transparent;border-radius:6px;font:inherit;font-size:13px;font-weight:500;color:var(--reportifact-text);cursor:pointer;white-space:nowrap;text-align:left;transition:background .12s ease,color .12s ease}.reportifact-scope-item:hover{background:var(--reportifact-bg-muted)}.reportifact-scope-item.is-active{background:var(--reportifact-bg-muted);color:var(--reportifact-accent)}.reportifact-scope-check{width:14px;flex:none;display:inline-flex;align-items:center;justify-content:center;color:var(--reportifact-accent);opacity:0}.reportifact-scope-check.is-on{opacity:1}.reportifact-scope-meta{margin-left:auto;padding-left:16px;color:var(--reportifact-text-faint);font-size:11px;font-weight:500}.reportifact-scope-meta-num{font-variant-numeric:tabular-nums}.reportifact-scope-reset{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:inline-flex;align-items:center;gap:5px;height:30px;padding:0 9px;border:none;background:transparent;border-radius:6px;color:var(--reportifact-text-muted);font:inherit;font-size:12.5px;font-weight:500;cursor:pointer;transition:background .12s ease,color .12s ease}.reportifact-scope-reset:hover{background:var(--reportifact-bg-muted);color:var(--reportifact-text)}.reportifact-unsupported-widget{border:1px dashed var(--reportifact-border);border-radius:8px;padding:16px;color:var(--reportifact-text-muted);background:var(--reportifact-bg-subtle)}.reportifact-toc-wrapper[data-v-abab526d]{position:sticky;top:0;z-index:10;background:var(--reportifact-toc-bg);margin:-8px 0 24px;border-bottom:1px solid var(--reportifact-border);box-shadow:0 -16px 0 16px var(--reportifact-toc-bg)}.reportifact-toc-container[data-v-abab526d]{overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:8px 0}.reportifact-toc-container[data-v-abab526d]::-webkit-scrollbar{display:none}.reportifact-toc-gradient[data-v-abab526d]{position:absolute;top:0;bottom:0;width:40px;pointer-events:none;z-index:2}.reportifact-toc-gradient-left[data-v-abab526d]{left:0;background:linear-gradient(to right,var(--reportifact-toc-bg),transparent)}.reportifact-toc-gradient-right[data-v-abab526d]{right:0;background:linear-gradient(to left,var(--reportifact-toc-bg),transparent)}.reportifact-toc[data-v-abab526d]{display:inline-flex;gap:8px;padding:0;min-width:100%}.reportifact-toc-item[data-v-abab526d]{padding:6px 12px;font-size:13px;font-weight:500;color:var(--reportifact-text-muted);background:transparent;border:none;border-radius:6px;cursor:pointer;white-space:nowrap;transition:all .2s ease;font-family:inherit}.reportifact-toc-item[data-v-abab526d]:hover{background:var(--reportifact-bg-muted);color:var(--reportifact-text)}.reportifact-toc-item-active[data-v-abab526d]{background:var(--reportifact-border);color:var(--reportifact-text)}.reportifact-section{container-type:inline-size;display:flex;flex-direction:column;gap:var(--reportifact-widget-gap);scroll-margin-top:60px;margin-bottom:var(--reportifact-section-gap)}.reportifact-section:last-child{margin-bottom:0}.reportifact-section-title{font-size:17px;font-weight:600;margin-bottom:-10px}.reportifact-widget-article,.reportifact-grid-item{width:100%;min-width:0}.reportifact-widget-article-chart{width:100%}.reportifact-grid{display:grid;gap:16px;align-items:stretch;grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr))}.reportifact-grid[data-layout="1"],.reportifact-grid[data-layout=auto][data-count="1"]{grid-template-columns:minmax(0,1fr)}.reportifact-grid[data-layout="1-2"]{grid-template-columns:minmax(0,1fr) minmax(0,2fr)}.reportifact-grid[data-layout="2"],.reportifact-grid[data-layout=auto][data-count="2"]{grid-template-columns:repeat(2,minmax(0,1fr))}.reportifact-grid[data-layout="3"],.reportifact-grid[data-layout=auto][data-count="3"]{grid-template-columns:repeat(3,minmax(0,1fr))}.reportifact-grid[data-layout="4"],.reportifact-grid[data-layout="4-2"],.reportifact-grid[data-layout=auto][data-count="4"]{grid-template-columns:repeat(4,minmax(0,1fr))}.reportifact-grid[data-layout=auto][data-count="5"]{grid-template-columns:repeat(3,minmax(0,1fr))}.reportifact-grid[data-layout="6-3-2"],.reportifact-grid[data-layout=auto][data-count="6"]{grid-template-columns:repeat(6,minmax(0,1fr))}.reportifact-grid-item{display:flex}.reportifact-grid-item-chart{min-width:0}.reportifact-grid-item>*{flex:1 1 auto;min-width:0}.reportifact-grid-item-table>.reportifact-widget-wrapper,.reportifact-grid-item-table>.reportifact-widget-wrapper>.reportifact-widget-content{height:100%;display:flex;flex-direction:column}.reportifact-grid-item-table .reportifact-table-container{width:100%;height:100%;display:flex;flex-direction:column}.reportifact-grid-item-table .reportifact-table-scroll{flex:1 1 auto;min-height:0}.reportifact-markdown table{width:min(100%,860px);border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--reportifact-border);border-radius:12px;background:var(--reportifact-bg);font-size:13px}.reportifact-markdown th,.reportifact-markdown td{padding:10px 14px;border-bottom:1px solid var(--reportifact-border);text-align:left;vertical-align:middle;white-space:nowrap}.reportifact-markdown th{background:var(--reportifact-bg-subtle);color:var(--reportifact-text-muted);font-size:11px;font-weight:700;letter-spacing:.04em;text-transform:uppercase}.reportifact-markdown tr:last-child td{border-bottom:0}.reportifact-markdown td:nth-child(3),.reportifact-markdown th:nth-child(3){text-align:right}.reportifact-markdown td code{font-size:13px;color:var(--reportifact-text);background:var(--reportifact-bg-muted);border:1px solid var(--reportifact-border);border-radius:6px;padding:2px 6px}.reportifact-markdown table a{display:inline-flex;align-items:center;justify-content:center;min-width:86px;padding:5px 10px;border-radius:999px;color:var(--reportifact-accent);background:color-mix(in srgb,var(--reportifact-accent) 10%,transparent);font-size:12px;font-weight:650;text-decoration:none}.reportifact-markdown table a:hover{background:color-mix(in srgb,var(--reportifact-accent) 16%,transparent);text-decoration:none}@container (max-width: 960px){.reportifact-grid[data-layout="6-3-2"],.reportifact-grid[data-layout=auto][data-count="6"]{grid-template-columns:repeat(3,minmax(0,1fr))}.reportifact-grid[data-layout=auto][data-count="5"]{grid-template-columns:repeat(2,minmax(0,1fr))}}@container (max-width: 1100px){.reportifact-grid[data-layout="4-2"],.reportifact-grid[data-layout=auto][data-count="4"],.reportifact-grid[data-layout="6-3-2"],.reportifact-grid[data-layout=auto][data-count="5"],.reportifact-grid[data-layout=auto][data-count="6"]{grid-template-columns:repeat(2,minmax(0,1fr))}.reportifact-grid[data-layout="1-2"],.reportifact-grid[data-layout="2"],.reportifact-grid[data-layout="3"],.reportifact-grid[data-layout="4"],.reportifact-grid[data-layout=auto][data-count="2"],.reportifact-grid[data-layout=auto][data-count="3"]{grid-template-columns:minmax(0,1fr)}}
1
+ .reportifact-widget-wrapper{width:100%;min-width:0;margin:0;position:relative}.reportifact-widget-content{position:relative}.reportifact-widget-error{background:var(--reportifact-error-bg);border-radius:8px;padding:16px}.reportifact-widget-error-message{color:var(--reportifact-error-text);text-align:center;font-size:14px}.reportifact-figure-caption{color:var(--reportifact-text-muted,#64748b);text-align:center;flex-wrap:wrap;justify-content:center;gap:8px 16px;margin-top:8px;font-size:13px;display:flex}.reportifact-figure-caption a{color:var(--reportifact-accent,#0ea5e9)}.reportifact-chart-skeleton{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);height:var(--reportifact-chart-height);border-radius:8px;flex-direction:column;padding:16px;display:flex;overflow:hidden}.reportifact-chart-skeleton-body{border-radius:4px;flex:1;width:100%;min-height:0}.reportifact-chart-container{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);width:100%;height:var(--reportifact-chart-height);border-radius:8px;flex-direction:column;padding:16px;display:flex;overflow:hidden}.reportifact-chart{flex:1;width:100%;min-height:0}.reportifact-timeline-container{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);width:100%;height:var(--reportifact-chart-height);border-radius:8px;flex-direction:column;padding:16px;display:flex;position:relative;overflow:hidden}.reportifact-timeline-toolbar{z-index:1;border:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);border-radius:6px;gap:2px;padding:2px;display:flex;position:absolute;top:12px;right:12px}.reportifact-timeline-mode{color:var(--reportifact-text-muted);cursor:pointer;background:0 0;border:none;border-radius:4px;padding:4px 8px;font-size:11px;line-height:1}.reportifact-timeline-mode.is-active{background:var(--reportifact-bg);color:var(--reportifact-text);box-shadow:0 1px 2px #00000014}.rm-card{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;width:100%;padding:16px;overflow-x:auto}.rm-skeleton{flex-direction:column;gap:10px;padding:4px 0;display:flex}.rm-skeleton-row{align-items:center;gap:10px;display:flex}.rm-title{color:var(--reportifact-text);margin-bottom:8px;font-size:13px;font-weight:bolder}.rm-metrics{grid-template-columns:auto 3.8em 1fr;align-items:center;gap:8px 10px;max-width:400px;padding:2px 0;display:grid}.rm-metrics--with-pct{grid-template-columns:auto 3.8em 1fr auto}.rm-row{display:contents}.rm-name{white-space:nowrap;color:var(--reportifact-text);font-size:13px;font-weight:500}.rm-value{text-align:right;color:var(--reportifact-text-muted);font-family:monospace;font-size:13px}.rm-bar-track{background:var(--reportifact-bg-muted);border-radius:3px;min-width:40px;height:6px;overflow:hidden}.rm-bar-fill{background:var(--reportifact-accent);border-radius:3px;height:100%;transition:width .3s}.rm-pct{color:var(--reportifact-text-muted);white-space:nowrap;text-align:right;min-width:3.2em;font-size:12px}.rm-empty{color:var(--reportifact-text-faint);grid-column:1/-1;font-size:13px;font-style:italic}.rm-table{border-collapse:collapse;width:100%;font-size:13px}.rm-table th{text-align:left;border-bottom:1px solid var(--reportifact-border);color:var(--reportifact-text-muted);padding:6px 8px;font-size:12px;font-weight:500}.rm-table td{border-bottom:1px solid var(--reportifact-border);color:var(--reportifact-text);padding:5px 8px}.rm-table tr:last-child td{border-bottom:none}.rm-table tbody tr:hover td{background:var(--reportifact-bg-subtle)}.reportifact-metric-cards{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:8px;grid-template-columns:repeat(4,minmax(92px,1fr));gap:10px;padding:12px;display:grid}.reportifact-metric-card{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:6px;min-height:148px;padding:14px;position:relative;overflow:hidden}.reportifact-metric-card-fill{border-top:1px solid #0000;position:absolute;inset:auto 0 0}.reportifact-metric-card--low .reportifact-metric-card-fill{border-top-color:var(--reportifact-tone-low-border);background:var(--reportifact-tone-low-bg)}.reportifact-metric-card--mid .reportifact-metric-card-fill{border-top-color:var(--reportifact-tone-mid-border);background:var(--reportifact-tone-mid-bg)}.reportifact-metric-card--high .reportifact-metric-card-fill{border-top-color:var(--reportifact-tone-high-border);background:var(--reportifact-tone-high-bg)}.reportifact-metric-card-label,.reportifact-metric-card-value,.reportifact-metric-card-description{z-index:1;position:relative}.reportifact-metric-card-label{color:var(--reportifact-text-muted);letter-spacing:.04em;text-transform:uppercase;font-size:11px;font-weight:750;display:block}.reportifact-metric-card-value{margin-top:10px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:26px;line-height:1;display:block}.reportifact-metric-card--low .reportifact-metric-card-value{color:var(--reportifact-tone-low)}.reportifact-metric-card--mid .reportifact-metric-card-value{color:var(--reportifact-tone-mid)}.reportifact-metric-card--high .reportifact-metric-card-value{color:var(--reportifact-tone-high)}.reportifact-metric-card-description{color:var(--reportifact-text-muted);margin:8px 0 0;font-size:12px}.reportifact-metric-card-bar{z-index:1;background:var(--reportifact-bg-muted);border-radius:2px;height:4px;margin-top:8px;display:block;position:relative;overflow:hidden}.reportifact-metric-card-bar>span{background:var(--reportifact-accent);border-radius:2px;height:100%;display:block}.reportifact-metric-cards--compact .reportifact-metric-card{min-height:0;padding:12px 14px}.reportifact-metric-cards--compact .reportifact-metric-card-value{margin-top:6px}.reportifact-metric-cards--compact .reportifact-metric-card-description{white-space:nowrap;text-overflow:ellipsis;margin-top:5px;overflow:hidden}.reportifact-metric-cards--compact .reportifact-metric-card--mid{border-color:var(--reportifact-tone-mid-border)}.reportifact-metric-cards--compact .reportifact-metric-card--low{border-color:var(--reportifact-tone-low-border)}@media (width<=720px){.reportifact-metric-cards{grid-template-columns:repeat(2,minmax(92px,1fr))}}.reportifact-metric-callout{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:8px;overflow:hidden}.reportifact-metric-callout-header{border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);grid-template-columns:148px minmax(0,1fr);align-items:center;gap:14px;padding:14px 15px;display:grid}.reportifact-metric-callout-label{color:var(--reportifact-text-muted);letter-spacing:.04em;text-transform:uppercase;font-size:11px;font-weight:750}.reportifact-metric-callout-value{margin-top:5px;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:28px;line-height:1;display:block}.reportifact-metric-callout-value--low{color:var(--reportifact-tone-low)}.reportifact-metric-callout-value--mid{color:var(--reportifact-tone-mid)}.reportifact-metric-callout-value--high{color:var(--reportifact-tone-high)}.reportifact-metric-callout-description,.reportifact-metric-callout-body{color:var(--reportifact-text-muted)}.reportifact-metric-callout-body{padding:13px 15px}.reportifact-image-gallery{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;display:grid;container-type:inline-size}.reportifact-image-gallery-tile{min-width:0}.reportifact-image-gallery-frame{aspect-ratio:var(--reportifact-gallery-aspect-ratio);background:var(--reportifact-bg-subtle);border-radius:8px;position:relative;overflow:hidden}.reportifact-image-gallery-image,.reportifact-image-gallery-overlay{width:100%;height:100%;position:absolute;inset:0}.reportifact-image-gallery-image--contain{object-fit:contain}.reportifact-image-gallery-image--cover{object-fit:cover}.reportifact-image-gallery-overlay{pointer-events:none}.reportifact-image-gallery-empty{height:100%;color:var(--reportifact-text-muted);justify-content:center;align-items:center;font-size:12px;display:flex}.reportifact-image-gallery-skeleton{height:100%;min-height:160px}.reportifact-image-gallery-more{color:var(--reportifact-accent);cursor:pointer;font:inherit;text-align:left;background:0 0;border:0;margin-top:10px;padding:0;font-size:14px;font-weight:600}.reportifact-image-gallery-more:hover{text-decoration:underline}@container (width<=720px){.reportifact-image-gallery{grid-template-columns:repeat(2,minmax(0,1fr))}}.reportifact{--reportifact-bg:#fff;--reportifact-toc-bg:#fff;--reportifact-bg-subtle:#f8fafc;--reportifact-bg-muted:#f1f5f9;--reportifact-bg-overlay:#ffffffe6;--reportifact-text:#1f2937;--reportifact-text-muted:#64748b;--reportifact-text-faint:#94a3b8;--reportifact-border:#e2e8f0;--reportifact-error-bg:#fef2f2;--reportifact-error-text:#dc2626;--reportifact-highlight:#fef08a;--reportifact-accent:#0ea5e9;--reportifact-focus-border:#3b82f6;--reportifact-tone-low:#ef4444;--reportifact-tone-low-bg:#fee2e2;--reportifact-tone-low-border:#fecaca;--reportifact-tone-mid:#d97706;--reportifact-tone-mid-bg:#fef3c7;--reportifact-tone-mid-border:#fde68a;--reportifact-tone-high:#059669;--reportifact-tone-high-bg:#d1fae5;--reportifact-tone-high-border:#a7f3d0;--reportifact-widget-gap:16px;--reportifact-section-gap:32px;color:var(--reportifact-text);flex-direction:column;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,sans-serif;font-size:14px;line-height:1.5;display:flex}.dark .reportifact{--reportifact-tone-low:#f06464;--reportifact-tone-low-bg:#ef444429;--reportifact-tone-low-border:#ef444452;--reportifact-tone-mid:#d99a2b;--reportifact-tone-mid-bg:#d9770629;--reportifact-tone-mid-border:#d9770652;--reportifact-tone-high:#41b883;--reportifact-tone-high-bg:#10b98124;--reportifact-tone-high-border:#10b9814d}.reportifact-skeleton-line{background:linear-gradient(90deg, var(--reportifact-border) 25%, var(--reportifact-bg-muted) 50%, var(--reportifact-border) 75%);background-size:200% 100%;border-radius:4px;height:16px;animation:1.5s ease-in-out infinite reportifact-skeleton-pulse}.reportifact-skeleton-column{flex-direction:column;gap:12px;display:flex}@keyframes reportifact-skeleton-pulse{0%{background-position:200% 0}to{background-position:-200% 0}}.reportifact-widget-host{width:100%;min-width:0}pre code.hljs{padding:1em;display:block;overflow-x:auto}code.hljs{padding:3px 5px}.hljs{color:#2f3337;background:#f6f6f6}.hljs-subst{color:#2f3337}.hljs-comment{color:#656e77}.hljs-keyword,.hljs-selector-tag,.hljs-meta .hljs-keyword,.hljs-doctag,.hljs-section,.hljs-attr{color:#015692}.hljs-attribute{color:#803378}.hljs-name,.hljs-type,.hljs-number,.hljs-selector-id,.hljs-quote,.hljs-template-tag{color:#b75501}.hljs-selector-class{color:#015692}.hljs-string,.hljs-regexp,.hljs-symbol,.hljs-variable,.hljs-template-variable,.hljs-link,.hljs-selector-attr{color:#54790d}.hljs-meta,.hljs-selector-pseudo{color:#015692}.hljs-built_in,.hljs-title,.hljs-literal{color:#b75501}.hljs-bullet,.hljs-code{color:#535a60}.hljs-meta .hljs-string{color:#54790d}.hljs-deletion{color:#c02d2e}.hljs-addition{color:#2f6f44}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.reportifact-markdown h1,.reportifact-markdown h2,.reportifact-markdown h3,.reportifact-markdown h4,.reportifact-markdown h5,.reportifact-markdown h6{margin-top:10px;margin-bottom:5px;font-size:15px;font-weight:500}.reportifact-markdown p{margin:0 0 5px}.reportifact-markdown pre{max-width:100%;overflow-x:auto}.reportifact-markdown pre code.hljs{box-sizing:border-box;border-radius:4px;width:100%;margin-bottom:5px;padding:10px;font-size:13px;display:block}.reportifact-markdown img{max-width:100%;height:auto}.reportifact-markdown a{color:var(--reportifact-accent);text-decoration:underline}.reportifact-markdown a:hover{text-decoration:none}.reportifact-table-container{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);border-radius:8px;width:fit-content;max-width:100%;margin-inline:0 auto;font-size:13px;overflow:hidden}.reportifact-table-header{border-bottom:1px solid var(--reportifact-border);justify-content:space-between;align-items:center;padding:10px;display:flex}.reportifact-table-filter-wrapper{align-items:center;display:flex;position:relative}.reportifact-table-filter{border:1px solid var(--reportifact-border);background:var(--reportifact-bg-muted);color:var(--reportifact-text-muted);border-radius:4px;width:180px;padding:4px 28px 4px 30px;font-size:13px;transition:border-color .15s,background .15s}.reportifact-table-filter-icon{color:var(--reportifact-text-faint);width:15px;height:15px;position:absolute;left:8px}.reportifact-table-filter:focus{border-color:var(--reportifact-text-faint);background:var(--reportifact-bg);outline:none}.reportifact-table-filter::placeholder{color:var(--reportifact-text-faint)}.reportifact-table-filter-loading{padding-right:28px}.reportifact-table-filter-spinner{color:var(--reportifact-text-muted);align-items:center;animation:1s linear infinite spin;display:flex;position:absolute;right:8px}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.reportifact-table-spacer{flex:1}.reportifact-table-pagination{color:var(--reportifact-text-muted);align-items:center;font-size:13px;display:flex}.reportifact-table-pagination-btn{width:28px;height:28px;color:var(--reportifact-text-muted);cursor:pointer;background:0 0;border:none;border-radius:4px;justify-content:center;align-items:center;padding:0;transition:color .15s,background .15s;display:flex}.reportifact-table-pagination-btn:hover:not(:disabled){color:var(--reportifact-text);background:var(--reportifact-bg-muted)}.reportifact-table-pagination-btn:disabled{color:var(--reportifact-text-faint);cursor:default}.reportifact-table-pagination-info{white-space:nowrap;padding:0 4px}.reportifact-table-scroll{scrollbar-width:thin;scrollbar-color:var(--reportifact-border) var(--reportifact-bg-subtle);position:relative;overflow:auto visible}.reportifact-table-scroll::-webkit-scrollbar{height:10px}.reportifact-table-scroll::-webkit-scrollbar-track{background:var(--reportifact-bg-subtle)}.reportifact-table-scroll::-webkit-scrollbar-thumb{background:var(--reportifact-border);border:2px solid var(--reportifact-bg-subtle);border-radius:999px}.reportifact-table-scroll::-webkit-scrollbar-thumb:hover{background:var(--reportifact-text-faint)}.reportifact-table-element{border-collapse:collapse;table-layout:auto;width:100%}.reportifact-table-th{text-align:left;color:var(--reportifact-text);background:var(--reportifact-bg-subtle);border-bottom:2px solid var(--reportifact-border);white-space:nowrap;-webkit-user-select:none;user-select:none;padding:6px 12px;font-weight:600}.reportifact-table-th-sortable{cursor:pointer}.reportifact-table-th-sortable:hover{background:var(--reportifact-bg-muted)}.reportifact-table-th-fixed{z-index:2;background:var(--reportifact-bg-subtle);box-shadow:inset -1px 0 0 var(--reportifact-border);position:sticky;left:0}.reportifact-table-th-content{align-items:center;gap:4px;display:flex}.reportifact-table-tooltip{color:var(--reportifact-text-faint);cursor:help;display:inline-flex}.reportifact-table-tooltip svg{width:14px;height:14px}.reportifact-table-sort-icon{margin-left:2px;display:inline-flex}.reportifact-table-sort-icon svg{width:14px;height:14px;color:var(--reportifact-accent)}.reportifact-table-th-sortable:hover .reportifact-table-sort-inactive{opacity:1}.reportifact-table-row{border-bottom:1px solid var(--reportifact-border)}.reportifact-table-row:last-child{border-bottom:none}.reportifact-table-row:hover{background:var(--reportifact-bg-subtle)}.reportifact-table-row-clickable{cursor:pointer}.reportifact-table-container td{white-space:nowrap;background:var(--reportifact-bg);padding:6px 12px}.reportifact-table-td-fixed{z-index:1;background:var(--reportifact-bg);box-shadow:inset -1px 0 0 var(--reportifact-border);position:sticky;left:0}.reportifact-table-row:hover td{background:var(--reportifact-bg-subtle)}.reportifact-table-empty{text-align:center;color:var(--reportifact-text-faint);padding:40px}.reportifact-table-highlight{background:var(--reportifact-highlight);font-weight:inherit;padding:0}.reportifact-table-loading-overlay{background:color-mix(in srgb, var(--reportifact-bg) 90%, transparent);z-index:10;animation:.2s ease-in fadeIn;position:absolute;inset:0}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.reportifact-tensorboard-skeleton,.reportifact-tensorboard-container{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);height:var(--reportifact-chart-height);border-radius:8px;flex-direction:column;padding:16px;display:flex;overflow:hidden}.reportifact-tensorboard-skeleton{flex-direction:column;display:flex}.reportifact-tensorboard-skeleton-body{border-radius:4px;flex:1;width:100%;min-height:0}.reportifact-tensorboard-header{flex-shrink:0;justify-content:center;align-items:center;margin-bottom:12px;display:flex}.reportifact-tensorboard-select{border:1px solid var(--reportifact-border);background-color:var(--reportifact-bg);color:var(--reportifact-text);cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-position:right 10px center;background-repeat:no-repeat;background-size:12px;border-radius:4px;min-width:200px;max-width:100%;padding:6px 32px 6px 12px;font-size:13px;font-weight:600}.reportifact-tensorboard-select:hover{border-color:var(--reportifact-text-faint)}.reportifact-tensorboard-select:focus{border-color:var(--reportifact-focus-border);box-shadow:0 0 0 3px color-mix(in srgb, var(--reportifact-focus-border) 10%, transparent);outline:none}.reportifact-tensorboard-chart{flex:1;width:100%;min-height:0}.reportifact-comparison-matrix-host{width:100%;container:comparison-matrix/inline-size}.reportifact-comparison-matrix-skeleton{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:10px;gap:16px;padding:16px;display:grid}.reportifact-comparison-matrix{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);color:var(--reportifact-text);border-radius:10px;font-size:13px;position:relative;overflow:visible}.reportifact-comparison-matrix-header{border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);border-radius:9px 9px 0 0;justify-content:space-between;align-items:center;gap:12px 24px;min-height:56px;padding:10px 16px;display:flex}.reportifact-comparison-matrix-controls{align-items:center;gap:10px;min-width:0;display:flex}.reportifact-comparison-matrix-segmented{background:var(--reportifact-bg-muted);border-radius:6px;gap:2px;min-width:0;padding:2px;display:inline-flex;overflow-x:auto}.reportifact-comparison-matrix-segmented button,.reportifact-comparison-matrix-pagination button{color:var(--reportifact-text-muted);cursor:pointer;font:inherit;background:0 0;border:0;border-radius:5px}.reportifact-comparison-matrix-segmented button{white-space:nowrap;min-width:40px;padding:3px 8px}.reportifact-comparison-matrix-segmented button:hover,.reportifact-comparison-matrix-pagination button:hover:not(:disabled){background:var(--reportifact-bg);color:var(--reportifact-text)}.reportifact-comparison-matrix-segmented button.is-active{background:var(--reportifact-bg);color:var(--reportifact-text);font-weight:600;box-shadow:0 1px 3px #0f172a1a}.reportifact-comparison-matrix-search{width:170px;min-width:120px}.reportifact-comparison-matrix-search input{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);width:100%;color:var(--reportifact-text);font:inherit;border-radius:6px;padding:6px 9px}.reportifact-comparison-matrix-pagination{color:var(--reportifact-text-muted);white-space:nowrap;align-items:center;gap:5px;display:inline-flex}.reportifact-comparison-matrix-pagination button{width:26px;height:26px;font-size:18px}.reportifact-comparison-matrix-pagination button:disabled{cursor:default;opacity:.35}.reportifact-comparison-matrix-legend{flex-wrap:wrap;justify-content:flex-end;gap:7px 18px;min-width:0;display:flex}.reportifact-comparison-matrix-legend-item{align-items:center;gap:7px;min-width:0;display:inline-flex}.reportifact-comparison-matrix-legend-name{max-width:210px;color:var(--reportifact-text-muted);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.reportifact-comparison-matrix-shape{background:var(--reportifact-comparison-model-color);border:0;border-radius:50%;flex:none;width:10px;height:10px;display:inline-block}.reportifact-comparison-matrix-table-wrap{width:100%;overflow:visible}.reportifact-comparison-matrix table{border-collapse:collapse;table-layout:fixed;width:100%}.reportifact-comparison-matrix-class-col{width:160px}.reportifact-comparison-matrix th,.reportifact-comparison-matrix td{border-bottom:1px solid var(--reportifact-border);text-align:left;padding:0 14px}.reportifact-comparison-matrix tbody tr:last-child th,.reportifact-comparison-matrix tbody tr:last-child td{border-bottom:0}.reportifact-comparison-matrix thead th{background:var(--reportifact-bg);height:52px;color:var(--reportifact-text-muted);letter-spacing:.04em;text-transform:uppercase;font-size:11px;font-weight:600}.reportifact-comparison-matrix tbody th,.reportifact-comparison-matrix tbody td{height:54px}.reportifact-comparison-matrix tbody tr:hover>*{background:color-mix(in srgb, var(--reportifact-bg-subtle) 58%, transparent)}.reportifact-comparison-matrix-class-column{text-overflow:ellipsis;white-space:nowrap;font-weight:600;overflow:hidden}.reportifact-comparison-matrix tbody .reportifact-comparison-matrix-class-column{letter-spacing:0;text-transform:none;font-size:14px}.reportifact-comparison-matrix-score-column{padding-left:9px!important;padding-right:9px!important}.reportifact-comparison-matrix-axis{height:16px;color:var(--reportifact-text-muted);font-variant-numeric:tabular-nums;letter-spacing:0;text-transform:none;margin:0 6px;font-size:12px;font-weight:700;position:relative}.reportifact-comparison-matrix-axis>span{position:absolute;top:50%;transform:translate(-50%,-50%)}.reportifact-comparison-matrix-axis>span:first-child{transform:translateY(-50%)}.reportifact-comparison-matrix-axis>span:last-child{transform:translate(-100%,-50%)}.reportifact-comparison-matrix-plot{width:100%;height:44px;position:relative}.reportifact-comparison-matrix-plot-inner{border-right:1px solid var(--reportifact-border);border-left:1px solid var(--reportifact-border);position:absolute;inset:0 6px}.reportifact-comparison-matrix-track{background:var(--reportifact-border);height:1px;position:absolute;top:50%;left:0;right:0;transform:translateY(-50%)}.reportifact-comparison-matrix-tick{background:color-mix(in srgb, var(--reportifact-text-muted) 45%, transparent);border-radius:1px;width:1px;height:8px;position:absolute;top:50%;transform:translate(-50%,-50%)}.reportifact-comparison-matrix-marker{z-index:1;outline:none;place-items:center;width:20px;height:20px;display:grid;position:absolute;transform:translate(-50%,-50%)}.reportifact-comparison-matrix-marker.is-edge-start{transform:translateY(-50%)}.reportifact-comparison-matrix-marker.is-edge-end{transform:translate(-100%,-50%)}.reportifact-comparison-matrix-marker:hover,.reportifact-comparison-matrix-marker:focus-visible{z-index:4}.reportifact-comparison-matrix-marker:focus-visible{box-shadow:0 0 0 2px var(--reportifact-focus-border);border-radius:999px}.reportifact-comparison-matrix-marker .reportifact-comparison-matrix-shape{width:11px;height:11px}.reportifact-comparison-matrix-tooltip{z-index:5;visibility:hidden;border:1px solid var(--reportifact-border);background:var(--reportifact-bg);opacity:0;pointer-events:none;border-radius:7px;grid-template-columns:10px minmax(0,1fr) auto;align-items:center;gap:7px;min-width:190px;max-width:280px;padding:8px 9px;transition:opacity .1s,transform .1s,visibility .1s;display:grid;position:absolute;top:calc(100% + 5px);left:50%;transform:translate(-50%)translateY(-2px);box-shadow:0 7px 20px #0f172a2b}.reportifact-comparison-matrix-marker.is-edge-start .reportifact-comparison-matrix-tooltip{left:0;transform:translateY(-2px)}.reportifact-comparison-matrix-marker.is-edge-end .reportifact-comparison-matrix-tooltip{left:auto;right:0;transform:translateY(-2px)}.reportifact-comparison-matrix-marker:hover .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker:focus-visible .reportifact-comparison-matrix-tooltip{visibility:visible;opacity:1;transform:translate(-50%)translateY(0)}.reportifact-comparison-matrix-marker.is-edge-start:hover .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker.is-edge-start:focus-visible .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker.is-edge-end:hover .reportifact-comparison-matrix-tooltip,.reportifact-comparison-matrix-marker.is-edge-end:focus-visible .reportifact-comparison-matrix-tooltip{transform:translateY(0)}.reportifact-comparison-matrix-tooltip .reportifact-comparison-matrix-shape{width:9px;height:9px}.reportifact-comparison-matrix-tooltip span:nth-child(2){text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.reportifact-comparison-matrix-tooltip strong{font-variant-numeric:tabular-nums;font-size:11px}.reportifact-comparison-matrix-values-column{padding-left:16px!important;padding-right:16px!important}.reportifact-comparison-matrix-value-grid{text-align:right;align-items:center;gap:10px;display:grid}.reportifact-comparison-matrix-value-grid>span{color:var(--reportifact-comparison-model-color);font-variant-numeric:tabular-nums;text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:500;overflow:hidden}.reportifact-comparison-matrix-value-grid>span.is-best{font-weight:700}.reportifact-comparison-matrix-value-grid>span.is-missing{color:var(--reportifact-text-faint)}.reportifact-comparison-matrix-no-values{color:var(--reportifact-text-faint);white-space:nowrap;font-size:10px;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.reportifact-comparison-matrix-empty{color:var(--reportifact-text-faint);text-align:center;padding:28px}.reportifact-comparison-matrix-visually-hidden{clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;width:1px;height:1px;position:absolute;overflow:hidden}@container comparison-matrix (width<=900px){.reportifact-comparison-matrix-header{flex-wrap:wrap;gap:10px 16px}.reportifact-comparison-matrix-legend{flex:100%;justify-content:flex-start}}@container comparison-matrix (width<=600px){.reportifact-comparison-matrix-header{padding:10px 12px}.reportifact-comparison-matrix-controls{flex-wrap:wrap;flex:100%}.reportifact-comparison-matrix-segmented{flex:100%}.reportifact-comparison-matrix-segmented button{flex:1 0 auto}.reportifact-comparison-matrix-search{flex:150px}.reportifact-comparison-matrix-class-col{width:120px}}.reportifact-model-comparison-gallery{grid-template-columns:repeat(var(--reportifact-model-comparison-gallery-columns,4), minmax(0, 1fr));gap:12px;display:grid;container-type:inline-size}.reportifact-model-comparison-gallery-tile{width:100%;min-width:0;color:inherit;font:inherit;text-align:left}.reportifact-model-comparison-gallery-tile--rich{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:10px;overflow:hidden}.reportifact-model-comparison-gallery-tile--actionable{cursor:pointer;transition:border-color .15s;position:relative}.reportifact-model-comparison-gallery-tile--actionable:hover{border-color:color-mix(in srgb, var(--reportifact-accent) 55%, var(--reportifact-border))}.reportifact-model-comparison-gallery-action{z-index:1;border-radius:inherit;cursor:pointer;background:0 0;border:0;padding:0;position:absolute;inset:0}.reportifact-model-comparison-gallery-action:focus-visible{box-shadow:inset 0 0 0 2px var(--reportifact-accent);outline:0}.reportifact-model-comparison-gallery-sr-only{clip:rect(0, 0, 0, 0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.reportifact-model-comparison-gallery-frame{aspect-ratio:var(--reportifact-model-comparison-gallery-aspect-ratio);background:var(--reportifact-bg-subtle);border-radius:8px;position:relative;overflow:hidden}.reportifact-model-comparison-gallery-tile--rich .reportifact-model-comparison-gallery-frame{border-bottom:1px solid var(--reportifact-border);border-radius:0}.reportifact-model-comparison-gallery-image,.reportifact-model-comparison-gallery-overlay{width:100%;height:100%;position:absolute;inset:0}.reportifact-model-comparison-gallery-image--contain{object-fit:contain}.reportifact-model-comparison-gallery-image--cover{object-fit:cover}.reportifact-model-comparison-gallery-overlay{pointer-events:none}.reportifact-model-comparison-gallery-empty{height:100%;color:var(--reportifact-text-muted);flex-direction:column;justify-content:center;align-items:center;gap:8px;font-size:12px;display:flex}.reportifact-model-comparison-gallery-content{padding:10px 12px 11px}.reportifact-model-comparison-gallery-label{color:var(--reportifact-text);text-overflow:ellipsis;white-space:nowrap;font-size:13px;font-weight:650;line-height:1.35;overflow:hidden}.reportifact-model-comparison-gallery-details{gap:4px;margin:7px 0 0;display:grid}.reportifact-model-comparison-gallery-detail{grid-template-columns:fit-content(50%) minmax(0,1fr);align-items:baseline;gap:10px;font-size:12px;line-height:1.35;display:grid}.reportifact-model-comparison-gallery-detail dt{color:var(--reportifact-text-muted);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.reportifact-model-comparison-gallery-detail dd{overflow-wrap:break-word;min-width:0;color:var(--reportifact-text);font-variant-numeric:tabular-nums;text-align:right;margin:0;font-weight:600}.reportifact-model-comparison-gallery-detail:first-child{border-bottom:1px solid var(--reportifact-border);margin-bottom:2px;padding-bottom:6px}.reportifact-model-comparison-gallery-detail:first-child dd{font-size:15px;font-weight:700}.reportifact-model-comparison-gallery-skeleton{height:100%;min-height:160px}.reportifact-model-comparison-gallery-more{color:var(--reportifact-accent);cursor:pointer;font:inherit;text-align:left;background:0 0;border:0;margin-top:10px;padding:0;font-size:14px;font-weight:600}.reportifact-model-comparison-gallery-more:hover{text-decoration:underline}@container (width<=720px){.reportifact-model-comparison-gallery{grid-template-columns:repeat(var(--reportifact-model-comparison-gallery-narrow-columns,2), minmax(0, 1fr))}.reportifact-model-comparison-gallery-detail{grid-template-columns:minmax(64px,1fr) minmax(0,2fr)}}@container (width<=420px){.reportifact-model-comparison-gallery{grid-template-columns:minmax(0,1fr)}}.reportifact-card{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:8px;min-width:0;height:100%;overflow:hidden}.reportifact-card--subtle{background:var(--reportifact-bg-subtle)}.reportifact-card--dashed{background:var(--reportifact-bg-subtle);border-style:dashed}.reportifact-card-header{border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);justify-content:space-between;align-items:center;gap:12px;min-width:0;padding:13px 15px;display:flex}.reportifact-card-header>div{min-width:0}.reportifact-card--subtle .reportifact-card-header{border-bottom:0;padding-bottom:0}.reportifact-card-title{overflow-wrap:anywhere;color:var(--reportifact-text);font-size:15px;font-weight:700}.reportifact-card--subtle .reportifact-card-title{color:var(--reportifact-text-muted);letter-spacing:.04em;text-transform:uppercase;font-size:11px}.reportifact-card-subtitle{color:var(--reportifact-text-muted);margin-top:4px;font-size:12px}.reportifact-card-badge{border-radius:999px;flex:none;align-items:center;min-height:24px;padding:3px 9px;font-size:12px;font-weight:600;display:inline-flex}.reportifact-card-badge--none{background:var(--reportifact-bg-subtle);color:var(--reportifact-text-muted)}.reportifact-card-badge--low{background:var(--reportifact-tone-low-bg);color:var(--reportifact-tone-low)}.reportifact-card-badge--mid{background:var(--reportifact-tone-mid-bg);color:var(--reportifact-tone-mid)}.reportifact-card-badge--high{background:var(--reportifact-tone-high-bg);color:var(--reportifact-tone-high)}.reportifact-card-body{min-width:0;padding:15px}.reportifact-card--subtle .reportifact-card-body{padding-top:12px}.reportifact-card-body p{margin:0 0 6px}.reportifact-card-body p:last-child{margin-bottom:0}.reportifact-card-body table{table-layout:auto;border-collapse:collapse;width:100%;max-width:100%;font-size:inherit;background:0 0;border:0;border-radius:0;margin-top:12px;overflow:visible}.reportifact-card-body table:first-child{margin-top:0}.reportifact-card-body tr{vertical-align:top!important}.reportifact-card-body th,.reportifact-card-body td{border-bottom:1px solid var(--reportifact-border);text-align:left;word-break:normal;overflow-wrap:anywhere;padding:8px 10px;vertical-align:top!important;white-space:normal!important}.reportifact-card-body th{color:var(--reportifact-text-muted);letter-spacing:.04em;text-transform:uppercase;font-size:11px;font-weight:700}.reportifact-card-body td{color:var(--reportifact-text-muted)}.reportifact-card-body td:first-child{width:1%;color:var(--reportifact-text);font-weight:700;white-space:nowrap!important}.reportifact-card-body td:nth-child(2),.reportifact-card-body th:nth-child(2){width:auto;white-space:normal!important}.reportifact-card-body tr:last-child td{border-bottom:0}.reportifact-help-tooltip{vertical-align:middle;align-items:center;margin-left:6px;display:inline-flex;position:relative}.reportifact-help-tooltip-trigger{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);width:18px;height:18px;color:var(--reportifact-text-muted);cursor:help;font:inherit;border-radius:999px;justify-content:center;align-items:center;padding:0;font-size:12px;font-weight:700;line-height:1;display:inline-flex}.reportifact-help-tooltip-content{z-index:50;border:1px solid var(--reportifact-border);background:var(--reportifact-bg);width:max-content;max-width:min(520px,80vw);color:var(--reportifact-text);opacity:0;pointer-events:none;white-space:normal;border-radius:8px;padding:10px 12px;font-size:13px;font-weight:450;line-height:1.4;position:absolute;top:50%;left:calc(100% + 12px);transform:translateY(-50%)}.reportifact-help-tooltip-content:after{content:"";border-bottom:1px solid var(--reportifact-border);border-left:1px solid var(--reportifact-border);background:var(--reportifact-bg);width:10px;height:10px;position:absolute;top:50%;left:-6px;transform:translateY(-50%)rotate(45deg)}.reportifact-help-tooltip:hover .reportifact-help-tooltip-content,.reportifact-help-tooltip:focus-within .reportifact-help-tooltip-content{opacity:1}.reportifact-metric-table{border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:8px;overflow:hidden}.reportifact-metric-table-header{border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);padding:13px 15px}.reportifact-metric-table-header strong{font-size:15px;display:block}.reportifact-metric-table-header div{color:var(--reportifact-text-muted);margin-top:4px;font-size:12px}.reportifact-metric-table-columns{border-bottom:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);grid-template-columns:148px 72px minmax(0,1fr);gap:12px;padding:9px 15px;display:grid}.reportifact-metric-table.is-compare .reportifact-metric-table-columns{grid-template-columns:148px 72px 72px minmax(0,1fr)}.reportifact-metric-table-column{text-align:right;color:var(--reportifact-text-muted);white-space:nowrap;text-overflow:ellipsis;font-size:12px;font-weight:600;overflow:hidden}.reportifact-metric-table-body{gap:9px 12px;padding:12px 15px;display:grid}.reportifact-metric-table-row{grid-template-columns:148px 72px minmax(0,1fr);align-items:baseline;gap:12px;display:grid}.reportifact-metric-table.is-compare .reportifact-metric-table-row{grid-template-columns:148px 72px 72px minmax(0,1fr)}.reportifact-metric-table-name{white-space:nowrap}.reportifact-metric-table-value{text-align:right;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace}.reportifact-metric-table-value--low{color:var(--reportifact-tone-low)}.reportifact-metric-table-value--mid{color:var(--reportifact-tone-mid)}.reportifact-metric-table-value--high{color:var(--reportifact-tone-high)}.reportifact-metric-table-description{color:var(--reportifact-text-muted)}@media (width<=720px){.reportifact-metric-table-row{grid-template-columns:1fr auto}.reportifact-metric-table.is-compare .reportifact-metric-table-row{grid-template-columns:1fr auto auto}.reportifact-metric-table-description{grid-column:1/-1}}.reportifact-notice{border:1px solid var(--reportifact-border);background:var(--reportifact-bg-subtle);border-radius:8px;padding:16px}.reportifact-notice--dashed{border-style:dashed}.reportifact-notice-title{margin-bottom:6px;font-weight:750;display:block}.reportifact-notice-body{color:var(--reportifact-text-muted)}.reportifact-scope{z-index:30;background:var(--reportifact-bg);border-bottom:1px solid var(--reportifact-border);align-items:center;gap:12px;margin-bottom:8px;padding:10px 0;display:flex;position:sticky;top:0}.reportifact-scope-anchor{color:var(--reportifact-text-muted);white-space:nowrap;font-size:13px}.reportifact-scope-crumbs{align-items:center;gap:5px;display:inline-flex}.reportifact-scope-tag-icon{color:var(--reportifact-text-faint);opacity:.6;margin-right:1px;display:inline-flex}.reportifact-scope-dd{display:flex;position:relative}.reportifact-scope-dim{appearance:none;font:inherit;color:var(--reportifact-text-muted);cursor:pointer;white-space:nowrap;background:0 0;border:none;border-radius:6px;padding:6px 9px;font-size:13px;font-weight:600;transition:background .12s,color .12s}.reportifact-scope-dim:hover{background:var(--reportifact-bg-muted);color:var(--reportifact-text)}.reportifact-scope-sep{color:var(--reportifact-border);font-size:14px}.reportifact-scope-val{appearance:none;background:var(--reportifact-bg-muted);font:inherit;color:var(--reportifact-text);cursor:pointer;white-space:nowrap;border:none;border-radius:6px;align-items:center;gap:6px;padding:6px 9px;font-size:13px;font-weight:600;transition:background .12s;display:inline-flex}.reportifact-scope-val:hover{background:var(--reportifact-border)}.reportifact-scope-chevron{color:var(--reportifact-text-muted);opacity:.6;display:inline-flex}.reportifact-scope-menu{background:var(--reportifact-bg);border:1px solid var(--reportifact-border);z-index:60;border-radius:8px;min-width:200px;max-height:280px;padding:5px;position:absolute;top:calc(100% + 6px);left:0;overflow:auto;box-shadow:0 10px 28px #10182824}.reportifact-scope-item{appearance:none;width:100%;font:inherit;color:var(--reportifact-text);cursor:pointer;white-space:nowrap;text-align:left;background:0 0;border:none;border-radius:6px;align-items:center;gap:8px;padding:7px 9px;font-size:13px;font-weight:500;transition:background .12s,color .12s;display:flex}.reportifact-scope-item:hover{background:var(--reportifact-bg-muted)}.reportifact-scope-item.is-active{background:var(--reportifact-bg-muted);color:var(--reportifact-accent)}.reportifact-scope-check{width:14px;color:var(--reportifact-accent);opacity:0;flex:none;justify-content:center;align-items:center;display:inline-flex}.reportifact-scope-check.is-on{opacity:1}.reportifact-scope-meta{color:var(--reportifact-text-faint);margin-left:auto;padding-left:16px;font-size:11px;font-weight:500}.reportifact-scope-meta-num{font-variant-numeric:tabular-nums}.reportifact-scope-reset{appearance:none;height:30px;color:var(--reportifact-text-muted);font:inherit;cursor:pointer;background:0 0;border:none;border-radius:6px;align-items:center;gap:5px;padding:0 9px;font-size:12.5px;font-weight:500;transition:background .12s,color .12s;display:inline-flex}.reportifact-scope-reset:hover{background:var(--reportifact-bg-muted);color:var(--reportifact-text)}.reportifact-unsupported-widget{border:1px dashed var(--reportifact-border);color:var(--reportifact-text-muted);background:var(--reportifact-bg-subtle);border-radius:8px;padding:16px}.reportifact-toc-wrapper[data-v-abab526d]{z-index:10;background:var(--reportifact-toc-bg);border-bottom:1px solid var(--reportifact-border);box-shadow:0 -16px 0 16px var(--reportifact-toc-bg);margin:-8px 0 24px;position:sticky;top:0}.reportifact-toc-container[data-v-abab526d]{scrollbar-width:none;-ms-overflow-style:none;-webkit-overflow-scrolling:touch;padding:8px 0;overflow:auto hidden}.reportifact-toc-container[data-v-abab526d]::-webkit-scrollbar{display:none}.reportifact-toc-gradient[data-v-abab526d]{pointer-events:none;z-index:2;width:40px;position:absolute;top:0;bottom:0}.reportifact-toc-gradient-left[data-v-abab526d]{background:linear-gradient(to right, var(--reportifact-toc-bg), transparent);left:0}.reportifact-toc-gradient-right[data-v-abab526d]{background:linear-gradient(to left, var(--reportifact-toc-bg), transparent);right:0}.reportifact-toc[data-v-abab526d]{gap:8px;min-width:100%;padding:0;display:inline-flex}.reportifact-toc-item[data-v-abab526d]{color:var(--reportifact-text-muted);cursor:pointer;white-space:nowrap;background:0 0;border:none;border-radius:6px;padding:6px 12px;font-family:inherit;font-size:13px;font-weight:500;transition:all .2s}.reportifact-toc-item[data-v-abab526d]:hover{background:var(--reportifact-bg-muted);color:var(--reportifact-text)}.reportifact-toc-item-active[data-v-abab526d]{background:var(--reportifact-border);color:var(--reportifact-text)}.reportifact-section{gap:var(--reportifact-widget-gap);margin-bottom:var(--reportifact-section-gap);flex-direction:column;scroll-margin-top:60px;display:flex;container-type:inline-size}.reportifact-section:last-child{margin-bottom:0}.reportifact-section-title{margin-bottom:-10px;font-size:17px;font-weight:600}.reportifact-widget-article,.reportifact-grid-item{width:100%;min-width:0}.reportifact-widget-article-chart{width:100%}.reportifact-grid{grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr));align-items:stretch;gap:16px;display:grid}.reportifact-grid[data-layout="1"],.reportifact-grid[data-layout=auto][data-count="1"]{grid-template-columns:minmax(0,1fr)}.reportifact-grid[data-layout="1-2"]{grid-template-columns:minmax(0,1fr) minmax(0,2fr)}.reportifact-grid[data-layout="2"],.reportifact-grid[data-layout=auto][data-count="2"]{grid-template-columns:repeat(2,minmax(0,1fr))}.reportifact-grid[data-layout="3"],.reportifact-grid[data-layout=auto][data-count="3"]{grid-template-columns:repeat(3,minmax(0,1fr))}.reportifact-grid[data-layout="4"],.reportifact-grid[data-layout="4-2"],.reportifact-grid[data-layout=auto][data-count="4"]{grid-template-columns:repeat(4,minmax(0,1fr))}.reportifact-grid[data-layout=auto][data-count="5"]{grid-template-columns:repeat(3,minmax(0,1fr))}.reportifact-grid[data-layout="6-3-2"],.reportifact-grid[data-layout=auto][data-count="6"]{grid-template-columns:repeat(6,minmax(0,1fr))}.reportifact-grid-item{display:flex}.reportifact-grid-item-chart{min-width:0}.reportifact-grid-item>*{flex:auto;min-width:0}.reportifact-grid-item-table>.reportifact-widget-wrapper,.reportifact-grid-item-table>.reportifact-widget-wrapper>.reportifact-widget-content{flex-direction:column;height:100%;display:flex}.reportifact-grid-item-table .reportifact-table-container{flex-direction:column;width:100%;height:100%;display:flex}.reportifact-grid-item-table .reportifact-table-scroll{flex:auto;min-height:0}.reportifact-markdown table{border-collapse:separate;border-spacing:0;border:1px solid var(--reportifact-border);background:var(--reportifact-bg);border-radius:12px;width:min(100%,860px);font-size:13px;overflow:hidden}.reportifact-markdown th,.reportifact-markdown td{border-bottom:1px solid var(--reportifact-border);text-align:left;vertical-align:middle;white-space:nowrap;padding:10px 14px}.reportifact-markdown th{background:var(--reportifact-bg-subtle);color:var(--reportifact-text-muted);letter-spacing:.04em;text-transform:uppercase;font-size:11px;font-weight:700}.reportifact-markdown tr:last-child td{border-bottom:0}.reportifact-markdown td:nth-child(3),.reportifact-markdown th:nth-child(3){text-align:right}.reportifact-markdown td code{color:var(--reportifact-text);background:var(--reportifact-bg-muted);border:1px solid var(--reportifact-border);border-radius:6px;padding:2px 6px;font-size:13px}.reportifact-markdown table a{min-width:86px;color:var(--reportifact-accent);background:color-mix(in srgb, var(--reportifact-accent) 10%, transparent);border-radius:999px;justify-content:center;align-items:center;padding:5px 10px;font-size:12px;font-weight:650;text-decoration:none;display:inline-flex}.reportifact-markdown table a:hover{background:color-mix(in srgb, var(--reportifact-accent) 16%, transparent);text-decoration:none}@container (width<=960px){.reportifact-grid[data-layout="6-3-2"],.reportifact-grid[data-layout=auto][data-count="6"]{grid-template-columns:repeat(3,minmax(0,1fr))}.reportifact-grid[data-layout=auto][data-count="5"]{grid-template-columns:repeat(2,minmax(0,1fr))}}@container (width<=1100px){.reportifact-grid[data-layout="4-2"],.reportifact-grid[data-layout=auto][data-count="4"],.reportifact-grid[data-layout="6-3-2"],.reportifact-grid[data-layout=auto][data-count="5"],.reportifact-grid[data-layout=auto][data-count="6"]{grid-template-columns:repeat(2,minmax(0,1fr))}.reportifact-grid[data-layout="1-2"],.reportifact-grid[data-layout="2"],.reportifact-grid[data-layout="3"],.reportifact-grid[data-layout="4"],.reportifact-grid[data-layout=auto][data-count="2"],.reportifact-grid[data-layout=auto][data-count="3"]{grid-template-columns:minmax(0,1fr)}}
2
+ /*$vite$:1*/
@@ -0,0 +1,55 @@
1
+ import { computed as e, onMounted as t, ref as n, watch as r } from "vue";
2
+ //#region src/composables/useFetch.ts
3
+ function i(e, i = {}) {
4
+ let { immediate: a = !0, transformUrl: o, onSuccess: s, onError: c } = i, l = n(!0), u = n(null);
5
+ async function d() {
6
+ try {
7
+ let t = o ? o(e.value) : e.value;
8
+ if (!t || t === "") {
9
+ l.value = !1;
10
+ return;
11
+ }
12
+ l.value = !0, u.value = null;
13
+ let n = await fetch(t);
14
+ if (!n.ok) throw Error(`HTTP ${n.status}: ${n.statusText}`);
15
+ s && await s(n);
16
+ } catch (e) {
17
+ let t = e instanceof Error ? e : Error(String(e));
18
+ u.value = t.message, c && c(t);
19
+ } finally {
20
+ l.value = !1;
21
+ }
22
+ }
23
+ return r(e, (e) => {
24
+ (a || e && e !== "") && d();
25
+ }), a && t(() => {
26
+ d();
27
+ }), {
28
+ loading: l,
29
+ error: u,
30
+ fetchData: d
31
+ };
32
+ }
33
+ //#endregion
34
+ //#region src/portable/usePortableSource.ts
35
+ function a(t, n) {
36
+ let a = e(() => t.data !== void 0), { loading: o, error: s, fetchData: c } = i(e(() => a.value ? "" : t.src ?? t.url ?? ""), { async onSuccess(e) {
37
+ await n(await e.json());
38
+ } }), l = e(() => !a.value && o.value), u = e(() => a.value ? null : t.src || t.url ? s.value : "Resource not found in asset");
39
+ r(() => t.data, (e) => {
40
+ e !== void 0 && n(e);
41
+ }, {
42
+ immediate: !0,
43
+ deep: !0
44
+ });
45
+ function d() {
46
+ t.data === void 0 ? c() : n(t.data);
47
+ }
48
+ return {
49
+ isLoading: l,
50
+ sourceError: u,
51
+ refresh: d
52
+ };
53
+ }
54
+ //#endregion
55
+ export { i as n, a as t };
@@ -0,0 +1 @@
1
+ let e=require("vue");function t(t,n={}){let{immediate:r=!0,transformUrl:i,onSuccess:a,onError:o}=n,s=(0,e.ref)(!0),c=(0,e.ref)(null);async function l(){try{let e=i?i(t.value):t.value;if(!e||e===``){s.value=!1;return}s.value=!0,c.value=null;let n=await fetch(e);if(!n.ok)throw Error(`HTTP ${n.status}: ${n.statusText}`);a&&await a(n)}catch(e){let t=e instanceof Error?e:Error(String(e));c.value=t.message,o&&o(t)}finally{s.value=!1}}return(0,e.watch)(t,e=>{(r||e&&e!==``)&&l()}),r&&(0,e.onMounted)(()=>{l()}),{loading:s,error:c,fetchData:l}}function n(n,r){let i=(0,e.computed)(()=>n.data!==void 0),{loading:a,error:o,fetchData:s}=t((0,e.computed)(()=>i.value?``:n.src??n.url??``),{async onSuccess(e){await r(await e.json())}}),c=(0,e.computed)(()=>!i.value&&a.value),l=(0,e.computed)(()=>i.value?null:n.src||n.url?o.value:`Resource not found in asset`);(0,e.watch)(()=>n.data,e=>{e!==void 0&&r(e)},{immediate:!0,deep:!0});function u(){n.data===void 0?s():r(n.data)}return{isLoading:c,sourceError:l,refresh:u}}Object.defineProperty(exports,"n",{enumerable:!0,get:function(){return t}}),Object.defineProperty(exports,"t",{enumerable:!0,get:function(){return n}});
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const w=require("fs");function b(t){const e=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(t){for(const s in t)if(s!=="default"){const a=Object.getOwnPropertyDescriptor(t,s);Object.defineProperty(e,s,a.get?a:{enumerable:!0,get:()=>t[s]})}}return e.default=t,Object.freeze(e)}const m=b(w);function E(t,e,s){const a=Buffer.isBuffer(t)?t:m.readFileSync(t),c=new Map,i=new Set;if(e&&s&&s>0){const l=B(a,e);if(l===0)return{scalars:c,tags:[]};const n=new Set;if(l<=s)for(let d=0;d<l;d++)n.add(d);else{n.add(0),n.add(l-1);const d=Math.ceil((l-2)/(s-2));for(let f=d;f<l-1;f+=d)n.size<s&&n.add(f)}let g=0,r=0;for(;g<a.length&&!(g+12>a.length);){const d=Number(a.readBigUInt64LE(g));if(d<=0||d>10*1024*1024)break;const f=g+12,u=f+d,h=u+4;if(u>a.length)break;try{const k=a.subarray(f,u);if(p(k)===e){if(n.has(r)){const v=y(k);v&&v.tag===e&&v.value!==void 0&&v.step!==void 0&&(i.add(v.tag),c.has(v.tag)||c.set(v.tag,[]),c.get(v.tag).push({step:v.step,wallTime:v.wallTime||0,value:v.value,tag:v.tag}))}r++}}catch{}g=h}const o=c.get(e);o&&o.sort((d,f)=>d.step-f.step)}else if(e){let l=0;const n=[];for(;l<a.length&&!(l+12>a.length);){const g=Number(a.readBigUInt64LE(l));if(g<=0||g>10*1024*1024)break;const r=l+12,o=r+g,d=o+4;if(o>a.length)break;try{const f=a.subarray(r,o);if(p(f)===e){const h=y(f);h&&h.tag===e&&h.value!==void 0&&h.step!==void 0&&n.push({step:h.step,wallTime:h.wallTime||0,value:h.value,tag:h.tag})}}catch{}l=d}n.length>0&&(i.add(e),c.set(e,n))}else{let l=0;const n=new Map,g=new Map;for(;l<a.length&&!(l+12>a.length);){const r=Number(a.readBigUInt64LE(l));if(r<=0||r>10*1024*1024)break;const o=l+12,d=o+r,f=d+4;if(d>a.length)break;try{const u=a.subarray(o,d),h=y(u);if(h&&h.tag&&h.value!==void 0&&h.step!==void 0){if(e&&h.tag!==e){l=f;continue}i.add(h.tag),g.has(h.tag)||(g.set(h.tag,[]),n.set(h.tag,0)),g.get(h.tag).push({step:h.step,wallTime:h.wallTime||0,value:h.value,tag:h.tag}),n.set(h.tag,n.get(h.tag)+1)}}catch{}l=f}if(s&&s>0)for(const[r,o]of g.entries()){const d=n.get(r);if(d>s){const f=Math.ceil(d/s),u=[];u.push(o[0]),o.length>1&&u.push(o[o.length-1]);for(let h=f;h<o.length-1;h+=f)u.length<s&&u.push(o[h]);u.sort((h,k)=>h.step-k.step),c.set(r,u)}else c.set(r,o)}else for(const[r,o]of g.entries())c.set(r,o)}return{scalars:c,tags:Array.from(i)}}function B(t,e){let s=0,a=0;for(;s<t.length&&!(s+12>t.length);){const c=Number(t.readBigUInt64LE(s));if(c<=0||c>10*1024*1024)break;const i=s+12,l=i+c,n=l+4;if(l>t.length)break;try{const g=t.subarray(i,l);p(g)===e&&a++}catch{}s=n}return a}function p(t){let e=0;for(;e<t.length;){const s=t[e];if(!s)break;const a=s>>3,c=s&7;if(e++,c===2){let i=0,l=0;for(;e<t.length;){const n=t[e++];if(i|=(n&127)<<l,(n&128)===0||(l+=7,l>28))break}if(e+i<=t.length&&i>0){const n=t.subarray(e,e+i);if(e+=i,a===3||a===5)return S(n)}else break}else if(c===1)if(e+8<=t.length)e+=8;else break;else if(c===0)for(;e<t.length&&(t[e++]&128)!==0;);else break}return null}function S(t){let e=0;for(;e<t.length;){const s=t[e];if(!s)break;const a=s>>3,c=s&7;if(e++,c===2&&a===1){let i=0,l=0;for(;e<t.length;){const n=t[e++];if(i|=(n&127)<<l,(n&128)===0||(l+=7,l>28))break}if(e+i<=t.length&&i>0){const n=t.subarray(e,e+i);return T(n)}else break}else break}return null}function T(t){let e=0;if(e>=t.length)return null;const s=t[e],a=s>>3,c=s&7;if(e++,c===2&&(a===1||a===2)){let i=0,l=0;for(;e<t.length;){const n=t[e++];if(i|=(n&127)<<l,(n&128)===0||(l+=7,l>28))break}if(e+i<=t.length&&i>0&&i<1e3){const n=t.subarray(e,e+i);try{const g=n.toString("utf-8");if(g.length>0&&!g.includes("\0")&&/^[\x20-\x7E\/]+$/.test(g))return g}catch{}}}return null}function y(t){let e=0,s,a,c,i;for(;e<t.length;){const l=t[e];if(!l)break;const n=l>>3,g=l&7;if(e++,g===0){let r=0,o=0;for(;e<t.length;){const d=t[e++];if(r|=(d&127)<<o,(d&128)===0||(o+=7,o>63))break}n===2&&(s=r)}else if(g===1){if(e+8<=t.length){const r=t.readDoubleLE(e);e+=8,n===1&&(a=r)}}else if(g===2){let r=0,o=0;for(;e<t.length;){const d=t[e++];if(r|=(d&127)<<o,(d&128)===0)break;o+=7}if(e+r<=t.length){const d=t.subarray(e,e+r);if(e+=r,n===3||n===5){const f=N(d);f.value!==void 0&&(c=f.value),f.tag&&(i=f.tag)}}}else break}return{step:s,wallTime:a,value:c,tag:i}}function N(t){let e=0,s,a;for(;e<t.length;){const c=t[e];if(!c)break;const i=c>>3,l=c&7;if(e++,l===2&&i===1){let n=0,g=0;for(;e<t.length;){const r=t[e++];if(n|=(r&127)<<g,(r&128)===0||(g+=7,g>28))break}if(e+n<=t.length&&n>0){const r=t.subarray(e,e+n);e+=n;const o=I(r);o.value!==void 0&&s===void 0&&(s=o.value),o.tag&&!a&&(a=o.tag)}else break}else break}return{value:s,tag:a}}function I(t){let e=0,s,a;for(;e<t.length;){const c=t[e];if(!c)break;const i=c>>3,l=c&7;if(e++,l===2){let n=0,g=0;for(;e<t.length;){const r=t[e++];if(n|=(r&127)<<g,(r&128)===0||(g+=7,g>28))break}if(e+n<=t.length&&n>0){const r=t.subarray(e,e+n);if(e+=n,i===1||i===2)try{const o=r.toString("utf-8");o.length>0&&!o.includes("\0")&&/^[\x20-\x7E\/]+$/.test(o)&&(a=o)}catch{if(i===1){const o=L(r);o.value!==void 0&&(s=o.value)}}}else break}else if(l===1)if(e+8<=t.length)i===2&&(s=t.readDoubleLE(e)),e+=8;else break;else if(l===5)if(e+4<=t.length&&i===2)s=t.readFloatLE(e),e+=4;else if(e+4<=t.length)e+=4;else break;else if(l===0)for(;e<t.length&&(t[e++]&128)!==0;);else break}return{value:s,tag:a}}function L(t){let e=0,s;for(;e<t.length;){const a=t[e];if(!a)break;const c=a&7;if(e++,c===1)e+8<=t.length&&(s=t.readDoubleLE(e),e+=8);else if(c===2){let i=0,l=0;for(;e<t.length;){const n=t[e++];if(i|=(n&127)<<l,(n&128)===0)break;l+=7}e+=i}else break}return{value:s}}exports.parseTensorBoardEvents=E;
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("../rolldown-runtime-DF3sbh8G.cjs");let t=require("fs");t=e.r(t,1);function n(e,n,a){let o=Buffer.isBuffer(e)?e:t.readFileSync(e),c=new Map,l=new Set;if(n&&a&&a>0){let e=r(o,n);if(e===0)return{scalars:c,tags:[]};let t=new Set;if(e<=a)for(let n=0;n<e;n++)t.add(n);else{t.add(0),t.add(e-1);let n=Math.ceil((e-2)/(a-2));for(let r=n;r<e-1;r+=n)t.size<a&&t.add(r)}let u=0,d=0;for(;u<o.length&&!(u+12>o.length);){let e=Number(o.readBigUInt64LE(u));if(e<=0||e>10485760)break;let r=u+12,a=r+e,f=a+4;if(a>o.length)break;try{let e=o.subarray(r,a);if(i(e)===n){if(t.has(d)){let t=s(e);t&&t.tag===n&&t.value!==void 0&&t.step!==void 0&&(l.add(t.tag),c.has(t.tag)||c.set(t.tag,[]),c.get(t.tag).push({step:t.step,wallTime:t.wallTime||0,value:t.value,tag:t.tag}))}d++}}catch{}u=f}let f=c.get(n);f&&f.sort((e,t)=>e.step-t.step)}else if(n){let e=0,t=[];for(;e<o.length&&!(e+12>o.length);){let r=Number(o.readBigUInt64LE(e));if(r<=0||r>10485760)break;let a=e+12,c=a+r,l=c+4;if(c>o.length)break;try{let e=o.subarray(a,c);if(i(e)===n){let r=s(e);r&&r.tag===n&&r.value!==void 0&&r.step!==void 0&&t.push({step:r.step,wallTime:r.wallTime||0,value:r.value,tag:r.tag})}}catch{}e=l}t.length>0&&(l.add(n),c.set(n,t))}else{let e=0,t=new Map,r=new Map;for(;e<o.length&&!(e+12>o.length);){let i=Number(o.readBigUInt64LE(e));if(i<=0||i>10485760)break;let a=e+12,c=a+i,u=c+4;if(c>o.length)break;try{let i=s(o.subarray(a,c));if(i&&i.tag&&i.value!==void 0&&i.step!==void 0){if(n&&i.tag!==n){e=u;continue}l.add(i.tag),r.has(i.tag)||(r.set(i.tag,[]),t.set(i.tag,0)),r.get(i.tag).push({step:i.step,wallTime:i.wallTime||0,value:i.value,tag:i.tag}),t.set(i.tag,t.get(i.tag)+1)}}catch{}e=u}if(a&&a>0)for(let[e,n]of r.entries()){let r=t.get(e);if(r>a){let t=Math.ceil(r/a),i=[];i.push(n[0]),n.length>1&&i.push(n[n.length-1]);for(let e=t;e<n.length-1;e+=t)i.length<a&&i.push(n[e]);i.sort((e,t)=>e.step-t.step),c.set(e,i)}else c.set(e,n)}else for(let[e,t]of r.entries())c.set(e,t)}return{scalars:c,tags:Array.from(l)}}function r(e,t){let n=0,r=0;for(;n<e.length&&!(n+12>e.length);){let a=Number(e.readBigUInt64LE(n));if(a<=0||a>10485760)break;let o=n+12,s=o+a,c=s+4;if(s>e.length)break;try{i(e.subarray(o,s))===t&&r++}catch{}n=c}return r}function i(e){let t=0;for(;t<e.length;){let n=e[t];if(!n)break;let r=n>>3,i=n&7;if(t++,i===2){let n=0,i=0;for(;t<e.length;){let r=e[t++];if(n|=(r&127)<<i,!(r&128)||(i+=7,i>28))break}if(t+n<=e.length&&n>0){let i=e.subarray(t,t+n);if(t+=n,r===3||r===5)return a(i)}else break}else if(i===1){if(t+8<=e.length)t+=8;else break}else if(i===0)for(;t<e.length&&e[t++]&128;);else break}return null}function a(e){let t=0;for(;t<e.length;){let n=e[t];if(!n)break;let r=n>>3,i=n&7;if(t++,i===2&&r===1){let n=0,r=0;for(;t<e.length;){let i=e[t++];if(n|=(i&127)<<r,!(i&128)||(r+=7,r>28))break}if(t+n<=e.length&&n>0)return o(e.subarray(t,t+n));break}break}return null}function o(e){let t=0;if(t>=e.length)return null;let n=e[t],r=n>>3,i=n&7;if(t++,i===2&&(r===1||r===2)){let n=0,r=0;for(;t<e.length;){let i=e[t++];if(n|=(i&127)<<r,!(i&128)||(r+=7,r>28))break}if(t+n<=e.length&&n>0&&n<1e3){let r=e.subarray(t,t+n);try{let e=r.toString(`utf-8`);if(e.length>0&&!e.includes(`\0`)&&/^[\x20-\x7E\/]+$/.test(e))return e}catch{}}}return null}function s(e){let t=0,n,r,i,a;for(;t<e.length;){let o=e[t];if(!o)break;let s=o>>3,l=o&7;if(t++,l===0){let r=0,i=0;for(;t<e.length;){let n=e[t++];if(r|=(n&127)<<i,!(n&128)||(i+=7,i>63))break}s===2&&(n=r)}else if(l===1){if(t+8<=e.length){let n=e.readDoubleLE(t);t+=8,s===1&&(r=n)}}else if(l===2){let n=0,r=0;for(;t<e.length;){let i=e[t++];if(n|=(i&127)<<r,!(i&128))break;r+=7}if(t+n<=e.length){let r=e.subarray(t,t+n);if(t+=n,s===3||s===5){let e=c(r);e.value!==void 0&&(i=e.value),e.tag&&(a=e.tag)}}}else break}return{step:n,wallTime:r,value:i,tag:a}}function c(e){let t=0,n,r;for(;t<e.length;){let i=e[t];if(!i)break;let a=i>>3,o=i&7;if(t++,o===2&&a===1){let i=0,a=0;for(;t<e.length;){let n=e[t++];if(i|=(n&127)<<a,!(n&128)||(a+=7,a>28))break}if(t+i<=e.length&&i>0){let a=e.subarray(t,t+i);t+=i;let o=l(a);o.value!==void 0&&n===void 0&&(n=o.value),o.tag&&!r&&(r=o.tag)}else break}else break}return{value:n,tag:r}}function l(e){let t=0,n,r;for(;t<e.length;){let i=e[t];if(!i)break;let a=i>>3,o=i&7;if(t++,o===2){let i=0,o=0;for(;t<e.length;){let n=e[t++];if(i|=(n&127)<<o,!(n&128)||(o+=7,o>28))break}if(t+i<=e.length&&i>0){let o=e.subarray(t,t+i);if(t+=i,a===1||a===2)try{let e=o.toString(`utf-8`);e.length>0&&!e.includes(`\0`)&&/^[\x20-\x7E\/]+$/.test(e)&&(r=e)}catch{if(a===1){let e=u(o);e.value!==void 0&&(n=e.value)}}}else break}else if(o===1){if(t+8<=e.length)a===2&&(n=e.readDoubleLE(t)),t+=8;else break}else if(o===5){if(t+4<=e.length&&a===2)n=e.readFloatLE(t),t+=4;else if(t+4<=e.length)t+=4;else break}else if(o===0)for(;t<e.length&&e[t++]&128;);else break}return{value:n,tag:r}}function u(e){let t=0,n;for(;t<e.length;){let r=e[t];if(!r)break;let i=r&7;if(t++,i===1)t+8<=e.length&&(n=e.readDoubleLE(t),t+=8);else if(i===2){let n=0,r=0;for(;t<e.length;){let i=e[t++];if(n|=(i&127)<<r,!(i&128))break;r+=7}t+=n}else break}return{value:n}}exports.parseTensorBoardEvents=n;