diff --git a/ci/render.sh b/ci/render.sh index 449971cb..5b857a22 100755 --- a/ci/render.sh +++ b/ci/render.sh @@ -9,6 +9,7 @@ _normal() { _bespoke() { sh_c d2 --theme=300 --dark-theme=200 -l elk -c --pad 0 ./static/bespoke-d2/terminal-theme.d2 ./static/img/generated/terminal-theme.svg2 + sh_c d2 --theme=300 --dark-theme=200 -l elk -c --pad 0 ./static/bespoke-d2/theme-override.d2 ./static/img/generated/theme-override.svg2 sh_c d2 --animate-interval=1400 -l elk -c --pad 0 ./static/bespoke-d2/animated.d2 ./static/img/generated/animated.svg2 sh_c d2 --animate-interval=1400 -c --pad 0 ./static/bespoke-d2/chicken.d2 ./static/img/generated/chicken.svg2 sh_c d2 --pad 50 ./static/bespoke-d2/tiktok.d2 ./static/img/generated/tiktok.pdf diff --git a/docs/releases/0.6.3.md b/docs/releases/0.6.3.md new file mode 100644 index 00000000..542e47f9 --- /dev/null +++ b/docs/releases/0.6.3.md @@ -0,0 +1,23 @@ +D2 0.6.3 allows you to make your own and customize existing D2 themes. Here's an example with some random color codes. + +Screen Shot 2023-12-16 at 3 13 04 PM + +> See [docs](https://d2lang.com/tour/themes/#special-themes) + +> [Playground link](https://play.d2lang.com/?script=rJLNjqM6EIX3fopS7joo4S8KVxqJBHiNkYVrwIpjW7aTTNTi3UcGDEn3SL2ZBQt_Ltepc4o7NbaADwLA4m2r5C_eTUcA1-MVt-qOxnCGNmCA076AzX9xfaiSeBNY7Fmen055ubDEszKr8vKwsNSzc1bvy2xhmWd1XtfH88Jyz5qmyY7VhsywLEeVXZUeyv1mgWPLNC6zJlvh2PO4O5fNcX0_qTdpmiT5UjrJN825qmY7A_HfQCS6hzKXyXmLQoBTDzQhCUsdCsHdaza2pxoLsE4ZZD8ZdTRcuKfA6HoTjmuBBThzw1lsSttQaa_cOTTkU3fY_ni9LsCiZP-wZpxAScElglbGURH83HgBH7OlHn_TTskhPPDeQBvVorVqzcQpQzv8Ekj7FFwyNN-nMbdf445eZvYW3oWjRVH3SiII1VkyEHKzYVHzBBqNVZIAPDhzfQH7ZBfqfNd519Hrmq_0gtBSIb5UvaUV-Zho6-eZBEdz1hl1wS2jti8g8VJUc7Bo7t-1YtxqQZ-f6r2xyQW3jkynsBtNO_z_r6EOJPzF0XtuvuUqQP4EAAD__w%3D%3D&layout=elk&theme=1&) + +#### Features ๐Ÿš€ + +- Themes can be customized via `d2-config` vars. [#1777](https://github.com/terrastruct/d2/pull/1777) + +#### Improvements ๐Ÿงน + +- Icons can be added for special objects (sql_table, class, code, markdown, latex). [#1774](https://github.com/terrastruct/d2/pull/1774) + +#### Bugfixes โ›‘๏ธ + +- Fix importing files that override an existing value with an array. [#1762](https://github.com/terrastruct/d2/pull/1762) +- Fixes missing unfilled triangle arrowheads when sketch flag is on. [#1763](https://github.com/terrastruct/d2/pull/1763) +- Fixes a bug where the render target could be incorrect if the target path contains "index". [#1764](https://github.com/terrastruct/d2/pull/1764) +- Fixes ELK layout with outside labels/icons. [#1776](https://github.com/terrastruct/d2/pull/1776) +- Fixes a bug where an edge could become disconnected with dagre layout and direction right. [#1778](https://github.com/terrastruct/d2/pull/1778) diff --git a/docs/releases/intro.md b/docs/releases/intro.md index 50780515..8a7b789d 100644 --- a/docs/releases/intro.md +++ b/docs/releases/intro.md @@ -2,9 +2,9 @@ :::info Latest -Version: [0.6.2](/releases/0.6.2) (released December 06, 2023) +Version: [0.6.3](/releases/0.6.3) (released December 16, 2023) -Downloads: [Assets](https://github.com/terrastruct/d2/releases/tag/v0.6.2) +Downloads: [Assets](https://github.com/terrastruct/d2/releases/tag/v0.6.3) ::: diff --git a/docs/tour/themes.md b/docs/tour/themes.md index 5d97e59a..ec815377 100644 --- a/docs/tour/themes.md +++ b/docs/tour/themes.md @@ -136,3 +136,49 @@ logs: {shape: page; style.multiple: true} network.data processor -> api server ``` + +## Customizing themes + +You can override theme values to customize existing themes or replace them entirely with +your own theme. + +This is controlled by two [configuration variables](/tour/vars#configuration-variables): + +- `theme-overrides`: replaces color codes for theme +- `dark-theme-overrides`: replaces color codes for dark theme + +Adding this snippet to the above code results in the following diagram. + +```d2 +vars: { + d2-config: { + theme-overrides: { + B1: "#2E7D32" + B2: "#66BB6A" + B3: "#A5D6A7" + B4: "#C5E1A5" + B5: "#E6EE9C" + B6: "#FFF59D" + + AA2: "#0D47A1" + AA4: "#42A5F5" + AA5: "#90CAF9" + + AB4: "#F44336" + AB5: "#FFCDD2" + } + } +} +``` + +
+ +### Color codes + +D2 color
+codes + +:::info +Not all color codes are currently used right now, but that may change in the future for +new things that come to D2. +::: diff --git a/sidebars.js b/sidebars.js index 35aec40d..87cf3947 100644 --- a/sidebars.js +++ b/sidebars.js @@ -168,6 +168,7 @@ const sidebars = { link: { type: "doc", id: "releases/intro" }, items: [ "releases/intro", + "releases/0.6.3", "releases/0.6.2", "releases/0.6.1", "releases/0.6.0", diff --git a/static/bespoke-d2/theme-override.d2 b/static/bespoke-d2/theme-override.d2 new file mode 100644 index 00000000..bd3e8a2b --- /dev/null +++ b/static/bespoke-d2/theme-override.d2 @@ -0,0 +1,62 @@ +vars: { + d2-config: { + theme-overrides: { + B1: "#2E7D32" + B2: "#66BB6A" + B3: "#A5D6A7" + B4: "#C5E1A5" + B5: "#E6EE9C" + B6: "#FFF59D" + + AA2: "#0D47A1" + AA4: "#42A5F5" + AA5: "#90CAF9" + + AB4: "#F44336" + AB5: "#FFCDD2" + } + } +} +network: { + cell tower: { + satellites: { + shape: stored_data + style.multiple: true + } + + transmitter + + satellites -> transmitter: send + satellites -> transmitter: send + satellites -> transmitter: send + } + + online portal: { + ui: {shape: hexagon} + } + + data processor: { + storage: { + shape: cylinder + style.multiple: true + } + } + + cell tower.transmitter -> data processor.storage: phone logs +} + +user: { + shape: person + width: 130 +} + +user -> network.cell tower: make call +user -> network.online portal.ui: access { + style.stroke-dash: 3 +} + +api server -> network.online portal.ui: display +api server -> logs: persist +logs: {shape: page; style.multiple: true} + +network.data processor -> api server diff --git a/static/img/color-code.png b/static/img/color-code.png new file mode 100644 index 00000000..f1fd6d04 Binary files /dev/null and b/static/img/color-code.png differ diff --git a/static/img/generated/animated.svg2 b/static/img/generated/animated.svg2 index d2842c89..58987919 100644 --- a/static/img/generated/animated.svg2 +++ b/static/img/generated/animated.svg2 @@ -1,26 +1,26 @@ -Normal deploymentlocalgithubawscodedevmasterbuilderss3ec2workflows commitmerge triggerupload and runupload binaries pull binaries +}]]>Normal deploymentlocalgithubawscodedevmasterbuilderss3ec2workflows commitmerge triggerupload and runupload binaries pull binaries @@ -877,7 +877,7 @@ -Hotfix deploymentlocalgithubawscodedevmasterbuilderss3ec2workflows merge triggerupload binaries pull binaries commitupload and run +Hotfix deploymentlocalgithubawscodedevmasterbuilderss3ec2workflows merge triggerupload binaries pull binaries commitupload and run diff --git a/static/img/generated/cat.pdf b/static/img/generated/cat.pdf index 4d506653..245b2eb1 100644 Binary files a/static/img/generated/cat.pdf and b/static/img/generated/cat.pdf differ diff --git a/static/img/generated/chicken.svg2 b/static/img/generated/chicken.svg2 index 5e234640..466d510f 100644 --- a/static/img/generated/chicken.svg2 +++ b/static/img/generated/chicken.svg2 @@ -1,16 +1,16 @@ -Chicken's plan +}]]>Chicken's plan -Chicken's planApproach road +Chicken's planApproach road -Chicken's planApproach roadCross road +Chicken's planApproach roadCross road -Chicken's planApproach roadCross roadMake you wonder why +Chicken's planApproach roadCross roadMake you wonder why diff --git a/static/img/generated/classes-1.svg2 b/static/img/generated/classes-1.svg2 index 6242996c..96c375c3 100644 --- a/static/img/generated/classes-1.svg2 +++ b/static/img/generated/classes-1.svg2 @@ -1,4 +1,4 @@ -Spiderman 1Spiderman 2Spiderman 3 ๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰ + .d2-2340908132 .fill-N1{fill:#0A0F25;} + .d2-2340908132 .fill-N2{fill:#676C7E;} + .d2-2340908132 .fill-N3{fill:#9499AB;} + .d2-2340908132 .fill-N4{fill:#CFD2DD;} + .d2-2340908132 .fill-N5{fill:#DEE1EB;} + .d2-2340908132 .fill-N6{fill:#EEF1F8;} + .d2-2340908132 .fill-N7{fill:#FFFFFF;} + .d2-2340908132 .fill-B1{fill:#0D32B2;} + .d2-2340908132 .fill-B2{fill:#0D32B2;} + .d2-2340908132 .fill-B3{fill:#E3E9FD;} + .d2-2340908132 .fill-B4{fill:#E3E9FD;} + .d2-2340908132 .fill-B5{fill:#EDF0FD;} + .d2-2340908132 .fill-B6{fill:#F7F8FE;} + .d2-2340908132 .fill-AA2{fill:#4A6FF3;} + .d2-2340908132 .fill-AA4{fill:#EDF0FD;} + .d2-2340908132 .fill-AA5{fill:#F7F8FE;} + .d2-2340908132 .fill-AB4{fill:#EDF0FD;} + .d2-2340908132 .fill-AB5{fill:#F7F8FE;} + .d2-2340908132 .stroke-N1{stroke:#0A0F25;} + .d2-2340908132 .stroke-N2{stroke:#676C7E;} + .d2-2340908132 .stroke-N3{stroke:#9499AB;} + .d2-2340908132 .stroke-N4{stroke:#CFD2DD;} + .d2-2340908132 .stroke-N5{stroke:#DEE1EB;} + .d2-2340908132 .stroke-N6{stroke:#EEF1F8;} + .d2-2340908132 .stroke-N7{stroke:#FFFFFF;} + .d2-2340908132 .stroke-B1{stroke:#0D32B2;} + .d2-2340908132 .stroke-B2{stroke:#0D32B2;} + .d2-2340908132 .stroke-B3{stroke:#E3E9FD;} + .d2-2340908132 .stroke-B4{stroke:#E3E9FD;} + .d2-2340908132 .stroke-B5{stroke:#EDF0FD;} + .d2-2340908132 .stroke-B6{stroke:#F7F8FE;} + .d2-2340908132 .stroke-AA2{stroke:#4A6FF3;} + .d2-2340908132 .stroke-AA4{stroke:#EDF0FD;} + .d2-2340908132 .stroke-AA5{stroke:#F7F8FE;} + .d2-2340908132 .stroke-AB4{stroke:#EDF0FD;} + .d2-2340908132 .stroke-AB5{stroke:#F7F8FE;} + .d2-2340908132 .background-color-N1{background-color:#0A0F25;} + .d2-2340908132 .background-color-N2{background-color:#676C7E;} + .d2-2340908132 .background-color-N3{background-color:#9499AB;} + .d2-2340908132 .background-color-N4{background-color:#CFD2DD;} + .d2-2340908132 .background-color-N5{background-color:#DEE1EB;} + .d2-2340908132 .background-color-N6{background-color:#EEF1F8;} + .d2-2340908132 .background-color-N7{background-color:#FFFFFF;} + .d2-2340908132 .background-color-B1{background-color:#0D32B2;} + .d2-2340908132 .background-color-B2{background-color:#0D32B2;} + .d2-2340908132 .background-color-B3{background-color:#E3E9FD;} + .d2-2340908132 .background-color-B4{background-color:#E3E9FD;} + .d2-2340908132 .background-color-B5{background-color:#EDF0FD;} + .d2-2340908132 .background-color-B6{background-color:#F7F8FE;} + .d2-2340908132 .background-color-AA2{background-color:#4A6FF3;} + .d2-2340908132 .background-color-AA4{background-color:#EDF0FD;} + .d2-2340908132 .background-color-AA5{background-color:#F7F8FE;} + .d2-2340908132 .background-color-AB4{background-color:#EDF0FD;} + .d2-2340908132 .background-color-AB5{background-color:#F7F8FE;} + .d2-2340908132 .color-N1{color:#0A0F25;} + .d2-2340908132 .color-N2{color:#676C7E;} + .d2-2340908132 .color-N3{color:#9499AB;} + .d2-2340908132 .color-N4{color:#CFD2DD;} + .d2-2340908132 .color-N5{color:#DEE1EB;} + .d2-2340908132 .color-N6{color:#EEF1F8;} + .d2-2340908132 .color-N7{color:#FFFFFF;} + .d2-2340908132 .color-B1{color:#0D32B2;} + .d2-2340908132 .color-B2{color:#0D32B2;} + .d2-2340908132 .color-B3{color:#E3E9FD;} + .d2-2340908132 .color-B4{color:#E3E9FD;} + .d2-2340908132 .color-B5{color:#EDF0FD;} + .d2-2340908132 .color-B6{color:#F7F8FE;} + .d2-2340908132 .color-AA2{color:#4A6FF3;} + .d2-2340908132 .color-AA4{color:#EDF0FD;} + .d2-2340908132 .color-AA5{color:#F7F8FE;} + .d2-2340908132 .color-AB4{color:#EDF0FD;} + .d2-2340908132 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-2340908132 .fill-N1{fill:#CDD6F4;} + .d2-2340908132 .fill-N2{fill:#BAC2DE;} + .d2-2340908132 .fill-N3{fill:#A6ADC8;} + .d2-2340908132 .fill-N4{fill:#585B70;} + .d2-2340908132 .fill-N5{fill:#45475A;} + .d2-2340908132 .fill-N6{fill:#313244;} + .d2-2340908132 .fill-N7{fill:#1E1E2E;} + .d2-2340908132 .fill-B1{fill:#CBA6f7;} + .d2-2340908132 .fill-B2{fill:#CBA6f7;} + .d2-2340908132 .fill-B3{fill:#6C7086;} + .d2-2340908132 .fill-B4{fill:#585B70;} + .d2-2340908132 .fill-B5{fill:#45475A;} + .d2-2340908132 .fill-B6{fill:#313244;} + .d2-2340908132 .fill-AA2{fill:#f38BA8;} + .d2-2340908132 .fill-AA4{fill:#45475A;} + .d2-2340908132 .fill-AA5{fill:#313244;} + .d2-2340908132 .fill-AB4{fill:#45475A;} + .d2-2340908132 .fill-AB5{fill:#313244;} + .d2-2340908132 .stroke-N1{stroke:#CDD6F4;} + .d2-2340908132 .stroke-N2{stroke:#BAC2DE;} + .d2-2340908132 .stroke-N3{stroke:#A6ADC8;} + .d2-2340908132 .stroke-N4{stroke:#585B70;} + .d2-2340908132 .stroke-N5{stroke:#45475A;} + .d2-2340908132 .stroke-N6{stroke:#313244;} + .d2-2340908132 .stroke-N7{stroke:#1E1E2E;} + .d2-2340908132 .stroke-B1{stroke:#CBA6f7;} + .d2-2340908132 .stroke-B2{stroke:#CBA6f7;} + .d2-2340908132 .stroke-B3{stroke:#6C7086;} + .d2-2340908132 .stroke-B4{stroke:#585B70;} + .d2-2340908132 .stroke-B5{stroke:#45475A;} + .d2-2340908132 .stroke-B6{stroke:#313244;} + .d2-2340908132 .stroke-AA2{stroke:#f38BA8;} + .d2-2340908132 .stroke-AA4{stroke:#45475A;} + .d2-2340908132 .stroke-AA5{stroke:#313244;} + .d2-2340908132 .stroke-AB4{stroke:#45475A;} + .d2-2340908132 .stroke-AB5{stroke:#313244;} + .d2-2340908132 .background-color-N1{background-color:#CDD6F4;} + .d2-2340908132 .background-color-N2{background-color:#BAC2DE;} + .d2-2340908132 .background-color-N3{background-color:#A6ADC8;} + .d2-2340908132 .background-color-N4{background-color:#585B70;} + .d2-2340908132 .background-color-N5{background-color:#45475A;} + .d2-2340908132 .background-color-N6{background-color:#313244;} + .d2-2340908132 .background-color-N7{background-color:#1E1E2E;} + .d2-2340908132 .background-color-B1{background-color:#CBA6f7;} + .d2-2340908132 .background-color-B2{background-color:#CBA6f7;} + .d2-2340908132 .background-color-B3{background-color:#6C7086;} + .d2-2340908132 .background-color-B4{background-color:#585B70;} + .d2-2340908132 .background-color-B5{background-color:#45475A;} + .d2-2340908132 .background-color-B6{background-color:#313244;} + .d2-2340908132 .background-color-AA2{background-color:#f38BA8;} + .d2-2340908132 .background-color-AA4{background-color:#45475A;} + .d2-2340908132 .background-color-AA5{background-color:#313244;} + .d2-2340908132 .background-color-AB4{background-color:#45475A;} + .d2-2340908132 .background-color-AB5{background-color:#313244;} + .d2-2340908132 .color-N1{color:#CDD6F4;} + .d2-2340908132 .color-N2{color:#BAC2DE;} + .d2-2340908132 .color-N3{color:#A6ADC8;} + .d2-2340908132 .color-N4{color:#585B70;} + .d2-2340908132 .color-N5{color:#45475A;} + .d2-2340908132 .color-N6{color:#313244;} + .d2-2340908132 .color-N7{color:#1E1E2E;} + .d2-2340908132 .color-B1{color:#CBA6f7;} + .d2-2340908132 .color-B2{color:#CBA6f7;} + .d2-2340908132 .color-B3{color:#6C7086;} + .d2-2340908132 .color-B4{color:#585B70;} + .d2-2340908132 .color-B5{color:#45475A;} + .d2-2340908132 .color-B6{color:#313244;} + .d2-2340908132 .color-AA2{color:#f38BA8;} + .d2-2340908132 .color-AA4{color:#45475A;} + .d2-2340908132 .color-AA5{color:#313244;} + .d2-2340908132 .color-AB4{color:#45475A;} + .d2-2340908132 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]>Spiderman 1Spiderman 2Spiderman 3 ๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰๐Ÿ‘‰ diff --git a/static/img/generated/globs-filter-2.svg2 b/static/img/generated/globs-filter-2.svg2 index 6d0e3233..58ca2999 100644 --- a/static/img/generated/globs-filter-2.svg2 +++ b/static/img/generated/globs-filter-2.svg2 @@ -1,4 +1,4 @@ -a +}]]>a -ab +ab -abc +abc -abcd +abcd -abcde +abcde -abcdef +abcdef @@ -199,7 +199,7 @@ -abcdefg +abcdefg @@ -208,7 +208,7 @@ -abcdefgh +abcdefgh diff --git a/static/img/generated/grid-connected.svg2 b/static/img/generated/grid-connected.svg2 index c7f41f95..d53a4599 100644 --- a/static/img/generated/grid-connected.svg2 +++ b/static/img/generated/grid-connected.svg2 @@ -1,4 +1,4 @@ -a +}]]>a -ab +ab -abc +abc -abcd +abcd -abcde +abcde -abcdef +abcdef @@ -199,7 +199,7 @@ -abcdefg +abcdefg @@ -208,7 +208,7 @@ -abcdefgh +abcdefgh diff --git a/static/img/generated/grid.svg2 b/static/img/generated/grid.svg2 index 9b7de1f0..e66bb292 100644 --- a/static/img/generated/grid.svg2 +++ b/static/img/generated/grid.svg2 @@ -1,4 +1,4 @@ -usersidinttokenstringcustomer_idstring + .d2-2015736026 .fill-N1{fill:#0A0F25;} + .d2-2015736026 .fill-N2{fill:#676C7E;} + .d2-2015736026 .fill-N3{fill:#9499AB;} + .d2-2015736026 .fill-N4{fill:#CFD2DD;} + .d2-2015736026 .fill-N5{fill:#DEE1EB;} + .d2-2015736026 .fill-N6{fill:#EEF1F8;} + .d2-2015736026 .fill-N7{fill:#FFFFFF;} + .d2-2015736026 .fill-B1{fill:#0D32B2;} + .d2-2015736026 .fill-B2{fill:#0D32B2;} + .d2-2015736026 .fill-B3{fill:#E3E9FD;} + .d2-2015736026 .fill-B4{fill:#E3E9FD;} + .d2-2015736026 .fill-B5{fill:#EDF0FD;} + .d2-2015736026 .fill-B6{fill:#F7F8FE;} + .d2-2015736026 .fill-AA2{fill:#4A6FF3;} + .d2-2015736026 .fill-AA4{fill:#EDF0FD;} + .d2-2015736026 .fill-AA5{fill:#F7F8FE;} + .d2-2015736026 .fill-AB4{fill:#EDF0FD;} + .d2-2015736026 .fill-AB5{fill:#F7F8FE;} + .d2-2015736026 .stroke-N1{stroke:#0A0F25;} + .d2-2015736026 .stroke-N2{stroke:#676C7E;} + .d2-2015736026 .stroke-N3{stroke:#9499AB;} + .d2-2015736026 .stroke-N4{stroke:#CFD2DD;} + .d2-2015736026 .stroke-N5{stroke:#DEE1EB;} + .d2-2015736026 .stroke-N6{stroke:#EEF1F8;} + .d2-2015736026 .stroke-N7{stroke:#FFFFFF;} + .d2-2015736026 .stroke-B1{stroke:#0D32B2;} + .d2-2015736026 .stroke-B2{stroke:#0D32B2;} + .d2-2015736026 .stroke-B3{stroke:#E3E9FD;} + .d2-2015736026 .stroke-B4{stroke:#E3E9FD;} + .d2-2015736026 .stroke-B5{stroke:#EDF0FD;} + .d2-2015736026 .stroke-B6{stroke:#F7F8FE;} + .d2-2015736026 .stroke-AA2{stroke:#4A6FF3;} + .d2-2015736026 .stroke-AA4{stroke:#EDF0FD;} + .d2-2015736026 .stroke-AA5{stroke:#F7F8FE;} + .d2-2015736026 .stroke-AB4{stroke:#EDF0FD;} + .d2-2015736026 .stroke-AB5{stroke:#F7F8FE;} + .d2-2015736026 .background-color-N1{background-color:#0A0F25;} + .d2-2015736026 .background-color-N2{background-color:#676C7E;} + .d2-2015736026 .background-color-N3{background-color:#9499AB;} + .d2-2015736026 .background-color-N4{background-color:#CFD2DD;} + .d2-2015736026 .background-color-N5{background-color:#DEE1EB;} + .d2-2015736026 .background-color-N6{background-color:#EEF1F8;} + .d2-2015736026 .background-color-N7{background-color:#FFFFFF;} + .d2-2015736026 .background-color-B1{background-color:#0D32B2;} + .d2-2015736026 .background-color-B2{background-color:#0D32B2;} + .d2-2015736026 .background-color-B3{background-color:#E3E9FD;} + .d2-2015736026 .background-color-B4{background-color:#E3E9FD;} + .d2-2015736026 .background-color-B5{background-color:#EDF0FD;} + .d2-2015736026 .background-color-B6{background-color:#F7F8FE;} + .d2-2015736026 .background-color-AA2{background-color:#4A6FF3;} + .d2-2015736026 .background-color-AA4{background-color:#EDF0FD;} + .d2-2015736026 .background-color-AA5{background-color:#F7F8FE;} + .d2-2015736026 .background-color-AB4{background-color:#EDF0FD;} + .d2-2015736026 .background-color-AB5{background-color:#F7F8FE;} + .d2-2015736026 .color-N1{color:#0A0F25;} + .d2-2015736026 .color-N2{color:#676C7E;} + .d2-2015736026 .color-N3{color:#9499AB;} + .d2-2015736026 .color-N4{color:#CFD2DD;} + .d2-2015736026 .color-N5{color:#DEE1EB;} + .d2-2015736026 .color-N6{color:#EEF1F8;} + .d2-2015736026 .color-N7{color:#FFFFFF;} + .d2-2015736026 .color-B1{color:#0D32B2;} + .d2-2015736026 .color-B2{color:#0D32B2;} + .d2-2015736026 .color-B3{color:#E3E9FD;} + .d2-2015736026 .color-B4{color:#E3E9FD;} + .d2-2015736026 .color-B5{color:#EDF0FD;} + .d2-2015736026 .color-B6{color:#F7F8FE;} + .d2-2015736026 .color-AA2{color:#4A6FF3;} + .d2-2015736026 .color-AA4{color:#EDF0FD;} + .d2-2015736026 .color-AA5{color:#F7F8FE;} + .d2-2015736026 .color-AB4{color:#EDF0FD;} + .d2-2015736026 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-2015736026 .fill-N1{fill:#CDD6F4;} + .d2-2015736026 .fill-N2{fill:#BAC2DE;} + .d2-2015736026 .fill-N3{fill:#A6ADC8;} + .d2-2015736026 .fill-N4{fill:#585B70;} + .d2-2015736026 .fill-N5{fill:#45475A;} + .d2-2015736026 .fill-N6{fill:#313244;} + .d2-2015736026 .fill-N7{fill:#1E1E2E;} + .d2-2015736026 .fill-B1{fill:#CBA6f7;} + .d2-2015736026 .fill-B2{fill:#CBA6f7;} + .d2-2015736026 .fill-B3{fill:#6C7086;} + .d2-2015736026 .fill-B4{fill:#585B70;} + .d2-2015736026 .fill-B5{fill:#45475A;} + .d2-2015736026 .fill-B6{fill:#313244;} + .d2-2015736026 .fill-AA2{fill:#f38BA8;} + .d2-2015736026 .fill-AA4{fill:#45475A;} + .d2-2015736026 .fill-AA5{fill:#313244;} + .d2-2015736026 .fill-AB4{fill:#45475A;} + .d2-2015736026 .fill-AB5{fill:#313244;} + .d2-2015736026 .stroke-N1{stroke:#CDD6F4;} + .d2-2015736026 .stroke-N2{stroke:#BAC2DE;} + .d2-2015736026 .stroke-N3{stroke:#A6ADC8;} + .d2-2015736026 .stroke-N4{stroke:#585B70;} + .d2-2015736026 .stroke-N5{stroke:#45475A;} + .d2-2015736026 .stroke-N6{stroke:#313244;} + .d2-2015736026 .stroke-N7{stroke:#1E1E2E;} + .d2-2015736026 .stroke-B1{stroke:#CBA6f7;} + .d2-2015736026 .stroke-B2{stroke:#CBA6f7;} + .d2-2015736026 .stroke-B3{stroke:#6C7086;} + .d2-2015736026 .stroke-B4{stroke:#585B70;} + .d2-2015736026 .stroke-B5{stroke:#45475A;} + .d2-2015736026 .stroke-B6{stroke:#313244;} + .d2-2015736026 .stroke-AA2{stroke:#f38BA8;} + .d2-2015736026 .stroke-AA4{stroke:#45475A;} + .d2-2015736026 .stroke-AA5{stroke:#313244;} + .d2-2015736026 .stroke-AB4{stroke:#45475A;} + .d2-2015736026 .stroke-AB5{stroke:#313244;} + .d2-2015736026 .background-color-N1{background-color:#CDD6F4;} + .d2-2015736026 .background-color-N2{background-color:#BAC2DE;} + .d2-2015736026 .background-color-N3{background-color:#A6ADC8;} + .d2-2015736026 .background-color-N4{background-color:#585B70;} + .d2-2015736026 .background-color-N5{background-color:#45475A;} + .d2-2015736026 .background-color-N6{background-color:#313244;} + .d2-2015736026 .background-color-N7{background-color:#1E1E2E;} + .d2-2015736026 .background-color-B1{background-color:#CBA6f7;} + .d2-2015736026 .background-color-B2{background-color:#CBA6f7;} + .d2-2015736026 .background-color-B3{background-color:#6C7086;} + .d2-2015736026 .background-color-B4{background-color:#585B70;} + .d2-2015736026 .background-color-B5{background-color:#45475A;} + .d2-2015736026 .background-color-B6{background-color:#313244;} + .d2-2015736026 .background-color-AA2{background-color:#f38BA8;} + .d2-2015736026 .background-color-AA4{background-color:#45475A;} + .d2-2015736026 .background-color-AA5{background-color:#313244;} + .d2-2015736026 .background-color-AB4{background-color:#45475A;} + .d2-2015736026 .background-color-AB5{background-color:#313244;} + .d2-2015736026 .color-N1{color:#CDD6F4;} + .d2-2015736026 .color-N2{color:#BAC2DE;} + .d2-2015736026 .color-N3{color:#A6ADC8;} + .d2-2015736026 .color-N4{color:#585B70;} + .d2-2015736026 .color-N5{color:#45475A;} + .d2-2015736026 .color-N6{color:#313244;} + .d2-2015736026 .color-N7{color:#1E1E2E;} + .d2-2015736026 .color-B1{color:#CBA6f7;} + .d2-2015736026 .color-B2{color:#CBA6f7;} + .d2-2015736026 .color-B3{color:#6C7086;} + .d2-2015736026 .color-B4{color:#585B70;} + .d2-2015736026 .color-B5{color:#45475A;} + .d2-2015736026 .color-B6{color:#313244;} + .d2-2015736026 .color-AA2{color:#f38BA8;} + .d2-2015736026 .color-AA4{color:#45475A;} + .d2-2015736026 .color-AA5{color:#313244;} + .d2-2015736026 .color-AB4{color:#45475A;} + .d2-2015736026 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]>usersidinttokenstringcustomer_idstring diff --git a/static/img/generated/imports-nested-serviceB/index.svg2 b/static/img/generated/imports-nested-serviceB/index.svg2 index 2b0acbce..a7930b0f 100644 --- a/static/img/generated/imports-nested-serviceB/index.svg2 +++ b/static/img/generated/imports-nested-serviceB/index.svg2 @@ -1,19 +1,19 @@ -aws vaultstripedatakeytokencustomer id + .d2-794981387 .fill-N1{fill:#0A0F25;} + .d2-794981387 .fill-N2{fill:#676C7E;} + .d2-794981387 .fill-N3{fill:#9499AB;} + .d2-794981387 .fill-N4{fill:#CFD2DD;} + .d2-794981387 .fill-N5{fill:#DEE1EB;} + .d2-794981387 .fill-N6{fill:#EEF1F8;} + .d2-794981387 .fill-N7{fill:#FFFFFF;} + .d2-794981387 .fill-B1{fill:#0D32B2;} + .d2-794981387 .fill-B2{fill:#0D32B2;} + .d2-794981387 .fill-B3{fill:#E3E9FD;} + .d2-794981387 .fill-B4{fill:#E3E9FD;} + .d2-794981387 .fill-B5{fill:#EDF0FD;} + .d2-794981387 .fill-B6{fill:#F7F8FE;} + .d2-794981387 .fill-AA2{fill:#4A6FF3;} + .d2-794981387 .fill-AA4{fill:#EDF0FD;} + .d2-794981387 .fill-AA5{fill:#F7F8FE;} + .d2-794981387 .fill-AB4{fill:#EDF0FD;} + .d2-794981387 .fill-AB5{fill:#F7F8FE;} + .d2-794981387 .stroke-N1{stroke:#0A0F25;} + .d2-794981387 .stroke-N2{stroke:#676C7E;} + .d2-794981387 .stroke-N3{stroke:#9499AB;} + .d2-794981387 .stroke-N4{stroke:#CFD2DD;} + .d2-794981387 .stroke-N5{stroke:#DEE1EB;} + .d2-794981387 .stroke-N6{stroke:#EEF1F8;} + .d2-794981387 .stroke-N7{stroke:#FFFFFF;} + .d2-794981387 .stroke-B1{stroke:#0D32B2;} + .d2-794981387 .stroke-B2{stroke:#0D32B2;} + .d2-794981387 .stroke-B3{stroke:#E3E9FD;} + .d2-794981387 .stroke-B4{stroke:#E3E9FD;} + .d2-794981387 .stroke-B5{stroke:#EDF0FD;} + .d2-794981387 .stroke-B6{stroke:#F7F8FE;} + .d2-794981387 .stroke-AA2{stroke:#4A6FF3;} + .d2-794981387 .stroke-AA4{stroke:#EDF0FD;} + .d2-794981387 .stroke-AA5{stroke:#F7F8FE;} + .d2-794981387 .stroke-AB4{stroke:#EDF0FD;} + .d2-794981387 .stroke-AB5{stroke:#F7F8FE;} + .d2-794981387 .background-color-N1{background-color:#0A0F25;} + .d2-794981387 .background-color-N2{background-color:#676C7E;} + .d2-794981387 .background-color-N3{background-color:#9499AB;} + .d2-794981387 .background-color-N4{background-color:#CFD2DD;} + .d2-794981387 .background-color-N5{background-color:#DEE1EB;} + .d2-794981387 .background-color-N6{background-color:#EEF1F8;} + .d2-794981387 .background-color-N7{background-color:#FFFFFF;} + .d2-794981387 .background-color-B1{background-color:#0D32B2;} + .d2-794981387 .background-color-B2{background-color:#0D32B2;} + .d2-794981387 .background-color-B3{background-color:#E3E9FD;} + .d2-794981387 .background-color-B4{background-color:#E3E9FD;} + .d2-794981387 .background-color-B5{background-color:#EDF0FD;} + .d2-794981387 .background-color-B6{background-color:#F7F8FE;} + .d2-794981387 .background-color-AA2{background-color:#4A6FF3;} + .d2-794981387 .background-color-AA4{background-color:#EDF0FD;} + .d2-794981387 .background-color-AA5{background-color:#F7F8FE;} + .d2-794981387 .background-color-AB4{background-color:#EDF0FD;} + .d2-794981387 .background-color-AB5{background-color:#F7F8FE;} + .d2-794981387 .color-N1{color:#0A0F25;} + .d2-794981387 .color-N2{color:#676C7E;} + .d2-794981387 .color-N3{color:#9499AB;} + .d2-794981387 .color-N4{color:#CFD2DD;} + .d2-794981387 .color-N5{color:#DEE1EB;} + .d2-794981387 .color-N6{color:#EEF1F8;} + .d2-794981387 .color-N7{color:#FFFFFF;} + .d2-794981387 .color-B1{color:#0D32B2;} + .d2-794981387 .color-B2{color:#0D32B2;} + .d2-794981387 .color-B3{color:#E3E9FD;} + .d2-794981387 .color-B4{color:#E3E9FD;} + .d2-794981387 .color-B5{color:#EDF0FD;} + .d2-794981387 .color-B6{color:#F7F8FE;} + .d2-794981387 .color-AA2{color:#4A6FF3;} + .d2-794981387 .color-AA4{color:#EDF0FD;} + .d2-794981387 .color-AA5{color:#F7F8FE;} + .d2-794981387 .color-AB4{color:#EDF0FD;} + .d2-794981387 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-794981387 .fill-N1{fill:#CDD6F4;} + .d2-794981387 .fill-N2{fill:#BAC2DE;} + .d2-794981387 .fill-N3{fill:#A6ADC8;} + .d2-794981387 .fill-N4{fill:#585B70;} + .d2-794981387 .fill-N5{fill:#45475A;} + .d2-794981387 .fill-N6{fill:#313244;} + .d2-794981387 .fill-N7{fill:#1E1E2E;} + .d2-794981387 .fill-B1{fill:#CBA6f7;} + .d2-794981387 .fill-B2{fill:#CBA6f7;} + .d2-794981387 .fill-B3{fill:#6C7086;} + .d2-794981387 .fill-B4{fill:#585B70;} + .d2-794981387 .fill-B5{fill:#45475A;} + .d2-794981387 .fill-B6{fill:#313244;} + .d2-794981387 .fill-AA2{fill:#f38BA8;} + .d2-794981387 .fill-AA4{fill:#45475A;} + .d2-794981387 .fill-AA5{fill:#313244;} + .d2-794981387 .fill-AB4{fill:#45475A;} + .d2-794981387 .fill-AB5{fill:#313244;} + .d2-794981387 .stroke-N1{stroke:#CDD6F4;} + .d2-794981387 .stroke-N2{stroke:#BAC2DE;} + .d2-794981387 .stroke-N3{stroke:#A6ADC8;} + .d2-794981387 .stroke-N4{stroke:#585B70;} + .d2-794981387 .stroke-N5{stroke:#45475A;} + .d2-794981387 .stroke-N6{stroke:#313244;} + .d2-794981387 .stroke-N7{stroke:#1E1E2E;} + .d2-794981387 .stroke-B1{stroke:#CBA6f7;} + .d2-794981387 .stroke-B2{stroke:#CBA6f7;} + .d2-794981387 .stroke-B3{stroke:#6C7086;} + .d2-794981387 .stroke-B4{stroke:#585B70;} + .d2-794981387 .stroke-B5{stroke:#45475A;} + .d2-794981387 .stroke-B6{stroke:#313244;} + .d2-794981387 .stroke-AA2{stroke:#f38BA8;} + .d2-794981387 .stroke-AA4{stroke:#45475A;} + .d2-794981387 .stroke-AA5{stroke:#313244;} + .d2-794981387 .stroke-AB4{stroke:#45475A;} + .d2-794981387 .stroke-AB5{stroke:#313244;} + .d2-794981387 .background-color-N1{background-color:#CDD6F4;} + .d2-794981387 .background-color-N2{background-color:#BAC2DE;} + .d2-794981387 .background-color-N3{background-color:#A6ADC8;} + .d2-794981387 .background-color-N4{background-color:#585B70;} + .d2-794981387 .background-color-N5{background-color:#45475A;} + .d2-794981387 .background-color-N6{background-color:#313244;} + .d2-794981387 .background-color-N7{background-color:#1E1E2E;} + .d2-794981387 .background-color-B1{background-color:#CBA6f7;} + .d2-794981387 .background-color-B2{background-color:#CBA6f7;} + .d2-794981387 .background-color-B3{background-color:#6C7086;} + .d2-794981387 .background-color-B4{background-color:#585B70;} + .d2-794981387 .background-color-B5{background-color:#45475A;} + .d2-794981387 .background-color-B6{background-color:#313244;} + .d2-794981387 .background-color-AA2{background-color:#f38BA8;} + .d2-794981387 .background-color-AA4{background-color:#45475A;} + .d2-794981387 .background-color-AA5{background-color:#313244;} + .d2-794981387 .background-color-AB4{background-color:#45475A;} + .d2-794981387 .background-color-AB5{background-color:#313244;} + .d2-794981387 .color-N1{color:#CDD6F4;} + .d2-794981387 .color-N2{color:#BAC2DE;} + .d2-794981387 .color-N3{color:#A6ADC8;} + .d2-794981387 .color-N4{color:#585B70;} + .d2-794981387 .color-N5{color:#45475A;} + .d2-794981387 .color-N6{color:#313244;} + .d2-794981387 .color-N7{color:#1E1E2E;} + .d2-794981387 .color-B1{color:#CBA6f7;} + .d2-794981387 .color-B2{color:#CBA6f7;} + .d2-794981387 .color-B3{color:#6C7086;} + .d2-794981387 .color-B4{color:#585B70;} + .d2-794981387 .color-B5{color:#45475A;} + .d2-794981387 .color-B6{color:#313244;} + .d2-794981387 .color-AA2{color:#f38BA8;} + .d2-794981387 .color-AA4{color:#45475A;} + .d2-794981387 .color-AA5{color:#313244;} + .d2-794981387 .color-AB4{color:#45475A;} + .d2-794981387 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]>aws vaultstripedatakeytokencustomer id @@ -183,7 +183,7 @@ - + diff --git a/static/img/generated/imports-nested.pdf b/static/img/generated/imports-nested.pdf index 64eb3514..eba98661 100644 Binary files a/static/img/generated/imports-nested.pdf and b/static/img/generated/imports-nested.pdf differ diff --git a/static/img/generated/imports-normal-x.svg2 b/static/img/generated/imports-normal-x.svg2 index 2c652eb0..4d256133 100644 --- a/static/img/generated/imports-normal-x.svg2 +++ b/static/img/generated/imports-normal-x.svg2 @@ -1,4 +1,4 @@ -john wickhenchman 1henchman 2big boss +}]]>john wickhenchman 1henchman 2big boss -john wickhenchman 1henchman 2big boss shoots, misses +john wickhenchman 1henchman 2big boss shoots, misses -john wickhenchman 1henchman 2big boss shoots, missesshoots, hits +john wickhenchman 1henchman 2big boss shoots, missesshoots, hits @@ -184,7 +184,7 @@ -john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, misses +john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, misses @@ -193,7 +193,7 @@ -john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, missesshoots, hits +john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, missesshoots, hits @@ -203,7 +203,7 @@ -john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, missesshoots, hitsinjures +john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, missesshoots, hitsinjures @@ -214,7 +214,7 @@ -john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, missesshoots, hitsinjuresshoots, hits +john wickhenchman 1henchman 2big boss shoots, missesshoots, hitsshoots, missesshoots, hitsinjuresshoots, hits diff --git a/static/img/generated/language.svg2 b/static/img/generated/language.svg2 index 8089b9c6..9148d1aa 100644 --- a/static/img/generated/language.svg2 +++ b/static/img/generated/language.svg2 @@ -1,4 +1,4 @@ -I'm a MacAnd I'm a PC gazoontite + .d2-3101465969 .fill-N1{fill:#0A0F25;} + .d2-3101465969 .fill-N2{fill:#676C7E;} + .d2-3101465969 .fill-N3{fill:#9499AB;} + .d2-3101465969 .fill-N4{fill:#CFD2DD;} + .d2-3101465969 .fill-N5{fill:#DEE1EB;} + .d2-3101465969 .fill-N6{fill:#EEF1F8;} + .d2-3101465969 .fill-N7{fill:#FFFFFF;} + .d2-3101465969 .fill-B1{fill:#0D32B2;} + .d2-3101465969 .fill-B2{fill:#0D32B2;} + .d2-3101465969 .fill-B3{fill:#E3E9FD;} + .d2-3101465969 .fill-B4{fill:#E3E9FD;} + .d2-3101465969 .fill-B5{fill:#EDF0FD;} + .d2-3101465969 .fill-B6{fill:#F7F8FE;} + .d2-3101465969 .fill-AA2{fill:#4A6FF3;} + .d2-3101465969 .fill-AA4{fill:#EDF0FD;} + .d2-3101465969 .fill-AA5{fill:#F7F8FE;} + .d2-3101465969 .fill-AB4{fill:#EDF0FD;} + .d2-3101465969 .fill-AB5{fill:#F7F8FE;} + .d2-3101465969 .stroke-N1{stroke:#0A0F25;} + .d2-3101465969 .stroke-N2{stroke:#676C7E;} + .d2-3101465969 .stroke-N3{stroke:#9499AB;} + .d2-3101465969 .stroke-N4{stroke:#CFD2DD;} + .d2-3101465969 .stroke-N5{stroke:#DEE1EB;} + .d2-3101465969 .stroke-N6{stroke:#EEF1F8;} + .d2-3101465969 .stroke-N7{stroke:#FFFFFF;} + .d2-3101465969 .stroke-B1{stroke:#0D32B2;} + .d2-3101465969 .stroke-B2{stroke:#0D32B2;} + .d2-3101465969 .stroke-B3{stroke:#E3E9FD;} + .d2-3101465969 .stroke-B4{stroke:#E3E9FD;} + .d2-3101465969 .stroke-B5{stroke:#EDF0FD;} + .d2-3101465969 .stroke-B6{stroke:#F7F8FE;} + .d2-3101465969 .stroke-AA2{stroke:#4A6FF3;} + .d2-3101465969 .stroke-AA4{stroke:#EDF0FD;} + .d2-3101465969 .stroke-AA5{stroke:#F7F8FE;} + .d2-3101465969 .stroke-AB4{stroke:#EDF0FD;} + .d2-3101465969 .stroke-AB5{stroke:#F7F8FE;} + .d2-3101465969 .background-color-N1{background-color:#0A0F25;} + .d2-3101465969 .background-color-N2{background-color:#676C7E;} + .d2-3101465969 .background-color-N3{background-color:#9499AB;} + .d2-3101465969 .background-color-N4{background-color:#CFD2DD;} + .d2-3101465969 .background-color-N5{background-color:#DEE1EB;} + .d2-3101465969 .background-color-N6{background-color:#EEF1F8;} + .d2-3101465969 .background-color-N7{background-color:#FFFFFF;} + .d2-3101465969 .background-color-B1{background-color:#0D32B2;} + .d2-3101465969 .background-color-B2{background-color:#0D32B2;} + .d2-3101465969 .background-color-B3{background-color:#E3E9FD;} + .d2-3101465969 .background-color-B4{background-color:#E3E9FD;} + .d2-3101465969 .background-color-B5{background-color:#EDF0FD;} + .d2-3101465969 .background-color-B6{background-color:#F7F8FE;} + .d2-3101465969 .background-color-AA2{background-color:#4A6FF3;} + .d2-3101465969 .background-color-AA4{background-color:#EDF0FD;} + .d2-3101465969 .background-color-AA5{background-color:#F7F8FE;} + .d2-3101465969 .background-color-AB4{background-color:#EDF0FD;} + .d2-3101465969 .background-color-AB5{background-color:#F7F8FE;} + .d2-3101465969 .color-N1{color:#0A0F25;} + .d2-3101465969 .color-N2{color:#676C7E;} + .d2-3101465969 .color-N3{color:#9499AB;} + .d2-3101465969 .color-N4{color:#CFD2DD;} + .d2-3101465969 .color-N5{color:#DEE1EB;} + .d2-3101465969 .color-N6{color:#EEF1F8;} + .d2-3101465969 .color-N7{color:#FFFFFF;} + .d2-3101465969 .color-B1{color:#0D32B2;} + .d2-3101465969 .color-B2{color:#0D32B2;} + .d2-3101465969 .color-B3{color:#E3E9FD;} + .d2-3101465969 .color-B4{color:#E3E9FD;} + .d2-3101465969 .color-B5{color:#EDF0FD;} + .d2-3101465969 .color-B6{color:#F7F8FE;} + .d2-3101465969 .color-AA2{color:#4A6FF3;} + .d2-3101465969 .color-AA4{color:#EDF0FD;} + .d2-3101465969 .color-AA5{color:#F7F8FE;} + .d2-3101465969 .color-AB4{color:#EDF0FD;} + .d2-3101465969 .color-AB5{color:#F7F8FE;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#0D32B2;--color-border-muted:#0D32B2;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0D32B2;--color-accent-emphasis:#0D32B2;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-3101465969 .fill-N1{fill:#CDD6F4;} + .d2-3101465969 .fill-N2{fill:#BAC2DE;} + .d2-3101465969 .fill-N3{fill:#A6ADC8;} + .d2-3101465969 .fill-N4{fill:#585B70;} + .d2-3101465969 .fill-N5{fill:#45475A;} + .d2-3101465969 .fill-N6{fill:#313244;} + .d2-3101465969 .fill-N7{fill:#1E1E2E;} + .d2-3101465969 .fill-B1{fill:#CBA6f7;} + .d2-3101465969 .fill-B2{fill:#CBA6f7;} + .d2-3101465969 .fill-B3{fill:#6C7086;} + .d2-3101465969 .fill-B4{fill:#585B70;} + .d2-3101465969 .fill-B5{fill:#45475A;} + .d2-3101465969 .fill-B6{fill:#313244;} + .d2-3101465969 .fill-AA2{fill:#f38BA8;} + .d2-3101465969 .fill-AA4{fill:#45475A;} + .d2-3101465969 .fill-AA5{fill:#313244;} + .d2-3101465969 .fill-AB4{fill:#45475A;} + .d2-3101465969 .fill-AB5{fill:#313244;} + .d2-3101465969 .stroke-N1{stroke:#CDD6F4;} + .d2-3101465969 .stroke-N2{stroke:#BAC2DE;} + .d2-3101465969 .stroke-N3{stroke:#A6ADC8;} + .d2-3101465969 .stroke-N4{stroke:#585B70;} + .d2-3101465969 .stroke-N5{stroke:#45475A;} + .d2-3101465969 .stroke-N6{stroke:#313244;} + .d2-3101465969 .stroke-N7{stroke:#1E1E2E;} + .d2-3101465969 .stroke-B1{stroke:#CBA6f7;} + .d2-3101465969 .stroke-B2{stroke:#CBA6f7;} + .d2-3101465969 .stroke-B3{stroke:#6C7086;} + .d2-3101465969 .stroke-B4{stroke:#585B70;} + .d2-3101465969 .stroke-B5{stroke:#45475A;} + .d2-3101465969 .stroke-B6{stroke:#313244;} + .d2-3101465969 .stroke-AA2{stroke:#f38BA8;} + .d2-3101465969 .stroke-AA4{stroke:#45475A;} + .d2-3101465969 .stroke-AA5{stroke:#313244;} + .d2-3101465969 .stroke-AB4{stroke:#45475A;} + .d2-3101465969 .stroke-AB5{stroke:#313244;} + .d2-3101465969 .background-color-N1{background-color:#CDD6F4;} + .d2-3101465969 .background-color-N2{background-color:#BAC2DE;} + .d2-3101465969 .background-color-N3{background-color:#A6ADC8;} + .d2-3101465969 .background-color-N4{background-color:#585B70;} + .d2-3101465969 .background-color-N5{background-color:#45475A;} + .d2-3101465969 .background-color-N6{background-color:#313244;} + .d2-3101465969 .background-color-N7{background-color:#1E1E2E;} + .d2-3101465969 .background-color-B1{background-color:#CBA6f7;} + .d2-3101465969 .background-color-B2{background-color:#CBA6f7;} + .d2-3101465969 .background-color-B3{background-color:#6C7086;} + .d2-3101465969 .background-color-B4{background-color:#585B70;} + .d2-3101465969 .background-color-B5{background-color:#45475A;} + .d2-3101465969 .background-color-B6{background-color:#313244;} + .d2-3101465969 .background-color-AA2{background-color:#f38BA8;} + .d2-3101465969 .background-color-AA4{background-color:#45475A;} + .d2-3101465969 .background-color-AA5{background-color:#313244;} + .d2-3101465969 .background-color-AB4{background-color:#45475A;} + .d2-3101465969 .background-color-AB5{background-color:#313244;} + .d2-3101465969 .color-N1{color:#CDD6F4;} + .d2-3101465969 .color-N2{color:#BAC2DE;} + .d2-3101465969 .color-N3{color:#A6ADC8;} + .d2-3101465969 .color-N4{color:#585B70;} + .d2-3101465969 .color-N5{color:#45475A;} + .d2-3101465969 .color-N6{color:#313244;} + .d2-3101465969 .color-N7{color:#1E1E2E;} + .d2-3101465969 .color-B1{color:#CBA6f7;} + .d2-3101465969 .color-B2{color:#CBA6f7;} + .d2-3101465969 .color-B3{color:#6C7086;} + .d2-3101465969 .color-B4{color:#585B70;} + .d2-3101465969 .color-B5{color:#45475A;} + .d2-3101465969 .color-B6{color:#313244;} + .d2-3101465969 .color-AA2{color:#f38BA8;} + .d2-3101465969 .color-AA4{color:#45475A;} + .d2-3101465969 .color-AA5{color:#313244;} + .d2-3101465969 .color-AB4{color:#45475A;} + .d2-3101465969 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]>I'm a MacAnd I'm a PC gazoontite @@ -195,7 +195,7 @@ - + diff --git a/static/img/generated/lotr.pdf b/static/img/generated/lotr.pdf index 0dfc65f8..8bf4a2ef 100644 Binary files a/static/img/generated/lotr.pdf and b/static/img/generated/lotr.pdf differ diff --git a/static/img/generated/markdown.svg2 b/static/img/generated/markdown.svg2 index f041639a..4b0ca221 100644 --- a/static/img/generated/markdown.svg2 +++ b/static/img/generated/markdown.svg2 @@ -1,4 +1,4 @@ -Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough - +}]]>Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough + @@ -148,8 +148,8 @@ -Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough - +Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough + @@ -160,8 +160,8 @@ -Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough - +Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough + @@ -172,8 +172,8 @@ -Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough - +Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough + @@ -184,8 +184,8 @@ -Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough - +Pepper flakesExtra cheeseRandom garnishPepperoniSausageMushroomsPineappleTomato sauceCheese baseDough + diff --git a/static/img/generated/sequence-diagrams-1.svg2 b/static/img/generated/sequence-diagrams-1.svg2 index 2a904d90..460938aa 100644 --- a/static/img/generated/sequence-diagrams-1.svg2 +++ b/static/img/generated/sequence-diagrams-1.svg2 @@ -1,4 +1,4 @@ -Current stateyouaccountantturbotaxgovernment You oweus this much +}]]>Current stateyouaccountantturbotaxgovernment You oweus this much @@ -870,7 +870,7 @@ -A better worldyouaccountantturbotaxgovernment You oweus this much +A better worldyouaccountantturbotaxgovernment You oweus this much diff --git a/static/img/generated/terminal-theme.svg2 b/static/img/generated/terminal-theme.svg2 index e0f5449d..5e8340ad 100644 --- a/static/img/generated/terminal-theme.svg2 +++ b/static/img/generated/terminal-theme.svg2 @@ -1,4 +1,4 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + +NETWORKUSERAPI SERVERLOGSCELL TOWERONLINE PORTALDATA PROCESSORSATELLITESTRANSMITTERUISTORAGE SENDSENDSENDPHONE LOGSMAKE CALL ACCESSDISPLAYPERSIST + + + + + + + + + + + + + + + + + + + + + diff --git a/static/img/generated/theme-table-2.svg2 b/static/img/generated/theme-table-2.svg2 index ecfaee90..f8e062ab 100644 --- a/static/img/generated/theme-table-2.svg2 +++ b/static/img/generated/theme-table-2.svg2 @@ -1,9 +1,9 @@ -costumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestamp + .d2-1611202877 .fill-N1{fill:#170206;} + .d2-1611202877 .fill-N2{fill:#535152;} + .d2-1611202877 .fill-N3{fill:#787777;} + .d2-1611202877 .fill-N4{fill:#CCCACA;} + .d2-1611202877 .fill-N5{fill:#DFDCDC;} + .d2-1611202877 .fill-N6{fill:#ECEBEB;} + .d2-1611202877 .fill-N7{fill:#FFFFFF;} + .d2-1611202877 .fill-B1{fill:#1E1303;} + .d2-1611202877 .fill-B2{fill:#55452F;} + .d2-1611202877 .fill-B3{fill:#9A876C;} + .d2-1611202877 .fill-B4{fill:#C9B9A1;} + .d2-1611202877 .fill-B5{fill:#E9DBCA;} + .d2-1611202877 .fill-B6{fill:#FAF1E6;} + .d2-1611202877 .fill-AA2{fill:#D35F0A;} + .d2-1611202877 .fill-AA4{fill:#FABA8A;} + .d2-1611202877 .fill-AA5{fill:#FFE0C7;} + .d2-1611202877 .fill-AB4{fill:#84A1EC;} + .d2-1611202877 .fill-AB5{fill:#D5E0FD;} + .d2-1611202877 .stroke-N1{stroke:#170206;} + .d2-1611202877 .stroke-N2{stroke:#535152;} + .d2-1611202877 .stroke-N3{stroke:#787777;} + .d2-1611202877 .stroke-N4{stroke:#CCCACA;} + .d2-1611202877 .stroke-N5{stroke:#DFDCDC;} + .d2-1611202877 .stroke-N6{stroke:#ECEBEB;} + .d2-1611202877 .stroke-N7{stroke:#FFFFFF;} + .d2-1611202877 .stroke-B1{stroke:#1E1303;} + .d2-1611202877 .stroke-B2{stroke:#55452F;} + .d2-1611202877 .stroke-B3{stroke:#9A876C;} + .d2-1611202877 .stroke-B4{stroke:#C9B9A1;} + .d2-1611202877 .stroke-B5{stroke:#E9DBCA;} + .d2-1611202877 .stroke-B6{stroke:#FAF1E6;} + .d2-1611202877 .stroke-AA2{stroke:#D35F0A;} + .d2-1611202877 .stroke-AA4{stroke:#FABA8A;} + .d2-1611202877 .stroke-AA5{stroke:#FFE0C7;} + .d2-1611202877 .stroke-AB4{stroke:#84A1EC;} + .d2-1611202877 .stroke-AB5{stroke:#D5E0FD;} + .d2-1611202877 .background-color-N1{background-color:#170206;} + .d2-1611202877 .background-color-N2{background-color:#535152;} + .d2-1611202877 .background-color-N3{background-color:#787777;} + .d2-1611202877 .background-color-N4{background-color:#CCCACA;} + .d2-1611202877 .background-color-N5{background-color:#DFDCDC;} + .d2-1611202877 .background-color-N6{background-color:#ECEBEB;} + .d2-1611202877 .background-color-N7{background-color:#FFFFFF;} + .d2-1611202877 .background-color-B1{background-color:#1E1303;} + .d2-1611202877 .background-color-B2{background-color:#55452F;} + .d2-1611202877 .background-color-B3{background-color:#9A876C;} + .d2-1611202877 .background-color-B4{background-color:#C9B9A1;} + .d2-1611202877 .background-color-B5{background-color:#E9DBCA;} + .d2-1611202877 .background-color-B6{background-color:#FAF1E6;} + .d2-1611202877 .background-color-AA2{background-color:#D35F0A;} + .d2-1611202877 .background-color-AA4{background-color:#FABA8A;} + .d2-1611202877 .background-color-AA5{background-color:#FFE0C7;} + .d2-1611202877 .background-color-AB4{background-color:#84A1EC;} + .d2-1611202877 .background-color-AB5{background-color:#D5E0FD;} + .d2-1611202877 .color-N1{color:#170206;} + .d2-1611202877 .color-N2{color:#535152;} + .d2-1611202877 .color-N3{color:#787777;} + .d2-1611202877 .color-N4{color:#CCCACA;} + .d2-1611202877 .color-N5{color:#DFDCDC;} + .d2-1611202877 .color-N6{color:#ECEBEB;} + .d2-1611202877 .color-N7{color:#FFFFFF;} + .d2-1611202877 .color-B1{color:#1E1303;} + .d2-1611202877 .color-B2{color:#55452F;} + .d2-1611202877 .color-B3{color:#9A876C;} + .d2-1611202877 .color-B4{color:#C9B9A1;} + .d2-1611202877 .color-B5{color:#E9DBCA;} + .d2-1611202877 .color-B6{color:#FAF1E6;} + .d2-1611202877 .color-AA2{color:#D35F0A;} + .d2-1611202877 .color-AA4{color:#FABA8A;} + .d2-1611202877 .color-AA5{color:#FFE0C7;} + .d2-1611202877 .color-AB4{color:#84A1EC;} + .d2-1611202877 .color-AB5{color:#D5E0FD;}.appendix text.text{fill:#170206}.md{--color-fg-default:#170206;--color-fg-muted:#535152;--color-fg-subtle:#787777;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#ECEBEB;--color-border-default:#1E1303;--color-border-muted:#55452F;--color-neutral-muted:#ECEBEB;--color-accent-fg:#55452F;--color-accent-emphasis:#55452F;--color-attention-subtle:#535152;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-1611202877 .fill-N1{fill:#CDD6F4;} + .d2-1611202877 .fill-N2{fill:#BAC2DE;} + .d2-1611202877 .fill-N3{fill:#A6ADC8;} + .d2-1611202877 .fill-N4{fill:#585B70;} + .d2-1611202877 .fill-N5{fill:#45475A;} + .d2-1611202877 .fill-N6{fill:#313244;} + .d2-1611202877 .fill-N7{fill:#1E1E2E;} + .d2-1611202877 .fill-B1{fill:#CBA6f7;} + .d2-1611202877 .fill-B2{fill:#CBA6f7;} + .d2-1611202877 .fill-B3{fill:#6C7086;} + .d2-1611202877 .fill-B4{fill:#585B70;} + .d2-1611202877 .fill-B5{fill:#45475A;} + .d2-1611202877 .fill-B6{fill:#313244;} + .d2-1611202877 .fill-AA2{fill:#f38BA8;} + .d2-1611202877 .fill-AA4{fill:#45475A;} + .d2-1611202877 .fill-AA5{fill:#313244;} + .d2-1611202877 .fill-AB4{fill:#45475A;} + .d2-1611202877 .fill-AB5{fill:#313244;} + .d2-1611202877 .stroke-N1{stroke:#CDD6F4;} + .d2-1611202877 .stroke-N2{stroke:#BAC2DE;} + .d2-1611202877 .stroke-N3{stroke:#A6ADC8;} + .d2-1611202877 .stroke-N4{stroke:#585B70;} + .d2-1611202877 .stroke-N5{stroke:#45475A;} + .d2-1611202877 .stroke-N6{stroke:#313244;} + .d2-1611202877 .stroke-N7{stroke:#1E1E2E;} + .d2-1611202877 .stroke-B1{stroke:#CBA6f7;} + .d2-1611202877 .stroke-B2{stroke:#CBA6f7;} + .d2-1611202877 .stroke-B3{stroke:#6C7086;} + .d2-1611202877 .stroke-B4{stroke:#585B70;} + .d2-1611202877 .stroke-B5{stroke:#45475A;} + .d2-1611202877 .stroke-B6{stroke:#313244;} + .d2-1611202877 .stroke-AA2{stroke:#f38BA8;} + .d2-1611202877 .stroke-AA4{stroke:#45475A;} + .d2-1611202877 .stroke-AA5{stroke:#313244;} + .d2-1611202877 .stroke-AB4{stroke:#45475A;} + .d2-1611202877 .stroke-AB5{stroke:#313244;} + .d2-1611202877 .background-color-N1{background-color:#CDD6F4;} + .d2-1611202877 .background-color-N2{background-color:#BAC2DE;} + .d2-1611202877 .background-color-N3{background-color:#A6ADC8;} + .d2-1611202877 .background-color-N4{background-color:#585B70;} + .d2-1611202877 .background-color-N5{background-color:#45475A;} + .d2-1611202877 .background-color-N6{background-color:#313244;} + .d2-1611202877 .background-color-N7{background-color:#1E1E2E;} + .d2-1611202877 .background-color-B1{background-color:#CBA6f7;} + .d2-1611202877 .background-color-B2{background-color:#CBA6f7;} + .d2-1611202877 .background-color-B3{background-color:#6C7086;} + .d2-1611202877 .background-color-B4{background-color:#585B70;} + .d2-1611202877 .background-color-B5{background-color:#45475A;} + .d2-1611202877 .background-color-B6{background-color:#313244;} + .d2-1611202877 .background-color-AA2{background-color:#f38BA8;} + .d2-1611202877 .background-color-AA4{background-color:#45475A;} + .d2-1611202877 .background-color-AA5{background-color:#313244;} + .d2-1611202877 .background-color-AB4{background-color:#45475A;} + .d2-1611202877 .background-color-AB5{background-color:#313244;} + .d2-1611202877 .color-N1{color:#CDD6F4;} + .d2-1611202877 .color-N2{color:#BAC2DE;} + .d2-1611202877 .color-N3{color:#A6ADC8;} + .d2-1611202877 .color-N4{color:#585B70;} + .d2-1611202877 .color-N5{color:#45475A;} + .d2-1611202877 .color-N6{color:#313244;} + .d2-1611202877 .color-N7{color:#1E1E2E;} + .d2-1611202877 .color-B1{color:#CBA6f7;} + .d2-1611202877 .color-B2{color:#CBA6f7;} + .d2-1611202877 .color-B3{color:#6C7086;} + .d2-1611202877 .color-B4{color:#585B70;} + .d2-1611202877 .color-B5{color:#45475A;} + .d2-1611202877 .color-B6{color:#313244;} + .d2-1611202877 .color-AA2{color:#f38BA8;} + .d2-1611202877 .color-AA4{color:#45475A;} + .d2-1611202877 .color-AA5{color:#313244;} + .d2-1611202877 .color-AB4{color:#45475A;} + .d2-1611202877 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]>costumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestamp diff --git a/static/img/generated/theme-table.svg2 b/static/img/generated/theme-table.svg2 index 660d2fda..baead18d 100644 --- a/static/img/generated/theme-table.svg2 +++ b/static/img/generated/theme-table.svg2 @@ -1,9 +1,9 @@ -costumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestamp + .d2-2738857582 .fill-N1{fill:#0A0F25;} + .d2-2738857582 .fill-N2{fill:#676C7E;} + .d2-2738857582 .fill-N3{fill:#9499AB;} + .d2-2738857582 .fill-N4{fill:#CFD2DD;} + .d2-2738857582 .fill-N5{fill:#DEE1EB;} + .d2-2738857582 .fill-N6{fill:#EEF1F8;} + .d2-2738857582 .fill-N7{fill:#FFFFFF;} + .d2-2738857582 .fill-B1{fill:#170034;} + .d2-2738857582 .fill-B2{fill:#7639C5;} + .d2-2738857582 .fill-B3{fill:#8F70D1;} + .d2-2738857582 .fill-B4{fill:#C1A2F3;} + .d2-2738857582 .fill-B5{fill:#DACEFB;} + .d2-2738857582 .fill-B6{fill:#F2EDFF;} + .d2-2738857582 .fill-AA2{fill:#0F66B7;} + .d2-2738857582 .fill-AA4{fill:#87BFF3;} + .d2-2738857582 .fill-AA5{fill:#BCDDFB;} + .d2-2738857582 .fill-AB4{fill:#EA99C6;} + .d2-2738857582 .fill-AB5{fill:#FFDAEF;} + .d2-2738857582 .stroke-N1{stroke:#0A0F25;} + .d2-2738857582 .stroke-N2{stroke:#676C7E;} + .d2-2738857582 .stroke-N3{stroke:#9499AB;} + .d2-2738857582 .stroke-N4{stroke:#CFD2DD;} + .d2-2738857582 .stroke-N5{stroke:#DEE1EB;} + .d2-2738857582 .stroke-N6{stroke:#EEF1F8;} + .d2-2738857582 .stroke-N7{stroke:#FFFFFF;} + .d2-2738857582 .stroke-B1{stroke:#170034;} + .d2-2738857582 .stroke-B2{stroke:#7639C5;} + .d2-2738857582 .stroke-B3{stroke:#8F70D1;} + .d2-2738857582 .stroke-B4{stroke:#C1A2F3;} + .d2-2738857582 .stroke-B5{stroke:#DACEFB;} + .d2-2738857582 .stroke-B6{stroke:#F2EDFF;} + .d2-2738857582 .stroke-AA2{stroke:#0F66B7;} + .d2-2738857582 .stroke-AA4{stroke:#87BFF3;} + .d2-2738857582 .stroke-AA5{stroke:#BCDDFB;} + .d2-2738857582 .stroke-AB4{stroke:#EA99C6;} + .d2-2738857582 .stroke-AB5{stroke:#FFDAEF;} + .d2-2738857582 .background-color-N1{background-color:#0A0F25;} + .d2-2738857582 .background-color-N2{background-color:#676C7E;} + .d2-2738857582 .background-color-N3{background-color:#9499AB;} + .d2-2738857582 .background-color-N4{background-color:#CFD2DD;} + .d2-2738857582 .background-color-N5{background-color:#DEE1EB;} + .d2-2738857582 .background-color-N6{background-color:#EEF1F8;} + .d2-2738857582 .background-color-N7{background-color:#FFFFFF;} + .d2-2738857582 .background-color-B1{background-color:#170034;} + .d2-2738857582 .background-color-B2{background-color:#7639C5;} + .d2-2738857582 .background-color-B3{background-color:#8F70D1;} + .d2-2738857582 .background-color-B4{background-color:#C1A2F3;} + .d2-2738857582 .background-color-B5{background-color:#DACEFB;} + .d2-2738857582 .background-color-B6{background-color:#F2EDFF;} + .d2-2738857582 .background-color-AA2{background-color:#0F66B7;} + .d2-2738857582 .background-color-AA4{background-color:#87BFF3;} + .d2-2738857582 .background-color-AA5{background-color:#BCDDFB;} + .d2-2738857582 .background-color-AB4{background-color:#EA99C6;} + .d2-2738857582 .background-color-AB5{background-color:#FFDAEF;} + .d2-2738857582 .color-N1{color:#0A0F25;} + .d2-2738857582 .color-N2{color:#676C7E;} + .d2-2738857582 .color-N3{color:#9499AB;} + .d2-2738857582 .color-N4{color:#CFD2DD;} + .d2-2738857582 .color-N5{color:#DEE1EB;} + .d2-2738857582 .color-N6{color:#EEF1F8;} + .d2-2738857582 .color-N7{color:#FFFFFF;} + .d2-2738857582 .color-B1{color:#170034;} + .d2-2738857582 .color-B2{color:#7639C5;} + .d2-2738857582 .color-B3{color:#8F70D1;} + .d2-2738857582 .color-B4{color:#C1A2F3;} + .d2-2738857582 .color-B5{color:#DACEFB;} + .d2-2738857582 .color-B6{color:#F2EDFF;} + .d2-2738857582 .color-AA2{color:#0F66B7;} + .d2-2738857582 .color-AA4{color:#87BFF3;} + .d2-2738857582 .color-AA5{color:#BCDDFB;} + .d2-2738857582 .color-AB4{color:#EA99C6;} + .d2-2738857582 .color-AB5{color:#FFDAEF;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#170034;--color-border-muted:#7639C5;--color-neutral-muted:#EEF1F8;--color-accent-fg:#7639C5;--color-accent-emphasis:#7639C5;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-2738857582 .fill-N1{fill:#CDD6F4;} + .d2-2738857582 .fill-N2{fill:#BAC2DE;} + .d2-2738857582 .fill-N3{fill:#A6ADC8;} + .d2-2738857582 .fill-N4{fill:#585B70;} + .d2-2738857582 .fill-N5{fill:#45475A;} + .d2-2738857582 .fill-N6{fill:#313244;} + .d2-2738857582 .fill-N7{fill:#1E1E2E;} + .d2-2738857582 .fill-B1{fill:#CBA6f7;} + .d2-2738857582 .fill-B2{fill:#CBA6f7;} + .d2-2738857582 .fill-B3{fill:#6C7086;} + .d2-2738857582 .fill-B4{fill:#585B70;} + .d2-2738857582 .fill-B5{fill:#45475A;} + .d2-2738857582 .fill-B6{fill:#313244;} + .d2-2738857582 .fill-AA2{fill:#f38BA8;} + .d2-2738857582 .fill-AA4{fill:#45475A;} + .d2-2738857582 .fill-AA5{fill:#313244;} + .d2-2738857582 .fill-AB4{fill:#45475A;} + .d2-2738857582 .fill-AB5{fill:#313244;} + .d2-2738857582 .stroke-N1{stroke:#CDD6F4;} + .d2-2738857582 .stroke-N2{stroke:#BAC2DE;} + .d2-2738857582 .stroke-N3{stroke:#A6ADC8;} + .d2-2738857582 .stroke-N4{stroke:#585B70;} + .d2-2738857582 .stroke-N5{stroke:#45475A;} + .d2-2738857582 .stroke-N6{stroke:#313244;} + .d2-2738857582 .stroke-N7{stroke:#1E1E2E;} + .d2-2738857582 .stroke-B1{stroke:#CBA6f7;} + .d2-2738857582 .stroke-B2{stroke:#CBA6f7;} + .d2-2738857582 .stroke-B3{stroke:#6C7086;} + .d2-2738857582 .stroke-B4{stroke:#585B70;} + .d2-2738857582 .stroke-B5{stroke:#45475A;} + .d2-2738857582 .stroke-B6{stroke:#313244;} + .d2-2738857582 .stroke-AA2{stroke:#f38BA8;} + .d2-2738857582 .stroke-AA4{stroke:#45475A;} + .d2-2738857582 .stroke-AA5{stroke:#313244;} + .d2-2738857582 .stroke-AB4{stroke:#45475A;} + .d2-2738857582 .stroke-AB5{stroke:#313244;} + .d2-2738857582 .background-color-N1{background-color:#CDD6F4;} + .d2-2738857582 .background-color-N2{background-color:#BAC2DE;} + .d2-2738857582 .background-color-N3{background-color:#A6ADC8;} + .d2-2738857582 .background-color-N4{background-color:#585B70;} + .d2-2738857582 .background-color-N5{background-color:#45475A;} + .d2-2738857582 .background-color-N6{background-color:#313244;} + .d2-2738857582 .background-color-N7{background-color:#1E1E2E;} + .d2-2738857582 .background-color-B1{background-color:#CBA6f7;} + .d2-2738857582 .background-color-B2{background-color:#CBA6f7;} + .d2-2738857582 .background-color-B3{background-color:#6C7086;} + .d2-2738857582 .background-color-B4{background-color:#585B70;} + .d2-2738857582 .background-color-B5{background-color:#45475A;} + .d2-2738857582 .background-color-B6{background-color:#313244;} + .d2-2738857582 .background-color-AA2{background-color:#f38BA8;} + .d2-2738857582 .background-color-AA4{background-color:#45475A;} + .d2-2738857582 .background-color-AA5{background-color:#313244;} + .d2-2738857582 .background-color-AB4{background-color:#45475A;} + .d2-2738857582 .background-color-AB5{background-color:#313244;} + .d2-2738857582 .color-N1{color:#CDD6F4;} + .d2-2738857582 .color-N2{color:#BAC2DE;} + .d2-2738857582 .color-N3{color:#A6ADC8;} + .d2-2738857582 .color-N4{color:#585B70;} + .d2-2738857582 .color-N5{color:#45475A;} + .d2-2738857582 .color-N6{color:#313244;} + .d2-2738857582 .color-N7{color:#1E1E2E;} + .d2-2738857582 .color-B1{color:#CBA6f7;} + .d2-2738857582 .color-B2{color:#CBA6f7;} + .d2-2738857582 .color-B3{color:#6C7086;} + .d2-2738857582 .color-B4{color:#585B70;} + .d2-2738857582 .color-B5{color:#45475A;} + .d2-2738857582 .color-B6{color:#313244;} + .d2-2738857582 .color-AA2{color:#f38BA8;} + .d2-2738857582 .color-AA4{color:#45475A;} + .d2-2738857582 .color-AA5{color:#313244;} + .d2-2738857582 .color-AB4{color:#45475A;} + .d2-2738857582 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]>costumesidintPKsillinessintmonsterintlast_updatedtimestampmonstersidintPKmoviestringweightintlast_updatedtimestamp diff --git a/static/img/generated/tiktok.pdf b/static/img/generated/tiktok.pdf index 6426a69f..36dc378e 100644 Binary files a/static/img/generated/tiktok.pdf and b/static/img/generated/tiktok.pdf differ diff --git a/static/img/generated/tooltip.svg2 b/static/img/generated/tooltip.svg2 index e231a7e0..44aea9ee 100644 --- a/static/img/generated/tooltip.svg2 +++ b/static/img/generated/tooltip.svg2 @@ -1,4 +1,4 @@ - + .d2-2712074532 .fill-N1{fill:#0A0F25;} + .d2-2712074532 .fill-N2{fill:#676C7E;} + .d2-2712074532 .fill-N3{fill:#9499AB;} + .d2-2712074532 .fill-N4{fill:#CFD2DD;} + .d2-2712074532 .fill-N5{fill:#DEE1EB;} + .d2-2712074532 .fill-N6{fill:#EEF1F8;} + .d2-2712074532 .fill-N7{fill:#FFFFFF;} + .d2-2712074532 .fill-B1{fill:#000536;} + .d2-2712074532 .fill-B2{fill:#0F66B7;} + .d2-2712074532 .fill-B3{fill:#4393DD;} + .d2-2712074532 .fill-B4{fill:#87BFF3;} + .d2-2712074532 .fill-B5{fill:#BCDDFB;} + .d2-2712074532 .fill-B6{fill:#E5F3FF;} + .d2-2712074532 .fill-AA2{fill:#076F6F;} + .d2-2712074532 .fill-AA4{fill:#77DEDE;} + .d2-2712074532 .fill-AA5{fill:#C3F8F8;} + .d2-2712074532 .fill-AB4{fill:#C1A2F3;} + .d2-2712074532 .fill-AB5{fill:#DACEFB;} + .d2-2712074532 .stroke-N1{stroke:#0A0F25;} + .d2-2712074532 .stroke-N2{stroke:#676C7E;} + .d2-2712074532 .stroke-N3{stroke:#9499AB;} + .d2-2712074532 .stroke-N4{stroke:#CFD2DD;} + .d2-2712074532 .stroke-N5{stroke:#DEE1EB;} + .d2-2712074532 .stroke-N6{stroke:#EEF1F8;} + .d2-2712074532 .stroke-N7{stroke:#FFFFFF;} + .d2-2712074532 .stroke-B1{stroke:#000536;} + .d2-2712074532 .stroke-B2{stroke:#0F66B7;} + .d2-2712074532 .stroke-B3{stroke:#4393DD;} + .d2-2712074532 .stroke-B4{stroke:#87BFF3;} + .d2-2712074532 .stroke-B5{stroke:#BCDDFB;} + .d2-2712074532 .stroke-B6{stroke:#E5F3FF;} + .d2-2712074532 .stroke-AA2{stroke:#076F6F;} + .d2-2712074532 .stroke-AA4{stroke:#77DEDE;} + .d2-2712074532 .stroke-AA5{stroke:#C3F8F8;} + .d2-2712074532 .stroke-AB4{stroke:#C1A2F3;} + .d2-2712074532 .stroke-AB5{stroke:#DACEFB;} + .d2-2712074532 .background-color-N1{background-color:#0A0F25;} + .d2-2712074532 .background-color-N2{background-color:#676C7E;} + .d2-2712074532 .background-color-N3{background-color:#9499AB;} + .d2-2712074532 .background-color-N4{background-color:#CFD2DD;} + .d2-2712074532 .background-color-N5{background-color:#DEE1EB;} + .d2-2712074532 .background-color-N6{background-color:#EEF1F8;} + .d2-2712074532 .background-color-N7{background-color:#FFFFFF;} + .d2-2712074532 .background-color-B1{background-color:#000536;} + .d2-2712074532 .background-color-B2{background-color:#0F66B7;} + .d2-2712074532 .background-color-B3{background-color:#4393DD;} + .d2-2712074532 .background-color-B4{background-color:#87BFF3;} + .d2-2712074532 .background-color-B5{background-color:#BCDDFB;} + .d2-2712074532 .background-color-B6{background-color:#E5F3FF;} + .d2-2712074532 .background-color-AA2{background-color:#076F6F;} + .d2-2712074532 .background-color-AA4{background-color:#77DEDE;} + .d2-2712074532 .background-color-AA5{background-color:#C3F8F8;} + .d2-2712074532 .background-color-AB4{background-color:#C1A2F3;} + .d2-2712074532 .background-color-AB5{background-color:#DACEFB;} + .d2-2712074532 .color-N1{color:#0A0F25;} + .d2-2712074532 .color-N2{color:#676C7E;} + .d2-2712074532 .color-N3{color:#9499AB;} + .d2-2712074532 .color-N4{color:#CFD2DD;} + .d2-2712074532 .color-N5{color:#DEE1EB;} + .d2-2712074532 .color-N6{color:#EEF1F8;} + .d2-2712074532 .color-N7{color:#FFFFFF;} + .d2-2712074532 .color-B1{color:#000536;} + .d2-2712074532 .color-B2{color:#0F66B7;} + .d2-2712074532 .color-B3{color:#4393DD;} + .d2-2712074532 .color-B4{color:#87BFF3;} + .d2-2712074532 .color-B5{color:#BCDDFB;} + .d2-2712074532 .color-B6{color:#E5F3FF;} + .d2-2712074532 .color-AA2{color:#076F6F;} + .d2-2712074532 .color-AA4{color:#77DEDE;} + .d2-2712074532 .color-AA5{color:#C3F8F8;} + .d2-2712074532 .color-AB4{color:#C1A2F3;} + .d2-2712074532 .color-AB5{color:#DACEFB;}.appendix text.text{fill:#0A0F25}.md{--color-fg-default:#0A0F25;--color-fg-muted:#676C7E;--color-fg-subtle:#9499AB;--color-canvas-default:#FFFFFF;--color-canvas-subtle:#EEF1F8;--color-border-default:#000536;--color-border-muted:#0F66B7;--color-neutral-muted:#EEF1F8;--color-accent-fg:#0F66B7;--color-accent-emphasis:#0F66B7;--color-attention-subtle:#676C7E;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AA2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-AA4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-AB4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AB5{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N1{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N2{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N5{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N6{fill:url(#streaks-bright);mix-blend-mode:darken}.sketch-overlay-N7{fill:url(#streaks-bright);mix-blend-mode:darken}.light-code{display: block}.dark-code{display: none}@media screen and (prefers-color-scheme:dark){ + .d2-2712074532 .fill-N1{fill:#CDD6F4;} + .d2-2712074532 .fill-N2{fill:#BAC2DE;} + .d2-2712074532 .fill-N3{fill:#A6ADC8;} + .d2-2712074532 .fill-N4{fill:#585B70;} + .d2-2712074532 .fill-N5{fill:#45475A;} + .d2-2712074532 .fill-N6{fill:#313244;} + .d2-2712074532 .fill-N7{fill:#1E1E2E;} + .d2-2712074532 .fill-B1{fill:#CBA6f7;} + .d2-2712074532 .fill-B2{fill:#CBA6f7;} + .d2-2712074532 .fill-B3{fill:#6C7086;} + .d2-2712074532 .fill-B4{fill:#585B70;} + .d2-2712074532 .fill-B5{fill:#45475A;} + .d2-2712074532 .fill-B6{fill:#313244;} + .d2-2712074532 .fill-AA2{fill:#f38BA8;} + .d2-2712074532 .fill-AA4{fill:#45475A;} + .d2-2712074532 .fill-AA5{fill:#313244;} + .d2-2712074532 .fill-AB4{fill:#45475A;} + .d2-2712074532 .fill-AB5{fill:#313244;} + .d2-2712074532 .stroke-N1{stroke:#CDD6F4;} + .d2-2712074532 .stroke-N2{stroke:#BAC2DE;} + .d2-2712074532 .stroke-N3{stroke:#A6ADC8;} + .d2-2712074532 .stroke-N4{stroke:#585B70;} + .d2-2712074532 .stroke-N5{stroke:#45475A;} + .d2-2712074532 .stroke-N6{stroke:#313244;} + .d2-2712074532 .stroke-N7{stroke:#1E1E2E;} + .d2-2712074532 .stroke-B1{stroke:#CBA6f7;} + .d2-2712074532 .stroke-B2{stroke:#CBA6f7;} + .d2-2712074532 .stroke-B3{stroke:#6C7086;} + .d2-2712074532 .stroke-B4{stroke:#585B70;} + .d2-2712074532 .stroke-B5{stroke:#45475A;} + .d2-2712074532 .stroke-B6{stroke:#313244;} + .d2-2712074532 .stroke-AA2{stroke:#f38BA8;} + .d2-2712074532 .stroke-AA4{stroke:#45475A;} + .d2-2712074532 .stroke-AA5{stroke:#313244;} + .d2-2712074532 .stroke-AB4{stroke:#45475A;} + .d2-2712074532 .stroke-AB5{stroke:#313244;} + .d2-2712074532 .background-color-N1{background-color:#CDD6F4;} + .d2-2712074532 .background-color-N2{background-color:#BAC2DE;} + .d2-2712074532 .background-color-N3{background-color:#A6ADC8;} + .d2-2712074532 .background-color-N4{background-color:#585B70;} + .d2-2712074532 .background-color-N5{background-color:#45475A;} + .d2-2712074532 .background-color-N6{background-color:#313244;} + .d2-2712074532 .background-color-N7{background-color:#1E1E2E;} + .d2-2712074532 .background-color-B1{background-color:#CBA6f7;} + .d2-2712074532 .background-color-B2{background-color:#CBA6f7;} + .d2-2712074532 .background-color-B3{background-color:#6C7086;} + .d2-2712074532 .background-color-B4{background-color:#585B70;} + .d2-2712074532 .background-color-B5{background-color:#45475A;} + .d2-2712074532 .background-color-B6{background-color:#313244;} + .d2-2712074532 .background-color-AA2{background-color:#f38BA8;} + .d2-2712074532 .background-color-AA4{background-color:#45475A;} + .d2-2712074532 .background-color-AA5{background-color:#313244;} + .d2-2712074532 .background-color-AB4{background-color:#45475A;} + .d2-2712074532 .background-color-AB5{background-color:#313244;} + .d2-2712074532 .color-N1{color:#CDD6F4;} + .d2-2712074532 .color-N2{color:#BAC2DE;} + .d2-2712074532 .color-N3{color:#A6ADC8;} + .d2-2712074532 .color-N4{color:#585B70;} + .d2-2712074532 .color-N5{color:#45475A;} + .d2-2712074532 .color-N6{color:#313244;} + .d2-2712074532 .color-N7{color:#1E1E2E;} + .d2-2712074532 .color-B1{color:#CBA6f7;} + .d2-2712074532 .color-B2{color:#CBA6f7;} + .d2-2712074532 .color-B3{color:#6C7086;} + .d2-2712074532 .color-B4{color:#585B70;} + .d2-2712074532 .color-B5{color:#45475A;} + .d2-2712074532 .color-B6{color:#313244;} + .d2-2712074532 .color-AA2{color:#f38BA8;} + .d2-2712074532 .color-AA4{color:#45475A;} + .d2-2712074532 .color-AA5{color:#313244;} + .d2-2712074532 .color-AB4{color:#45475A;} + .d2-2712074532 .color-AB5{color:#313244;}.appendix text.text{fill:#CDD6F4}.md{--color-fg-default:#CDD6F4;--color-fg-muted:#BAC2DE;--color-fg-subtle:#A6ADC8;--color-canvas-default:#1E1E2E;--color-canvas-subtle:#313244;--color-border-default:#CBA6f7;--color-border-muted:#CBA6f7;--color-neutral-muted:#313244;--color-accent-fg:#CBA6f7;--color-accent-emphasis:#CBA6f7;--color-attention-subtle:#BAC2DE;--color-danger-fg:red;}.sketch-overlay-B1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-B3{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-B5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-B6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-AA4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AA5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB4{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-AB5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N1{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N2{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N3{fill:url(#streaks-normal);mix-blend-mode:color-burn}.sketch-overlay-N4{fill:url(#streaks-dark);mix-blend-mode:overlay}.sketch-overlay-N5{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N6{fill:url(#streaks-darker);mix-blend-mode:lighten}.sketch-overlay-N7{fill:url(#streaks-darker);mix-blend-mode:lighten}.light-code{display: none}.dark-code{display: block}}]]> @@ -169,7 +169,7 @@ -xy +xy diff --git a/static/img/generated/vars-escaped.svg2 b/static/img/generated/vars-escaped.svg2 index fce59237..96a5e4e0 100644 --- a/static/img/generated/vars-escaped.svg2 +++ b/static/img/generated/vars-escaped.svg2 @@ -1,4 +1,4 @@ -