@trebco/treb 23.6.2 → 25.0.0-rc1

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 (217) hide show
  1. package/.eslintignore +8 -0
  2. package/.eslintrc.js +164 -0
  3. package/README-shadow-DOM.md +88 -0
  4. package/README.md +37 -130
  5. package/api-config.json +29 -0
  6. package/api-generator/api-generator-types.ts +82 -0
  7. package/api-generator/api-generator.ts +1172 -0
  8. package/api-generator/package.json +3 -0
  9. package/build/treb-spreadsheet.mjs +14 -0
  10. package/{treb.d.ts → build/treb.d.ts} +293 -299
  11. package/esbuild-custom-element.mjs +336 -0
  12. package/esbuild.js +305 -0
  13. package/package.json +43 -14
  14. package/treb-base-types/package.json +5 -0
  15. package/treb-base-types/src/api_types.ts +36 -0
  16. package/treb-base-types/src/area.ts +583 -0
  17. package/treb-base-types/src/basic_types.ts +45 -0
  18. package/treb-base-types/src/cell.ts +612 -0
  19. package/treb-base-types/src/cells.ts +1066 -0
  20. package/treb-base-types/src/color.ts +124 -0
  21. package/treb-base-types/src/import.ts +71 -0
  22. package/treb-base-types/src/index-standalone.ts +29 -0
  23. package/treb-base-types/src/index.ts +42 -0
  24. package/treb-base-types/src/layout.ts +47 -0
  25. package/treb-base-types/src/localization.ts +187 -0
  26. package/treb-base-types/src/rectangle.ts +145 -0
  27. package/treb-base-types/src/render_text.ts +72 -0
  28. package/treb-base-types/src/style.ts +545 -0
  29. package/treb-base-types/src/table.ts +109 -0
  30. package/treb-base-types/src/text_part.ts +54 -0
  31. package/treb-base-types/src/theme.ts +608 -0
  32. package/treb-base-types/src/union.ts +152 -0
  33. package/treb-base-types/src/value-type.ts +164 -0
  34. package/treb-base-types/style/resizable.css +59 -0
  35. package/treb-calculator/modern.tsconfig.json +11 -0
  36. package/treb-calculator/package.json +5 -0
  37. package/treb-calculator/src/calculator.ts +2546 -0
  38. package/treb-calculator/src/complex-math.ts +558 -0
  39. package/treb-calculator/src/dag/array-vertex.ts +198 -0
  40. package/treb-calculator/src/dag/graph.ts +951 -0
  41. package/treb-calculator/src/dag/leaf_vertex.ts +118 -0
  42. package/treb-calculator/src/dag/spreadsheet_vertex.ts +327 -0
  43. package/treb-calculator/src/dag/spreadsheet_vertex_base.ts +44 -0
  44. package/treb-calculator/src/dag/vertex.ts +352 -0
  45. package/treb-calculator/src/descriptors.ts +162 -0
  46. package/treb-calculator/src/expression-calculator.ts +1069 -0
  47. package/treb-calculator/src/function-error.ts +103 -0
  48. package/treb-calculator/src/function-library.ts +103 -0
  49. package/treb-calculator/src/functions/base-functions.ts +1214 -0
  50. package/treb-calculator/src/functions/checkbox.ts +164 -0
  51. package/treb-calculator/src/functions/complex-functions.ts +253 -0
  52. package/treb-calculator/src/functions/finance-functions.ts +399 -0
  53. package/treb-calculator/src/functions/information-functions.ts +102 -0
  54. package/treb-calculator/src/functions/matrix-functions.ts +182 -0
  55. package/treb-calculator/src/functions/sparkline.ts +335 -0
  56. package/treb-calculator/src/functions/statistics-functions.ts +350 -0
  57. package/treb-calculator/src/functions/text-functions.ts +298 -0
  58. package/treb-calculator/src/index.ts +27 -0
  59. package/treb-calculator/src/notifier-types.ts +59 -0
  60. package/treb-calculator/src/primitives.ts +428 -0
  61. package/treb-calculator/src/utilities.ts +305 -0
  62. package/treb-charts/package.json +5 -0
  63. package/treb-charts/src/chart-functions.ts +156 -0
  64. package/treb-charts/src/chart-types.ts +230 -0
  65. package/treb-charts/src/chart.ts +1288 -0
  66. package/treb-charts/src/index.ts +24 -0
  67. package/treb-charts/src/main.ts +37 -0
  68. package/treb-charts/src/rectangle.ts +52 -0
  69. package/treb-charts/src/renderer.ts +1841 -0
  70. package/treb-charts/src/util.ts +122 -0
  71. package/treb-charts/style/charts.scss +221 -0
  72. package/treb-charts/style/old-charts.scss +250 -0
  73. package/treb-embed/markup/layout.html +137 -0
  74. package/treb-embed/markup/toolbar.html +175 -0
  75. package/treb-embed/modern.tsconfig.json +25 -0
  76. package/treb-embed/src/custom-element/content-types.d.ts +18 -0
  77. package/treb-embed/src/custom-element/global.d.ts +11 -0
  78. package/treb-embed/src/custom-element/spreadsheet-constructor.ts +1227 -0
  79. package/treb-embed/src/custom-element/treb-global.ts +44 -0
  80. package/treb-embed/src/custom-element/treb-spreadsheet-element.ts +52 -0
  81. package/treb-embed/src/embedded-spreadsheet.ts +5362 -0
  82. package/treb-embed/src/index.ts +16 -0
  83. package/treb-embed/src/language-model.ts +41 -0
  84. package/treb-embed/src/options.ts +320 -0
  85. package/treb-embed/src/progress-dialog.ts +228 -0
  86. package/treb-embed/src/selection-state.ts +16 -0
  87. package/treb-embed/src/spinner.ts +42 -0
  88. package/treb-embed/src/toolbar-message.ts +96 -0
  89. package/treb-embed/src/types.ts +167 -0
  90. package/treb-embed/style/autocomplete.scss +103 -0
  91. package/treb-embed/style/dark-theme.scss +114 -0
  92. package/treb-embed/style/defaults.scss +36 -0
  93. package/treb-embed/style/dialog.scss +181 -0
  94. package/treb-embed/style/dropdown-select.scss +101 -0
  95. package/treb-embed/style/formula-bar.scss +193 -0
  96. package/treb-embed/style/grid.scss +374 -0
  97. package/treb-embed/style/layout.scss +424 -0
  98. package/treb-embed/style/mouse-mask.scss +67 -0
  99. package/treb-embed/style/note.scss +92 -0
  100. package/treb-embed/style/overlay-editor.scss +102 -0
  101. package/treb-embed/style/spinner.scss +92 -0
  102. package/treb-embed/style/tab-bar.scss +228 -0
  103. package/treb-embed/style/table.scss +80 -0
  104. package/treb-embed/style/theme-defaults.scss +444 -0
  105. package/treb-embed/style/toolbar.scss +416 -0
  106. package/treb-embed/style/tooltip.scss +68 -0
  107. package/treb-embed/style/treb-icons.scss +130 -0
  108. package/treb-embed/style/treb-spreadsheet-element.scss +20 -0
  109. package/treb-embed/style/z-index.scss +43 -0
  110. package/treb-export/docs/charts.md +68 -0
  111. package/treb-export/modern.tsconfig.json +19 -0
  112. package/treb-export/package.json +4 -0
  113. package/treb-export/src/address-type.ts +77 -0
  114. package/treb-export/src/base-template.ts +22 -0
  115. package/treb-export/src/column-width.ts +85 -0
  116. package/treb-export/src/drawing2/chart-template-components2.ts +389 -0
  117. package/treb-export/src/drawing2/chart2.ts +282 -0
  118. package/treb-export/src/drawing2/column-chart-template2.ts +521 -0
  119. package/treb-export/src/drawing2/donut-chart-template2.ts +296 -0
  120. package/treb-export/src/drawing2/drawing2.ts +355 -0
  121. package/treb-export/src/drawing2/embedded-image.ts +71 -0
  122. package/treb-export/src/drawing2/scatter-chart-template2.ts +555 -0
  123. package/treb-export/src/export-worker/export-worker.ts +99 -0
  124. package/treb-export/src/export-worker/index-modern.ts +22 -0
  125. package/treb-export/src/export2.ts +2204 -0
  126. package/treb-export/src/import2.ts +882 -0
  127. package/treb-export/src/relationship.ts +36 -0
  128. package/treb-export/src/shared-strings2.ts +128 -0
  129. package/treb-export/src/template-2.ts +22 -0
  130. package/treb-export/src/unescape_xml.ts +47 -0
  131. package/treb-export/src/workbook-sheet2.ts +182 -0
  132. package/treb-export/src/workbook-style2.ts +1285 -0
  133. package/treb-export/src/workbook-theme2.ts +88 -0
  134. package/treb-export/src/workbook2.ts +491 -0
  135. package/treb-export/src/xml-utils.ts +201 -0
  136. package/treb-export/template/base/[Content_Types].xml +2 -0
  137. package/treb-export/template/base/_rels/.rels +2 -0
  138. package/treb-export/template/base/docProps/app.xml +2 -0
  139. package/treb-export/template/base/docProps/core.xml +12 -0
  140. package/treb-export/template/base/xl/_rels/workbook.xml.rels +2 -0
  141. package/treb-export/template/base/xl/sharedStrings.xml +2 -0
  142. package/treb-export/template/base/xl/styles.xml +2 -0
  143. package/treb-export/template/base/xl/theme/theme1.xml +2 -0
  144. package/treb-export/template/base/xl/workbook.xml +2 -0
  145. package/treb-export/template/base/xl/worksheets/sheet1.xml +2 -0
  146. package/treb-export/template/base.xlsx +0 -0
  147. package/treb-format/package.json +8 -0
  148. package/treb-format/src/format.test.ts +213 -0
  149. package/treb-format/src/format.ts +942 -0
  150. package/treb-format/src/format_cache.ts +199 -0
  151. package/treb-format/src/format_parser.ts +723 -0
  152. package/treb-format/src/index.ts +25 -0
  153. package/treb-format/src/number_format_section.ts +100 -0
  154. package/treb-format/src/value_parser.ts +337 -0
  155. package/treb-grid/package.json +5 -0
  156. package/treb-grid/src/editors/autocomplete.ts +394 -0
  157. package/treb-grid/src/editors/autocomplete_matcher.ts +260 -0
  158. package/treb-grid/src/editors/formula_bar.ts +473 -0
  159. package/treb-grid/src/editors/formula_editor_base.ts +910 -0
  160. package/treb-grid/src/editors/overlay_editor.ts +511 -0
  161. package/treb-grid/src/index.ts +37 -0
  162. package/treb-grid/src/layout/base_layout.ts +2618 -0
  163. package/treb-grid/src/layout/grid_layout.ts +299 -0
  164. package/treb-grid/src/layout/rectangle_cache.ts +86 -0
  165. package/treb-grid/src/render/selection-renderer.ts +414 -0
  166. package/treb-grid/src/render/svg_header_overlay.ts +93 -0
  167. package/treb-grid/src/render/svg_selection_block.ts +187 -0
  168. package/treb-grid/src/render/tile_renderer.ts +2122 -0
  169. package/treb-grid/src/types/annotation.ts +216 -0
  170. package/treb-grid/src/types/border_constants.ts +34 -0
  171. package/treb-grid/src/types/clipboard_data.ts +31 -0
  172. package/treb-grid/src/types/data_model.ts +334 -0
  173. package/treb-grid/src/types/drag_mask.ts +81 -0
  174. package/treb-grid/src/types/grid.ts +7743 -0
  175. package/treb-grid/src/types/grid_base.ts +3644 -0
  176. package/treb-grid/src/types/grid_command.ts +470 -0
  177. package/treb-grid/src/types/grid_events.ts +124 -0
  178. package/treb-grid/src/types/grid_options.ts +97 -0
  179. package/treb-grid/src/types/grid_selection.ts +60 -0
  180. package/treb-grid/src/types/named_range.ts +369 -0
  181. package/treb-grid/src/types/scale-control.ts +202 -0
  182. package/treb-grid/src/types/serialize_options.ts +72 -0
  183. package/treb-grid/src/types/set_range_options.ts +52 -0
  184. package/treb-grid/src/types/sheet.ts +3099 -0
  185. package/treb-grid/src/types/sheet_types.ts +95 -0
  186. package/treb-grid/src/types/tab_bar.ts +464 -0
  187. package/treb-grid/src/types/tile.ts +59 -0
  188. package/treb-grid/src/types/update_flags.ts +75 -0
  189. package/treb-grid/src/util/dom_utilities.ts +44 -0
  190. package/treb-grid/src/util/fontmetrics2.ts +179 -0
  191. package/treb-grid/src/util/ua.ts +104 -0
  192. package/treb-logo.svg +18 -0
  193. package/treb-parser/package.json +5 -0
  194. package/treb-parser/src/csv-parser.ts +122 -0
  195. package/treb-parser/src/index.ts +25 -0
  196. package/treb-parser/src/md-parser.ts +526 -0
  197. package/treb-parser/src/parser-types.ts +397 -0
  198. package/treb-parser/src/parser.test.ts +298 -0
  199. package/treb-parser/src/parser.ts +2673 -0
  200. package/treb-utils/package.json +5 -0
  201. package/treb-utils/src/dispatch.ts +57 -0
  202. package/treb-utils/src/event_source.ts +147 -0
  203. package/treb-utils/src/ievent_source.ts +33 -0
  204. package/treb-utils/src/index.ts +31 -0
  205. package/treb-utils/src/measurement.ts +174 -0
  206. package/treb-utils/src/resizable.ts +160 -0
  207. package/treb-utils/src/scale.ts +137 -0
  208. package/treb-utils/src/serialize_html.ts +124 -0
  209. package/treb-utils/src/template.ts +70 -0
  210. package/treb-utils/src/validate_uri.ts +61 -0
  211. package/tsconfig.json +10 -0
  212. package/tsproject.json +30 -0
  213. package/util/license-plugin-esbuild.js +86 -0
  214. package/util/list-css-vars.sh +46 -0
  215. package/README-esm.md +0 -37
  216. package/treb-bundle.css +0 -2
  217. package/treb-bundle.mjs +0 -15
package/treb-bundle.css DELETED
@@ -1,2 +0,0 @@
1
- /*! TREB v23.6.2. Copyright 2018-2023 trebco, llc. All rights reserved. LGPL: https://treb.app/license */
2
- @charset "UTF-8";:root{--treb-icon-svg: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='153.073px' height='133.742px' viewBox='0.673 4.629 153.073 133.742' enable-background='new 0.673 4.629 153.073 133.742' xml:space='preserve'%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0.6729' y1='71.5' x2='153.7461' y2='71.5'%3E%3Cstop offset='0' style='stop-color:%235CB5FF'/%3E%3Cstop offset='1' style='stop-color:%230059B9'/%3E%3C/linearGradient%3E%3Cpath fill='url(%23SVGID_1_)' d='M91.656,28.313c-4.989,0-17.266,6.249-21.305,8.504c-2.344-2.473-2.603-6.162-3.036-10.933 c-2.344,2.429-0.824,9.806,0,12.496c-10.238,7.635-18.83,15.531-27.597,24.471c-2.992-4.729-5.031-8.593-5.726-17.183 c-3.038,6.509,0.867,15.057,3.121,19.784c-9.674,12.193-19.263,25.297-27.03,37.834C-25.405,28.313,82.936-16.248,153.746,14.431 C109.879,43.63,98.554,135.784,21.498,111.274c-5.423,7.809-9.069,18.006-13.538,27.072c-3.73,0.263-6.334-1.646-7.288-3.12 c7.506-18.181,17.183-34.192,27.075-49.984c10.718,0.306,21.346,0.478,30.198-1.04c-7.681-2.038-16.877-0.78-26.032-3.123 c5.597-10.718,13.754-18.876,21.867-27.075c8.808,0.782,17.746,3.21,27.074,1.041c-8.111-1.431-15.966-1.952-22.909-4.165 C65.539,42.502,80.722,33.389,91.656,28.313z'/%3E%3C/svg%3E%0A")}.treb-icon-64{width:64px;height:64px;background:no-repeat center/100% var(--treb-icon-svg)}.treb-container .drop-menu{position:fixed;top:-1000px;left:-1000px;background:var(--treb-toolbar-button-background, #fff);border-radius:3px;border:1px solid var(--treb-toolbar-border-color, var(--treb-ui-border-color, rgb(209, 213, 219)));z-index:9;box-shadow:0 2px 4px #0d131e1a;outline:none;opacity:0;pointer-events:none;transition:opacity .125s;display:none;z-index:999;padding:.25em}.treb-container .drop-menu.enabled{display:initial}.treb-container .drop-menu.visible{opacity:1;pointer-events:initial}.treb-container .drop-menu.visible .comment-editor textarea{resize:both}.treb-container .drop-menu.scroll{max-height:18em;overflow-y:auto}.treb-container .drop-menu hr{border:none;height:1px;background:var(--treb-toolbar-border-color, var(--treb-ui-border-color, rgb(209, 213, 219)));margin-bottom:.5em;margin-top:.5em}.treb-container .drop-menu ul{margin:0;list-style-type:none!important;padding-left:0}.treb-container .drop-menu ul li+li{margin-top:.125em}.treb-container .drop-menu ul button{border-color:transparent}.treb-container .drop-menu ul button.text{display:inline-flex;justify-content:flex-start;width:100%;white-space:nowrap;font-size:.875em;padding:0 1em}.treb-toolbar{display:flex;flex-direction:row;position:relative;height:100%;width:100%;overflow:scroll;scrollbar-width:none;-ms-overflow-style:none}.treb-toolbar::-webkit-scrollbar{width:0;height:0}.treb-toolbar .staging,.treb-toolbar .group.narrow{display:none}.treb-toolbar .group.wide{display:flex}.treb-toolbar>*:not(.narrow)+*:not(.narrow){margin-left:.5em}.treb-toolbar.narrow .group.wide{display:none}.treb-toolbar.narrow .group.narrow{display:flex}.treb-toolbar.narrow>*:not(.wide)+*:not(.wide){margin-left:.5em}.treb-toolbar,.treb-toolbar-drop-menu{font-family:BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-style:normal;font-weight:400;color:var(--treb-toolbar-color, var(--treb-ui-color, #333));font-size:16px;box-sizing:border-box}.treb-toolbar *,.treb-toolbar-drop-menu *{box-sizing:border-box}.treb-toolbar .comment-editor,.treb-toolbar-drop-menu .comment-editor{display:flex;flex-direction:column;padding:.25em}.treb-toolbar .comment-editor textarea,.treb-toolbar-drop-menu .comment-editor textarea{font-family:inherit;color:inherit;font-size:.875em;flex-grow:1;min-height:14em;min-width:10em;outline:none;border:1px solid rgb(209,213,219);border-radius:.125em;resize:none}.treb-toolbar .comment-editor .comment-buttons,.treb-toolbar-drop-menu .comment-editor .comment-buttons{display:flex;flex-direction:row;justify-content:flex-end;margin-top:.5em}.treb-toolbar .comment-editor .comment-buttons button,.treb-toolbar-drop-menu .comment-editor .comment-buttons button{font-family:inherit;font-size:.875em;width:auto;padding:0 .5em;height:32px;min-height:0}.treb-toolbar .comment-editor .comment-buttons button+button,.treb-toolbar-drop-menu .comment-editor .comment-buttons button+button{margin-left:.5em}.treb-toolbar .container,.treb-toolbar button,.treb-toolbar-drop-menu .container,.treb-toolbar-drop-menu button{font-family:inherit;font-size:inherit;background:var(--treb-toolbar-button-background, transparent);border:1px solid var(--treb-toolbar-border-color, var(--treb-ui-border-color, rgb(209, 213, 219)));border-radius:.125em;outline:none}.treb-toolbar button,.treb-toolbar-drop-menu button{color:inherit;width:32px;height:32px;min-width:32px;min-height:32px;display:flex;padding:0;align-items:center;justify-content:center}.treb-toolbar button.color-button,.treb-toolbar-drop-menu button.color-button{flex-direction:column;font-size:.9em}.treb-toolbar button.color-button .color-bar,.treb-toolbar-drop-menu button.color-button .color-bar{margin:initial;width:1.2em;height:3px;margin-top:2px;background:currentColor;box-shadow:0 0 1px 1px #00000020}.treb-toolbar button:hover,.treb-toolbar-drop-menu button:hover{background:var(--treb-toolbar-hover-button-background, #f3f4f6)}.treb-toolbar button.active,.treb-toolbar button:focus,.treb-toolbar-drop-menu button.active,.treb-toolbar-drop-menu button:focus{background:var(--treb-toolbar-active-button-background, #f3f4f6)}.treb-toolbar button svg,.treb-toolbar-drop-menu button svg{margin:initial;fill:currentColor;width:1em;height:1em}.treb-toolbar button svg path.fill-none,.treb-toolbar-drop-menu button svg path.fill-none{fill:none}.treb-toolbar button svg.symbol,.treb-toolbar-drop-menu button svg.symbol{width:1.25em;height:1.25em}.treb-toolbar button svg.symbol path,.treb-toolbar-drop-menu button svg.symbol path{stroke:currentColor;stroke-width:1px;fill:none}.treb-toolbar button .active-icon,.treb-toolbar-drop-menu button .active-icon{display:none}.treb-toolbar button.active .active-icon,.treb-toolbar-drop-menu button.active .active-icon{display:initial}.treb-toolbar button.active .inactive-icon,.treb-toolbar-drop-menu button.active .inactive-icon{display:none}.treb-toolbar button>*,.treb-toolbar-drop-menu button>*{pointer-events:none}.treb-toolbar .color-chooser-main,.treb-toolbar-drop-menu .color-chooser-main{padding:.25em}.treb-toolbar .new-color,.treb-toolbar-drop-menu .new-color{margin-top:.5em;display:flex;flex-direction:row}.treb-toolbar .new-color>*+*,.treb-toolbar-drop-menu .new-color>*+*{margin-left:.25em}.treb-toolbar .new-color input,.treb-toolbar .new-color button,.treb-toolbar-drop-menu .new-color input,.treb-toolbar-drop-menu .new-color button{border-radius:3px;border:1px solid rgb(209,213,219)}.treb-toolbar .new-color input,.treb-toolbar-drop-menu .new-color input{flex-grow:1;width:6em;font-family:inherit;outline:none;padding:2px 6px}.treb-toolbar .new-color button,.treb-toolbar-drop-menu .new-color button{min-height:28px;min-width:28px;height:28px;width:28px}.treb-toolbar .color-header,.treb-toolbar-drop-menu .color-header{font-size:.8em;margin-bottom:.2em;padding-bottom:.2em;border-bottom:1px solid currentColor}.treb-toolbar .other-colors,.treb-toolbar-drop-menu .other-colors{margin-top:.5em}.treb-toolbar .color-list,.treb-toolbar-drop-menu .color-list{display:flex;flex-direction:column}.treb-toolbar .color-list .color-list-row,.treb-toolbar-drop-menu .color-list .color-list-row{display:flex;flex-direction:row}.treb-toolbar .color-list button.color-swatch,.treb-toolbar-drop-menu .color-list button.color-swatch{border:1px solid rgb(209,213,219);width:1.1em;height:1.1em;min-height:1.1em;min-width:1.1em;margin:3px;padding:0}.treb-toolbar .color-list button.color-swatch.default-color,.treb-toolbar-drop-menu .color-list button.color-swatch.default-color{background:#fff;border:1px dashed #333}.treb-toolbar .container,.treb-toolbar-drop-menu .container{position:relative;width:8em;height:32px}.treb-toolbar .container>input,.treb-toolbar-drop-menu .container>input{background:transparent;color:inherit;font-family:inherit;font-size:.85em;overflow:hidden;text-overflow:ellipsis;position:absolute;padding-left:.5em;padding-right:.5em;inset:0;width:100%;height:100%;border:0px;outline:none}.treb-toolbar .container.font-size,.treb-toolbar-drop-menu .container.font-size{width:3em}.treb-toolbar button.drop,.treb-toolbar-drop-menu button.drop{width:auto;min-width:13px;position:relative}.treb-toolbar button.drop:after,.treb-toolbar-drop-menu button.drop:after{content:"";position:absolute;border:4px solid transparent;border-top-color:currentColor;right:2px;top:12px}.treb-toolbar button.drop.icon,.treb-toolbar-drop-menu button.drop.icon{padding-left:6px;padding-right:14px}.treb-toolbar .group,.treb-toolbar-drop-menu .group{display:flex;position:relative}.treb-toolbar .group>*:not(:last-child),.treb-toolbar-drop-menu .group>*:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.treb-toolbar .group>*+*:not(.drop-menu),.treb-toolbar-drop-menu .group>*+*:not(.drop-menu){border-left-width:0px;border-top-left-radius:0;border-bottom-left-radius:0}.treb-toolbar .split-button,.treb-toolbar-drop-menu .split-button{display:flex;flex-direction:column;justify-content:stretch}.treb-toolbar .split-button button,.treb-toolbar-drop-menu .split-button button{padding:0;height:16px;min-height:16px}.treb-toolbar .split-button button div,.treb-toolbar-drop-menu .split-button button div{font-size:.625em}.treb-toolbar .split-button>*:not(:last-child),.treb-toolbar-drop-menu .split-button>*:not(:last-child){border-bottom-left-radius:0;border-bottom-right-radius:0}.treb-toolbar .split-button>*+*,.treb-toolbar-drop-menu .split-button>*+*{border-top-width:0px;border-top-left-radius:0;border-top-right-radius:0}.treb-container .treb-toolbar-icon{position:relative;width:18px;height:18px;background:currentColor;mask-position:center;-webkit-mask-position:center;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;mask-size:16px 16px;-webkit-mask-size:16px 16px}.treb-chart{background:var(--treb-chart-background, #fff)}.treb-chart .series-1{color:var(--treb-chart-color-series-1, #80B1D3)}.treb-chart .series-2{color:var(--treb-chart-color-series-2, #8DD3C7)}.treb-chart .series-3{color:var(--treb-chart-color-series-3, #BEBADA)}.treb-chart .series-4{color:var(--treb-chart-color-series-4, #FB8072)}.treb-chart .series-5{color:var(--treb-chart-color-series-5, #FDB462)}.treb-chart .series-6{color:var(--treb-chart-color-series-6, #B3DE69)}.treb-chart .series-7{color:var(--treb-chart-color-series-7, #FCCDE5)}.treb-chart .series-8{color:var(--treb-chart-color-series-8, #D9D9D9)}.treb-chart .series-9{color:var(--treb-chart-color-series-9, #BC80BD)}.treb-chart .series-10{color:var(--treb-chart-color-series-10, #CCEBC5)}.treb-chart .series-11{color:var(--treb-chart-color-series-11, #FFED6F)}.treb-chart .series-12{color:var(--treb-chart-color-series-12, #FFFFB3)}.treb-chart .chart-title{font-size:1.4em}.treb-chart .axis-group{font-size:.9em}.treb-chart text{fill:var(--treb-chart-text-color, #000);stroke:none}.treb-chart .legend{font-size:1.05em}.treb-chart .legend rect{fill:currentColor}.treb-chart .chart-grid,.treb-chart .chart-ticks{stroke:var(--treb-chart-grid-color, #ddd)}.treb-chart .label-target{stroke:none;fill:transparent}.treb-chart path.label-target{transition:fill .2s}.treb-chart path.label-target:hover{fill:#00000026}.treb-chart .data-label{pointer-events:none;opacity:0;transition:opacity .2s ease-in-out}.treb-chart .data-label text{fill:#fff}.treb-chart .data-label path{fill:#000}.treb-chart .data-label .marker-highlight{fill:currentColor;stroke:none}.treb-chart .label-target:hover+.data-label{opacity:1}.treb-chart .chart-line{stroke:currentColor;fill:none;stroke-width:2}.treb-chart .chart-area .line{stroke:currentColor;stroke-width:2px;fill:none}.treb-chart .chart-area .fill{fill:currentColor;opacity:.5}.treb-chart .scatter-plot{stroke-width:3;fill:none;stroke:currentColor}.treb-chart .scatter-plot .fill{fill:currentColor;opacity:.5;stroke:none}.treb-chart .scatter-plot .marker{stroke-width:2.5px;fill:#fff;transition:stroke-width .15s ease-in}.treb-chart .scatter-plot .marker:hover{stroke-width:5px}.treb-chart .donut path{fill:currentColor}.treb-chart .donut path.callout{fill:none;stroke:#999;stroke-dasharray:2 2}.treb-chart .donut text.callout-label{font-size:1em}.treb-chart .chart-column{fill:currentColor;stroke:none}.treb-chart .mc-correlation{stroke:currentColor;stroke-width:1}.treb-main .treb-buffer-canvas{position:absolute;display:none}.treb-main .treb-grid.grid-layout{display:grid;grid-template-columns:100px auto;grid-template-rows:20px auto}.treb-main .treb-grid.grid-layout .tile-cover.grid-cover{grid-row-start:2;grid-row-end:3;grid-column-start:2;grid-column-end:3}.treb-main .treb-grid.grid-layout .tile-cover.column-header-cover{grid-row-start:1;grid-row-end:2;grid-column-start:2;grid-column-end:3;position:-webkit-sticky;position:sticky;top:0}.treb-main .treb-grid.grid-layout .tile-cover.row-header-cover{grid-row-start:2;grid-row-end:3;grid-column-start:1;grid-column-end:2;position:-webkit-sticky;position:sticky;left:0}.treb-main .treb-grid.grid-layout .grid-selection{grid-row-start:1;grid-row-end:2;grid-column-start:1;grid-column-end:2}.treb-main .treb-grid.grid-layout .corner{grid-row-start:1;grid-row-end:2;grid-column-start:1;grid-column-end:2;position:-webkit-sticky;position:sticky}.treb-main .treb-grid.grid-layout .left-header{grid-row-start:2;grid-row-end:3;grid-column-start:1;grid-column-end:2;position:-webkit-sticky;position:sticky;display:grid;grid-template-columns:auto;grid-template-rows:auto}.treb-main .treb-grid.grid-layout .top-header{grid-row-start:1;grid-row-end:2;grid-column-start:2;grid-column-end:3;position:-webkit-sticky;position:sticky;display:grid;grid-template-columns:auto;grid-template-rows:auto}.treb-main .treb-grid.grid-layout .contents{grid-row-start:2;grid-row-end:3;grid-column-start:2;grid-column-end:3;display:grid;grid-template-columns:auto;grid-template-rows:auto}.treb-mouse-mask{position:fixed;inset:0;background:transparent;z-index:9999;display:none}.treb-mouse-mask.column-resize{cursor:col-resize}.treb-mouse-mask.row-resize{cursor:row-resize}.treb-mouse-mask.nub-select{cursor:crosshair}.treb-mouse-mask.move{cursor:move}.treb-mouse-mask.nw-resize{cursor:nw-resize}.treb-note{position:fixed;padding:7px 10px;border-radius:2px;box-shadow:0 1px 4px 2px #6d6d6d33;z-index:39;line-height:normal;top:100px;left:100px;max-width:15em;min-width:15em;opacity:0;transition:opacity .2s;font-family:BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,"sans-serif";border:1px solid var(--treb-note-border-color, var(--treb-ui-border-color, #ddd));color:var(--treb-note-color, #333);background:var(--treb-note-background, #fff);font-size:10.5pt;white-space:pre-line}.treb-hover-title{position:fixed;padding:7px 10px;border-radius:2px;box-shadow:0 1px 4px 2px #6d6d6d33;z-index:39;line-height:normal;top:100px;left:100px;min-width:10em;opacity:0;transition:opacity .2s;font-family:BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,"sans-serif";border:1px solid var(--treb-note-border-color, var(--treb-ui-border-color, #ddd));color:var(--treb-note-color, #333);background:var(--treb-note-background, #fff);font-size:10.5pt;white-space:pre-line;pointer-events:none}.treb-sort-button{z-index:39;border:1px solid #ccc;background:#fff;border-radius:2px;width:1em;height:1em;position:absolute;top:100px;left:100px;opacity:0;pointer-events:none;transition:opacity .1s ease}.treb-sort-button:after{box-sizing:border-box}.treb-sort-button.asc:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-25%);width:.8em;height:.8em;border:.4em solid transparent;border-top-color:currentColor;opacity:.5}.treb-sort-button.desc:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-80%);width:.8em;height:.8em;border:.4em solid transparent;border-bottom-color:currentColor;opacity:.5}.treb-tooltip{display:none;pointer-events:none;position:fixed;padding:2px 10px;border-radius:2px;box-shadow:0 1px 4px 2px #6d6d6d33;z-index:39;line-height:normal}.treb-tooltip.arrow-up:after{box-sizing:border-box;position:absolute;top:-8px;left:calc(50% - 4px);width:8px;height:8px;overflow:hidden;content:" ";border:4px solid transparent;border-bottom-color:inherit}.treb-tooltip.arrow-left:after{box-sizing:border-box;position:absolute;left:-8px;top:calc(50% - 4px);width:8px;height:8px;overflow:hidden;content:" ";border:4px solid transparent;border-right-color:inherit}.treb-dropdown-caret{display:none;position:absolute;width:20px;height:20px;background:var(--treb-dropdown-caret-background, #fff);border:1px solid var(--treb-dropdown-caret-border-color, #ccc);border-radius:2px;box-shadow:0 1px 4px 2px #6d6d6d33;z-index:39}.treb-dropdown-caret path{fill:none;stroke:var(--treb-dropdown-caret-color, #444);stroke-linecap:round;stroke-linejoin:round;stroke-width:2}.treb-dropdown-list{position:absolute;display:none;box-shadow:0 1px 4px 2px #6d6d6d33;z-index:39;background:var(--treb-dropdown-background, #fff);font-size:10pt;color:var(--treb-dropdown-color, inherit);border:1px solid var(--treb-dropdown-border-color, unset);text-align:left;max-height:10em;overflow-y:auto;outline:none}.treb-dropdown-list div{padding:2px;cursor:default}.treb-dropdown-list div.selected{background:var(--treb-dropdown-selected-background, #555);color:var(--treb-dropdown-selected-color, #fff)}.treb-dropdown-caret.active{background:var(--treb-dropdown-caret-active-background, #eee)}.treb-dropdown-caret.active+.treb-dropdown-list{display:block}.treb-error-highlight{transition:opacity .15s ease-in-out;background:rgba(255,0,0,.25);opacity:0;pointer-events:none;position:absolute;z-index:40}.treb-main .treb-autocomplete{box-sizing:border-box;position:fixed;top:-1000px;font-size:inherit;font-weight:400;line-height:normal;text-align:left;max-height:10em;overflow-y:auto;z-index:39}.treb-main .treb-autocomplete *{box-sizing:border-box}.treb-main .treb-autocomplete ul{font-size:inherit;font-weight:inherit;list-style-type:none;padding:0;margin:0}.treb-main .treb-autocomplete ul li{font-size:inherit;font-weight:inherit;padding:0;margin:0}.treb-main .treb-autocomplete ul li a{font-size:inherit;font-weight:inherit;display:inline-block;width:100%;padding:3px 6px;text-decoration:none;cursor:default;color:inherit}.treb-main .treb-autocomplete-tooltip{z-index:39;top:-1000px;position:fixed;white-space:pre}.treb-main .treb-formula-bar-container{display:block;order:1}.treb-main .treb-formula-bar-container .treb-formula-bar{display:flex;flex-direction:row;text-align:left;padding:6px 2px;max-width:100%;overflow-x:hidden}.treb-main .treb-formula-bar-container .treb-formula-bar .address-label{width:95px;min-width:95px;min-height:1.5em;height:1.75em;border:1px solid var(--treb-formula-bar-border-color, var(--treb-ui-border-color, #ccc));border-radius:2px;display:flex;flex-direction:column;justify-content:center;padding-left:3px;margin-right:6px}.treb-main .treb-formula-bar-container .treb-formula-bar .address-label>div{outline:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.treb-main .treb-formula-bar-container .treb-formula-bar .expand-button{background:transparent;border:0;border-radius:2px;margin-left:2px;padding:1px;outline:none;height:1.75em}.treb-main .treb-formula-bar-container .treb-formula-bar .expand-button:after{content:" ";border:5px solid transparent;position:relative;display:inline-block;border-top-color:#999;padding:0;margin:0;top:-6px;transition:transform .15s ease}.treb-main .treb-formula-bar-container .treb-formula-bar.expanded .expand-button:after{transform:rotate(180deg) translateY(6px)}.treb-main .treb-formula-bar-container .treb-formula-bar .editor-container{border:1px solid var(--treb-formula-bar-border-color, var(--treb-ui-border-color, #ccc));border-radius:2px;flex-grow:1;height:1.75em;display:flex;min-width:0px;flex-direction:column;justify-content:center}.treb-main .treb-formula-bar-container .treb-formula-bar.expanded .editor-container{transition:height .1s ease-in-out;height:4.5em}.treb-main .treb-formula-bar-container .treb-formula-bar.expanded .editor-container .formula-editor{overflow-y:auto}.treb-main .treb-formula-bar-container .treb-formula-bar .formula-editor{width:100%;margin:2px;outline:none;overflow-y:hidden;overflow-x:hidden;line-height:1.35;flex-grow:1;min-height:1em}.treb-main .treb-formula-bar-container .treb-formula-bar .formula-button{border:1px solid #ccc;border-radius:2px;margin-left:6px;height:1.75em;overflow:hidden;white-space:nowrap}.treb-main .treb-formula-bar-container .treb-formula-bar .formula-button .text-1{font-style:italic;padding-right:.1em}.treb-main .treb-formula-bar-container .treb-formula-bar .formula-button .text-1:after{content:"f"}.treb-main .treb-formula-bar-container .treb-formula-bar .formula-button .text-2{font-size:.7em}.treb-main .treb-formula-bar-container .treb-formula-bar .formula-button .text-2:after{content:"(x)"}.treb-main .treb-tab-bar-container{order:3}.treb-main .treb-tab-bar-container .treb-tab-bar{display:flex;flex-direction:row;z-index:1;max-width:100%;height:2.2em;color:var(--treb-ui-color, inherit)}.treb-main .treb-tab-bar-container .tab,.treb-main .treb-tab-bar-container .add-tab{font-size:inherit;padding:0 .75em;height:100%;overflow:hidden;color:var(--treb-tab-bar-tab-color, var(--treb-ui-color, #fff));cursor:default;display:inline-flex;align-items:center;justify-content:center;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border:1px solid var(--treb-tab-bar-tab-border-color, var(--treb-ui-border-color, #ccc));border-top-width:0px;z-index:1;margin-right:-2px}.treb-main .treb-tab-bar-container .treb-scale-control-2{font-size:inherit;height:2.2em;display:flex;flex-direction:row;align-items:center;justify-content:center;position:relative;width:5em}.treb-main .treb-tab-bar-container .treb-scale-control-2 .treb-scale-input{font-size:inherit;font-family:inherit;width:4em;text-align:center;border:1px solid transparent;transition:border-color .25s ease,background-color .25s ease;border-radius:2px;color:inherit;background:transparent;padding:initial}.treb-main .treb-tab-bar-container .treb-scale-control-2 .treb-slider-container{position:absolute;border:1px solid var(--treb-scale-slider-border-color, var(--treb-ui-border-color, #ccc));background:var(--treb-scale-slider-background, #fff);accent-color:var(--treb-scale-slider-accent-color, undefined);width:10em;height:4em;top:0;left:.5em;transform-origin:left top;transform:rotate(-90deg);z-index:40;opacity:0;transition:opacity .25s ease;display:flex;flex-direction:row;align-items:center;justify-content:center;pointer-events:none}.treb-main .treb-tab-bar-container .treb-scale-control-2:hover .treb-scale-input,.treb-main .treb-tab-bar-container .treb-scale-control-2 .treb-scale-input:focus{border-color:var(--treb-ui-border-color, #ccc)}.treb-main .treb-tab-bar-container .treb-scale-control-2 .treb-slider-container>input[type=range]{width:8.5em}.treb-main .treb-tab-bar-container .treb-scale-control-2 .treb-scale-input:focus+.treb-slider-container,.treb-main .treb-tab-bar-container .treb-scale-control-2 .treb-slider-container:focus-within,.treb-main .treb-tab-bar-container .treb-scale-control-2:hover .treb-slider-container{opacity:.85;pointer-events:initial}.treb-main .treb-tab-bar-container .delete-tab{font-size:inherit;padding:.25em .75em;cursor:default;display:inline-flex;align-items:center;flex-direction:row;border-bottom-left-radius:5px;border-bottom-right-radius:5px;border-top-width:0px;z-index:1;margin-right:-2px}.treb-main .treb-tab-bar-container .delete-tab svg{width:1em;height:1em;opacity:.75;pointer-events:none;transition:opacity .125s ease-in-out}.treb-main .treb-tab-bar-container .delete-tab:hover svg{opacity:.75}.treb-main .treb-tab-bar-container .delete-tab path{stroke:currentColor;stroke-width:1.5px;stroke-linecap:round}.treb-main .treb-tab-bar-container .tab-bar-spacer{flex-grow:1;order:9998}.treb-main .treb-tab-bar-container .tab-bar-end{order:9999;display:flex;flex-direction:row;align-items:center}.treb-main .treb-tab-bar-container .treb-stats-panel>*+*{margin-left:.5em}.treb-main .treb-tab-bar-container .treb-stats-panel .treb-stats-value{border:1px solid var(--treb-stats-value-border-color, var(--treb-ui-border-color, #ddd));background:var(--treb-stats-value-background, #f8f8ff);padding:0 .3em;border-radius:3px}.treb-main .treb-tab-bar-container .tab{white-space:nowrap;overflow-x:hidden}.treb-main .treb-tab-bar-container .tab.selected{z-index:2}.treb-main .treb-grid .in-cell-editor-container{position:absolute;opacity:0;outline:none;overflow:hidden;background:orange}.treb-main .treb-grid .in-cell-editor{position:relative;width:100%;max-width:100%;height:100%;overflow:hidden;padding:2px 3px;white-space:nowrap;display:table-cell;vertical-align:bottom;border:1px solid red;z-index:24;outline:none}.treb-main .treb-grid .overlay-container{padding:0;margin:0;position:absolute;opacity:0;outline:none;z-index:24}.treb-main .treb-grid .overlay-container.align-right .overlay-inset{right:0;text-align:right;padding-right:3px}.treb-main .treb-grid .overlay-container.align-center .overlay-inset{text-align:center;left:50%;transform:translate(-50%)}.treb-main .treb-grid .overlay-inset{margin:0;padding:0 4px;position:absolute;height:100%;min-width:100%;display:flex;flex-direction:column;justify-content:flex-end}.treb-main .treb-grid .overlay-editor{outline:none;white-space:nowrap}.treb-main .treb-grid .overlay-editor.firefox:before{content:"\200b"}.treb-theme-container{position:fixed;left:-1000px;top:0;width:200px;overflow:hidden}.treb-theme-container>*{position:relative}.treb-container:focus-within .treb-main .grid-selection .primary-selection,.treb-container:focus-within .treb-main .header-overlay{color:var(--treb-selection-color, #4caaf1)}.treb-main .theme-color-1{color:var(--treb-theme-color-1, #E7E6E6)}.treb-main .theme-color-2{color:var(--treb-theme-color-2, #44546A)}.treb-main .theme-color-3{color:var(--treb-theme-color-3, #4472C4)}.treb-main .theme-color-4{color:var(--treb-theme-color-4, #ED7D31)}.treb-main .theme-color-5{color:var(--treb-theme-color-5, #A5A5A5)}.treb-main .theme-color-6{color:var(--treb-theme-color-6, #FFC000)}.treb-main .theme-color-7{color:var(--treb-theme-color-7, #5B9BD5)}.treb-main .theme-color-8{color:var(--treb-theme-color-8, #70AD47)}.treb-main .theme-color-9{color:var(--treb-theme-color-9, #0563C1)}.treb-main .theme-color-10{color:var(--treb-theme-color-10, #954F72)}.treb-main .treb-offset-dark{color:#000}.treb-main .treb-offset-light{color:#fff}.treb-main .note-marker{background:var(--treb-note-marker-color, #6FAB20)}.treb-main .grid-headers{font-family:var(--treb-grid-header-font-family, inherit);font-size:var(--treb-grid-header-font-size, 10pt);font-weight:var(--treb-grid-header-font-weight, normal);font-style:var(--treb-grid-header-font-style, normal);background:var(--treb-grid-header-background, rgb(238, 238, 242));color:var(--treb-grid-header-color, var(--treb-grid-default-color, #666));stroke:var(--treb-grid-header-grid-color, var(--treb-grid-grid-color, rgb(204, 204, 212)))}.treb-main .grid-cells{font-family:var(--treb-grid-font-family, inherit);font-size:var(--treb-grid-font-size, 14px);color:var(--treb-grid-default-color, inherit);stroke:var(--treb-grid-grid-color, rgb(204, 204, 212));background:var(--treb-grid-background, #fff)}.treb-main .grid-background{background-image:var(--treb-grid-background-image, none)}.treb-main .frozen-selection.highlight-area{background:rgba(87,184,255,.25);border-left-color:#2176ae;border-bottom-color:#2176ae}.treb-main .treb-autocomplete-tooltip{font-size:14px;border-radius:2px;background:var(--treb-autocomplete-tooltip-background, #fffbb5);color:var(--treb-autocomplete-tooltip-color, inherit);border:1px solid var(--treb-autocomplete-tooltip-border-color, unset);padding:3px 8px;margin:4px 0;line-height:normal}.treb-main .treb-autocomplete-tooltip .active-argument{font-weight:700}.treb-main .treb-autocomplete-tooltip .function-description{font-style:italic}.treb-main .treb-autocomplete{font-size:14px;background:var(--treb-autocomplete-background, #fff);border-radius:2px;border:1px solid var(--treb-autocomplete-border-color, var(--treb-ui-border-color, #ccc));box-shadow:0 1px 4px 2px #6d6d6d33}.treb-main .treb-autocomplete li{color:var(--treb-autocomplete-entry-color, #333)}.treb-main .treb-autocomplete li a.selected{background:var(--treb-autocomplete-selected-entry-background, #2e8dd6);color:var(--treb-autocomplete-selected-entry-color, #fff)}.treb-main .header-overlay{stroke:none;color:var(--treb-selection-color-unfocused, var(--treb-selection-color, #4caaf1))}.treb-main .header-overlay .overlay{fill:#000;stroke:none;opacity:.05}.treb-main .header-overlay .highlight{fill:currentColor}.treb-main .in-cell-editor span.highlight-1,.treb-main .formula-editor span.highlight-1,.treb-main .overlay-editor span.highlight-1{color:#fa9b05}.treb-main .in-cell-editor span.highlight-2,.treb-main .formula-editor span.highlight-2,.treb-main .overlay-editor span.highlight-2{color:#3aad3a}.treb-main .in-cell-editor span.highlight-3,.treb-main .formula-editor span.highlight-3,.treb-main .overlay-editor span.highlight-3{color:#b66d0d}.treb-main .in-cell-editor span.highlight-4,.treb-main .formula-editor span.highlight-4,.treb-main .overlay-editor span.highlight-4{color:#2176ae}.treb-main .in-cell-editor span.highlight-5,.treb-main .formula-editor span.highlight-5,.treb-main .overlay-editor span.highlight-5{color:#fe2f01}.treb-main .grid-selection .selection,.treb-main .frozen-selection .selection{stroke-width:var(--treb-selection-stroke-width, 2px)}.treb-main .grid-selection .selection .outline,.treb-main .frozen-selection .selection .outline{stroke:currentColor;fill:none}.treb-main .grid-selection .selection .fill,.treb-main .frozen-selection .selection .fill{stroke:none;fill:currentColor;opacity:var(--treb-selection-fill-opacity, .1)}.treb-main .grid-selection .alternate-selection,.treb-main .frozen-selection .alternate-selection{stroke-dasharray:var(--treb-alternate-selection-dasharray, 3 2)}.treb-main .grid-selection .alternate-selection:nth-of-type(1n),.treb-main .frozen-selection .alternate-selection:nth-of-type(1n){color:#fbb13c}.treb-main .grid-selection .alternate-selection:nth-of-type(2n),.treb-main .frozen-selection .alternate-selection:nth-of-type(2n){color:#40c040}.treb-main .grid-selection .alternate-selection:nth-of-type(3n),.treb-main .frozen-selection .alternate-selection:nth-of-type(3n){color:#b66d0d}.treb-main .grid-selection .alternate-selection:nth-of-type(4n),.treb-main .frozen-selection .alternate-selection:nth-of-type(4n){color:#2176ae}.treb-main .grid-selection .alternate-selection:nth-of-type(5n),.treb-main .frozen-selection .alternate-selection:nth-of-type(5n){color:#fe6847}.treb-main .grid-selection .primary-selection,.treb-main .frozen-selection .primary-selection{color:var(--treb-selection-color-unfocused, var(--treb-selection-color, #4caaf1))}.treb-main .grid-selection .primary-selection .nub,.treb-main .frozen-selection .primary-selection .nub{stroke:#fff;fill:currentColor;stroke-width:1px}.treb-main .treb-tooltip{font-size:11pt;background:var(--treb-resize-tooltip-background, rgba(0, 0, 0, .8));color:var(--treb-resize-tooltip-color, #fff);border-color:var(--treb-resize-tooltip-background, rgba(0, 0, 0, .8))}.treb-main .treb-tab-bar{font-size:14px}.treb-main .treb-tab-bar .tab,.treb-main .treb-tab-bar .add-tab{background:var(--treb-tab-bar-tab-background, rgb(238, 238, 242));color:var(--treb-tab-bar-tab-color, var(--treb-ui-color, inherit))}.treb-main .treb-tab-bar .tab.selected,.treb-main .treb-tab-bar .add-tab.selected{background:var(--treb-tab-bar-active-tab-background, #fff);color:var(--treb-tab-bar-active-tab-color, var(--treb-ui-color, inherit))}.treb-main .treb-formula-bar .address-label,.treb-main .treb-formula-bar .editor-container{background:var(--treb-formula-bar-background, transparent);color:var(--treb-formula-bar-color, var(--treb-ui-color, inherit))}.treb-main .treb-formula-bar .address-label.locked,.treb-main .treb-formula-bar .editor-container.locked{background:rgb(238,244,252);position:relative}.treb-main .treb-formula-bar .address-label.locked:after,.treb-main .treb-formula-bar .editor-container.locked:after{position:absolute;right:2px;top:2px;content:"";width:11px;height:11px;opacity:.4;background-image:url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M416 224H400V144C400 65 335 0 256 0S112 65 112 144V224H96C61 224 32 253 32 288V448C32 483 61 512 96 512H416C451 512 480 483 480 448V288C480 253 451 224 416 224ZM176 144C176 100 212 64 256 64S336 100 336 144V224H176V144Z' fill='currentColor'/%3E%3C/svg%3E")}.treb-ua-windows .grid-cells{font-size:var(--treb-grid-font-size-windows, var(--treb-grid-font-size, 12pt));font-family:var(--treb-grid-font-family-windows, var(--treb-grid-font-family, "Calibri", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", "sans-serif"))}.treb-ua-osx .grid-cells{font-size:var(--treb-grid-font-size-osx, var(--treb-grid-font-size, 10pt));font-family:var(--treb-grid-font-family-osx, var(--treb-grid-font-family, inherit))}.treb-main{position:relative;display:flex;flex-direction:column;line-height:normal;text-align:left}.treb-main *{box-sizing:border-box}.treb-main .treb-layout-master{flex-grow:1;order:2;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;overflow:hidden;display:flex;position:relative;box-shadow:var(--treb-grid-shadow, 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1))}.treb-main .treb-grid{flex-grow:1;order:2;position:relative;overflow:scroll;-webkit-overflow-scrolling:touch;-webkit-tap-highlight-color:transparent;outline:none}.treb-main .treb-grid.safari::-webkit-scrollbar{-webkit-appearance:none;width:7px;height:7px}.treb-main .treb-grid.safari::-webkit-scrollbar-thumb{border-radius:4px;background-color:#00000040;-webkit-box-shadow:0 0 1px rgba(255,255,255,.5)}.treb-main .treb-grid canvas{border:0;margin:0;padding:0;background:transparent}.treb-main .treb-grid .nub-select{cursor:crosshair}.treb-main .treb-grid .link-pointer{cursor:pointer}.treb-main .treb-grid .mock-selection-node{background:red;position:fixed;left:-100px;top:-100px}.treb-main .treb-grid .tile-cover{background:transparent;position:relative;z-index:14}.treb-main .treb-grid .tile-cover.column-header-cover{z-index:22}.treb-main .treb-grid .tile-cover.column-header-cover.resize{cursor:col-resize}.treb-main .treb-grid .tile-cover.row-header-cover{z-index:22}.treb-main .treb-grid .tile-cover.row-header-cover.resize{cursor:row-resize}.treb-main .treb-grid .annotation-container,.treb-main .treb-grid .frozen-annotation-container{position:absolute;top:0;left:0;z-index:16;pointer-events:none}.treb-main .treb-grid .annotation-container .annotation,.treb-main .treb-grid .frozen-annotation-container .annotation{position:absolute;overflow:hidden;pointer-events:auto;background:rgba(255,255,255,.5);border:1px solid #999;z-index:1}.treb-main .treb-grid .annotation-container .annotation .annotation-content,.treb-main .treb-grid .frozen-annotation-container .annotation .annotation-content{position:absolute;top:0;left:0;height:100%;width:100%;font-family:inherit;font-size:inherit;z-index:1}.treb-main .treb-grid .annotation-container .annotation .annotation-move-target,.treb-main .treb-grid .frozen-annotation-container .annotation .annotation-move-target{position:absolute;z-index:2;cursor:move;top:0;left:0;height:10%;min-height:14px;width:100%}.treb-main .treb-grid .annotation-container .annotation .annotation-resize-target,.treb-main .treb-grid .frozen-annotation-container .annotation .annotation-resize-target{position:absolute;z-index:3;cursor:nwse-resize;bottom:0;right:0;width:10%;height:10%;min-height:14px;min-width:14px}.treb-main .treb-grid .annotation-container .annotation:focus,.treb-main .treb-grid .annotation-container .annotation.retain-focus,.treb-main .treb-grid .annotation-container .annotation.clone-focus,.treb-main .treb-grid .frozen-annotation-container .annotation:focus,.treb-main .treb-grid .frozen-annotation-container .annotation.retain-focus,.treb-main .treb-grid .frozen-annotation-container .annotation.clone-focus{box-shadow:0 0 0 3px #0ea5e954}.treb-main .treb-grid .annotation-container .move-buffer,.treb-main .treb-grid .frozen-annotation-container .move-buffer{position:absolute;border:1px solid red;height:10%;top:0;width:100%;left:0;cursor:move}.treb-main .treb-grid .grid-selection{background:transparent;position:absolute;z-index:10;-moz-transform:scale(1)}.treb-main .treb-grid .frozen-selection{transition:background .33s;position:absolute;z-index:12;overflow:hidden;-moz-transform:scale(1);pointer-events:none}.treb-main .treb-grid .frozen-selection.frozen-selection-rows{border-bottom:1px solid transparent}.treb-main .treb-grid .frozen-selection.frozen-selection-columns{border-right:1px solid transparent}.treb-main .treb-grid .frozen-annotation-container{position:absolute;top:0;left:0;overflow:hidden;width:100%;height:100%}.treb-main .treb-grid .corner{top:0;left:0;z-index:20}.treb-main .treb-grid .corner canvas{position:absolute;top:0;left:0;pointer-events:none}.treb-main .treb-grid .left-header{left:0;z-index:18;pointer-events:none}.treb-main .treb-grid .top-header{top:0;z-index:18;pointer-events:none}.treb-main .treb-grid .contents{height:2000px;width:2000px}.treb-embed-dialog{line-height:1.6em;border:1px solid var(--treb-dialog-border-color, var(--treb-ui-border-color, #999));border-top-width:3px;border-top-color:#009dff;border-top-color:#9eafb9;border-top-color:#999;display:flex;flex-direction:row;align-items:center;position:relative;padding:1em;background:var(--treb-dialog-background, #fff);color:var(--treb-dialog-color, #000);text-align:left;border-radius:3px}.treb-embed-dialog>*{display:none}.treb-embed-dialog>div{position:relative}.treb-embed-dialog>*:nth-child(2){flex-grow:1;display:block}.treb-embed-dialog>*:nth-child(2){padding:2px 20px 2px 12px}.treb-embed-dialog>.close-box{position:absolute;top:0;right:0;background:transparent;border:0;padding:4px}.treb-embed-dialog>.close-box>svg{fill:#73828c;width:20px;height:20px;cursor:default}.treb-embed-dialog>.close-box>svg:hover,.treb-embed-dialog>.close-box>svg:active{fill:#049cfb}.treb-embed-dialog .smaller{font-size:.9em}.treb-embed-dialog a{text-decoration:none;color:inherit}.treb-embed-dialog a:hover,.treb-embed-dialog a:active{color:#049cfb}.treb-embed-dialog.dialog-type-success{border-top-width:3px;border-top-color:#44d926}.treb-embed-dialog.dialog-type-about{border-top-width:3px;border-top-color:#009dff}.treb-embed-dialog.dialog-type-error{border-top-width:3px;border-top-color:#f92f06}.treb-embed-dialog.dialog-type-info{border-top-width:3px;border-top-color:#009dff}.treb-embed-dialog .treb-embed-dialog-title,.treb-embed-dialog .treb-embed-dialog-message{white-space:pre}.treb-embed-dialog .treb-embed-progress-container{position:relative;border:1px solid red;width:100%;height:6px;border:1px solid #ddd;margin:1em auto .5em}.treb-embed-dialog .treb-embed-progress-bar{position:relative;background:#52880b;top:0;left:0;height:100%}.treb-spinner{position:absolute;top:0;left:0;background:transparent;width:100%;height:100%;z-index:1000;align-items:center;justify-content:center;transition:visibility .25s,opacity .25s ease;opacity:0;display:flex;visibility:collapse}.treb-spinner.visible{opacity:1;transition:visibility 0s,opacity 1s ease;visibility:visible}.treb-spinner>div{display:inline-block;position:relative;width:80px;height:80px}.treb-spinner>div div{box-sizing:border-box;display:block;position:absolute;width:64px;height:64px;margin:8px;border:8px solid #fff;border-radius:50%;animation:treb-spinner 1.2s cubic-bezier(.5,0,.5,1) infinite;border-color:var(--treb-spinner-color, currentColor) transparent transparent transparent}.treb-spinner>div div:nth-child(1){animation-delay:-.45s}.treb-spinner>div div:nth-child(2){animation-delay:-.3s}.treb-spinner>div div:nth-child(3){animation-delay:-.15s}@keyframes treb-spinner{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.treb-dark-theme{--treb-autocomplete-background: #333;--treb-autocomplete-border-color: #fff;--treb-autocomplete-entry-color: #fff;--treb-autocomplete-selected-entry-background: darkred;--treb-autocomplete-tooltip-background: darkred;--treb-autocomplete-tooltip-border-color: #fff;--treb-autocomplete-tooltip-color: #fff;--treb-chart-background: #000;--treb-chart-grid-color: #976;--treb-chart-text-color: #fff;--treb-dialog-background: #000;--treb-dialog-border-color: #fff;--treb-dialog-color: #fff;--treb-dropdown-background: #000;--treb-dropdown-border-color: #fff;--treb-dropdown-caret-active-background: darkred;--treb-dropdown-caret-background: #444;--treb-dropdown-caret-border-color: #fff;--treb-dropdown-caret-color: #fff;--treb-dropdown-color: #fff;--treb-dropdown-selected-background: darkred;--treb-grid-background: #000;--treb-grid-default-color: #fff;--treb-grid-grid-color: #444;--treb-grid-header-background: #444;--treb-grid-header-grid-color: #000;--treb-note-background: #333;--treb-note-border-color: #fff;--treb-note-color: #fff;--treb-note-marker-color: pink;--treb-resize-tooltip-background: #fff;--treb-resize-tooltip-color: #000;--treb-scale-slider-accent-color: #fff;--treb-scale-slider-background: #333;--treb-scale-slider-border-color: #fff;--treb-selection-color: yellow;--treb-selection-fill-opacity: .2;--treb-sidebar-button-background: #000;--treb-sidebar-button-border-color: #888;--treb-stats-value-background: #223;--treb-tab-bar-active-tab-background: #444;--treb-tab-bar-tab-background: #000;--treb-tab-bar-tab-color: #fff;--treb-theme-color-1: #222;--treb-theme-color-2: #ddd;--treb-toolbar-active-button-background: #555;--treb-toolbar-button-background: #000;--treb-toolbar-hover-button-background: #444;--treb-ui-border-color: #666;--treb-ui-color: #fff;--treb-table-header-background: #334;--treb-table-odd-background: #122;--treb-table-header-font-weight: 700;--treb-table-header-border-top: #889;--treb-table-header-border-bottom: #889;--treb-table-footer-border-bottom: #889;--treb-table-odd-border-top: #889;--treb-table-odd-border-bottom: #889;--treb-table-even-border-top: #889;--treb-table-even-border-bottom: #889;--treb-table-total-border-top: #889;--treb-table-total-border-bottom: #889;--treb-table-total-background: #334;--treb-table-total-font-weight: 700}@media (prefers-color-scheme: dark){.treb-light-dark-theme{--treb-autocomplete-background: #333;--treb-autocomplete-border-color: #fff;--treb-autocomplete-entry-color: #fff;--treb-autocomplete-selected-entry-background: darkred;--treb-autocomplete-tooltip-background: darkred;--treb-autocomplete-tooltip-border-color: #fff;--treb-autocomplete-tooltip-color: #fff;--treb-chart-background: #000;--treb-chart-grid-color: #976;--treb-chart-text-color: #fff;--treb-dialog-background: #000;--treb-dialog-border-color: #fff;--treb-dialog-color: #fff;--treb-dropdown-background: #000;--treb-dropdown-border-color: #fff;--treb-dropdown-caret-active-background: darkred;--treb-dropdown-caret-background: #444;--treb-dropdown-caret-border-color: #fff;--treb-dropdown-caret-color: #fff;--treb-dropdown-color: #fff;--treb-dropdown-selected-background: darkred;--treb-grid-background: #000;--treb-grid-default-color: #fff;--treb-grid-grid-color: #444;--treb-grid-header-background: #444;--treb-grid-header-grid-color: #000;--treb-note-background: #333;--treb-note-border-color: #fff;--treb-note-color: #fff;--treb-note-marker-color: pink;--treb-resize-tooltip-background: #fff;--treb-resize-tooltip-color: #000;--treb-scale-slider-accent-color: #fff;--treb-scale-slider-background: #333;--treb-scale-slider-border-color: #fff;--treb-selection-color: yellow;--treb-selection-fill-opacity: .2;--treb-sidebar-button-background: #000;--treb-sidebar-button-border-color: #888;--treb-stats-value-background: #223;--treb-tab-bar-active-tab-background: #444;--treb-tab-bar-tab-background: #000;--treb-tab-bar-tab-color: #fff;--treb-theme-color-1: #222;--treb-theme-color-2: #ddd;--treb-toolbar-active-button-background: #555;--treb-toolbar-button-background: #000;--treb-toolbar-hover-button-background: #444;--treb-ui-border-color: #666;--treb-ui-color: #fff;--treb-table-header-background: #334;--treb-table-odd-background: #122;--treb-table-header-font-weight: 700;--treb-table-header-border-top: #889;--treb-table-header-border-bottom: #889;--treb-table-footer-border-bottom: #889;--treb-table-odd-border-top: #889;--treb-table-odd-border-bottom: #889;--treb-table-even-border-top: #889;--treb-table-even-border-bottom: #889;--treb-table-total-border-top: #889;--treb-table-total-border-bottom: #889;--treb-table-total-background: #334;--treb-table-total-font-weight: 700}}.treb-container{--treb-sidebar-icon-popout: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'><path stroke='none' fill='currentColor' d='M22 14.5v5c0 2.484-2.016 4.5-4.5 4.5h-13c-2.484 0-4.5-2.016-4.5-4.5v-13c0-2.484 2.016-4.5 4.5-4.5h11c0.281 0 0.5 0.219 0.5 0.5v1c0 0.281-0.219 0.5-0.5 0.5h-11c-1.375 0-2.5 1.125-2.5 2.5v13c0 1.375 1.125 2.5 2.5 2.5h13c1.375 0 2.5-1.125 2.5-2.5v-5c0-0.281 0.219-0.5 0.5-0.5h1c0.281 0 0.5 0.219 0.5 0.5zM28 1v8c0 0.547-0.453 1-1 1-0.266 0-0.516-0.109-0.703-0.297l-2.75-2.75-10.187 10.187c-0.094 0.094-0.234 0.156-0.359 0.156s-0.266-0.063-0.359-0.156l-1.781-1.781c-0.094-0.094-0.156-0.234-0.156-0.359s0.063-0.266 0.156-0.359l10.187-10.187-2.75-2.75c-0.187-0.187-0.297-0.438-0.297-0.703 0-0.547 0.453-1 1-1h8c0.547 0 1 0.453 1 1z'></path></svg>");--treb-sidebar-icon-toolbar: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path stroke='none' fill='currentColor' d='M5.5 22v2h-5.5v-2h5.5zM11 20c0.547 0 1 0.453 1 1v4c0 0.547-0.453 1-1 1h-4c-0.547 0-1-0.453-1-1v-4c0-0.547 0.453-1 1-1h4zM13.5 14v2h-13.5v-2h13.5zM3.5 6v2h-3.5v-2h3.5zM24 22v2h-11.5v-2h11.5zM9 4c0.547 0 1 0.453 1 1v4c0 0.547-0.453 1-1 1h-4c-0.547 0-1-0.453-1-1v-4c0-0.547 0.453-1 1-1h4zM19 12c0.547 0 1 0.453 1 1v4c0 0.547-0.453 1-1 1h-4c-0.547 0-1-0.453-1-1v-4c0-0.547 0.453-1 1-1h4zM24 14v2h-3.5v-2h3.5zM24 6v2h-13.5v-2h13.5z'></path></svg>");--treb-sidebar-icon-export: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 26 28'><path stroke='none' fill='currentColor' d='M20 21c0-0.547-0.453-1-1-1s-1 0.453-1 1 0.453 1 1 1 1-0.453 1-1zM24 21c0-0.547-0.453-1-1-1s-1 0.453-1 1 0.453 1 1 1 1-0.453 1-1zM26 17.5v5c0 0.828-0.672 1.5-1.5 1.5h-23c-0.828 0-1.5-0.672-1.5-1.5v-5c0-0.828 0.672-1.5 1.5-1.5h7.266l2.109 2.125c0.578 0.562 1.328 0.875 2.125 0.875s1.547-0.313 2.125-0.875l2.125-2.125h7.25c0.828 0 1.5 0.672 1.5 1.5zM20.922 8.609c0.156 0.375 0.078 0.812-0.219 1.094l-7 7c-0.187 0.203-0.453 0.297-0.703 0.297s-0.516-0.094-0.703-0.297l-7-7c-0.297-0.281-0.375-0.719-0.219-1.094 0.156-0.359 0.516-0.609 0.922-0.609h4v-7c0-0.547 0.453-1 1-1h4c0.547 0 1 0.453 1 1v7h4c0.406 0 0.766 0.25 0.922 0.609z'></path></svg>");--treb-sidebar-icon-reset: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path stroke='none' fill='currentColor' d='M23.609 16.5c0 0.031 0 0.078-0.016 0.109-1.328 5.531-5.891 9.391-11.656 9.391-3.047 0-6-1.203-8.219-3.313l-2.016 2.016c-0.187 0.187-0.438 0.297-0.703 0.297-0.547 0-1-0.453-1-1v-7c0-0.547 0.453-1 1-1h7c0.547 0 1 0.453 1 1 0 0.266-0.109 0.516-0.297 0.703l-2.141 2.141c1.469 1.375 3.422 2.156 5.437 2.156 2.781 0 5.359-1.437 6.813-3.813 0.375-0.609 0.562-1.203 0.828-1.828 0.078-0.219 0.234-0.359 0.469-0.359h3c0.281 0 0.5 0.234 0.5 0.5zM24 4v7c0 0.547-0.453 1-1 1h-7c-0.547 0-1-0.453-1-1 0-0.266 0.109-0.516 0.297-0.703l2.156-2.156c-1.484-1.375-3.437-2.141-5.453-2.141-2.781 0-5.359 1.437-6.813 3.813-0.375 0.609-0.562 1.203-0.828 1.828-0.078 0.219-0.234 0.359-0.469 0.359h-3.109c-0.281 0-0.5-0.234-0.5-0.5v-0.109c1.344-5.547 5.953-9.391 11.719-9.391 3.063 0 6.047 1.219 8.266 3.313l2.031-2.016c0.187-0.187 0.438-0.297 0.703-0.297 0.547 0 1 0.453 1 1z'></path></svg>");--treb-sidebar-icon-about: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path stroke='none' fill='currentColor' d='M14 21.5v-3c0-0.281-0.219-0.5-0.5-0.5h-3c-0.281 0-0.5 0.219-0.5 0.5v3c0 0.281 0.219 0.5 0.5 0.5h3c0.281 0 0.5-0.219 0.5-0.5zM18 11c0-2.859-3-5-5.688-5-2.547 0-4.453 1.094-5.797 3.328-0.141 0.219-0.078 0.5 0.125 0.656l2.063 1.563c0.078 0.063 0.187 0.094 0.297 0.094 0.141 0 0.297-0.063 0.391-0.187 0.734-0.938 1.047-1.219 1.344-1.437 0.266-0.187 0.781-0.375 1.344-0.375 1 0 1.922 0.641 1.922 1.328 0 0.812-0.422 1.219-1.375 1.656-1.109 0.5-2.625 1.797-2.625 3.313v0.562c0 0.281 0.219 0.5 0.5 0.5h3c0.281 0 0.5-0.219 0.5-0.5v0c0-0.359 0.453-1.125 1.188-1.547 1.188-0.672 2.812-1.578 2.812-3.953zM24 14c0 6.625-5.375 12-12 12s-12-5.375-12-12 5.375-12 12-12 12 5.375 12 12z'></path></svg>");--treb-sidebar-icon-chevron-left: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 28'><path stroke='none' fill='currentColor' d='M18.297 4.703l-8.297 8.297 8.297 8.297c0.391 0.391 0.391 1.016 0 1.406l-2.594 2.594c-0.391 0.391-1.016 0.391-1.406 0l-11.594-11.594c-0.391-0.391-0.391-1.016 0-1.406l11.594-11.594c0.391-0.391 1.016-0.391 1.406 0l2.594 2.594c0.391 0.391 0.391 1.016 0 1.406z'></path></svg>");--treb-sidebar-icon-chevron-right: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 28'><path stroke='none' fill='currentColor' d='M17.297 13.703l-11.594 11.594c-0.391 0.391-1.016 0.391-1.406 0l-2.594-2.594c-0.391-0.391-0.391-1.016 0-1.406l8.297-8.297-8.297-8.297c-0.391-0.391-0.391-1.016 0-1.406l2.594-2.594c0.391-0.391 1.016-0.391 1.406 0l11.594 11.594c0.391 0.391 0.391 1.016 0 1.406z'></path></svg>");--treb-sidebar-icon-revert: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path stroke='none' fill='currentColor' d='M24 14c0 6.609-5.391 12-12 12-3.578 0-6.953-1.578-9.234-4.328-0.156-0.203-0.141-0.5 0.031-0.672l2.141-2.156c0.109-0.094 0.25-0.141 0.391-0.141 0.141 0.016 0.281 0.078 0.359 0.187 1.531 1.984 3.828 3.109 6.312 3.109 4.406 0 8-3.594 8-8s-3.594-8-8-8c-2.047 0-3.984 0.781-5.437 2.141l2.141 2.156c0.297 0.281 0.375 0.719 0.219 1.078-0.156 0.375-0.516 0.625-0.922 0.625h-7c-0.547 0-1-0.453-1-1v-7c0-0.406 0.25-0.766 0.625-0.922 0.359-0.156 0.797-0.078 1.078 0.219l2.031 2.016c2.203-2.078 5.187-3.313 8.266-3.313 6.609 0 12 5.391 12 12zM14 9.5v7c0 0.281-0.219 0.5-0.5 0.5h-5c-0.281 0-0.5-0.219-0.5-0.5v-1c0-0.281 0.219-0.5 0.5-0.5h3.5v-5.5c0-0.281 0.219-0.5 0.5-0.5h1c0.281 0 0.5 0.219 0.5 0.5z'></path></svg>");--treb-icon-text-align-left: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-text-left' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M2 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm0-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z'/> </svg>");--treb-icon-text-align-center: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-text-center' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M4 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm2-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-2-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z'/> </svg>");--treb-icon-text-align-right: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-text-right' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M6 12.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5zm4-3a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7a.5.5 0 0 1-.5-.5zm-4-3a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11a.5.5 0 0 1-.5-.5z'/> </svg>");--treb-icon-text-align-top: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'> <path d='M8,15c0.276,0,0.5-0.224,0.5-0.5V5.707l3.146,3.146c0.195,0.195,0.512,0.195,0.707,0s0.195-0.512,0-0.707l-4-4 C8.159,3.951,7.842,3.95,7.647,4.145c0,0,0,0-0.001,0.001l-4,4c-0.195,0.195-0.195,0.512,0,0.707s0.513,0.195,0.708,0L7.5,5.707 V14.5C7.5,14.776,7.724,15,8,15z'/> <line fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' x1='3' y1='1.5' x2='13' y2='1.5'/> </svg> ");--treb-icon-text-align-middle: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-arrows-collapse' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M1 8a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 0 1h-13A.5.5 0 0 1 1 8zm7-8a.5.5 0 0 1 .5.5v3.793l1.146-1.147a.5.5 0 0 1 .708.708l-2 2a.5.5 0 0 1-.708 0l-2-2a.5.5 0 1 1 .708-.708L7.5 4.293V.5A.5.5 0 0 1 8 0zm-.5 11.707-1.146 1.147a.5.5 0 0 1-.708-.708l2-2a.5.5 0 0 1 .708 0l2 2a.5.5 0 0 1-.708.708L8.5 11.707V15.5a.5.5 0 0 1-1 0v-3.793z'/> </svg>");--treb-icon-text-align-bottom: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'> <path d='M8,1C7.724,1,7.5,1.224,7.5,1.5v8.793L4.354,7.146c-0.195-0.195-0.512-0.195-0.707,0s-0.195,0.512,0,0.707l4,4 c0.195,0.195,0.512,0.196,0.707,0.001c0,0,0,0,0.001-0.001l4-4c0.195-0.195,0.195-0.512,0-0.707s-0.513-0.195-0.708,0L8.5,10.293 V1.5C8.5,1.224,8.276,1,8,1z'/> <line fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' x1='13' y1='14.5' x2='3' y2='14.5'/> </svg> ");--treb-icon-file-menu: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-folder' viewBox='0 0 16 16'> <path d='M.54 3.87.5 3a2 2 0 0 1 2-2h3.672a2 2 0 0 1 1.414.586l.828.828A2 2 0 0 0 9.828 3h3.982a2 2 0 0 1 1.992 2.181l-.637 7A2 2 0 0 1 13.174 14H2.826a2 2 0 0 1-1.991-1.819l-.637-7a1.99 1.99 0 0 1 .342-1.31zM2.19 4a1 1 0 0 0-.996 1.09l.637 7a1 1 0 0 0 .995.91h10.348a1 1 0 0 0 .995-.91l.637-7A1 1 0 0 0 13.81 4H2.19zm4.69-1.707A1 1 0 0 0 6.172 2H2.5a1 1 0 0 0-1 .981l.006.139C1.72 3.042 1.95 3 2.19 3h5.396l-.707-.707z'/> </svg>");--treb-icon-wrap-text: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'> <path d='M4,5h8c0.276,0,0.5-0.224,0.5-0.5S12.276,4,12,4H4C3.724,4,3.5,4.224,3.5,4.5S3.724,5,4,5z'/> <path d='M10,8H4C3.724,8,3.5,8.224,3.5,8.5S3.724,9,4,9h6c0.828,0,1.5,0.672,1.5,1.5S10.828,12,10,12v-1.203l-2.953,1.707 L10,14.203V13c1.381,0,2.5-1.119,2.5-2.5S11.381,8,10,8z'/> <path d='M3.75,12.5c0,0.276,0.224,0.5,0.5,0.5H6v-1H4.25C3.974,12,3.75,12.224,3.75,12.5z'/> </svg> ");--treb-icon-unmerge-cells: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-fullscreen' viewBox='0 0 16 16'> <path d='M1.5 1a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0v-4A1.5 1.5 0 0 1 1.5 0h4a.5.5 0 0 1 0 1h-4zM10 .5a.5.5 0 0 1 .5-.5h4A1.5 1.5 0 0 1 16 1.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 1-.5-.5zM.5 10a.5.5 0 0 1 .5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 0 14.5v-4a.5.5 0 0 1 .5-.5zm15 0a.5.5 0 0 1 .5.5v4a1.5 1.5 0 0 1-1.5 1.5h-4a.5.5 0 0 1 0-1h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 1 .5-.5z'/> </svg>");--treb-icon-merge-cells: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-fullscreen-exit' viewBox='0 0 16 16'> <path d='M5.5 0a.5.5 0 0 1 .5.5v4A1.5 1.5 0 0 1 4.5 6h-4a.5.5 0 0 1 0-1h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 1 .5-.5zm5 0a.5.5 0 0 1 .5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 10 4.5v-4a.5.5 0 0 1 .5-.5zM0 10.5a.5.5 0 0 1 .5-.5h4A1.5 1.5 0 0 1 6 11.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 1-.5-.5zm10 1a1.5 1.5 0 0 1 1.5-1.5h4a.5.5 0 0 1 0 1h-4a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0v-4z'/> </svg>");--treb-icon-lock: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-lock' viewBox='0 0 16 16'> <path d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/> </svg>");--treb-icon-comment: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-chat-square' viewBox='0 0 16 16'> <path d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/> </svg>");--treb-icon-fill-color: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-paint-bucket' viewBox='0 0 16 16'> <path d='M6.192 2.78c-.458-.677-.927-1.248-1.35-1.643a2.972 2.972 0 0 0-.71-.515c-.217-.104-.56-.205-.882-.02-.367.213-.427.63-.43.896-.003.304.064.664.173 1.044.196.687.556 1.528 1.035 2.402L.752 8.22c-.277.277-.269.656-.218.918.055.283.187.593.36.903.348.627.92 1.361 1.626 2.068.707.707 1.441 1.278 2.068 1.626.31.173.62.305.903.36.262.05.64.059.918-.218l5.615-5.615c.118.257.092.512.05.939-.03.292-.068.665-.073 1.176v.123h.003a1 1 0 0 0 1.993 0H14v-.057a1.01 1.01 0 0 0-.004-.117c-.055-1.25-.7-2.738-1.86-3.494a4.322 4.322 0 0 0-.211-.434c-.349-.626-.92-1.36-1.627-2.067-.707-.707-1.441-1.279-2.068-1.627-.31-.172-.62-.304-.903-.36-.262-.05-.64-.058-.918.219l-.217.216zM4.16 1.867c.381.356.844.922 1.311 1.632l-.704.705c-.382-.727-.66-1.402-.813-1.938a3.283 3.283 0 0 1-.131-.673c.091.061.204.15.337.274zm.394 3.965c.54.852 1.107 1.567 1.607 2.033a.5.5 0 1 0 .682-.732c-.453-.422-1.017-1.136-1.564-2.027l1.088-1.088c.054.12.115.243.183.365.349.627.92 1.361 1.627 2.068.706.707 1.44 1.278 2.068 1.626.122.068.244.13.365.183l-4.861 4.862a.571.571 0 0 1-.068-.01c-.137-.027-.342-.104-.608-.252-.524-.292-1.186-.8-1.846-1.46-.66-.66-1.168-1.32-1.46-1.846-.147-.265-.225-.47-.251-.607a.573.573 0 0 1-.01-.068l3.048-3.047zm2.87-1.935a2.44 2.44 0 0 1-.241-.561c.135.033.324.11.562.241.524.292 1.186.8 1.846 1.46.45.45.83.901 1.118 1.31a3.497 3.497 0 0 0-1.066.091 11.27 11.27 0 0 1-.76-.694c-.66-.66-1.167-1.322-1.458-1.847z'/> </svg>");--treb-icon-text-color: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_2' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' enable-background='new 0 0 16 16' xml:space='preserve'> <g> <path d='M12.259,14.001l-1.389-3.727H5.465l-1.354,3.727H2.811L7.609,1.397h1.178l4.772,12.604H12.259z M8.418,3.604 c-0.041-0.111-0.084-0.24-0.127-0.387C8.246,3.07,8.21,2.903,8.181,2.716H8.146C8.11,2.903,8.07,3.07,8.027,3.217 C7.982,3.363,7.94,3.492,7.899,3.604L5.86,9.211h4.614L8.418,3.604z'/> </g> </svg> ");--treb-icon-border-bottom: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-bottom' viewBox='0 0 16 16'> <path d='M.969 0H0v.969h.5V1h.469V.969H1V.5H.969V0zm.937 1h.938V0h-.938v1zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938v1zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469h.031zM9.406 1h.938V0h-.938v1zm1.875 0h.938V0h-.938v1zm1.875 0h.938V0h-.938v1zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031V1zM1 2.844v-.938H0v.938h1zm6.5-.938v.938h1v-.938h-1zm7.5 0v.938h1v-.938h-1zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM1 6.594v-.938H0v.938h1zm6.5-.938v.938h1v-.938h-1zm7.5 0v.938h1v-.938h-1zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5V8.5zm1.406 0h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5h.938zm.937 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031V8.5zM0 9.406v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zm-16 .937v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zm-16 .937v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zM0 15h16v1H0v-1z'/> </svg>");--treb-icon-border-top: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-top' viewBox='0 0 16 16'> <path d='M0 0v1h16V0H0zm1 2.844v-.938H0v.938h1zm6.5-.938v.938h1v-.938h-1zm7.5 0v.938h1v-.938h-1zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM1 6.594v-.938H0v.938h1zm6.5-.938v.938h1v-.938h-1zm7.5 0v.938h1v-.938h-1zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5V8.5zm1.406 0h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5h.938zm.937 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031V8.5zM0 9.406v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zm-16 .937v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zm-16 .937v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0V16zm1.906 0h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469h.031zm1.875.5h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469h.031z'/> </svg>");--treb-icon-border-left: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-left' viewBox='0 0 16 16'> <path d='M0 0v16h1V0H0zm1.906 1h.938V0h-.938v1zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938v1zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469h.031zM9.406 1h.938V0h-.938v1zm1.875 0h.938V0h-.938v1zm1.875 0h.938V0h-.938v1zm1.875 0h.469V.969h.5V0h-.969v.5H15v.469h.031V1zM7.5 1.906v.938h1v-.938h-1zm7.5 0v.938h1v-.938h-1zM7.5 3.781v.938h1V3.78h-1zm7.5 0v.938h1V3.78h-1zM7.5 5.656v.938h1v-.938h-1zm7.5 0v.938h1v-.938h-1zM1.906 8.5h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5h.938zm.937 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.469v-.031h.5V7.53h-.5V7.5h-.469v.031H15v.938h.031V8.5zM7.5 9.406v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zm-8.5.937v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zm-8.5.937v.938h1v-.938h-1zm8.5.938v-.938h-1v.938h1zM1.906 16h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469h.031zm1.875.5h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875-.5v.5H16v-.969h-.5V15h-.469v.031H15v.469h.031z'/> </svg>");--treb-icon-border-right: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-right' viewBox='0 0 16 16'> <path d='M.969 0H0v.969h.5V1h.469V.969H1V.5H.969V0zm.937 1h.938V0h-.938v1zm1.875 0h.938V0H3.78v1zm1.875 0h.938V0h-.938v1zM7.531.969V1h.938V.969H8.5V.5h-.031V0H7.53v.5H7.5v.469h.031zM9.406 1h.938V0h-.938v1zm1.875 0h.938V0h-.938v1zm1.875 0h.938V0h-.938v1zM16 0h-1v16h1V0zM1 2.844v-.938H0v.938h1zm6.5-.938v.938h1v-.938h-1zM1 4.719V3.78H0v.938h1zm6.5-.938v.938h1V3.78h-1zM1 6.594v-.938H0v.938h1zm6.5-.938v.938h1v-.938h-1zM.5 8.5h.469v-.031H1V7.53H.969V7.5H.5v.031H0v.938h.5V8.5zm1.406 0h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5h.938zm.937 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zM0 9.406v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zM0 11.281v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zM0 13.156v.938h1v-.938H0zm7.5 0v.938h1v-.938h-1zM0 16h.969v-.5H1v-.469H.969V15H.5v.031H0V16zm1.906 0h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm1.875-.5v.5h.938v-.5H8.5v-.469h-.031V15H7.53v.031H7.5v.469h.031zm1.875.5h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1z'/> </svg>");--treb-icon-border-double-bottom: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='16px' height='16px' viewBox='0 0 16 16' > <path d='M0.969,0H0v0.969h0.5V1h0.469V0.969H1V0.5H0.969V0z M1.906,1h0.938V0H1.906V1z M3.781,1h0.938V0H3.78v1H3.781z M5.656,1 h0.938V0H5.656V1z M7.531,0.969V1h0.938V0.969H8.5V0.5H8.469V0H7.53v0.5H7.5v0.469H7.531z M9.406,1h0.938V0H9.406V1z M11.281,1 h0.938V0h-0.938V1z M13.156,1h0.938V0h-0.938V1z M15.031,1H15.5V0.969H16V0h-0.969v0.5H15v0.469h0.031V1z M1,2.844V1.906H0v0.938H1z M7.5,1.906v0.938h1V1.906H7.5z M15,1.906v0.938h1V1.906H15z M1,4.719V3.78H0v0.938L1,4.719L1,4.719z M7.5,3.781v0.938h1V3.78h-1 V3.781z M15,3.781v0.938h1V3.78h-1V3.781z M1,6.594V5.656H0v0.938H1z M7.5,5.656v0.938h1V5.656H7.5z M15,5.656v0.938h1V5.656H15z M0.5,8.5h0.469V8.469H1V7.53H0.969V7.5H0.5v0.031H0v0.938h0.5V8.5z M1.906,8.5h0.938v-1H1.906V8.5z M3.781,8.5h0.938v-1H3.78v1 H3.781z M5.656,8.5h0.938v-1H5.656V8.5z M8.469,8.5V8.469H8.5V7.53H8.469V7.5H7.53v0.031H7.5v0.938h0.031V8.5H8.469z M9.406,8.5 h0.938v-1H9.406V8.5z M11.281,8.5h0.938v-1h-0.938V8.5z M13.156,8.5h0.938v-1h-0.938V8.5z M15.031,8.5H15.5V8.469H16V7.53h-0.5V7.5 h-0.469v0.031H15v0.938h0.031V8.5z M0,9.406v0.938h1V9.406H0z M7.5,9.406v0.938h1V9.406H7.5z M16,10.344V9.406h-1v0.938H16z M0,11.281v0.938h1v-0.938H0z M7.5,11.281v0.938h1v-0.938H7.5z M16,12.219v-0.938h-1v0.938H16z M0,15h16v1H0V15z M0,13h16v1H0V13z' /> </svg> ");--treb-icon-border-all: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-all' viewBox='0 0 16 16'> <path d='M0 0h16v16H0V0zm1 1v6.5h6.5V1H1zm7.5 0v6.5H15V1H8.5zM15 8.5H8.5V15H15V8.5zM7.5 15V8.5H1V15h6.5z'/> </svg>");--treb-icon-border-outer: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border-outer' viewBox='0 0 16 16'> <path d='M7.5 1.906v.938h1v-.938h-1zm0 1.875v.938h1V3.78h-1zm0 1.875v.938h1v-.938h-1zM1.906 8.5h.938v-1h-.938v1zm1.875 0h.938v-1H3.78v1zm1.875 0h.938v-1h-.938v1zm2.813 0v-.031H8.5V7.53h-.031V7.5H7.53v.031H7.5v.938h.031V8.5h.938zm.937 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zm1.875 0h.938v-1h-.938v1zM7.5 9.406v.938h1v-.938h-1zm0 1.875v.938h1v-.938h-1zm0 1.875v.938h1v-.938h-1z'/> <path d='M0 0v16h16V0H0zm1 1h14v14H1V1z'/> </svg>");--treb-icon-border-none: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-border' viewBox='0 0 16 16'> <path d='M0 0h.969v.5H1v.469H.969V1H.5V.969H0V0zm2.844 1h-.938V0h.938v1zm1.875 0H3.78V0h.938v1zm1.875 0h-.938V0h.938v1zm.937 0V.969H7.5V.5h.031V0h.938v.5H8.5v.469h-.031V1H7.53zm2.813 0h-.938V0h.938v1zm1.875 0h-.938V0h.938v1zm1.875 0h-.938V0h.938v1zM15.5 1h-.469V.969H15V.5h.031V0H16v.969h-.5V1zM1 1.906v.938H0v-.938h1zm6.5.938v-.938h1v.938h-1zm7.5 0v-.938h1v.938h-1zM1 3.78v.938H0V3.78h1zm6.5.938V3.78h1v.938h-1zm7.5 0V3.78h1v.938h-1zM1 5.656v.938H0v-.938h1zm6.5.938v-.938h1v.938h-1zm7.5 0v-.938h1v.938h-1zM.969 8.5H.5v-.031H0V7.53h.5V7.5h.469v.031H1v.938H.969V8.5zm1.875 0h-.938v-1h.938v1zm1.875 0H3.78v-1h.938v1zm1.875 0h-.938v-1h.938v1zm1.875-.031V8.5H7.53v-.031H7.5V7.53h.031V7.5h.938v.031H8.5v.938h-.031zm1.875.031h-.938v-1h.938v1zm1.875 0h-.938v-1h.938v1zm1.875 0h-.938v-1h.938v1zm1.406 0h-.469v-.031H15V7.53h.031V7.5h.469v.031h.5v.938h-.5V8.5zM0 10.344v-.938h1v.938H0zm7.5 0v-.938h1v.938h-1zm8.5-.938v.938h-1v-.938h1zM0 12.22v-.938h1v.938H0zm7.5 0v-.938h1v.938h-1zm8.5-.938v.938h-1v-.938h1zM0 14.094v-.938h1v.938H0zm7.5 0v-.938h1v.938h-1zm8.5-.938v.938h-1v-.938h1zM.969 16H0v-.969h.5V15h.469v.031H1v.469H.969v.5zm1.875 0h-.938v-1h.938v1zm1.875 0H3.78v-1h.938v1zm1.875 0h-.938v-1h.938v1zm.937 0v-.5H7.5v-.469h.031V15h.938v.031H8.5v.469h-.031v.5H7.53zm2.813 0h-.938v-1h.938v1zm1.875 0h-.938v-1h.938v1zm1.875 0h-.938v-1h.938v1zm.937 0v-.5H15v-.469h.031V15h.469v.031h.5V16h-.969z'/> </svg>");--treb-icon-palette: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-palette2' viewBox='0 0 16 16'> <path d='M0 .5A.5.5 0 0 1 .5 0h5a.5.5 0 0 1 .5.5v5.277l4.147-4.131a.5.5 0 0 1 .707 0l3.535 3.536a.5.5 0 0 1 0 .708L10.261 10H15.5a.5.5 0 0 1 .5.5v5a.5.5 0 0 1-.5.5H3a2.99 2.99 0 0 1-2.121-.879A2.99 2.99 0 0 1 0 13.044m6-.21 7.328-7.3-2.829-2.828L6 7.188v5.647zM4.5 13a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0zM15 15v-4H9.258l-4.015 4H15zM0 .5v12.495V.5z'/> <path d='M0 12.995V13a3.07 3.07 0 0 0 0-.005z'/> </svg>");--treb-icon-layout: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_3' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' enable-background='new 0 0 20 20' xml:space='preserve'> <polygon points='3,0 20,17.156 20,17.042 '/> <polygon points='3,0 0,0 0,16 1,16 1,1 2.585,1 19,17.455 19,19 4,19 4,20 20,20 20,17.156 '/> <path d='M6.886,3.922L5.343,5.465c-0.195,0.195-0.195,0.511,0,0.707c0.196,0.195,0.512,0.195,0.708,0l1.539-1.54L6.886,3.922z'/> <path d='M9.702,6.763l-1.53,1.53C7.977,8.488,7.977,8.805,8.172,9c0.195,0.196,0.512,0.196,0.707,0l1.526-1.526L9.702,6.763z'/> <path d='M12.517,9.604L11,11.121c-0.195,0.195-0.195,0.512,0,0.707s0.512,0.195,0.707,0l1.514-1.514L12.517,9.604z'/> <path d='M15.332,12.445l-1.504,1.504c-0.195,0.195-0.195,0.512,0,0.707s0.512,0.195,0.707,0l1.501-1.5L15.332,12.445z'/> <path d='M1,16H0c0,2.209,1.791,4,4,4v-1C2.346,19,1,17.654,1,16z'/> <path d='M5,9v6h6L5,9z M6,11.414L8.586,14H6V11.414z'/> </svg> ");--treb-icon-freeze: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-snow' viewBox='0 0 16 16'> <path d='M8 16a.5.5 0 0 1-.5-.5v-1.293l-.646.647a.5.5 0 0 1-.707-.708L7.5 12.793V8.866l-3.4 1.963-.496 1.85a.5.5 0 1 1-.966-.26l.237-.882-1.12.646a.5.5 0 0 1-.5-.866l1.12-.646-.884-.237a.5.5 0 1 1 .26-.966l1.848.495L7 8 3.6 6.037l-1.85.495a.5.5 0 0 1-.258-.966l.883-.237-1.12-.646a.5.5 0 1 1 .5-.866l1.12.646-.237-.883a.5.5 0 1 1 .966-.258l.495 1.849L7.5 7.134V3.207L6.147 1.854a.5.5 0 1 1 .707-.708l.646.647V.5a.5.5 0 1 1 1 0v1.293l.647-.647a.5.5 0 1 1 .707.708L8.5 3.207v3.927l3.4-1.963.496-1.85a.5.5 0 1 1 .966.26l-.236.882 1.12-.646a.5.5 0 0 1 .5.866l-1.12.646.883.237a.5.5 0 1 1-.26.966l-1.848-.495L9 8l3.4 1.963 1.849-.495a.5.5 0 0 1 .259.966l-.883.237 1.12.646a.5.5 0 0 1-.5.866l-1.12-.646.236.883a.5.5 0 1 1-.966.258l-.495-1.849-3.4-1.963v3.927l1.353 1.353a.5.5 0 0 1-.707.708l-.647-.647V15.5a.5.5 0 0 1-.5.5z'/> </svg>");--treb-icon-column-chart: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' enable-background='new 0 0 20 20' xml:space='preserve'> <path d='M4.5,17.5C4.5,17.776,4.276,18,4,18l0,0c-0.276,0-0.5-0.224-0.5-0.5v-5C3.5,12.224,3.724,12,4,12l0,0 c0.276,0,0.5,0.224,0.5,0.5V17.5z'/> <path d='M12.5,17.5c0,0.276-0.224,0.5-0.5,0.5l0,0c-0.276,0-0.5-0.224-0.5-0.5v-9C11.5,8.224,11.724,8,12,8l0,0 c0.276,0,0.5,0.224,0.5,0.5V17.5z'/> <path d='M16.5,17.5c0,0.276-0.224,0.5-0.5,0.5l0,0c-0.276,0-0.5-0.224-0.5-0.5v-13C15.5,4.224,15.724,4,16,4l0,0 c0.276,0,0.5,0.224,0.5,0.5V17.5z'/> <path d='M8.5,17.5C8.5,17.776,8.276,18,8,18l0,0c-0.276,0-0.5-0.224-0.5-0.5v-14C7.5,3.224,7.724,3,8,3l0,0 c0.276,0,0.5,0.224,0.5,0.5V17.5z'/> </svg> ");--treb-icon-donut-chart: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' enable-background='new 0 0 20 20' xml:space='preserve'> <path d='M12,1.23v1.548C14.526,3.479,16.5,5.477,17.203,8h1.565C18.004,4.639,15.362,1.995,12,1.23z'/> <path d='M2.5,10c0-3.51,2.426-6.456,5.688-7.27V1.183C4.085,2.021,1,5.65,1,10c0,1.761,0.513,3.397,1.387,4.784l1.093-1.093 C2.859,12.601,2.5,11.343,2.5,10z'/> <path d='M17.221,12c-0.878,3.166-3.778,5.5-7.221,5.5c-1.343,0-2.601-0.359-3.692-0.979l-1.093,1.093C6.603,18.487,8.24,19,10,19 c4.282,0,7.859-2.993,8.77-7H17.221z'/> </svg> ");--treb-icon-bar-chart: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' enable-background='new 0 0 20 20' xml:space='preserve'> <path d='M2.5,4.5C2.224,4.5,2,4.276,2,4l0,0c0-0.276,0.224-0.5,0.5-0.5h5C7.776,3.5,8,3.724,8,4l0,0c0,0.276-0.224,0.5-0.5,0.5H2.5z '/> <path d='M2.5,12.5C2.224,12.5,2,12.276,2,12l0,0c0-0.276,0.224-0.5,0.5-0.5h9c0.276,0,0.5,0.224,0.5,0.5l0,0 c0,0.276-0.224,0.5-0.5,0.5H2.5z'/> <path d='M2.5,16.5C2.224,16.5,2,16.276,2,16l0,0c0-0.276,0.224-0.5,0.5-0.5h13c0.276,0,0.5,0.224,0.5,0.5l0,0 c0,0.276-0.224,0.5-0.5,0.5H2.5z'/> <path d='M2.5,8.5C2.224,8.5,2,8.276,2,8l0,0c0-0.276,0.224-0.5,0.5-0.5h14C16.776,7.5,17,7.724,17,8l0,0c0,0.276-0.224,0.5-0.5,0.5 H2.5z'/> </svg> ");--treb-icon-line-chart: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' enable-background='new 0 0 20 20' xml:space='preserve'> <polygon points='1,8 4,5 11,10 19,2 19,4 11,12 4,7 1,10 '/> </svg> ");--treb-icon-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-image' viewBox='0 0 16 16'> <path d='M6.002 5.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0z'/> <path d='M2.002 1a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V3a2 2 0 0 0-2-2h-12zm12 1a1 1 0 0 1 1 1v6.5l-3.777-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062L1.002 12V3a1 1 0 0 1 1-1h12z'/> </svg>");--treb-icon-recalculate: url("data:image/svg+xml,<?xml version='1.0' encoding='utf-8'?> <svg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='20px' height='20px' viewBox='0 0 20 20' enable-background='new 0 0 20 20' xml:space='preserve'> <path d='M9.478,4.022c2.402-0.209,4.583,1.047,5.711,3.014l1.083-0.095c-1.233-2.528-3.912-4.175-6.881-3.916 c-2.97,0.26-5.321,2.347-6.098,5.051l1.083-0.095C5.144,5.849,7.074,4.233,9.478,4.022z'/> <path d='M10.523,15.977c-2.403,0.211-4.585-1.047-5.712-3.013l-1.08,0.095c1.234,2.527,3.91,4.175,6.879,3.914 c2.971-0.259,5.32-2.347,6.095-5.05l-1.08,0.095C14.856,14.15,12.926,15.767,10.523,15.977z'/> <polygon points='2.272,15.616 7.469,12.616 3.371,11.519 '/> <polygon points='17.728,4.384 12.531,7.384 16.629,8.482 '/> <path d='M10,10'/> </svg> ");--treb-icon-check: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-check2' viewBox='0 0 16 16'> <path d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/> </svg>");--treb-icon-table: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-table' viewBox='0 0 16 16'><path d='M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm15 2h-4v3h4V4zm0 4h-4v3h4V8zm0 4h-4v3h3a1 1 0 0 0 1-1v-2zm-5 3v-3H6v3h4zm-5 0v-3H1v2a1 1 0 0 0 1 1h3zm-4-4h4V8H1v3zm0-4h4V4H1v3zm5-3v3h4V4H6zm4 4H6v3h4V8z'/></svg>")}.treb-container .treb-sidebar-icon-popout{mask-image:var(--treb-sidebar-icon-popout);-webkit-mask-image:var(--treb-sidebar-icon-popout)}.treb-container .treb-sidebar-icon-toolbar{mask-image:var(--treb-sidebar-icon-toolbar);-webkit-mask-image:var(--treb-sidebar-icon-toolbar)}.treb-container .treb-sidebar-icon-export{mask-image:var(--treb-sidebar-icon-export);-webkit-mask-image:var(--treb-sidebar-icon-export)}.treb-container .treb-sidebar-icon-reset{mask-image:var(--treb-sidebar-icon-reset);-webkit-mask-image:var(--treb-sidebar-icon-reset)}.treb-container .treb-sidebar-icon-about{mask-image:var(--treb-sidebar-icon-about);-webkit-mask-image:var(--treb-sidebar-icon-about)}.treb-container .treb-sidebar-icon-chevron-left{mask-image:var(--treb-sidebar-icon-chevron-left);-webkit-mask-image:var(--treb-sidebar-icon-chevron-left)}.treb-container .treb-sidebar-icon-chevron-right{mask-image:var(--treb-sidebar-icon-chevron-right);-webkit-mask-image:var(--treb-sidebar-icon-chevron-right)}.treb-container .treb-sidebar-icon-revert{mask-image:var(--treb-sidebar-icon-revert);-webkit-mask-image:var(--treb-sidebar-icon-revert)}.treb-container .treb-icon-text-align-left{mask-image:var(--treb-icon-text-align-left);-webkit-mask-image:var(--treb-icon-text-align-left)}.treb-container .treb-icon-text-align-center{mask-image:var(--treb-icon-text-align-center);-webkit-mask-image:var(--treb-icon-text-align-center)}.treb-container .treb-icon-text-align-right{mask-image:var(--treb-icon-text-align-right);-webkit-mask-image:var(--treb-icon-text-align-right)}.treb-container .treb-icon-text-align-top{mask-image:var(--treb-icon-text-align-top);-webkit-mask-image:var(--treb-icon-text-align-top)}.treb-container .treb-icon-text-align-middle{mask-image:var(--treb-icon-text-align-middle);-webkit-mask-image:var(--treb-icon-text-align-middle)}.treb-container .treb-icon-text-align-bottom{mask-image:var(--treb-icon-text-align-bottom);-webkit-mask-image:var(--treb-icon-text-align-bottom)}.treb-container .treb-icon-file-menu{mask-image:var(--treb-icon-file-menu);-webkit-mask-image:var(--treb-icon-file-menu)}.treb-container .treb-icon-wrap-text{mask-image:var(--treb-icon-wrap-text);-webkit-mask-image:var(--treb-icon-wrap-text)}.treb-container .treb-icon-unmerge-cells{mask-image:var(--treb-icon-unmerge-cells);-webkit-mask-image:var(--treb-icon-unmerge-cells)}.treb-container .treb-icon-merge-cells{mask-image:var(--treb-icon-merge-cells);-webkit-mask-image:var(--treb-icon-merge-cells)}.treb-container .treb-icon-lock{mask-image:var(--treb-icon-lock);-webkit-mask-image:var(--treb-icon-lock)}.treb-container .treb-icon-comment{mask-image:var(--treb-icon-comment);-webkit-mask-image:var(--treb-icon-comment)}.treb-container .treb-icon-fill-color{mask-image:var(--treb-icon-fill-color);-webkit-mask-image:var(--treb-icon-fill-color)}.treb-container .treb-icon-text-color{mask-image:var(--treb-icon-text-color);-webkit-mask-image:var(--treb-icon-text-color)}.treb-container .treb-icon-border-bottom{mask-image:var(--treb-icon-border-bottom);-webkit-mask-image:var(--treb-icon-border-bottom)}.treb-container .treb-icon-border-top{mask-image:var(--treb-icon-border-top);-webkit-mask-image:var(--treb-icon-border-top)}.treb-container .treb-icon-border-left{mask-image:var(--treb-icon-border-left);-webkit-mask-image:var(--treb-icon-border-left)}.treb-container .treb-icon-border-right{mask-image:var(--treb-icon-border-right);-webkit-mask-image:var(--treb-icon-border-right)}.treb-container .treb-icon-border-double-bottom{mask-image:var(--treb-icon-border-double-bottom);-webkit-mask-image:var(--treb-icon-border-double-bottom)}.treb-container .treb-icon-border-all{mask-image:var(--treb-icon-border-all);-webkit-mask-image:var(--treb-icon-border-all)}.treb-container .treb-icon-border-outer{mask-image:var(--treb-icon-border-outer);-webkit-mask-image:var(--treb-icon-border-outer)}.treb-container .treb-icon-border-none{mask-image:var(--treb-icon-border-none);-webkit-mask-image:var(--treb-icon-border-none)}.treb-container .treb-icon-palette{mask-image:var(--treb-icon-palette);-webkit-mask-image:var(--treb-icon-palette)}.treb-container .treb-icon-layout{mask-image:var(--treb-icon-layout);-webkit-mask-image:var(--treb-icon-layout)}.treb-container .treb-icon-freeze{mask-image:var(--treb-icon-freeze);-webkit-mask-image:var(--treb-icon-freeze)}.treb-container .treb-icon-column-chart{mask-image:var(--treb-icon-column-chart);-webkit-mask-image:var(--treb-icon-column-chart)}.treb-container .treb-icon-donut-chart{mask-image:var(--treb-icon-donut-chart);-webkit-mask-image:var(--treb-icon-donut-chart)}.treb-container .treb-icon-bar-chart{mask-image:var(--treb-icon-bar-chart);-webkit-mask-image:var(--treb-icon-bar-chart)}.treb-container .treb-icon-line-chart{mask-image:var(--treb-icon-line-chart);-webkit-mask-image:var(--treb-icon-line-chart)}.treb-container .treb-icon-image{mask-image:var(--treb-icon-image);-webkit-mask-image:var(--treb-icon-image)}.treb-container .treb-icon-recalculate{mask-image:var(--treb-icon-recalculate);-webkit-mask-image:var(--treb-icon-recalculate)}.treb-container .treb-icon-check{mask-image:var(--treb-icon-check);-webkit-mask-image:var(--treb-icon-check)}.treb-container .treb-icon-table{mask-image:var(--treb-icon-table);-webkit-mask-image:var(--treb-icon-table)}.treb-main,.treb-embed-mask{font-family:BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-style:normal;font-weight:400;color:#333;font-size:12pt;box-sizing:border-box}.treb-main *,.treb-embed-mask *{box-sizing:border-box}.masked .treb-main{opacity:.6}.treb-main{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;transition:opacity .2s ease}.treb-embed-mask{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1000;display:flex;justify-content:center;align-items:center;opacity:0;transition:opacity .2s;pointer-events:none}.treb-embed-mask.visible{pointer-events:auto;opacity:1}.treb-views{box-sizing:border-box;position:absolute;inset:0;transition:right .2s ease-in-out,top .2s ease-in-out;display:flex;flex-direction:row}.treb-view{flex-grow:1;position:relative}.treb-view~.treb-view{margin-left:1em}.default-spreadsheet-size{width:680px;height:400px;max-width:100%}.sidebar-open .treb-views{right:40px}.sidebar-open .show-sidebar-button{opacity:0;pointer-events:none}.sidebar-open .embedded-spreadsheet-sidebar{opacity:1;pointer-events:initial}.sidebar-open .masked~.embedded-spreadsheet-sidebar{opacity:.6;pointer-events:none}.toolbar-container{position:absolute;top:0;left:0;opacity:0;pointer-events:none;transition:opacity .2s ease;right:0;max-width:100%;height:38px;max-height:38px}.toolbar-open .treb-views,.toolbar-open .embedded-spreadsheet-sidebar{top:38px}.toolbar-open .toolbar-container{opacity:1;pointer-events:initial}.toolbar-open .masked+.toolbar-container{pointer-events:none;opacity:.6}.sidebar-button{box-sizing:border-box;background:transparent;padding:0;width:24px;height:24px;line-height:28px;display:flex;flex-direction:row;align-items:center;justify-content:center;border:0}.sidebar-button.smaller.treb-icon:after{width:12px;height:12px;mask-size:12px 12px;-webkit-mask-size:12px 12px}.sidebar-button.treb-icon:after{width:24px;height:24px;content:"";mask-position:center;-webkit-mask-position:center;mask-repeat:no-repeat;-webkit-mask-repeat:no-repeat;background:#ccc;transition:background .1s ease}.sidebar-button.treb-icon:hover:after{background:#666}.treb-icon-popout:after{mask-image:var(--treb-sidebar-icon-popout);-webkit-mask-image:var(--treb-sidebar-icon-popout)}.treb-icon-toolbar:after{mask-image:var(--treb-sidebar-icon-toolbar);-webkit-mask-image:var(--treb-sidebar-icon-toolbar)}.treb-icon-export:after{mask-image:var(--treb-sidebar-icon-export);-webkit-mask-image:var(--treb-sidebar-icon-export)}.treb-icon-reset:after{mask-image:var(--treb-sidebar-icon-reset);-webkit-mask-image:var(--treb-sidebar-icon-reset)}.treb-icon-about:after{mask-image:var(--treb-sidebar-icon-about);-webkit-mask-image:var(--treb-sidebar-icon-about)}.treb-icon-fork:after{mask-image:var(--treb-sidebar-icon-fork);-webkit-mask-image:var(--treb-sidebar-icon-fork)}.treb-icon-chevron-left:after{mask-image:var(--treb-sidebar-icon-chevron-left);-webkit-mask-image:var(--treb-sidebar-icon-chevron-left)}.treb-icon-chevron-right:after{mask-image:var(--treb-sidebar-icon-chevron-right);-webkit-mask-image:var(--treb-sidebar-icon-chevron-right)}.treb-icon-revert:after{mask-image:var(--treb-sidebar-icon-revert);-webkit-mask-image:var(--treb-sidebar-icon-revert)}.show-sidebar-button{position:absolute;border:1px solid var(--treb-sidebar-button-border-color, var(--treb-ui-border-color, #ccc));border-right-width:0px;z-index:5;bottom:50px;right:0;border-radius:12px 0 0 12px;background:var(--treb-sidebar-button-background, #fff);transition:opacity .2s ease-in-out}.embedded-spreadsheet-sidebar{border:0;box-sizing:border-box;align-items:center;position:absolute;right:0;top:0;width:40px;opacity:0;bottom:0;overflow:hidden;pointer-events:none;display:flex;flex-direction:column;transition:top .2s ease-in-out,opacity .2s ease-in-out}.embedded-spreadsheet-sidebar .sidebar-button{margin-top:10px;margin-bottom:4px}.embedded-spreadsheet-sidebar .sidebar-button:last-child{margin-bottom:50px}.embedded-spreadsheet-sidebar .sidebar-spacer{box-sizing:border-box;flex-grow:1}.treb-fullscreen-padding .embedded-spreadsheet-sidebar{width:50px}.treb-fullscreen-padding .embedded-spreadsheet-sidebar .sidebar-button{margin-bottom:6px}.treb-fullscreen-padding .embedded-spreadsheet-sidebar .sidebar-button:last-child{margin-bottom:50px}.treb-fullscreen-padding .toolbar-container{top:8px;left:6px}.treb-fullscreen-padding.sidebar-open .treb-views{right:50px}.treb-fullscreen-padding.toolbar-open .treb-views,.treb-fullscreen-padding.toolbar-open .embedded-spreadsheet-sidebar{top:45px}.treb-embed-mouse-mask{position:fixed;inset:0;background:transparent;z-index:1000;display:none;cursor:nwse-resize}.treb-embed-resize-rect{box-sizing:border-box;position:absolute;border:1px dotted #2e8dd6;border-radius:2px;pointer-events:none}.treb-embed-resize-handle{box-sizing:border-box;position:absolute;height:16px;width:16px;min-height:16px;min-width:16px;border:8px solid #2e8dd6;border-top-color:transparent;border-left-color:transparent;cursor:nwse-resize;bottom:1px;right:1px;z-index:999}