summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-10-16 22:41:27 +0200
committerThomas F. K. Jorna <[email protected]>2021-10-16 22:41:27 +0200
commitf69c94297de4168175d02e9ead985b7420cb0bfc (patch)
tree101f62cdaaf52473a2cf324ed23b55f86740261c
parent15fdbd4e9e36c858709651e035fe1339dba3a1e9 (diff)
feat(labels): better defaults
-rw-r--r--components/Tweaks/NodesNLinksPanel.tsx2
-rw-r--r--components/Tweaks/PhysicsPanel.tsx56
-rw-r--r--components/config.ts8
-rw-r--r--out/404.html2
-rw-r--r--out/_next/static/Syn_MlQhRUe5f18KTJnFB/_buildManifest.js (renamed from out/_next/static/Ydx3xl3sZeYptBHO1AStM/_buildManifest.js)2
-rw-r--r--out/_next/static/Syn_MlQhRUe5f18KTJnFB/_ssgManifest.js (renamed from out/_next/static/Ydx3xl3sZeYptBHO1AStM/_ssgManifest.js)0
-rw-r--r--out/_next/static/chunks/pages/index-174b94dde3c5121b0185.js1
-rw-r--r--out/_next/static/chunks/pages/index-c3655ec8db181f6ae1ab.js1
-rw-r--r--out/index.html2
9 files changed, 37 insertions, 37 deletions
diff --git a/components/Tweaks/NodesNLinksPanel.tsx b/components/Tweaks/NodesNLinksPanel.tsx
index dba927c..3321ae3 100644
--- a/components/Tweaks/NodesNLinksPanel.tsx
+++ b/components/Tweaks/NodesNLinksPanel.tsx
@@ -28,7 +28,7 @@ export const NodesNLinksPanel = (props: NodesNLinksPanelProps) => {
onChange={(value) => setVisuals({ ...visuals, nodeRel: value })}
/>
<SliderWithInfo
- label="Node connections size scale"
+ label="Node degree size multiplier"
value={visuals.nodeSizeLinks}
min={0}
max={2}
diff --git a/components/Tweaks/PhysicsPanel.tsx b/components/Tweaks/PhysicsPanel.tsx
index 05fdba8..cd18f03 100644
--- a/components/Tweaks/PhysicsPanel.tsx
+++ b/components/Tweaks/PhysicsPanel.tsx
@@ -65,37 +65,15 @@ export const PhysicsPanel = (props: PhysicsPanelProps) => {
onChange={(v) => setPhysicsCallback(v, 'charge', -1 / 100)}
label="Repulsive Force"
/>
- <EnableSection
- label="Collision"
- infoText="Perfomance sap, disable if slow"
- value={physics.collision}
- onChange={() => setPhysics({ ...physics, collision: !physics.collision })}
- >
- <SliderWithInfo
- value={physics.collisionStrength / 5}
- onChange={(v) => setPhysicsCallback(v, 'collisionStrength', 1 / 5)}
- label="Collision Radius"
- infoText="Easy with this one, high values can lead to a real jiggly mess"
- />
- </EnableSection>
<SliderWithInfo
value={physics.linkStrength * 5}
onChange={(v) => setPhysicsCallback(v, 'linkStrength', 5)}
label="Link Force"
/>
<SliderWithInfo
- label="Link Iterations"
- value={physics.linkIts}
- onChange={(v) => setPhysicsCallback(v, 'linkIts', 1)}
- min={0}
- max={6}
- step={1}
- infoText="How many links down the line the physics of a single node affects (Slow)"
- />
- <SliderWithInfo
- label="Viscosity"
- value={physics.velocityDecay * 10}
- onChange={(v) => setPhysicsCallback(v, 'velocityDecay', 10)}
+ label="Stabilization rate"
+ value={physics.alphaDecay * 50}
+ onChange={(v) => setPhysicsCallback(v, 'alphaDecay', 50)}
/>
</VStack>
<Box>
@@ -114,10 +92,32 @@ export const PhysicsPanel = (props: PhysicsPanelProps) => {
paddingLeft={3}
color="gray.800"
>
+ <EnableSection
+ label="Collision"
+ infoText="Perfomance sap, disable if slow"
+ value={physics.collision}
+ onChange={() => setPhysics({ ...physics, collision: !physics.collision })}
+ >
+ <SliderWithInfo
+ value={physics.collisionStrength / 5}
+ onChange={(v) => setPhysicsCallback(v, 'collisionStrength', 1 / 5)}
+ label="Collision Radius"
+ infoText="Easy with this one, high values can lead to a real jiggly mess"
+ />
+ </EnableSection>
+ <SliderWithInfo
+ label="Link iterations"
+ value={physics.linkIts}
+ onChange={(v) => setPhysicsCallback(v, 'linkIts', 1)}
+ min={0}
+ max={6}
+ step={1}
+ infoText="How many links down the line the physics of a single node affects (Slow)"
+ />
<SliderWithInfo
- label="Stabilization rate"
- value={physics.alphaDecay * 50}
- onChange={(v) => setPhysicsCallback(v, 'alphaDecay', 50)}
+ label="Viscosity"
+ value={physics.velocityDecay * 10}
+ onChange={(v) => setPhysicsCallback(v, 'velocityDecay', 10)}
/>
<EnableSection
label="Center nodes"
diff --git a/components/config.ts b/components/config.ts
index a5d859e..32a4c21 100644
--- a/components/config.ts
+++ b/components/config.ts
@@ -56,11 +56,11 @@ export const initialVisuals = {
arrowsColor: '',
linkOpacity: 0.8,
linkWidth: 1,
- nodeRel: 4,
+ nodeRel: 3,
nodeOpacity: 1,
nodeResolution: 12,
labels: 2,
- labelScale: 1,
+ labelScale: 1.5,
labelFontSize: 10,
labelLength: 40,
labelWordWrap: 25,
@@ -69,12 +69,12 @@ export const initialVisuals = {
labelDynamicStrength: 0.5,
highlight: true,
highlightNodeSize: 1.1,
- highlightLinkSize: 1,
+ highlightLinkSize: 0.7,
highlightFade: 0.8,
highlightAnim: true,
animationSpeed: 360,
algorithmOptions: options,
- algorithmName: 'SinusoidalOut',
+ algorithmName: 'CircularOut',
linkColorScheme: 'gray.500',
nodeColorScheme: [
'red.500',
diff --git a/out/404.html b/out/404.html
index 4699571..a958873 100644
--- a/out/404.html
+++ b/out/404.html
@@ -1 +1 @@
-<!DOCTYPE html><html><head><meta name="viewport" content="width=device-width"/><meta charSet="utf-8"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link rel="preload" href="/_next/static/css/a37ded5ec4cf14937ec5.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a37ded5ec4cf14937ec5.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-a40ef1678bae11e696dba45124eadd70.js"></script><script src="/_next/static/chunks/webpack-06f739dee1b1cddd24d8.js" defer=""></script><script src="/_next/static/chunks/framework-2f612445bd50b211f15a.js" defer=""></script><script src="/_next/static/chunks/main-965b0767a8d0eaf0c110.js" defer=""></script><script src="/_next/static/chunks/pages/_app-8bd0d6de2a60ac35d501.js" defer=""></script><script src="/_next/static/chunks/pages/_error-ea939aab753d9e9db3bd.js" defer=""></script><script src="/_next/static/Ydx3xl3sZeYptBHO1AStM/_buildManifest.js" defer=""></script><script src="/_next/static/Ydx3xl3sZeYptBHO1AStM/_ssgManifest.js" defer=""></script></head><body><div id="__next"><style data-emotion="css-global 1n4e8ad">:host,:root{--chakra-ring-inset:var(--chakra-empty,/*!*/ /*!*/);--chakra-ring-offset-width:0px;--chakra-ring-offset-color:#fff;--chakra-ring-color:rgba(66, 153, 225, 0.6);--chakra-ring-offset-shadow:0 0 #0000;--chakra-ring-shadow:0 0 #0000;--chakra-space-x-reverse:0;--chakra-space-y-reverse:0;--chakra-colors-transparent:transparent;--chakra-colors-current:currentColor;--chakra-colors-black:#bbc2cf;--chakra-colors-white:#242730;--chakra-colors-whiteAlpha-50:rgba(255, 255, 255, 0.04);--chakra-colors-whiteAlpha-100:rgba(255, 255, 255, 0.06);--chakra-colors-whiteAlpha-200:rgba(255, 255, 255, 0.08);--chakra-colors-whiteAlpha-300:rgba(255, 255, 255, 0.16);--chakra-colors-whiteAlpha-400:rgba(255, 255, 255, 0.24);--chakra-colors-whiteAlpha-500:rgba(255, 255, 255, 0.36);--chakra-colors-whiteAlpha-600:rgba(255, 255, 255, 0.48);--chakra-colors-whiteAlpha-700:rgba(255, 255, 255, 0.64);--chakra-colors-whiteAlpha-800:rgba(255, 255, 255, 0.80);--chakra-colors-whiteAlpha-900:rgba(255, 255, 255, 0.92);--chakra-colors-blackAlpha-50:rgba(0, 0, 0, 0.04);--chakra-colors-blackAlpha-100:rgba(0, 0, 0, 0.06);--chakra-colors-blackAlpha-200:rgba(0, 0, 0, 0.08);--chakra-colors-blackAlpha-300:rgba(0, 0, 0, 0.16);--chakra-colors-blackAlpha-400:rgba(0, 0, 0, 0.24);--chakra-colors-blackAlpha-500:rgba(0, 0, 0, 0.36);--chakra-colors-blackAlpha-600:rgba(0, 0, 0, 0.48);--chakra-colors-blackAlpha-700:rgba(0, 0, 0, 0.64);--chakra-colors-blackAlpha-800:rgba(0, 0, 0, 0.80);--chakra-colors-blackAlpha-900:rgba(0, 0, 0, 0.92);--chakra-colors-gray-50:#F7FAFC;--chakra-colors-gray-100:#1c1f24;--chakra-colors-gray-200:rgb(29, 33, 38);--chakra-colors-gray-300:#21272d;--chakra-colors-gray-400:#23272e;--chakra-colors-gray-500:#484854;--chakra-colors-gray-600:#62686E;--chakra-colors-gray-700:#757B80;--chakra-colors-gray-800:#9ca0a4;--chakra-colors-gray-900:#DFDFDF;--chakra-colors-red-50:#FFF5F5;--chakra-colors-red-100:#FED7D7;--chakra-colors-red-200:#FEB2B2;--chakra-colors-red-300:#FC8181;--chakra-colors-red-400:#F56565;--chakra-colors-red-500:#ff665c;--chakra-colors-red-600:#C53030;--chakra-colors-red-700:#9B2C2C;--chakra-colors-red-800:#822727;--chakra-colors-red-900:#63171B;--chakra-colors-orange-50:#FFFAF0;--chakra-colors-orange-100:#FEEBC8;--chakra-colors-orange-200:#FBD38D;--chakra-colors-orange-300:#F6AD55;--chakra-colors-orange-400:#ED8936;--chakra-colors-orange-500:#e69055;--chakra-colors-orange-600:#C05621;--chakra-colors-orange-700:#9C4221;--chakra-colors-orange-800:#7B341E;--chakra-colors-orange-900:#652B19;--chakra-colors-yellow-50:#FFFFF0;--chakra-colors-yellow-100:#FEFCBF;--chakra-colors-yellow-200:#FAF089;--chakra-colors-yellow-300:#F6E05E;--chakra-colors-yellow-400:#ECC94B;--chakra-colors-yellow-500:#FCCE7B;--chakra-colors-yellow-600:#B7791F;--chakra-colors-yellow-700:#975A16;--chakra-colors-yellow-800:#744210;--chakra-colors-yellow-900:#5F370E;--chakra-colors-green-50:#F0FFF4;--chakra-colors-green-100:#C6F6D5;--chakra-colors-green-200:#9AE6B4;--chakra-colors-green-300:#68D391;--chakra-colors-green-400:#48BB78;--chakra-colors-green-500:#7bc275;--chakra-colors-green-600:#2F855A;--chakra-colors-green-700:#276749;--chakra-colors-green-800:#22543D;--chakra-colors-green-900:#1C4532;--chakra-colors-teal-50:#E6FFFA;--chakra-colors-teal-100:#B2F5EA;--chakra-colors-teal-200:#81E6D9;--chakra-colors-teal-300:#4FD1C5;--chakra-colors-teal-400:#38B2AC;--chakra-colors-teal-500:#51afef;--chakra-colors-teal-600:#2C7A7B;--chakra-colors-teal-700:#285E61;--chakra-colors-teal-800:#234E52;--chakra-colors-teal-900:#1D4044;--chakra-colors-blue-50:#ebf8ff;--chakra-colors-blue-100:#bee3f8;--chakra-colors-blue-200:#90cdf4;--chakra-colors-blue-300:#63b3ed;--chakra-colors-blue-400:#4299e1;--chakra-colors-blue-500:#51afef;--chakra-colors-blue-600:#2b6cb0;--chakra-colors-blue-700:#2c5282;--chakra-colors-blue-800:#2a4365;--chakra-colors-blue-900:#1A365D;--chakra-colors-cyan-50:#EDFDFD;--chakra-colors-cyan-100:#C4F1F9;--chakra-colors-cyan-200:#9DECF9;--chakra-colors-cyan-300:#76E4F7;--chakra-colors-cyan-400:#0BC5EA;--chakra-colors-cyan-500:#5cEfFF;--chakra-colors-cyan-600:#00A3C4;--chakra-colors-cyan-700:#0987A0;--chakra-colors-cyan-800:#086F83;--chakra-colors-cyan-900:#065666;--chakra-colors-purple-50:#FAF5FF;--chakra-colors-purple-100:#E9D8FD;--chakra-colors-purple-200:#D6BCFA;--chakra-colors-purple-300:#B794F4;--chakra-colors-purple-400:#9F7AEA;--chakra-colors-purple-500:#a991f1;--chakra-colors-purple-600:#6B46C1;--chakra-colors-purple-700:#553C9A;--chakra-colors-purple-800:#44337A;--chakra-colors-purple-900:#322659;--chakra-colors-pink-50:#FFF5F7;--chakra-colors-pink-100:#FED7E2;--chakra-colors-pink-200:#FBB6CE;--chakra-colors-pink-300:#F687B3;--chakra-colors-pink-400:#ED64A6;--chakra-colors-pink-500:#C57BDB;--chakra-colors-pink-600:#B83280;--chakra-colors-pink-700:#97266D;--chakra-colors-pink-800:#702459;--chakra-colors-pink-900:#521B41;--chakra-colors-linkedin-50:#E8F4F9;--chakra-colors-linkedin-100:#CFEDFB;--chakra-colors-linkedin-200:#9BDAF3;--chakra-colors-linkedin-300:#68C7EC;--chakra-colors-linkedin-400:#34B3E4;--chakra-colors-linkedin-500:#00A0DC;--chakra-colors-linkedin-600:#008CC9;--chakra-colors-linkedin-700:#0077B5;--chakra-colors-linkedin-800:#005E93;--chakra-colors-linkedin-900:#004471;--chakra-colors-facebook-50:#E8F4F9;--chakra-colors-facebook-100:#D9DEE9;--chakra-colors-facebook-200:#B7C2DA;--chakra-colors-facebook-300:#6482C0;--chakra-colors-facebook-400:#4267B2;--chakra-colors-facebook-500:#385898;--chakra-colors-facebook-600:#314E89;--chakra-colors-facebook-700:#29487D;--chakra-colors-facebook-800:#223B67;--chakra-colors-facebook-900:#1E355B;--chakra-colors-messenger-50:#D0E6FF;--chakra-colors-messenger-100:#B9DAFF;--chakra-colors-messenger-200:#A2CDFF;--chakra-colors-messenger-300:#7AB8FF;--chakra-colors-messenger-400:#2E90FF;--chakra-colors-messenger-500:#0078FF;--chakra-colors-messenger-600:#0063D1;--chakra-colors-messenger-700:#0052AC;--chakra-colors-messenger-800:#003C7E;--chakra-colors-messenger-900:#002C5C;--chakra-colors-whatsapp-50:#dffeec;--chakra-colors-whatsapp-100:#b9f5d0;--chakra-colors-whatsapp-200:#90edb3;--chakra-colors-whatsapp-300:#65e495;--chakra-colors-whatsapp-400:#3cdd78;--chakra-colors-whatsapp-500:#22c35e;--chakra-colors-whatsapp-600:#179848;--chakra-colors-whatsapp-700:#0c6c33;--chakra-colors-whatsapp-800:#01421c;--chakra-colors-whatsapp-900:#001803;--chakra-colors-twitter-50:#E5F4FD;--chakra-colors-twitter-100:#C8E9FB;--chakra-colors-twitter-200:#A8DCFA;--chakra-colors-twitter-300:#83CDF7;--chakra-colors-twitter-400:#57BBF5;--chakra-colors-twitter-500:#1DA1F2;--chakra-colors-twitter-600:#1A94DA;--chakra-colors-twitter-700:#1681BF;--chakra-colors-twitter-800:#136B9E;--chakra-colors-twitter-900:#0D4D71;--chakra-colors-telegram-50:#E3F2F9;--chakra-colors-telegram-100:#C5E4F3;--chakra-colors-telegram-200:#A2D4EC;--chakra-colors-telegram-300:#7AC1E4;--chakra-colors-telegram-400:#47A9DA;--chakra-colors-telegram-500:#0088CC;--chakra-colors-telegram-600:#007AB8;--chakra-colors-telegram-700:#006BA1;--chakra-colors-telegram-800:#005885;--chakra-colors-telegram-900:#003F5E;--chakra-colors-alt-100:#2a2e38;--chakra-colors-alt-900:#5D656B;--chakra-borders-none:0;--chakra-borders-1px:1px solid;--chakra-borders-2px:2px solid;--chakra-borders-4px:4px solid;--chakra-borders-8px:8px solid;--chakra-fonts-heading:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-body:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-mono:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--chakra-fontSizes-xs:0.75rem;--chakra-fontSizes-sm:0.875rem;--chakra-fontSizes-md:1rem;--chakra-fontSizes-lg:1.125rem;--chakra-fontSizes-xl:1.25rem;--chakra-fontSizes-2xl:1.5rem;--chakra-fontSizes-3xl:1.875rem;--chakra-fontSizes-4xl:2.25rem;--chakra-fontSizes-5xl:3rem;--chakra-fontSizes-6xl:3.75rem;--chakra-fontSizes-7xl:4.5rem;--chakra-fontSizes-8xl:6rem;--chakra-fontSizes-9xl:8rem;--chakra-fontWeights-hairline:100;--chakra-fontWeights-thin:200;--chakra-fontWeights-light:300;--chakra-fontWeights-normal:400;--chakra-fontWeights-medium:500;--chakra-fontWeights-semibold:600;--chakra-fontWeights-bold:700;--chakra-fontWeights-extrabold:800;--chakra-fontWeights-black:900;--chakra-letterSpacings-tighter:-0.05em;--chakra-letterSpacings-tight:-0.025em;--chakra-letterSpacings-normal:0;--chakra-letterSpacings-wide:0.025em;--chakra-letterSpacings-wider:0.05em;--chakra-letterSpacings-widest:0.1em;--chakra-lineHeights-3:.75rem;--chakra-lineHeights-4:1rem;--chakra-lineHeights-5:1.25rem;--chakra-lineHeights-6:1.5rem;--chakra-lineHeights-7:1.75rem;--chakra-lineHeights-8:2rem;--chakra-lineHeights-9:2.25rem;--chakra-lineHeights-10:2.5rem;--chakra-lineHeights-normal:normal;--chakra-lineHeights-none:1;--chakra-lineHeights-shorter:1.25;--chakra-lineHeights-short:1.375;--chakra-lineHeights-base:1.5;--chakra-lineHeights-tall:1.625;--chakra-lineHeights-taller:2;--chakra-radii-none:0;--chakra-radii-sm:0.125rem;--chakra-radii-base:0.25rem;--chakra-radii-md:0.375rem;--chakra-radii-lg:0.5rem;--chakra-radii-xl:0.75rem;--chakra-radii-2xl:1rem;--chakra-radii-3xl:1.5rem;--chakra-radii-full:9999px;--chakra-space-1:0.25rem;--chakra-space-2:0.5rem;--chakra-space-3:0.75rem;--chakra-space-4:1rem;--chakra-space-5:1.25rem;--chakra-space-6:1.5rem;--chakra-space-7:1.75rem;--chakra-space-8:2rem;--chakra-space-9:2.25rem;--chakra-space-10:2.5rem;--chakra-space-12:3rem;--chakra-space-14:3.5rem;--chakra-space-16:4rem;--chakra-space-20:5rem;--chakra-space-24:6rem;--chakra-space-28:7rem;--chakra-space-32:8rem;--chakra-space-36:9rem;--chakra-space-40:10rem;--chakra-space-44:11rem;--chakra-space-48:12rem;--chakra-space-52:13rem;--chakra-space-56:14rem;--chakra-space-60:15rem;--chakra-space-64:16rem;--chakra-space-72:18rem;--chakra-space-80:20rem;--chakra-space-96:24rem;--chakra-space-px:1px;--chakra-space-0\.5:0.125rem;--chakra-space-1\.5:0.375rem;--chakra-space-2\.5:0.625rem;--chakra-space-3\.5:0.875rem;--chakra-shadows-xs:0 0 0 1px rgba(0, 0, 0, 0.05);--chakra-shadows-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--chakra-shadows-base:0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);--chakra-shadows-md:0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);--chakra-shadows-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);--chakra-shadows-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);--chakra-shadows-2xl:0 25px 50px -12px rgba(0, 0, 0, 0.25);--chakra-shadows-outline:0 0 0 3px #a991f1aa;--chakra-shadows-inner:inset 0 2px 4px 0 rgba(0,0,0,0.06);--chakra-shadows-none:none;--chakra-shadows-dark-lg:rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,rgba(0, 0, 0, 0.2) 0px 5px 10px,rgba(0, 0, 0, 0.4) 0px 15px 40px;--chakra-sizes-1:0.25rem;--chakra-sizes-2:0.5rem;--chakra-sizes-3:0.75rem;--chakra-sizes-4:1rem;--chakra-sizes-5:1.25rem;--chakra-sizes-6:1.5rem;--chakra-sizes-7:1.75rem;--chakra-sizes-8:2rem;--chakra-sizes-9:2.25rem;--chakra-sizes-10:2.5rem;--chakra-sizes-12:3rem;--chakra-sizes-14:3.5rem;--chakra-sizes-16:4rem;--chakra-sizes-20:5rem;--chakra-sizes-24:6rem;--chakra-sizes-28:7rem;--chakra-sizes-32:8rem;--chakra-sizes-36:9rem;--chakra-sizes-40:10rem;--chakra-sizes-44:11rem;--chakra-sizes-48:12rem;--chakra-sizes-52:13rem;--chakra-sizes-56:14rem;--chakra-sizes-60:15rem;--chakra-sizes-64:16rem;--chakra-sizes-72:18rem;--chakra-sizes-80:20rem;--chakra-sizes-96:24rem;--chakra-sizes-px:1px;--chakra-sizes-0\.5:0.125rem;--chakra-sizes-1\.5:0.375rem;--chakra-sizes-2\.5:0.625rem;--chakra-sizes-3\.5:0.875rem;--chakra-sizes-max:max-content;--chakra-sizes-min:min-content;--chakra-sizes-full:100%;--chakra-sizes-3xs:14rem;--chakra-sizes-2xs:16rem;--chakra-sizes-xs:20rem;--chakra-sizes-sm:24rem;--chakra-sizes-md:28rem;--chakra-sizes-lg:32rem;--chakra-sizes-xl:36rem;--chakra-sizes-2xl:42rem;--chakra-sizes-3xl:48rem;--chakra-sizes-4xl:56rem;--chakra-sizes-5xl:64rem;--chakra-sizes-6xl:72rem;--chakra-sizes-7xl:80rem;--chakra-sizes-8xl:90rem;--chakra-sizes-container-sm:640px;--chakra-sizes-container-md:768px;--chakra-sizes-container-lg:1024px;--chakra-sizes-container-xl:1280px;--chakra-zIndices-hide:-1;--chakra-zIndices-auto:auto;--chakra-zIndices-base:0;--chakra-zIndices-docked:10;--chakra-zIndices-dropdown:1000;--chakra-zIndices-sticky:1100;--chakra-zIndices-banner:1200;--chakra-zIndices-overlay:1300;--chakra-zIndices-modal:1400;--chakra-zIndices-popover:1500;--chakra-zIndices-skipLink:1600;--chakra-zIndices-toast:1700;--chakra-zIndices-tooltip:1800;--chakra-transition-property-common:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;--chakra-transition-property-colors:background-color,border-color,color,fill,stroke;--chakra-transition-property-dimensions:width,height;--chakra-transition-property-position:left,right,top,bottom;--chakra-transition-property-background:background-color,background-image,background-position;--chakra-transition-easing-ease-in:cubic-bezier(0.4, 0, 1, 1);--chakra-transition-easing-ease-out:cubic-bezier(0, 0, 0.2, 1);--chakra-transition-easing-ease-in-out:cubic-bezier(0.4, 0, 0.2, 1);--chakra-transition-duration-ultra-fast:50ms;--chakra-transition-duration-faster:100ms;--chakra-transition-duration-fast:150ms;--chakra-transition-duration-normal:200ms;--chakra-transition-duration-slow:300ms;--chakra-transition-duration-slower:400ms;--chakra-transition-duration-ultra-slow:500ms;--chakra-blur-none:0;--chakra-blur-sm:4px;--chakra-blur-base:8px;--chakra-blur-md:12px;--chakra-blur-lg:16px;--chakra-blur-xl:24px;--chakra-blur-2xl:40px;--chakra-blur-3xl:64px;}</style><style data-emotion="css-global 1syi0wy">html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;touch-action:manipulation;}body{position:relative;min-height:100%;font-feature-settings:'kern';}*,*::before,*::after{border-width:0;border-style:solid;box-sizing:border-box;}main{display:block;}hr{border-top-width:1px;box-sizing:content-box;height:0;overflow:visible;}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:1em;}a{background-color:transparent;color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;}abbr[title]{border-bottom:none;-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;}b,strong{font-weight:bold;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sub{bottom:-0.25em;}sup{top:-0.5em;}img{border-style:none;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible;}button,select{text-transform:none;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0;}fieldset{padding:0.35em 0.75em 0.625em;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline;}textarea{overflow:auto;}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0;}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{-webkit-appearance:none!important;}input[type="number"]{-moz-appearance:textfield;}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}[type="search"]::-webkit-search-decoration{-webkit-appearance:none!important;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block;}summary{display:-webkit-box;display:-webkit-list-item;display:-ms-list-itembox;display:list-item;}template{display:none;}[hidden]{display:none!important;}body,blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0;}button{background:transparent;padding:0;}fieldset{margin:0;padding:0;}ol,ul{margin:0;padding:0;}textarea{resize:vertical;}button,[role="button"]{cursor:pointer;}button::-moz-focus-inner{border:0!important;}table{border-collapse:collapse;}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit;}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle;}img,video{max-width:100%;height:auto;}[data-js-focus-visible] :focus:not([data-focus-visible-added]){outline:none;box-shadow:none;}select::-ms-expand{display:none;}</style><style data-emotion="css-global 1baqkrf">body{font-family:var(--chakra-fonts-body);color:var(--chakra-colors-gray-800);background:var(--chakra-colors-white);transition-property:background-color;transition-duration:var(--chakra-transition-duration-normal);line-height:var(--chakra-lineHeights-base);}*::-webkit-input-placeholder{color:var(--chakra-colors-gray-400);}*::-moz-placeholder{color:var(--chakra-colors-gray-400);}*:-ms-input-placeholder{color:var(--chakra-colors-gray-400);}*::placeholder{color:var(--chakra-colors-gray-400);}*,*::before,::after{border-color:var(--chakra-colors-gray-200);word-wrap:break-word;}</style><div style="color:#000;background:#fff;font-family:-apple-system, BlinkMacSystemFont, Roboto, &quot;Segoe UI&quot;, &quot;Fira Sans&quot;, Avenir, &quot;Helvetica Neue&quot;, &quot;Lucida Grande&quot;, sans-serif;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body { margin: 0 }</style><h1 style="display:inline-block;border-right:1px solid rgba(0, 0, 0,.3);margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404</h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.</h2></div></div></div><span></span></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"Ydx3xl3sZeYptBHO1AStM","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html> \ No newline at end of file
+<!DOCTYPE html><html><head><meta name="viewport" content="width=device-width"/><meta charSet="utf-8"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link rel="preload" href="/_next/static/css/a37ded5ec4cf14937ec5.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a37ded5ec4cf14937ec5.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-a40ef1678bae11e696dba45124eadd70.js"></script><script src="/_next/static/chunks/webpack-06f739dee1b1cddd24d8.js" defer=""></script><script src="/_next/static/chunks/framework-2f612445bd50b211f15a.js" defer=""></script><script src="/_next/static/chunks/main-965b0767a8d0eaf0c110.js" defer=""></script><script src="/_next/static/chunks/pages/_app-8bd0d6de2a60ac35d501.js" defer=""></script><script src="/_next/static/chunks/pages/_error-ea939aab753d9e9db3bd.js" defer=""></script><script src="/_next/static/Syn_MlQhRUe5f18KTJnFB/_buildManifest.js" defer=""></script><script src="/_next/static/Syn_MlQhRUe5f18KTJnFB/_ssgManifest.js" defer=""></script></head><body><div id="__next"><style data-emotion="css-global 1n4e8ad">:host,:root{--chakra-ring-inset:var(--chakra-empty,/*!*/ /*!*/);--chakra-ring-offset-width:0px;--chakra-ring-offset-color:#fff;--chakra-ring-color:rgba(66, 153, 225, 0.6);--chakra-ring-offset-shadow:0 0 #0000;--chakra-ring-shadow:0 0 #0000;--chakra-space-x-reverse:0;--chakra-space-y-reverse:0;--chakra-colors-transparent:transparent;--chakra-colors-current:currentColor;--chakra-colors-black:#bbc2cf;--chakra-colors-white:#242730;--chakra-colors-whiteAlpha-50:rgba(255, 255, 255, 0.04);--chakra-colors-whiteAlpha-100:rgba(255, 255, 255, 0.06);--chakra-colors-whiteAlpha-200:rgba(255, 255, 255, 0.08);--chakra-colors-whiteAlpha-300:rgba(255, 255, 255, 0.16);--chakra-colors-whiteAlpha-400:rgba(255, 255, 255, 0.24);--chakra-colors-whiteAlpha-500:rgba(255, 255, 255, 0.36);--chakra-colors-whiteAlpha-600:rgba(255, 255, 255, 0.48);--chakra-colors-whiteAlpha-700:rgba(255, 255, 255, 0.64);--chakra-colors-whiteAlpha-800:rgba(255, 255, 255, 0.80);--chakra-colors-whiteAlpha-900:rgba(255, 255, 255, 0.92);--chakra-colors-blackAlpha-50:rgba(0, 0, 0, 0.04);--chakra-colors-blackAlpha-100:rgba(0, 0, 0, 0.06);--chakra-colors-blackAlpha-200:rgba(0, 0, 0, 0.08);--chakra-colors-blackAlpha-300:rgba(0, 0, 0, 0.16);--chakra-colors-blackAlpha-400:rgba(0, 0, 0, 0.24);--chakra-colors-blackAlpha-500:rgba(0, 0, 0, 0.36);--chakra-colors-blackAlpha-600:rgba(0, 0, 0, 0.48);--chakra-colors-blackAlpha-700:rgba(0, 0, 0, 0.64);--chakra-colors-blackAlpha-800:rgba(0, 0, 0, 0.80);--chakra-colors-blackAlpha-900:rgba(0, 0, 0, 0.92);--chakra-colors-gray-50:#F7FAFC;--chakra-colors-gray-100:#1c1f24;--chakra-colors-gray-200:rgb(29, 33, 38);--chakra-colors-gray-300:#21272d;--chakra-colors-gray-400:#23272e;--chakra-colors-gray-500:#484854;--chakra-colors-gray-600:#62686E;--chakra-colors-gray-700:#757B80;--chakra-colors-gray-800:#9ca0a4;--chakra-colors-gray-900:#DFDFDF;--chakra-colors-red-50:#FFF5F5;--chakra-colors-red-100:#FED7D7;--chakra-colors-red-200:#FEB2B2;--chakra-colors-red-300:#FC8181;--chakra-colors-red-400:#F56565;--chakra-colors-red-500:#ff665c;--chakra-colors-red-600:#C53030;--chakra-colors-red-700:#9B2C2C;--chakra-colors-red-800:#822727;--chakra-colors-red-900:#63171B;--chakra-colors-orange-50:#FFFAF0;--chakra-colors-orange-100:#FEEBC8;--chakra-colors-orange-200:#FBD38D;--chakra-colors-orange-300:#F6AD55;--chakra-colors-orange-400:#ED8936;--chakra-colors-orange-500:#e69055;--chakra-colors-orange-600:#C05621;--chakra-colors-orange-700:#9C4221;--chakra-colors-orange-800:#7B341E;--chakra-colors-orange-900:#652B19;--chakra-colors-yellow-50:#FFFFF0;--chakra-colors-yellow-100:#FEFCBF;--chakra-colors-yellow-200:#FAF089;--chakra-colors-yellow-300:#F6E05E;--chakra-colors-yellow-400:#ECC94B;--chakra-colors-yellow-500:#FCCE7B;--chakra-colors-yellow-600:#B7791F;--chakra-colors-yellow-700:#975A16;--chakra-colors-yellow-800:#744210;--chakra-colors-yellow-900:#5F370E;--chakra-colors-green-50:#F0FFF4;--chakra-colors-green-100:#C6F6D5;--chakra-colors-green-200:#9AE6B4;--chakra-colors-green-300:#68D391;--chakra-colors-green-400:#48BB78;--chakra-colors-green-500:#7bc275;--chakra-colors-green-600:#2F855A;--chakra-colors-green-700:#276749;--chakra-colors-green-800:#22543D;--chakra-colors-green-900:#1C4532;--chakra-colors-teal-50:#E6FFFA;--chakra-colors-teal-100:#B2F5EA;--chakra-colors-teal-200:#81E6D9;--chakra-colors-teal-300:#4FD1C5;--chakra-colors-teal-400:#38B2AC;--chakra-colors-teal-500:#51afef;--chakra-colors-teal-600:#2C7A7B;--chakra-colors-teal-700:#285E61;--chakra-colors-teal-800:#234E52;--chakra-colors-teal-900:#1D4044;--chakra-colors-blue-50:#ebf8ff;--chakra-colors-blue-100:#bee3f8;--chakra-colors-blue-200:#90cdf4;--chakra-colors-blue-300:#63b3ed;--chakra-colors-blue-400:#4299e1;--chakra-colors-blue-500:#51afef;--chakra-colors-blue-600:#2b6cb0;--chakra-colors-blue-700:#2c5282;--chakra-colors-blue-800:#2a4365;--chakra-colors-blue-900:#1A365D;--chakra-colors-cyan-50:#EDFDFD;--chakra-colors-cyan-100:#C4F1F9;--chakra-colors-cyan-200:#9DECF9;--chakra-colors-cyan-300:#76E4F7;--chakra-colors-cyan-400:#0BC5EA;--chakra-colors-cyan-500:#5cEfFF;--chakra-colors-cyan-600:#00A3C4;--chakra-colors-cyan-700:#0987A0;--chakra-colors-cyan-800:#086F83;--chakra-colors-cyan-900:#065666;--chakra-colors-purple-50:#FAF5FF;--chakra-colors-purple-100:#E9D8FD;--chakra-colors-purple-200:#D6BCFA;--chakra-colors-purple-300:#B794F4;--chakra-colors-purple-400:#9F7AEA;--chakra-colors-purple-500:#a991f1;--chakra-colors-purple-600:#6B46C1;--chakra-colors-purple-700:#553C9A;--chakra-colors-purple-800:#44337A;--chakra-colors-purple-900:#322659;--chakra-colors-pink-50:#FFF5F7;--chakra-colors-pink-100:#FED7E2;--chakra-colors-pink-200:#FBB6CE;--chakra-colors-pink-300:#F687B3;--chakra-colors-pink-400:#ED64A6;--chakra-colors-pink-500:#C57BDB;--chakra-colors-pink-600:#B83280;--chakra-colors-pink-700:#97266D;--chakra-colors-pink-800:#702459;--chakra-colors-pink-900:#521B41;--chakra-colors-linkedin-50:#E8F4F9;--chakra-colors-linkedin-100:#CFEDFB;--chakra-colors-linkedin-200:#9BDAF3;--chakra-colors-linkedin-300:#68C7EC;--chakra-colors-linkedin-400:#34B3E4;--chakra-colors-linkedin-500:#00A0DC;--chakra-colors-linkedin-600:#008CC9;--chakra-colors-linkedin-700:#0077B5;--chakra-colors-linkedin-800:#005E93;--chakra-colors-linkedin-900:#004471;--chakra-colors-facebook-50:#E8F4F9;--chakra-colors-facebook-100:#D9DEE9;--chakra-colors-facebook-200:#B7C2DA;--chakra-colors-facebook-300:#6482C0;--chakra-colors-facebook-400:#4267B2;--chakra-colors-facebook-500:#385898;--chakra-colors-facebook-600:#314E89;--chakra-colors-facebook-700:#29487D;--chakra-colors-facebook-800:#223B67;--chakra-colors-facebook-900:#1E355B;--chakra-colors-messenger-50:#D0E6FF;--chakra-colors-messenger-100:#B9DAFF;--chakra-colors-messenger-200:#A2CDFF;--chakra-colors-messenger-300:#7AB8FF;--chakra-colors-messenger-400:#2E90FF;--chakra-colors-messenger-500:#0078FF;--chakra-colors-messenger-600:#0063D1;--chakra-colors-messenger-700:#0052AC;--chakra-colors-messenger-800:#003C7E;--chakra-colors-messenger-900:#002C5C;--chakra-colors-whatsapp-50:#dffeec;--chakra-colors-whatsapp-100:#b9f5d0;--chakra-colors-whatsapp-200:#90edb3;--chakra-colors-whatsapp-300:#65e495;--chakra-colors-whatsapp-400:#3cdd78;--chakra-colors-whatsapp-500:#22c35e;--chakra-colors-whatsapp-600:#179848;--chakra-colors-whatsapp-700:#0c6c33;--chakra-colors-whatsapp-800:#01421c;--chakra-colors-whatsapp-900:#001803;--chakra-colors-twitter-50:#E5F4FD;--chakra-colors-twitter-100:#C8E9FB;--chakra-colors-twitter-200:#A8DCFA;--chakra-colors-twitter-300:#83CDF7;--chakra-colors-twitter-400:#57BBF5;--chakra-colors-twitter-500:#1DA1F2;--chakra-colors-twitter-600:#1A94DA;--chakra-colors-twitter-700:#1681BF;--chakra-colors-twitter-800:#136B9E;--chakra-colors-twitter-900:#0D4D71;--chakra-colors-telegram-50:#E3F2F9;--chakra-colors-telegram-100:#C5E4F3;--chakra-colors-telegram-200:#A2D4EC;--chakra-colors-telegram-300:#7AC1E4;--chakra-colors-telegram-400:#47A9DA;--chakra-colors-telegram-500:#0088CC;--chakra-colors-telegram-600:#007AB8;--chakra-colors-telegram-700:#006BA1;--chakra-colors-telegram-800:#005885;--chakra-colors-telegram-900:#003F5E;--chakra-colors-alt-100:#2a2e38;--chakra-colors-alt-900:#5D656B;--chakra-borders-none:0;--chakra-borders-1px:1px solid;--chakra-borders-2px:2px solid;--chakra-borders-4px:4px solid;--chakra-borders-8px:8px solid;--chakra-fonts-heading:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-body:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-mono:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--chakra-fontSizes-xs:0.75rem;--chakra-fontSizes-sm:0.875rem;--chakra-fontSizes-md:1rem;--chakra-fontSizes-lg:1.125rem;--chakra-fontSizes-xl:1.25rem;--chakra-fontSizes-2xl:1.5rem;--chakra-fontSizes-3xl:1.875rem;--chakra-fontSizes-4xl:2.25rem;--chakra-fontSizes-5xl:3rem;--chakra-fontSizes-6xl:3.75rem;--chakra-fontSizes-7xl:4.5rem;--chakra-fontSizes-8xl:6rem;--chakra-fontSizes-9xl:8rem;--chakra-fontWeights-hairline:100;--chakra-fontWeights-thin:200;--chakra-fontWeights-light:300;--chakra-fontWeights-normal:400;--chakra-fontWeights-medium:500;--chakra-fontWeights-semibold:600;--chakra-fontWeights-bold:700;--chakra-fontWeights-extrabold:800;--chakra-fontWeights-black:900;--chakra-letterSpacings-tighter:-0.05em;--chakra-letterSpacings-tight:-0.025em;--chakra-letterSpacings-normal:0;--chakra-letterSpacings-wide:0.025em;--chakra-letterSpacings-wider:0.05em;--chakra-letterSpacings-widest:0.1em;--chakra-lineHeights-3:.75rem;--chakra-lineHeights-4:1rem;--chakra-lineHeights-5:1.25rem;--chakra-lineHeights-6:1.5rem;--chakra-lineHeights-7:1.75rem;--chakra-lineHeights-8:2rem;--chakra-lineHeights-9:2.25rem;--chakra-lineHeights-10:2.5rem;--chakra-lineHeights-normal:normal;--chakra-lineHeights-none:1;--chakra-lineHeights-shorter:1.25;--chakra-lineHeights-short:1.375;--chakra-lineHeights-base:1.5;--chakra-lineHeights-tall:1.625;--chakra-lineHeights-taller:2;--chakra-radii-none:0;--chakra-radii-sm:0.125rem;--chakra-radii-base:0.25rem;--chakra-radii-md:0.375rem;--chakra-radii-lg:0.5rem;--chakra-radii-xl:0.75rem;--chakra-radii-2xl:1rem;--chakra-radii-3xl:1.5rem;--chakra-radii-full:9999px;--chakra-space-1:0.25rem;--chakra-space-2:0.5rem;--chakra-space-3:0.75rem;--chakra-space-4:1rem;--chakra-space-5:1.25rem;--chakra-space-6:1.5rem;--chakra-space-7:1.75rem;--chakra-space-8:2rem;--chakra-space-9:2.25rem;--chakra-space-10:2.5rem;--chakra-space-12:3rem;--chakra-space-14:3.5rem;--chakra-space-16:4rem;--chakra-space-20:5rem;--chakra-space-24:6rem;--chakra-space-28:7rem;--chakra-space-32:8rem;--chakra-space-36:9rem;--chakra-space-40:10rem;--chakra-space-44:11rem;--chakra-space-48:12rem;--chakra-space-52:13rem;--chakra-space-56:14rem;--chakra-space-60:15rem;--chakra-space-64:16rem;--chakra-space-72:18rem;--chakra-space-80:20rem;--chakra-space-96:24rem;--chakra-space-px:1px;--chakra-space-0\.5:0.125rem;--chakra-space-1\.5:0.375rem;--chakra-space-2\.5:0.625rem;--chakra-space-3\.5:0.875rem;--chakra-shadows-xs:0 0 0 1px rgba(0, 0, 0, 0.05);--chakra-shadows-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--chakra-shadows-base:0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);--chakra-shadows-md:0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);--chakra-shadows-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);--chakra-shadows-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);--chakra-shadows-2xl:0 25px 50px -12px rgba(0, 0, 0, 0.25);--chakra-shadows-outline:0 0 0 3px #a991f1aa;--chakra-shadows-inner:inset 0 2px 4px 0 rgba(0,0,0,0.06);--chakra-shadows-none:none;--chakra-shadows-dark-lg:rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,rgba(0, 0, 0, 0.2) 0px 5px 10px,rgba(0, 0, 0, 0.4) 0px 15px 40px;--chakra-sizes-1:0.25rem;--chakra-sizes-2:0.5rem;--chakra-sizes-3:0.75rem;--chakra-sizes-4:1rem;--chakra-sizes-5:1.25rem;--chakra-sizes-6:1.5rem;--chakra-sizes-7:1.75rem;--chakra-sizes-8:2rem;--chakra-sizes-9:2.25rem;--chakra-sizes-10:2.5rem;--chakra-sizes-12:3rem;--chakra-sizes-14:3.5rem;--chakra-sizes-16:4rem;--chakra-sizes-20:5rem;--chakra-sizes-24:6rem;--chakra-sizes-28:7rem;--chakra-sizes-32:8rem;--chakra-sizes-36:9rem;--chakra-sizes-40:10rem;--chakra-sizes-44:11rem;--chakra-sizes-48:12rem;--chakra-sizes-52:13rem;--chakra-sizes-56:14rem;--chakra-sizes-60:15rem;--chakra-sizes-64:16rem;--chakra-sizes-72:18rem;--chakra-sizes-80:20rem;--chakra-sizes-96:24rem;--chakra-sizes-px:1px;--chakra-sizes-0\.5:0.125rem;--chakra-sizes-1\.5:0.375rem;--chakra-sizes-2\.5:0.625rem;--chakra-sizes-3\.5:0.875rem;--chakra-sizes-max:max-content;--chakra-sizes-min:min-content;--chakra-sizes-full:100%;--chakra-sizes-3xs:14rem;--chakra-sizes-2xs:16rem;--chakra-sizes-xs:20rem;--chakra-sizes-sm:24rem;--chakra-sizes-md:28rem;--chakra-sizes-lg:32rem;--chakra-sizes-xl:36rem;--chakra-sizes-2xl:42rem;--chakra-sizes-3xl:48rem;--chakra-sizes-4xl:56rem;--chakra-sizes-5xl:64rem;--chakra-sizes-6xl:72rem;--chakra-sizes-7xl:80rem;--chakra-sizes-8xl:90rem;--chakra-sizes-container-sm:640px;--chakra-sizes-container-md:768px;--chakra-sizes-container-lg:1024px;--chakra-sizes-container-xl:1280px;--chakra-zIndices-hide:-1;--chakra-zIndices-auto:auto;--chakra-zIndices-base:0;--chakra-zIndices-docked:10;--chakra-zIndices-dropdown:1000;--chakra-zIndices-sticky:1100;--chakra-zIndices-banner:1200;--chakra-zIndices-overlay:1300;--chakra-zIndices-modal:1400;--chakra-zIndices-popover:1500;--chakra-zIndices-skipLink:1600;--chakra-zIndices-toast:1700;--chakra-zIndices-tooltip:1800;--chakra-transition-property-common:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;--chakra-transition-property-colors:background-color,border-color,color,fill,stroke;--chakra-transition-property-dimensions:width,height;--chakra-transition-property-position:left,right,top,bottom;--chakra-transition-property-background:background-color,background-image,background-position;--chakra-transition-easing-ease-in:cubic-bezier(0.4, 0, 1, 1);--chakra-transition-easing-ease-out:cubic-bezier(0, 0, 0.2, 1);--chakra-transition-easing-ease-in-out:cubic-bezier(0.4, 0, 0.2, 1);--chakra-transition-duration-ultra-fast:50ms;--chakra-transition-duration-faster:100ms;--chakra-transition-duration-fast:150ms;--chakra-transition-duration-normal:200ms;--chakra-transition-duration-slow:300ms;--chakra-transition-duration-slower:400ms;--chakra-transition-duration-ultra-slow:500ms;--chakra-blur-none:0;--chakra-blur-sm:4px;--chakra-blur-base:8px;--chakra-blur-md:12px;--chakra-blur-lg:16px;--chakra-blur-xl:24px;--chakra-blur-2xl:40px;--chakra-blur-3xl:64px;}</style><style data-emotion="css-global 1syi0wy">html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;touch-action:manipulation;}body{position:relative;min-height:100%;font-feature-settings:'kern';}*,*::before,*::after{border-width:0;border-style:solid;box-sizing:border-box;}main{display:block;}hr{border-top-width:1px;box-sizing:content-box;height:0;overflow:visible;}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:1em;}a{background-color:transparent;color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;}abbr[title]{border-bottom:none;-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;}b,strong{font-weight:bold;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sub{bottom:-0.25em;}sup{top:-0.5em;}img{border-style:none;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible;}button,select{text-transform:none;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0;}fieldset{padding:0.35em 0.75em 0.625em;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline;}textarea{overflow:auto;}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0;}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{-webkit-appearance:none!important;}input[type="number"]{-moz-appearance:textfield;}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}[type="search"]::-webkit-search-decoration{-webkit-appearance:none!important;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block;}summary{display:-webkit-box;display:-webkit-list-item;display:-ms-list-itembox;display:list-item;}template{display:none;}[hidden]{display:none!important;}body,blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0;}button{background:transparent;padding:0;}fieldset{margin:0;padding:0;}ol,ul{margin:0;padding:0;}textarea{resize:vertical;}button,[role="button"]{cursor:pointer;}button::-moz-focus-inner{border:0!important;}table{border-collapse:collapse;}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit;}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle;}img,video{max-width:100%;height:auto;}[data-js-focus-visible] :focus:not([data-focus-visible-added]){outline:none;box-shadow:none;}select::-ms-expand{display:none;}</style><style data-emotion="css-global 1baqkrf">body{font-family:var(--chakra-fonts-body);color:var(--chakra-colors-gray-800);background:var(--chakra-colors-white);transition-property:background-color;transition-duration:var(--chakra-transition-duration-normal);line-height:var(--chakra-lineHeights-base);}*::-webkit-input-placeholder{color:var(--chakra-colors-gray-400);}*::-moz-placeholder{color:var(--chakra-colors-gray-400);}*:-ms-input-placeholder{color:var(--chakra-colors-gray-400);}*::placeholder{color:var(--chakra-colors-gray-400);}*,*::before,::after{border-color:var(--chakra-colors-gray-200);word-wrap:break-word;}</style><div style="color:#000;background:#fff;font-family:-apple-system, BlinkMacSystemFont, Roboto, &quot;Segoe UI&quot;, &quot;Fira Sans&quot;, Avenir, &quot;Helvetica Neue&quot;, &quot;Lucida Grande&quot;, sans-serif;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body { margin: 0 }</style><h1 style="display:inline-block;border-right:1px solid rgba(0, 0, 0,.3);margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404</h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.</h2></div></div></div><span></span></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404}},"page":"/_error","query":{},"buildId":"Syn_MlQhRUe5f18KTJnFB","nextExport":true,"isFallback":false,"gip":true,"scriptLoader":[]}</script></body></html> \ No newline at end of file
diff --git a/out/_next/static/Ydx3xl3sZeYptBHO1AStM/_buildManifest.js b/out/_next/static/Syn_MlQhRUe5f18KTJnFB/_buildManifest.js
index 6aa9ea1..7c6cfb5 100644
--- a/out/_next/static/Ydx3xl3sZeYptBHO1AStM/_buildManifest.js
+++ b/out/_next/static/Syn_MlQhRUe5f18KTJnFB/_buildManifest.js
@@ -1 +1 @@
-self.__BUILD_MANIFEST={__rewrites:{beforeFiles:[],afterFiles:[],fallback:[]},"/":["static/chunks/fb7d5399-b53d39280eb7028fd5fb.js","static/chunks/0c428ae2-753f1ebbec24c403674c.js","static/chunks/1a48c3c1-8e9d488ce132c4739e94.js","static/chunks/b5f2ed29-c14b12daa385c4cc7854.js","static/chunks/d25bd147-2c59edc357c0e2372258.js","static/css/9aeb688eb5e47ce218d8.css","static/chunks/816-0c5ca424da57aea390ea.js","static/chunks/pages/index-c3655ec8db181f6ae1ab.js"],"/_error":["static/chunks/pages/_error-ea939aab753d9e9db3bd.js"],sortedPages:["/","/_app","/_error"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB(); \ No newline at end of file
+self.__BUILD_MANIFEST={__rewrites:{beforeFiles:[],afterFiles:[],fallback:[]},"/":["static/chunks/fb7d5399-b53d39280eb7028fd5fb.js","static/chunks/0c428ae2-753f1ebbec24c403674c.js","static/chunks/1a48c3c1-8e9d488ce132c4739e94.js","static/chunks/b5f2ed29-c14b12daa385c4cc7854.js","static/chunks/d25bd147-2c59edc357c0e2372258.js","static/css/9aeb688eb5e47ce218d8.css","static/chunks/816-0c5ca424da57aea390ea.js","static/chunks/pages/index-174b94dde3c5121b0185.js"],"/_error":["static/chunks/pages/_error-ea939aab753d9e9db3bd.js"],sortedPages:["/","/_app","/_error"]},self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB(); \ No newline at end of file
diff --git a/out/_next/static/Ydx3xl3sZeYptBHO1AStM/_ssgManifest.js b/out/_next/static/Syn_MlQhRUe5f18KTJnFB/_ssgManifest.js
index 0511aa8..0511aa8 100644
--- a/out/_next/static/Ydx3xl3sZeYptBHO1AStM/_ssgManifest.js
+++ b/out/_next/static/Syn_MlQhRUe5f18KTJnFB/_ssgManifest.js
diff --git a/out/_next/static/chunks/pages/index-174b94dde3c5121b0185.js b/out/_next/static/chunks/pages/index-174b94dde3c5121b0185.js
new file mode 100644
index 0000000..c8bb7af
--- /dev/null
+++ b/out/_next/static/chunks/pages/index-174b94dde3c5121b0185.js
@@ -0,0 +1 @@
+(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[405],{54530:function(e,n,t){"use strict";t.r(n),t.d(n,{Graph:function(){return Vt},GraphPage:function(){return Wt},default:function(){return Mt},getThemeColor:function(){return Ut},hexToRGBA:function(){return qt},normalizeLinkEnds:function(){return _t}});var r=t(15861),i=t(42982),o=t(4942),l=t(70885),s=t(87757),c=t.n(s),a=t(40980),u=t(74860),d=t(95869),h=t(48017),g=t(94096),f=t(96699),p=t(48420),x=t(57775),j=t(54309),b=t(52596),v=t(9008),m=t(67294),y=t(47516),C=t(63750),O=t(22003),w=t(31122),k=t(7520),S=t(36194),P=[],N={};for(var D in S.oY)for(var I in S.oY[D]){var L=D+I;"LinearNone"===L&&(L="Linear"),P.push(L),N[L]=S.oY[D][I]}var z=N,E={enabled:!0,charge:-700,collision:!0,collisionStrength:20,centering:!0,centeringStrength:.2,linkStrength:.3,linkIts:1,alphaDecay:.05,alphaTarget:0,alphaMin:0,velocityDecay:.25,gravity:.3,gravityOn:!0,gravityLocal:!1},Z={orphans:!1,dailies:!1,parent:"heading",filelessCites:!1,tagsBlacklist:[],tagsWhitelist:[],bad:!0,nodes:[],links:[],date:[],noter:!0},R={particles:!1,particlesNumber:0,particlesWidth:4,arrows:!1,arrowsLength:1,arrowsPos:.5,arrowsColor:"",linkOpacity:.8,linkWidth:1,nodeRel:3,nodeOpacity:1,nodeResolution:12,labels:2,labelScale:1.5,labelFontSize:10,labelLength:40,labelWordWrap:25,labelLineSpace:1,labelDynamicDegree:8,labelDynamicStrength:.5,highlight:!0,highlightNodeSize:1.1,highlightLinkSize:.7,highlightFade:.8,highlightAnim:!0,animationSpeed:360,algorithmOptions:P,algorithmName:"CircularOut",linkColorScheme:"gray.500",nodeColorScheme:["red.500","gray.600","yellow.500","green.500","cyan.500","blue.500","pink.500","purple.500","orange.500"],nodeHighlight:"purple.500",linkHighlight:"purple.500",backgroundColor:"white",emacsNodeColor:"gray.800",labelTextColor:"black",labelBackgroundColor:"",labelBackgroundOpacity:.7,citeDashes:!0,citeDashLength:35,citeGapLength:15,citeLinkColor:"gray.700",citeLinkHighlightColor:"",citeNodeColor:"black",refDashes:!0,refDashLength:35,refGapLength:15,refLinkColor:"gray.700",refLinkHighlightColor:"",refNodeColor:"black",nodeSizeLinks:.5,nodeZoomSize:1.2},T={follow:"zoom",localSame:"add",zoomPadding:200,zoomSpeed:2e3},B={highlight:"hover",local:"double",follow:"never",context:"right",preview:"click",backgroundExitsLocal:!1},F={neighbors:1},H=["red.500","orange.500","yellow.500","green.500","cyan.500","blue.500","pink.500","purple.500","white","gray.100","gray.200","gray.300","gray.400","gray.500","gray.600","gray.700","gray.800","gray.900","black"],A=t(11252),M=t(336),W=t(85675),V=t(72026),X=t(64115),_=t(49364),U=t(94030),q=t(46617),G=t(50862),J=t(68928),Q=t(55830),K=t(2827);function Y(e,n,t){t.send(JSON.stringify({command:e,data:n}))}function $(e,n){Y("open",{id:e.id},n)}var ee=t(85305),ne=t(77787),te=t(45987),re=t(80658),ie=t(38554),oe=t.n(ie),le=t(84461),se=t(73808),ce=t(53869),ae=t(39629);function ue(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function de(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ue(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ue(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var he={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]};var ge=function(e,n){return de(de({},e),{},{delay:(0,se.hj)(n)?n:null===n||void 0===n?void 0:n.enter})},fe=function(e,n){return de(de({},e),{},{delay:(0,se.hj)(n)?n:null===n||void 0===n?void 0:n.exit})},pe=t(85893),xe=["in","unmountOnExit","animateOpacity","startingSize","endingSize","dimension","style","className","transition","transitionEnd"];function je(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function be(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?je(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):je(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var ve=function(e){return null!=e&&parseInt(e.toString(),10)>0},me={exit:{size:{duration:.2,ease:he.ease},opacity:{duration:.3,ease:he.ease}},enter:{size:{duration:.3,ease:he.ease},opacity:{duration:.4,ease:he.ease}}},ye={exit:function(e){var n,t,r=e.animateOpacity,i=e.startingSize,l=e.transition,s=e.transitionEnd,c=e.delay,a=e.dimension;return be(be({},r&&{opacity:ve(i)?1:0}),{},(t={overflow:"hidden"},(0,o.Z)(t,a,i),(0,o.Z)(t,"transitionEnd",null===s||void 0===s?void 0:s.exit),(0,o.Z)(t,"transition",null!==(n=null===l||void 0===l?void 0:l.exit)&&void 0!==n?n:fe(me.exit,c)),t))},enter:function(e){var n,t,r=e.animateOpacity,i=e.endingSize,l=e.transition,s=e.transitionEnd,c=e.delay,a=e.dimension;return be(be({},r&&{opacity:1}),{},(t={},(0,o.Z)(t,a,i),(0,o.Z)(t,"transitionEnd",null===s||void 0===s?void 0:s.enter),(0,o.Z)(t,"transition",null!==(n=null===l||void 0===l?void 0:l.enter)&&void 0!==n?n:ge(me.enter,c)),t))}},Ce=m.forwardRef((function(e,n){var t=e.in,r=e.unmountOnExit,i=e.animateOpacity,o=void 0===i||i,s=e.startingSize,c=void 0===s?0:s,a=e.endingSize,u=void 0===a?"auto":a,d=e.dimension,h=void 0===d?"height":d,g=e.style,f=e.className,p=e.transition,x=e.transitionEnd,j=(0,te.Z)(e,xe),b=m.useState(!1),v=(0,l.Z)(b,2),y=v[0],C=v[1];m.useEffect((function(){var e=setTimeout((function(){C(!0)}));return function(){return clearTimeout(e)}}),[]),(0,re.ZK)({condition:Boolean(c>0&&r),message:"startingSize and unmountOnExit are mutually exclusive. You can't use them together"});var O=parseFloat(c.toString())>0,w={startingSize:c,endingSize:u,animateOpacity:o,dimension:h,transition:y?p:{enter:{duration:0}},transitionEnd:oe()(x,{enter:{overflow:"initial"},exit:r?void 0:{display:O?"block":"none"}})},k=!r||t,S=t||r?"enter":"exit";return(0,pe.jsx)(ce.M,{initial:!1,custom:w,children:k&&(0,pe.jsx)(ae.E.div,be(be({ref:n},j),{},{className:(0,le.cx)("chakra-collapse",f),style:be({overflow:"hidden",display:"block"},g),custom:w,variants:ye,initial:!!r&&"exit",animate:S,exit:"exit"}))})}));function Oe(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function we(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Oe(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Oe(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}se.Ts&&(Ce.displayName="Collapse");var ke=function(e){var n=e.setTagColors,t=e.setFilter,r=e.filter,l=e.tagColors,s=e.target,c=r.tagsBlacklist,a=r.tagsWhitelist,d=c.indexOf(s)>-1,f=a.indexOf(s)>-1,p=(0,u.q)();return(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(h.xu,{bgColor:l[s],borderRadius:"sm",height:3,width:3,borderColor:l[s]||"gray.600",borderWidth:1}),closeOnSelect:!1,onClick:p.onToggle,children:(0,pe.jsx)(X.x,{children:"Change color"})}),(0,pe.jsx)(Ce,{in:p.isOpen,children:(0,pe.jsx)(g.k,{ml:2,mt:2,flexWrap:"wrap",children:H.map((function(e){return(0,pe.jsx)(h.xu,{children:(0,pe.jsx)(h.xu,{tabIndex:0,cursor:"pointer",onClick:function(){return n(we(we({},l),{},(0,o.Z)({},s,e)))},bgColor:e,m:1,borderRadius:"sm",height:3,width:3})},e)}))})}),!f&&(0,pe.jsx)(A.sN,{onClick:function(){t(d?function(e){return we(we({},e),{},{tagsBlacklist:e.tagsBlacklist.filter((function(e){return e!==s}))})}:function(e){return we(we({},e),{},{tagsBlacklist:[].concat((0,i.Z)(e.tagsBlacklist),[s])})})},icon:d?(0,pe.jsx)(ee.V,{}):(0,pe.jsx)(ne.t,{}),children:d?"Remove from blacklist":"Add to blacklist"}),!d&&(0,pe.jsx)(A.sN,{onClick:function(){t(f?function(e){return we(we({},e),{},{tagsWhitelist:e.tagsWhitelist.filter((function(e){return e!==s}))})}:function(e){return we(we({},e),{},{tagsWhitelist:[].concat((0,i.Z)(e.tagsWhitelist),[s])})})},icon:f?(0,pe.jsx)(ee.V,{}):(0,pe.jsx)(Q.O,{}),children:f?"Remove from whitelist":"Add to whitelist"})]})},Se=function(e){e.background;var n,t,r=e.target,i=(e.nodeType,e.coordinates),o=e.handleLocal,l=e.menuClose,s=e.scope,c=e.webSocket,a=e.setPreviewNode,d=e.setTagColors,h=e.tagColors,g=e.setFilter,f=e.filter,p=(0,u.q)(),x=p.isOpen,j=p.onOpen,b=p.onClose;(0,m.useRef)();return(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A.v2,{defaultIsOpen:!0,closeOnBlur:!1,onClose:function(){return l()},children:(0,pe.jsx)(A.qy,{zIndex:"overlay",bgColor:"white",color:"black",position:"absolute",left:i.left,top:i.top,right:i.right,bottom:i.bottom,fontSize:"xs",boxShadow:"xl",children:"string"!==typeof r?(0,pe.jsxs)(pe.Fragment,{children:[r&&(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(M.X,{size:"xs",isTruncated:!0,px:3,py:1,children:r.title}),(0,pe.jsx)(A.R,{borderColor:"gray.500"})]}),0!==s.nodeIds.length&&(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A.sN,{onClick:function(){return o(r,"add")},icon:(0,pe.jsx)(U.I,{}),children:"Expand local graph at node"}),(0,pe.jsx)(A.sN,{onClick:function(){return o(r,"replace")},icon:(0,pe.jsx)(y.DvO,{}),children:"Open local graph for this node"})]}),null!==r&&void 0!==r&&null!==(n=r.properties)&&void 0!==n&&n.FILELESS?(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(G.d,{}),onClick:function(){return function(e,n){Y("create",{id:e.id,title:e.title,ref:e.properties.ROAM_REFS},n)}(r,c)},children:"Create node"}):(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(q.d,{}),onClick:function(){return $(r,c)},children:"Open in Emacs"}),(null===r||void 0===r||null===(t=r.properties)||void 0===t?void 0:t.ROAM_REFS)&&(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(J.h,{}),children:"Open in Zotero"}),0===s.nodeIds.length&&(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(y.DvO,{}),onClick:function(){return o(r,"replace")},children:"Open local graph"}),(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(Q.O,{}),onClick:function(){a(r)},children:"Preview"}),0===(null===r||void 0===r?void 0:r.level)&&(0,pe.jsx)(A.sN,{closeOnSelect:!1,icon:(0,pe.jsx)(K.p,{color:"red.500"}),color:"red.500",onClick:j,children:"Permenantly delete note"})]}):(0,pe.jsx)(ke,{target:r,tagColors:h,filter:f,setTagColors:d,setFilter:g})})}),"string"!==typeof r&&(0,pe.jsxs)(W.u_,{isCentered:!0,isOpen:x,onClose:b,children:[(0,pe.jsx)(W.ZA,{}),(0,pe.jsxs)(W.hz,{zIndex:"popover",children:[(0,pe.jsx)(W.xB,{children:"Delete node?"}),(0,pe.jsx)(W.ol,{}),(0,pe.jsx)(W.fe,{children:(0,pe.jsxs)(V.gC,{spacing:4,display:"flex",alignItems:"flex-start",children:[(0,pe.jsx)(X.x,{children:"This will permanently delete your note:"}),(0,pe.jsx)(X.x,{fontWeight:"bold",children:null===r||void 0===r?void 0:r.title}),0!==(null===r||void 0===r?void 0:r.level)&&(0,pe.jsx)(X.x,{children:"This will only delete the from this heading until but not including the next node. Your parent file and all other nodes will not be deleted."}),(0,pe.jsx)(X.x,{children:"Are you sure you want to do continue?"})]})}),(0,pe.jsxs)(W.mz,{children:[(0,pe.jsx)(_.z,{mr:3,onClick:function(){console.log("closing"),b(),l()},children:"Cancel"}),(0,pe.jsx)(_.z,{variant:"link",colorScheme:"red",ml:3,onClick:function(){console.log("aaaaa"),function(e,n){0===e.level&&Y("delete",{id:e.id,file:e.file},n)}(r,c),b(),l()},children:"Delete node"})]})]})]})]})},Pe=t(67101),Ne=t(35255),De=t(56884),Ie=function(e){var n=e.setJustification,t=(e.setIndent,e.setFont,e.justification),r=(e.setPreviewNode,e.canUndo),i=e.canRedo,o=(e.resetPreviewNode,e.previousPreviewNode),l=e.nextPreviewNode;return(0,pe.jsxs)(g.k,{flex:"0 1 40px",pb:3,alignItems:"center",justifyContent:"space-between",pl:1,pr:1,children:[(0,pe.jsx)(g.k,{children:(0,pe.jsxs)(Pe.h,{isAttached:!0,children:[(0,pe.jsx)(f.u,{label:"Go backward",children:(0,pe.jsx)(p.h,{variant:"subtle",icon:(0,pe.jsx)(Ne.w,{}),"aria-label":"Previous node",disabled:!r,onClick:function(){return o()}})}),(0,pe.jsx)(f.u,{label:"Go forward",children:(0,pe.jsx)(p.h,{variant:"subtle",icon:(0,pe.jsx)(De.X,{}),"aria-label":"Next node",disabled:!i,onClick:function(){return l()}})})]})}),(0,pe.jsx)(g.k,{children:(0,pe.jsx)(f.u,{label:"Justify content",children:(0,pe.jsx)(p.h,{variant:"subtle","aria-label":"Justify content",icon:[(0,pe.jsx)(y.v9V,{},"justify"),(0,pe.jsx)(y.YSr,{},"left"),(0,pe.jsx)(y.RXA,{},"right"),(0,pe.jsx)(y.tr_,{},"center")][t],onClick:function(){return n((function(e){return(e+1)%4}))}})})})]})},Le=t(35528);function ze(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Ee(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ze(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ze(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Ze=function(e){var n,t=e.filter,r=e.setFilter,o=e.tagColors,l=(e.setTagColors,e.openContextMenu),s=e.previewNode;return s.tags&&null!==(null===s||void 0===s?void 0:s.tags[0])?(0,pe.jsx)(g.k,{mb:2,flexWrap:"wrap",children:null===s||void 0===s||null===(n=s.tags)||void 0===n?void 0:n.map((function(e){var n,s,c,a=null!==(n=t.tagsBlacklist)&&void 0!==n?n:[],u=null!==(s=t.tagsWhitelist)&&void 0!==s?s:[],d=a.includes(e),h=u.includes(e);return(0,pe.jsxs)(Le.Vp,{tabIndex:0,mr:2,mt:2,onContextMenu:function(n){n.preventDefault(),l(e,n)},cursor:"pointer",onClick:function(){r(d?function(n){return Ee(Ee({},n),{},{tagsBlacklist:n.tagsBlacklist.filter((function(n){return n!==e})),tagsWhitelist:[].concat((0,i.Z)(n.tagsWhitelist),[e])})}:h?function(n){return Ee(Ee({},n),{},{tagsWhitelist:n.tagsWhitelist.filter((function(n){return n!==e}))})}:function(n){return Ee(Ee({},n),{},{tagsBlacklist:[].concat((0,i.Z)(n.tagsBlacklist),[e])})})},size:"sm",variant:"outline",colorScheme:(null===(c=o[e])||void 0===c?void 0:c.replaceAll(/(.*?)\..*/g,"$1"))||void 0,children:[(0,pe.jsx)(Le.Sn,{children:e}),d?(0,pe.jsx)(Le.bq,{as:ne.t}):h?(0,pe.jsx)(Le.bq,{as:Q.O}):null]},e)}))}):null},Re=t(18835),Te=t.n(Re),Be=t(13816),Fe=t.n(Be),He=t(42728),Ae=t.n(He),Me=t(77890),We=t.n(Me),Ve=t(94986),Xe=t.n(Ve),_e=t(88541),Ue=t.n(_e),qe=t(71167),Ge=t.n(qe),Je=(t(85062),t(27431)),Qe=t.n(Je),Ke=t(49444),Ye=t(45170),$e=t(67273),en=t(29356),nn={".katex":{overflowX:"scroll"},h1:{color:"black",lineHeight:"1.2",fontSize:"20",fontWeight:"bold",marginBottom:3},h2:{fontSize:"18",marginBottom:2,color:"black"},h3:{fontSize:"16",fontWeight:"600 !important",marginBottom:".5em",color:"black"},h4:{fontSize:"14",fontWeight:"500 !important",marginBottom:".25em",fontStyle:"italic",color:"black"},ol:{paddingLeft:"5"},ul:{paddingLeft:"5"},p:{fontSize:"14",fontWeight:"500 !important",paddingBottom:".5em"},div:{hyphens:"auto !important"},".title":{textAlign:"center",marginBottom:".2em"},".subtitle":{textAlign:"center",fontSize:"medium",fontWeight:"bold",marginTop:0},".TODO":{color:"red.500"},".equationContainer":{display:"table",textAlign:"center",width:"100%"},".equation":{verticalAlign:"middle"},".equation-label":{display:"tableCell",textAlign:"right",verticalAlign:"middle"},".inlinetask":{padding:"10px",border:"2px solid gray",margin:"10px",background:"#ffffcc"},"#org-div-home-and-up":{textAlign:"right",fontSize:"70 % ",whiteSpace:"nowrap"},textarea:{overflowX:"auto"},".linenr":{fontSize:"smaller"},".org-info-js_info-navigation":{borderStyle:"none"},"#org-info-js_console-label":{fontSize:"10px",fontWeight:"bold",whiteSpace:"nowrap"},".org-info-js_search-highlight":{backgroundColor:"#ffff00",color:"#000000",fontWeight:"bold"},".org-svg":{width:"90%"},".DONE":{color:"green"},".priority":{fontFamily:"monospace",color:"orange"},".tag":{backgroundColor:"white",fontFamily:"monospace",padding:"2px",fontSize:"80%",fontWeight:"normal"},".timestamp":{color:"#bebebe"},".timestamp-kwd":{color:"#5f9ea0"},".org-right":{marginLeft:"auto",marginRight:"0px",textAlign:"right"},".org-left":{marginLeft:"0px",marginRight:"auto",textAlign:"left"},".org-center":{marginLeft:"auto",marginRight:"auto",textAlign:"center"},".underline":{textDecoration:"underline"},"#postamble p":{fontSize:"90%",margin:".2em"},"#preamble p":{fontSize:"90%",margin:".2em"},"p.verse":{marginLeft:"3%"},pre:{borderRadius:"3px",backgroundColor:"white",padding:"8pt",fontFamily:"monospace",overflow:"auto",margin:"1.2em"},"pre.src":{position:"relative",overflow:"auto"},"pre.src:before":{display:"none",position:"absolute",top:"-8px",right:"12px",padding:"3px",backgroundColor:"white"},"caption.t-above":{captionSide:"top"},"caption.t-bottom":{captionSide:"bottom"},"th.org-right":{textAlign:"center"},"th.org-left":{textAlign:"center"},"th.org-center":{textAlign:"center"},"td.org-right":{textAlign:"right"},"td.org-left":{textAlign:"left"},"td.org-center":{textAlign:"center"},".footpara":{display:"inline"},".footdef":{marginBottom:"1em"},".figure":{padding:"1em"},".figure p":{textAlign:"center"}},tn=nn,rn=t(25675),on=t(62520),ln=t.n(on),sn=function(e){var n=e.src,t=e.file,r=(0,m.useState)(null);r[0],r[1];if(n.replaceAll(/(http)?.*/g,"$1"))return console.log(n.replaceAll(/(http)?.*/g,"$1")),(0,pe.jsx)(rn.default,{layout:"responsive",loader:function(e){var n=e.src;return e.width,e.quality,"".concat(n)},src:n,alt:"",width:"100%",height:"100%"});var i=n.replaceAll(/file:/g,""),o=ln().dirname(t),l=ln().isAbsolute(i)||"~"===i.slice(0,1)?i:ln().join(o,i),s=encodeURIComponent(encodeURIComponent(l));return(0,pe.jsx)(rn.default,{layout:"responsive",loader:function(e){var n=e.src;e.width,e.quality;return"http://localhost:35901/img/".concat(n)},src:s,alt:"",width:"100%",height:"100%"})},cn=t(86658),an=["style"];function un(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function dn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?un(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):un(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var hn=function(e){var n=e.setSidebarHighlightedNode,t=e.setPreviewNode,r=e.nodeById,o=e.openContextMenu,s=e.href,c=e.children,u=(0,m.useContext)(en.N).highlightColor,d=Ut(u,(0,a.useTheme)()),h=(0,l.Z)((0,i.Z)(s.matchAll(/(.*?)\:(.*)/g))[0],3),g=(h[0],h[1],h[2]);return(0,pe.jsx)(X.x,{onMouseEnter:function(){return n(r[g])},onMouseLeave:function(){return n({})},tabIndex:0,display:"inline",overflow:"hidden",fontWeight:500,color:u,textDecoration:"underline",onContextMenu:function(e){e.preventDefault(),o(r[g],e)},onClick:function(){return t(r[g])},_hover:{textDecoration:"none",cursor:"pointer",bgColor:d+"22"},_focus:{outlineColor:u},children:c})},gn=function(e){var n=e.href,t=e.children,r=(0,m.useContext)(en.N).highlightColor;return(0,pe.jsxs)(Ke.r,{color:r,isExternal:!0,href:n,children:[t,(0,pe.jsx)(J.h,{mx:"1px",pb:"2px"})]})},fn=function e(n){var t,r=n.href,o=n.children,s=n.nodeById,c=n.setSidebarHighlightedNode,a=(n.previewNode,n.setPreviewNode),u=n.nodeByCite,d=n.openContextMenu,g=(0,m.useState)(null),f=g[0],p=g[1],x=(0,l.Z)((0,i.Z)(r.matchAll(/(.*?)\:(.*)/g))[0],3),j=(x[0],x[1]),b=x[2],v=(0,m.useState)(!1),y=v[0],C=v[1];if((0,m.useEffect)((function(){j.replaceAll(/(http)?.*/g,"$1")||f||y&&fetch("http://localhost:35901/file/".concat(N)).then((function(e){return e.text()})).then((function(e){if("error"===e);else{var n=D.processSync(e).result;p(n)}})).catch((function(e){return console.log(e),"Could not fetch the text for some reason, sorry!\n\n This can happen because you have an id with forward slashes (/) in it."}))}),[y,f]),j.replaceAll(/(http)?.*/g,"$1"))return(0,pe.jsx)(gn,{href:r,children:o});var O,w,k,S,P=function(e,n){if("id"===e)return n;if(e.includes("cite")){var t,r=null!==(t=u[n])&&void 0!==t&&t;return r?null!==r&&void 0!==r&&r.properties.FILELESS?"":null===r||void 0===r?void 0:r.id:""}return""}(j,b),N=encodeURIComponent(encodeURIComponent(null===(t=s[P])||void 0===t?void 0:t.file)),D=Te()().use(Fe()).use(Ae()).use(Ge()).use(Qe(),{createElement:m.createElement,components:{a:function(n){var t=n.children,r=n.href;return(0,pe.jsx)(e,{nodeByCite:u,setSidebarHighlightedNode:c,href:r,nodeById:s,setPreviewNode:a,openContextMenu:d,children:t})},img:function(e){var n,t=e.src;return(0,pe.jsx)(sn,{src:t,file:null===(n=s[P])||void 0===n?void 0:n.file})}}});return P?(0,pe.jsx)(pe.Fragment,{children:(0,pe.jsxs)(Ye.J2,{gutter:12,trigger:"hover",placement:"top-start",children:[(0,pe.jsx)(Ye.xo,{children:(0,pe.jsx)(h.xu,{display:"inline",onMouseEnter:function(){return C(!0)},onMouseLeave:function(){return C(!1)},children:(0,pe.jsx)(hn,{setSidebarHighlightedNode:c,setPreviewNode:a,nodeById:s,href:r,children:o,nodeByCite:u,openContextMenu:d},null!==(O=null===(w=s[P])||void 0===w?void 0:w.title)&&void 0!==O?O:P)})}),(0,pe.jsx)($e.h,{children:(0,pe.jsxs)(Ye.yk,{transform:"scale(1)",boxShadow:"xl",position:"relative",zIndex:"tooltip",onMouseEnter:function(){var e;c(null!==(e=s[P])&&void 0!==e?e:{})},onMouseLeave:function(){c({})},children:[(0,pe.jsx)(Ye.QH,{}),(0,pe.jsx)(Ye.b,{pb:5,fontSize:"xs",position:"relative",zIndex:"tooltip",transform:"scale(1)",width:"100%",children:(0,pe.jsx)(cn.$B,{autoHeight:!0,autoHeightMax:300,autoHide:!0,renderThumbVertical:function(e){var n=e.style,t=(0,te.Z)(e,an);return(0,pe.jsx)(h.xu,dn({style:dn(dn({},n),{},{borderRadius:0})},t))},children:(0,pe.jsx)(h.xu,{w:"100%",color:"black",px:3,sx:tn,children:f})})})]},null!==(k=null===(S=s[P])||void 0===S?void 0:S.title)&&void 0!==k?k:P)})]})}):(0,pe.jsx)(X.x,{display:"inline",color:"base.700",cursor:"not-allowed",children:o})},pn=function(e){var n=e.nodeById,t=e.setSidebarHighlightedNode,r=e.setPreviewNode,i=e.previewText,o=e.nodeByCite,l=e.previewNode,s=e.openContextMenu,c=Te()().use(Fe()).use(Xe()).use(Ue()).use(We()).use(Ae()).use(Ge()).use(Qe(),{createElement:m.createElement,components:{a:function(e){var i=e.children,l=e.href;return(0,pe.jsx)(fn,{nodeByCite:o,setSidebarHighlightedNode:t,href:"".concat(l),nodeById:n,setPreviewNode:r,openContextMenu:s,children:i})},img:function(e){var n=e.src;return(0,pe.jsx)(sn,{src:n,file:l.file})}}}),a=(0,m.useMemo)((function(){return c.processSync(i).result}),[i]);return(0,pe.jsx)(pe.Fragment,{children:a})},xn=function(e){var n=e.openContextMenu,t=e.setSidebarHighlightedNode,r=e.nodeById,i=e.nodeByCite,o=e.previewNode,l=e.setPreviewNode,s=(0,m.useState)(""),c=s[0],a=s[1],u=encodeURIComponent(encodeURIComponent(o.file));return(0,m.useEffect)((function(){fetch("http://localhost:35901/file/".concat(u)).then((function(e){return e.text()})).then((function(e){"error"!==e&&a(e)})).catch((function(e){return console.log(e),"Could not fetch the text for some reason, sorry!\n\n This can happen because you have an id with forward slashes (/) in it."}))}),[o.id]),(0,pe.jsx)(pe.Fragment,{children:(null===o||void 0===o?void 0:o.id)&&(0,pe.jsx)(pn,{nodeById:r,previewNode:o,setPreviewNode:l,previewText:c,nodeByCite:i,setSidebarHighlightedNode:t,openContextMenu:n})})},jn=function(e){var n,t=e.previewNode,r=e.setPreviewNode,i=e.setSidebarHighlightedNode,o=e.nodeById,s=e.linksByNodeId,c=e.nodeByCite,a=e.openContextMenu,u=(null!==(n=s[null===t||void 0===t?void 0:t.id])&&void 0!==n?n:[]).filter((function(e){var n=_t(e),r=(0,l.Z)(n,2),i=r[0];r[1];return i!==(null===t||void 0===t?void 0:t.id)})).map((function(e){return e.source}));return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(M.X,{pt:4,children:"Backlinks (".concat(u.length,")")}),(0,pe.jsx)(V.gC,{py:2,spacing:3,alignItems:"start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(null===t||void 0===t?void 0:t.id)&&u.map((function(e){var n,t,l;n=null===(t=o[e])||void 0===t?void 0:t.title;return(0,pe.jsx)(h.xu,{overflow:"hidden",p:3,bg:"gray.300",width:"100%",children:(0,pe.jsx)(fn,{nodeByCite:c,setSidebarHighlightedNode:i,href:"id:".concat(e),nodeById:o,setPreviewNode:r,openContextMenu:a,children:null===(l=o[e])||void 0===l?void 0:l.title})},e)}))})]})};function bn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function vn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?bn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):bn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var mn=function(e){var n=e.setPreviewNode,t=e.justificationList,r=e.justification,i=e.previewNode,o=e.nodeById,l=e.nodeByCite,s=e.setSidebarHighlightedNode,c=e.linksByNodeId,a=e.openContextMenu;return(0,pe.jsx)(h.xu,{pr:8,height:"100%",className:"org",sx:vn(vn({},nn),{},{textAlign:t[r]}),children:(null===i||void 0===i?void 0:i.id)&&(0,pe.jsxs)(g.k,{height:"100%",flexDirection:"column",justifyContent:"space-between",children:[(0,pe.jsx)(xn,{setPreviewNode:n,previewNode:i,nodeById:o,nodeByCite:l,setSidebarHighlightedNode:s,openContextMenu:a}),(0,pe.jsx)(jn,{setPreviewNode:n,previewNode:i,nodeById:o,linksByNodeId:c,nodeByCite:l,setSidebarHighlightedNode:s,openContextMenu:a})]})})},yn=t(29119);function Cn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function On(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Cn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Cn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}function wn(e,n){var t,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=kn(e,null!==(t=r.storage)&&void 0!==t?t:localStorage),o=i.get(),l=void 0!==o?o:n,s=null!=o&&"object"===typeof o&&!1===Array.isArray(o)?On(On({},n),o):l;s!==o&&i.update(s);var c=(0,m.useState)(s),a=c[0],u=c[1];(0,m.useEffect)((function(){a!==s&&u(s)}),[e]);var d=function(e){e instanceof Function?u((function(n){var t=e(n);return i.update(t),t})):(u(e),i.update(e))};return[a,d]}function kn(e,n){return{get:function(){var t=n.getItem(e);if(t&&"undefined"!==t)return JSON.parse(t)},update:function(t){n.setItem(e,JSON.stringify(t))},remove:function(){n.removeItem(e)}}}var Sn=["style"];function Pn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Nn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Pn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Pn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Dn=function(e){var n=e.isOpen,t=e.onOpen,r=e.onClose,i=e.previewNode,o=e.setPreviewNode,s=e.nodeById,c=e.linksByNodeId,a=e.nodeByCite,u=e.setSidebarHighlightedNode,d=e.canUndo,f=e.canRedo,x=e.resetPreviewNode,j=e.previousPreviewNode,b=e.nextPreviewNode,v=e.openContextMenu,C=(e.scope,e.setScope,e.windowWidth),O=e.filter,w=e.setFilter,k=e.tagColors,S=e.setTagColors,P=((0,m.useContext)(en.N).highlightColor,(0,m.useState)()),N=P[0],D=P[1],I=wn("sidebarWidth",400),L=(0,l.Z)(I,2),z=L[0],E=L[1];(0,m.useEffect)((function(){null!==i&&void 0!==i&&i.id?(t(),D(i)):r()}),[null===i||void 0===i?void 0:i.id]);var Z=(0,m.useState)(1),R=Z[0],T=Z[1],B=(0,m.useState)("sans serif"),F=(B[0],B[1]),H=(0,m.useState)(0),A=(H[0],H[1]);return(0,pe.jsx)(Ce,{animateOpacity:!1,dimension:"width",in:n,unmountOnExit:!0,startingSize:0,style:{height:"100vh"},children:(0,pe.jsx)(yn.e,{size:{height:"100vh",width:z},onResizeStop:function(e,n,t,r){E((function(e){return e+r.width}))},enable:{top:!1,right:!1,bottom:!1,left:!0,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},minWidth:"220px",maxWidth:C-200,children:(0,pe.jsxs)(g.k,{flexDir:"column",h:"100vh",pl:2,color:"black",bg:"alt.100",width:"100%",children:[(0,pe.jsxs)(g.k,{pl:4,alignItems:"center",color:"black",width:"100%",children:[(0,pe.jsx)(g.k,{flexShrink:0,children:(0,pe.jsx)(y.UY3,{onContextMenu:function(e){e.preventDefault(),v(i,e)}})}),(0,pe.jsx)(g.k,{whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",onContextMenu:function(e){e.preventDefault(),v(i,e)},children:(0,pe.jsx)(M.X,{pl:2,whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",lineHeight:1,size:"sm",fontWeight:600,color:"gray.800",children:null===N||void 0===N?void 0:N.title})}),(0,pe.jsx)(g.k,{flexDir:"row",ml:"auto",children:(0,pe.jsx)(p.h,{m:1,icon:(0,pe.jsx)(y.T41,{}),"aria-label":"Options",variant:"subtle",onClick:function(e){v(i,e,{left:void 0,top:12,right:20-C,bottom:void 0})}})})]}),(0,pe.jsx)(Ie,{setJustification:T,setIndent:A,setFont:F,justification:R,setPreviewNode:o,canUndo:d,canRedo:f,resetPreviewNode:x,previousPreviewNode:j,nextPreviewNode:b}),(0,pe.jsx)(cn.$B,{autoHide:!0,renderThumbVertical:function(e){var n=e.style,t=(0,te.Z)(e,Sn);return(0,pe.jsx)(h.xu,Nn({style:Nn(Nn({},n),{},{borderRadius:0})},t))},children:(0,pe.jsxs)(V.gC,{flexGrow:1,alignItems:"left",bg:"alt.100",paddingLeft:4,children:[(0,pe.jsx)(Ze,{filter:O,setFilter:w,tagColors:k,setTagColors:S,openContextMenu:v,previewNode:i}),(0,pe.jsx)(mn,{setPreviewNode:o,previewNode:i,nodeById:s,nodeByCite:a,setSidebarHighlightedNode:u,justification:R,justificationList:["justify","start","end","center"],linksByNodeId:c,openContextMenu:v})]})})]})})})},In=t(93924),Ln=t(83986),zn=t(48931),En=t(56769),Zn=t(6569),Rn=t(88134),Tn=t(47647);function Bn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Fn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Bn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Bn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Hn=function(e){var n=e.filter,t=e.setFilter,r=e.tags,i=e.highlightColor,l=e.mode,s=r.map((function(e){return{value:e,label:e}})),c="blacklist"===l?"tagsBlacklist":"tagsWhitelist",a=(0,m.useState)(n[c].map((function(e){return{value:e,label:e}}))),u=a[0],d=a[1];return(0,pe.jsx)(Tn.CUIAutoComplete,{labelStyleProps:{fontWeight:300,fontSize:14},items:s,label:"Add tag to "+l,placeholder:" ",onCreateItem:function(e){return null},disableCreateItem:!0,selectedItems:u,onSelectedItemsChange:function(e){e.selectedItems&&(d(e.selectedItems),t(Fn(Fn({},n),{},(0,o.Z)({},c,e.selectedItems.map((function(e){return e.value}))))))},listItemStyleProps:{overflow:"hidden"},highlightItemBg:"gray.400",toggleButtonStyleProps:{variant:"outline"},inputStyleProps:{mt:2,height:8,focusBorderColor:i,color:"gray.800",borderColor:"gray.500"},tagStyleProps:{justifyContent:"flex-start",fontSize:10,borderColor:i,borderWidth:1,borderRadius:"md",color:i,bg:"",height:4,mb:2},hideToggleButton:!0,itemRenderer:function(e){return e.label}})};function An(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Mn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?An(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):An(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Wn=function(e){var n=e.colorList,t=e.tagColors,r=e.setTagColors,i=e.highlightColor,l=e.tags.map((function(e){return{value:e,label:e}})),s=(0,m.useState)(Object.keys(t).map((function(e){return{value:e,label:e}}))),c=s[0],a=s[1];return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(Tn.CUIAutoComplete,{items:l,labelStyleProps:{fontWeight:300,fontSize:14},label:"Add tag to color",placeholder:" ",disableCreateItem:!0,selectedItems:c,onSelectedItemsChange:function(e){e.selectedItems&&(a(Array.from(new Set(e.selectedItems))),r(Object.fromEntries(Array.from(new Set(e.selectedItems)).map((function(e){var n;return[e.label,null!==(n=t[e.label])&&void 0!==n?n:"gray.600"]})))))},listItemStyleProps:{overflow:"hidden"},highlightItemBg:"gray.400",toggleButtonStyleProps:{variant:"outline"},inputStyleProps:{height:8,focusBorderColor:i,color:"gray.800",borderColor:"gray.500"},tagStyleProps:{display:"none",rounded:"full",bg:i,height:8,paddingLeft:4,fontWeight:"bold"},hideToggleButton:!0,itemRenderer:function(e){return e.label}}),(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:Object.keys(t).map((function(e){return(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",width:"100%",pl:2,children:[(0,pe.jsx)(h.xu,{width:"100%",children:(0,pe.jsx)(X.x,{children:e})}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",children:(0,pe.jsx)(h.xu,{bgColor:t[e],borderRadius:"sm",height:6,width:6})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsx)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:n.map((function(n){return(0,pe.jsx)(A.sN,{onClick:function(){return r(Mn(Mn({},t),{},(0,o.Z)({},e,n)))},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:n,borderRadius:"sm",height:6,width:6})},n)}))})]})]}),(0,pe.jsx)(p.h,{"aria-label":"Delete tag color",variant:"ghost",icon:(0,pe.jsx)(K.p,{}),onClick:function(){r(Object.fromEntries(Array.from(new Set(c)).map((function(e){var n;return[e.label,null!==(n=t[e.label])&&void 0!==n?n:"gray.600"]})))),a(c.filter((function(n){return n.value!==e})))}})]},e)}))})]})},Vn=t(24682),Xn=t(24189),_n=function(e){var n=e.infoText;return(0,pe.jsx)(h.xu,{paddingLeft:"1",children:(0,pe.jsx)(f.u,{label:n,placement:"top",color:"gray.100",bg:"gray.800",hasArrow:!0,children:(0,pe.jsx)(Xn.h,{})})})},Un=["min","max","step","value"],qn=function(e){var n=e.min,t=void 0===n?0:n,r=e.max,i=void 0===r?10:r,o=e.step,l=void 0===o?.1:o,s=e.value,c=void 0===s?1:s,a=(0,te.Z)(e,Un),u=a.onChange,d=a.label,g=a.infoText,p=(0,m.useContext)(en.N).highlightColor;return(0,pe.jsxs)(h.xu,{pt:1,pb:2,children:[(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"flex-end",mb:2,children:[(0,pe.jsx)(X.x,{children:d}),g&&(0,pe.jsx)(_n,{infoText:g})]}),(0,pe.jsxs)(Vn.iR,{value:c,onChange:u,min:t,max:i,step:l,children:[(0,pe.jsx)(Vn.Uj,{children:(0,pe.jsx)(Vn.Ms,{})}),(0,pe.jsx)(f.u,{bg:p,label:c.toFixed(1),children:(0,pe.jsx)(Vn.gs,{bg:"white"})})]})]},d)};function Gn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Jn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Gn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Gn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Qn=function(e){var n=e.filter,t=e.setFilter,r=e.local,i=e.setLocal,o=e.tagColors,l=e.setTagColors,s=e.highlightColor,c=e.colorList,a=e.tags;return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:7,color:"gray.800",children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Link children to"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",size:"sm",children:function(){switch(n.parent){case"parent":return(0,pe.jsx)(X.x,{children:"File"});case"heading":return(0,pe.jsx)(X.x,{children:"Heading"});default:return(0,pe.jsx)(X.x,{children:"Nothing"})}}()}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t((function(e){return Jn(Jn({},e),{},{parent:""})}))},children:"Nothing"}),(0,pe.jsx)(A.sN,{onClick:function(){return t((function(e){return Jn(Jn({},e),{},{parent:"parent"})}))},children:"Parent file node"}),(0,pe.jsx)(A.sN,{onClick:function(){return t((function(e){return Jn(Jn({},e),{},{parent:"heading"})}))},children:"Next highest heading node"})]})]})]})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Orphans"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return Jn(Jn({},e),{},{orphans:!e.orphans})}))},isChecked:n.orphans})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Dailies"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return Jn(Jn({},e),{},{dailies:!e.dailies})}))},isChecked:n.dailies})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Org-noter pages"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return Jn(Jn({},e),{},{noter:!e.noter})}))},isChecked:n.noter})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Citations without note files"}),(0,pe.jsx)(Rn.r,{onChange:function(){t(Jn(Jn({},n),{},{filelessCites:!n.filelessCites}))},isChecked:n.filelessCites})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Non-existent nodes"}),(0,pe.jsx)(Rn.r,{onChange:function(){l(Jn(Jn({},o),{},{bad:"white"})),t(Jn(Jn({},n),{},{bad:!n.bad}))},isChecked:n.bad})]}),(0,pe.jsx)(qn,{label:"Number of neighbors in local graph",value:r.neighbors,onChange:function(e){return i(Jn(Jn({},r),{},{neighbors:e}))},min:1,max:5,step:1})]}),(0,pe.jsxs)(En.UQ,{padding:0,allowToggle:!0,allowMultiple:!0,paddingLeft:3,children:[(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:["Tag filters",(0,pe.jsx)(En.XE,{})]}),(0,pe.jsxs)(En.Hk,{pr:0,mr:0,children:[(0,pe.jsx)(Hn,{highlightColor:s,filter:n,setFilter:t,tags:a,mode:"blacklist"}),(0,pe.jsx)(Hn,{highlightColor:s,filter:n,setFilter:t,tags:a,mode:"whitelist"})]})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:["Tag colors",(0,pe.jsx)(En.XE,{})]}),(0,pe.jsx)(En.Hk,{pr:0,mr:0,children:(0,pe.jsx)(Wn,{tags:a,colorList:c,tagColors:o,setTagColors:l,highlightColor:s})})]})]})]})},Kn=t(15267),Yn=function(e){var n=e.value,t=e.onChange,r=e.label,i=e.infoText,o=e.children;return(0,pe.jsxs)(h.xu,{paddingTop:2,children:[(0,pe.jsxs)(h.xu,{display:"flex",justifyContent:"space-between",paddingBottom:2,children:[(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"center",children:[(0,pe.jsx)(X.x,{children:r}),i&&(0,pe.jsx)(_n,{infoText:i})]}),(0,pe.jsx)(Rn.r,{isChecked:!!n,onChange:t})]}),(0,pe.jsx)(Kn.U,{in:!!n,animateOpacity:!0,children:(0,pe.jsx)(h.xu,{paddingLeft:4,paddingTop:2,paddingBottom:2,children:o})})]},r)};function $n(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function et(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?$n(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):$n(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var nt=function(e){var n=e.physics,t=e.setPhysics,r=(0,m.useCallback)((function(e,n,r){t((function(t){return et(et({},t),{},(0,o.Z)({},n,e/r))}))}),[]);return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:7,color:"gray.800",children:[(0,pe.jsxs)(Yn,{label:"Gravity",value:n.gravityOn,onChange:function(){return t(et(et({},n),{},{gravityOn:!n.gravityOn}))},children:[(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Also in local"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return et(et({},e),{},{gravityLocal:!e.gravityLocal})}))},isChecked:n.gravityLocal})]}),(0,pe.jsx)(qn,{label:"Strength",value:10*n.gravity,onChange:function(e){return r(e,"gravity",10)}})]}),(0,pe.jsx)(qn,{value:-n.charge/100,onChange:function(e){return r(e,"charge",-.01)},label:"Repulsive Force"}),(0,pe.jsx)(qn,{value:5*n.linkStrength,onChange:function(e){return r(e,"linkStrength",5)},label:"Link Force"}),(0,pe.jsx)(qn,{label:"Stabilization rate",value:50*n.alphaDecay,onChange:function(e){return r(e,"alphaDecay",50)}})]}),(0,pe.jsx)(h.xu,{children:(0,pe.jsx)(En.UQ,{paddingLeft:3,allowToggle:!0,children:(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(X.x,{children:"Advanced"}),(0,pe.jsx)(En.XE,{marginRight:2})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:3,color:"gray.800",children:[(0,pe.jsx)(Yn,{label:"Collision",infoText:"Perfomance sap, disable if slow",value:n.collision,onChange:function(){return t(et(et({},n),{},{collision:!n.collision}))},children:(0,pe.jsx)(qn,{value:n.collisionStrength/5,onChange:function(e){return r(e,"collisionStrength",.2)},label:"Collision Radius",infoText:"Easy with this one, high values can lead to a real jiggly mess"})}),(0,pe.jsx)(qn,{label:"Link iterations",value:n.linkIts,onChange:function(e){return r(e,"linkIts",1)},min:0,max:6,step:1,infoText:"How many links down the line the physics of a single node affects (Slow)"}),(0,pe.jsx)(qn,{label:"Viscosity",value:10*n.velocityDecay,onChange:function(e){return r(e,"velocityDecay",10)}}),(0,pe.jsx)(Yn,{label:"Center nodes",value:n.centering,onChange:function(){return t(et(et({},n),{},{centering:!n.centering}))},infoText:"Keeps the nodes in the center of the viewport. If disabled you can drag the nodes anywhere you want.",children:(0,pe.jsx)(qn,{label:"Centering Strength",value:n.centeringStrength,max:2,step:.01,onChange:function(e){return r(e,"centeringStrength",1)}})})]})})]})})})]})},tt=t(46049);function rt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function it(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?rt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):rt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var ot=function(e){var n=e.visuals,t=e.setVisuals;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsx)(h.xu,{children:(0,pe.jsx)(Yn,{label:"Highlight",onChange:function(){return t((function(e){return it(it({},e),{},{highlight:!e.highlight})}))},value:n.highlight,children:(0,pe.jsxs)(V.gC,{spacing:1,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.400"}),align:"stretch",paddingLeft:0,children:[(0,pe.jsx)(qn,{label:"Highlight Link Thickness",value:n.highlightLinkSize,onChange:function(e){return t((function(n){return it(it({},n),{},{highlightLinkSize:e})}))}}),(0,pe.jsx)(qn,{label:"Highlight Node Size",value:n.highlightNodeSize,onChange:function(e){return t((function(n){return it(it({},n),{},{highlightNodeSize:e})}))}}),(0,pe.jsx)(qn,{min:0,max:1,label:"Highlight Fade",value:n.highlightFade,onChange:function(e){return t((function(n){return it(it({},n),{},{highlightFade:e})}))}}),(0,pe.jsxs)(Yn,{label:"Highlight Animation",onChange:function(){t((function(e){return it(it({},e),{},{highlightAnim:!e.highlightAnim})}))},value:n.highlightAnim,children:[(0,pe.jsx)(qn,{label:"Animation speed",onChange:function(e){return t((function(n){return it(it({},n),{},{animationSpeed:e})}))},value:n.animationSpeed,infoText:"Slower speed has a chance of being buggy",min:50,max:1e3,step:10}),(0,pe.jsx)(tt.Ph,{placeholder:n.algorithmName,onChange:function(e){t((function(n){return it(it({},n),{},{algorithmName:e.target.value})}))},children:n.algorithmOptions.map((function(e){return(0,pe.jsx)("option",{value:e,children:e},e)}))})]})]})})})})},lt=t(67546),st=t(93441);function ct(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function at(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ct(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ct(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var ut=function(e){var n=e.label,t=e.colorList,r=e.value,i=e.visValue,l=e.setVisuals,s=e.noEmpty,c=(0,m.useCallback)((function(e){return l((function(n){return at(at({},n),{},(0,o.Z)({},r,e))}))}),[]);return(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:n}),(0,pe.jsxs)(Ye.J2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(Ye.xo,{children:(0,pe.jsx)(_.z,{colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(h.xu,{bgColor:i,borderRadius:"sm",height:6,width:6})})}),(0,pe.jsx)($e.h,{children:(0,pe.jsx)(Ye.yk,{zIndex:"tooltip",maxW:36,position:"relative",children:(0,pe.jsxs)(g.k,{flexWrap:"wrap",bgColor:"gray.200",children:[!s&&(0,pe.jsx)(h.xu,{onClick:function(){return c("")},justifyContent:"space-between",alignItems:"center",display:"flex",m:1,children:(0,pe.jsx)(h.xu,{height:6,width:6,borderColor:"gray.600",borderRadius:"xl",borderWidth:1})}),t.map((function(e){return(0,pe.jsx)(h.xu,{m:1,onClick:function(){return c(e)},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"xl",height:6,width:6})},e)}))]})})})]})]})};function dt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function ht(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?dt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):dt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var gt=function(e){var n=e.visuals,t=e.setVisualsCallback,r=e.highlightColor,o=e.setHighlightColor;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Nodes"}),(0,pe.jsx)(f.u,{label:"Shuffle node colors",children:(0,pe.jsx)(p.h,{"aria-label":"Shuffle node colors",size:"sm",icon:(0,pe.jsx)(lt.n,{}),variant:"ghost",onClick:function(){var e,r=null!==(e=n.nodeColorScheme)&&void 0!==e?e:[];t(ht(ht({},n),{},{nodeColorScheme:r.map((function(e){return[Math.random(),e]})).sort((function(e,n){return(0,l.Z)(e,1)[0]-(0,l.Z)(n,1)[0]})).map((function(e){var n=(0,l.Z)(e,2);n[0];return n[1]}))}))}})}),(0,pe.jsx)(f.u,{label:"Cycle node colors",children:(0,pe.jsx)(p.h,{"aria-label":"Shift node colors",icon:(0,pe.jsx)(st.L,{}),size:"sm",variant:"ghost",onClick:function(){var e,r=null!==(e=n.nodeColorScheme)&&void 0!==e?e:[];t(ht(ht({},n),{},{nodeColorScheme:[].concat((0,i.Z)(r.slice(1,r.length)),[r[0]])}))}})}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",closeOnSelect:!1,matchWidth:!0,children:[(0,pe.jsx)(A.j2,{width:20,as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(g.k,{height:6,width:6,flexDirection:"column",flexWrap:"wrap",children:n.nodeColorScheme.map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px",borderRadius:"2xl"},e)}))})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsx)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:(0,pe.jsx)(A.__,{width:500,type:"checkbox",defaultValue:n.nodeColorScheme,onChange:function(e){e.length&&t(ht(ht({},n),{},{nodeColorScheme:e}))},children:H.map((function(e){return(0,pe.jsx)(A.ii,{isChecked:n.nodeColorScheme.some((function(n){return n===e})),value:e,isDisabled:1===n.nodeColorScheme.length&&n.nodeColorScheme[0]===e,children:(0,pe.jsx)(h.xu,{justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"sm",height:6,width:6})})},e)}))})})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Links"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(h.xu,{children:n.linkColorScheme?(0,pe.jsx)(h.xu,{bgColor:n.linkColorScheme,borderRadius:"sm",height:6,width:6}):(0,pe.jsx)(g.k,{height:6,width:6,flexDirection:"column",flexWrap:"wrap",children:n.nodeColorScheme.map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px",borderRadius:"2xl"},e)}))})})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(ht(ht({},n),{},{linkColorScheme:""}))},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(g.k,{height:6,width:6,flexDirection:"column",flexWrap:"wrap",children:n.nodeColorScheme.map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px",borderRadius:"2xl"},e)}))})}),H.map((function(e){return(0,pe.jsx)(A.sN,{onClick:function(){return t(ht(ht({},n),{},{linkColorScheme:e}))},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"sm",height:6,width:6})},e)}))]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Accent"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(h.xu,{bgColor:r,borderRadius:"sm",height:6,width:6})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsx)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:H.map((function(e){return(0,pe.jsx)(A.sN,{onClick:function(){return o(e)},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"sm",height:6,width:6})},e)}))})]})]})]}),(0,pe.jsx)(ut,{colorList:H,label:"Link highlight",setVisuals:t,value:"linkHighlight",visValue:n.linkHighlight}),(0,pe.jsx)(ut,{colorList:H,label:"Node highlight",setVisuals:t,value:"nodeHighlight",visValue:n.nodeHighlight}),(0,pe.jsx)(ut,{colorList:H,label:"Background",setVisuals:t,value:"backgroundColor",visValue:n.backgroundColor}),(0,pe.jsx)(ut,{colorList:H,label:"Emacs node",setVisuals:t,value:"emacsNodeColor",visValue:n.emacsNodeColor})]})})};function ft(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function pt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ft(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ft(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var xt=function(e){var n=e.visuals,t=e.setVisuals,r=e.threeDim;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(qn,{label:"Node size",value:n.nodeRel,onChange:function(e){return t(pt(pt({},n),{},{nodeRel:e}))}}),(0,pe.jsx)(qn,{label:"Node degree size multiplier",value:n.nodeSizeLinks,min:0,max:2,onChange:function(e){return t(pt(pt({},n),{},{nodeSizeLinks:e}))}}),(0,pe.jsx)(qn,{label:"Node zoom invariance",value:n.nodeZoomSize,min:0,max:2,infoText:"How much the graph will try to keep the nodesize consistent across zoom scales. 0 is no consistency, node will always be their true size, 1 is linear, 2 is quadratic.",onChange:function(e){return t((function(n){return pt(pt({},n),{},{nodeZoomSize:e})}))}}),r&&(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(qn,{label:"Node opacity",value:n.nodeOpacity,min:0,max:1,onChange:function(e){return t(pt(pt({},n),{},{nodeOpacity:e}))}}),(0,pe.jsx)(qn,{label:"Node resolution",value:n.nodeResolution,min:5,max:32,step:1,onChange:function(e){return t(pt(pt({},n),{},{nodeResolution:e}))}})]}),(0,pe.jsx)(qn,{label:"Link width",value:n.linkWidth,onChange:function(e){return t(pt(pt({},n),{},{linkWidth:e}))}}),r&&(0,pe.jsx)(qn,{label:"Link opacity",min:0,max:1,value:n.linkOpacity,onChange:function(e){return t(pt(pt({},n),{},{linkOpacity:e}))}}),(0,pe.jsxs)(Yn,{label:"Link arrows",value:n.arrows,onChange:function(){return t(pt(pt({},n),{},{arrows:!n.arrows}))},children:[(0,pe.jsx)(qn,{label:"Arrow size",value:n.arrowsLength/10,onChange:function(e){return t(pt(pt({},n),{},{arrowsLength:10*e}))}}),(0,pe.jsx)(qn,{label:"Arrow Position",value:n.arrowsPos,min:0,max:1,step:.01,onChange:function(e){return t(pt(pt({},n),{},{arrowsPos:e}))}}),(0,pe.jsx)(ut,{colorList:H,label:"Arrow Color",setVisuals:t,value:"arrowsColor",visValue:n.arrowsColor},"arrow")]}),(0,pe.jsxs)(Yn,{label:"Directional Particles",value:n.particles,onChange:function(){return t(pt(pt({},n),{},{particles:!n.particles}))},children:[(0,pe.jsx)(qn,{label:"Particle Number",value:n.particlesNumber,max:5,step:1,onChange:function(e){return t(pt(pt({},n),{},{particlesNumber:e}))}}),(0,pe.jsx)(qn,{label:"Particle Size",value:n.particlesWidth,onChange:function(e){return t(pt(pt({},n),{},{particlesWidth:e}))}})]})]})})};function jt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function bt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?jt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):jt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var vt=function(e){var n=e.visuals,t=e.setVisuals;return(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.400"}),align:"stretch",color:"gray.800",children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Show labels"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:n.labels?n.labels<2?"On Highlight":"Always":"Never"}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:0}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:1}))},children:"On Highlight"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:2}))},children:"Always"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:3}))},children:"Always (even in 3D)"})]})]})]})]}),(0,pe.jsxs)(Kn.U,{in:n.labels>1,animateOpacity:!0,children:[(0,pe.jsx)(h.xu,{paddingTop:2,children:(0,pe.jsx)(qn,{label:"Label Appearance Scale",value:2*n.labelScale,onChange:function(e){return t(bt(bt({},n),{},{labelScale:e/2}))}})}),(0,pe.jsxs)(h.xu,{paddingTop:2,children:[(0,pe.jsx)(qn,{label:"Label dynamicity",infoText:"By default, labels of nodes with more links will appear earlier than those with fewer. This slider changes the strength of this effect, put it at zero to disable it.",value:n.labelDynamicStrength,min:0,max:1,step:.05,onChange:function(e){return t((function(n){return bt(bt({},n),{},{labelDynamicStrength:e})}))}}),(0,pe.jsx)(Kn.U,{in:n.labelDynamicStrength>0,children:(0,pe.jsx)(qn,{label:"Dynamic zoom degree cap",infoText:"By default, labels of nodes with more links will appear earlier than those with fewer. This slider changes the strength of this effect, put it at zero to disable it.",value:n.labelDynamicDegree,min:1,max:15,step:1,onChange:function(e){return t((function(n){return bt(bt({},n),{},{labelDynamicDegree:e})}))}})})]})]}),(0,pe.jsx)(ut,{colorList:H,label:"Text",setVisuals:t,value:"labelTextColor",visValue:n.labelTextColor}),(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(ut,{colorList:H,label:"Background",setVisuals:t,value:"labelBackgroundColor",visValue:n.labelBackgroundColor}),(0,pe.jsx)(Kn.U,{in:!!n.labelBackgroundColor,animateOpacity:!0,children:(0,pe.jsx)(h.xu,{paddingTop:2,children:(0,pe.jsx)(qn,{label:"Background opacity",value:n.labelBackgroundOpacity,onChange:function(e){console.log(n.labelBackgroundOpacity),t(bt(bt({},n),{},{labelBackgroundOpacity:e}))},min:0,max:1,step:.01})})})]}),(0,pe.jsx)(qn,{label:"Label font size",value:n.labelFontSize,min:5,max:20,step:.5,onChange:function(e){return t(bt(bt({},n),{},{labelFontSize:e}))}}),(0,pe.jsx)(qn,{label:"Max. label characters",value:n.labelLength,min:10,max:100,step:1,onChange:function(e){return t(bt(bt({},n),{},{labelLength:e}))}}),(0,pe.jsx)(qn,{label:"Max. label line length",value:n.labelWordWrap,min:10,max:100,step:1,onChange:function(e){return t(bt(bt({},n),{},{labelWordWrap:e}))}}),(0,pe.jsx)(qn,{label:"Space between label lines",value:n.labelLineSpace,min:.2,max:3,step:.1,onChange:function(e){return t(bt(bt({},n),{},{labelLineSpace:e}))}})]})};function mt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function yt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?mt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):mt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Ct=function(e){var n=e.visuals,t=e.setVisuals;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(Yn,{label:"Dash cite links",infoText:"Add dashes to citation links made with org-roam-bibtex",value:n.citeDashes,onChange:function(){return t(yt(yt({},n),{},{citeDashes:!n.citeDashes}))},children:[(0,pe.jsx)(qn,{label:"Dash length",value:n.citeDashLength/10,onChange:function(e){return t(yt(yt({},n),{},{citeDashLength:10*e}))}}),(0,pe.jsx)(qn,{label:"Gap length",value:n.citeGapLength/5,onChange:function(e){return t(yt(yt({},n),{},{citeGapLength:5*e}))}})]}),(0,pe.jsx)(ut,{colorList:H,label:"Citation node color",setVisuals:t,value:"citeNodeColor",visValue:n.citeNodeColor}),(0,pe.jsx)(ut,{colorList:H,label:"Citation link color",setVisuals:t,value:"citeLinkColor",visValue:n.citeLinkColor}),(0,pe.jsx)(ut,{colorList:H,label:"Reference link highlight",setVisuals:t,value:"citeLinkHighlightColor",visValue:n.citeLinkHighlightColor}),(0,pe.jsxs)(Yn,{label:"Dash ref links",infoText:"Add dashes to citation links, whose target has a note, made with org-roam-bibtex",value:n.refDashes,onChange:function(){return t(yt(yt({},n),{},{refDashes:!n.refDashes}))},children:[(0,pe.jsx)(qn,{label:"Dash length",value:n.refDashLength/10,onChange:function(e){return t(yt(yt({},n),{},{refDashLength:10*e}))}}),(0,pe.jsx)(qn,{label:"Gap length",value:n.refGapLength/5,onChange:function(e){return t(yt(yt({},n),{},{refGapLength:5*e}))}})]}),(0,pe.jsx)(ut,{colorList:H,label:"Reference node color",setVisuals:t,value:"refNodeColor",visValue:n.refNodeColor}),(0,pe.jsx)(ut,{colorList:H,label:"Reference link color",setVisuals:t,value:"refLinkColor",visValue:n.refLinkColor}),(0,pe.jsx)(ut,{colorList:H,label:"Reference link highlight",setVisuals:t,value:"refLinkHighlightColor",visValue:n.refLinkHighlightColor})]})})},Ot=t(67690),wt=function(){var e=(0,m.useContext)(en.N),n=e.emacsTheme,t=e.setEmacsTheme;e.highlightColor;return(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",pl:7,pr:2,children:[(0,pe.jsx)(X.x,{children:"Theme"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"bottom",closeOnSelect:!1,children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:n[0]}),(0,pe.jsxs)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return""},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{height:6,width:6})}),Object.keys(Ot.n).map((function(e,n){return(0,pe.jsxs)(A.sN,{onClick:function(){return t([e,Ot.n[e]])},justifyContent:"space-between",alignItems:"center",display:"flex",children:[(0,pe.jsx)(X.x,{children:e}),(0,pe.jsx)(g.k,{height:6,width:20,flexDirection:"column",flexWrap:"wrap",children:Object.values(Ot.n[e]).map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px"},e)}))})]},e)}))]})]})]})},kt=function(e){var n=e.visuals,t=e.setVisuals,r=e.highlightColor,i=e.setHighlightColor,o=e.threeDim,l=(0,m.useCallback)((function(e){return t(e)}),[]);return(0,pe.jsxs)(V.gC,{justifyContent:"flex-start",align:"stretch",children:[(0,pe.jsx)(wt,{}),(0,pe.jsxs)(En.UQ,{allowToggle:!0,defaultIndex:[0],paddingLeft:3,children:[(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Colors"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(gt,{visuals:n,setVisualsCallback:l,highlightColor:r,setHighlightColor:i})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Nodes & Links"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(xt,{visuals:n,setVisuals:l,threeDim:o})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Labels"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(vt,{visuals:n,setVisuals:l})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Highlighting"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(ot,{visuals:n,setVisuals:l})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Citations"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(Ct,{visuals:n,setVisuals:l})})]})]})]})};function St(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Pt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?St(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):St(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Nt=function(e){var n=e.behavior,t=e.setBehavior,r=e.mouse,i=e.setMouse;return(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:7,color:"gray.800",children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Preview node"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:r.preview?r.preview[0].toUpperCase()+r.preview.slice(1):"Never"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{preview:""}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{preview:"click"}))},children:"Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{preview:"double"}))},children:"Double Click"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsxs)(g.k,{children:[(0,pe.jsx)(X.x,{children:"Expand Node"}),(0,pe.jsx)(_n,{infoText:"View only the node and its direct neighbors"})]}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:r.local?r.local[0].toUpperCase()+r.local.slice(1):"Never"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:""}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:"click"}))},children:"Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:"double"}))},children:"Double Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:"right"}))},children:"Right Click"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Open in Emacs"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:r.follow?r.follow[0].toUpperCase()+r.follow.slice(1):"Never"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:""}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:"click"}))},children:"Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:"double"}))},children:"Double Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:"right"}))},children:"Right Click"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Follow Emacs by..."}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:n.follow[0].toUpperCase()+n.follow.slice(1)})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{follow:"color"}))},children:"Just coloring the currently opened node"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{follow:"local"}))},children:"Opening the local graph"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{follow:"zoom"}))},children:"Zooming to the current node"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsxs)(g.k,{children:[(0,pe.jsx)(X.x,{children:"Local graph"}),(0,pe.jsx)(_n,{infoText:"When in local mode and clicking a new node, should I add that node's local graph or open the new one?"})]}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:"add"===n.localSame?"Add":"Replace"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{localSame:"replace"}))},children:"Open that nodes graph"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{localSame:"add"}))},children:"Add node to local graph"})]})]})]})]}),(0,pe.jsx)(qn,{label:"Zoom speed",value:n.zoomSpeed,min:0,max:4e3,step:100,onChange:function(e){return t(Pt(Pt({},n),{},{zoomSpeed:e}))}}),(0,pe.jsx)(qn,{label:"Zoom padding",value:n.zoomPadding,min:0,max:400,step:1,onChange:function(e){return t(Pt(Pt({},n),{},{zoomPadding:e}))},infoText:"How much to zoom out to accomodate all nodes when changing the view."})]})},Dt=["style"];function It(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Lt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?It(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):It(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var zt=function(e){var n=e.physics,t=e.setPhysics,r=e.threeDim,i=e.setThreeDim,o=e.filter,s=e.setFilter,c=e.visuals,a=e.setVisuals,u=e.mouse,d=e.setMouse,g=e.behavior,x=e.setBehavior,j=e.tags,b=e.tagColors,v=e.setTagColors,y=e.local,C=e.setLocal,O=wn("showTweaks",!1),w=(0,l.Z)(O,2),k=w[0],S=w[1],P=(0,m.useContext)(en.N),N=P.highlightColor,D=P.setHighlightColor;return k?(0,pe.jsxs)(h.xu,{position:"absolute",bg:"alt.100",w:"xs",marginTop:2,marginLeft:2,borderRadius:"lg",paddingBottom:5,zIndex:10,boxShadow:"xl",maxH:"95vh",fontSize:"sm",children:[(0,pe.jsxs)(h.xu,{display:"flex",justifyContent:"space-between",alignItems:"center",paddingRight:2,paddingTop:1,children:[(0,pe.jsx)(f.u,{label:"2D",children:(0,pe.jsx)(_.z,{onClick:function(){return i(!r)},variant:"subtle",zIndex:"overlay",children:r?"3D":"2D"})}),(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"center",children:[(0,pe.jsx)(f.u,{label:"Reset settings to defaults",children:(0,pe.jsx)(p.h,{"aria-label":"Reset Defaults",icon:(0,pe.jsx)(Ln.A,{}),onClick:function(){a(R),s(Z),d(B),t(E),x(T)},variant:"subtle",size:"sm"})}),(0,pe.jsx)(p.h,{size:"sm",icon:(0,pe.jsx)(zn.T,{}),"aria-label":"Close Tweak Panel",variant:"subtle",onClick:function(){return S(!1)}})]})]}),(0,pe.jsx)(cn.ZP,{autoHeight:!0,autoHeightMax:.85*globalThis.innerHeight,autoHide:!0,renderThumbVertical:function(e){var n=e.style,t=(0,te.Z)(e,Dt);return(0,pe.jsx)(h.xu,Lt(Lt({},t),{},{style:Lt(Lt({},n),{},{borderRadius:10}),bg:N}))},children:(0,pe.jsxs)(En.UQ,{allowMultiple:!0,allowToggle:!0,color:"black",children:[(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Filter"})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(Qn,{filter:o,setFilter:s,tagColors:b,setTagColors:v,highlightColor:N,colorList:H,tags:j,local:y,setLocal:C})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{display:"flex",justifyContent:"space-between",children:(0,pe.jsxs)(h.xu,{display:"flex",children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Physics"})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(nt,{physics:n,setPhysics:t})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Visual"})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(kt,{visuals:c,setVisuals:a,highlightColor:N,setHighlightColor:D,threeDim:r})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Behavior"})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(Nt,{behavior:g,setBehavior:x,mouse:u,setMouse:d})})]})]})})]}):(0,pe.jsx)(h.xu,{position:"absolute",zIndex:"overlay",marginTop:1,marginLeft:0,display:k?"none":"block",children:(0,pe.jsx)(p.h,{variant:"subtle","aria-label":"Settings",icon:(0,pe.jsx)(In.e,{}),onClick:function(){return S(!0)}})})},Et=t(22663),Zt=t.n(Et);function Rt(e){var n,t,r,o,l=e.labelBackgroundColor,s=e.labelTextColor,c=e.node,a=e.ctx,u=e.globalScale,d=e.highlightedNodes,h=e.previouslyHighlightedNodes,g=e.visuals,f=e.opacity,p=e.nodeSize,x=e.filteredLinksByNodeId,j=(e.nodeRel,e.hoverNode),b=e.lastHoverNode;if(c&&g.labels){var v=null!==(n=null===j||void 0===j?void 0:j.id)&&void 0!==n?n:"",m=null!==(t=null===b||void 0===b?void 0:b.id)&&void 0!==t?t:"",y=null!==(r=x[c.id])&&void 0!==r?r:[],C=!(!d[c.id]&&!h[c.id]),O=Math.min(5*(u-g.labelScale)+2*Math.pow(Math.min(y.length,g.labelDynamicDegree),g.labelDynamicStrength),1);if(!(O<.01)||C){var w=null!==(o=c.title)&&void 0!==o?o:"",k=w.substring(0,g.labelLength),S=Math.cbrt(g.nodeRel*p(c)/Math.pow(u,g.nodeZoomSize)),P=g.labelFontSize/Math.cbrt(Math.pow(u,g.nodeZoomSize)),N=[1.1*a.measureText(k).width,P].map((function(e){return e+.5*P})),D=function(e,n,t,r,i){return i?Math.max(e,r):1*e*(-1*(n.highlightFade*r-1))}(O,g,0,f,C);if(g.labelBackgroundColor&&g.labelBackgroundOpacity){var I=qt(l,D*g.labelBackgroundOpacity);a.fillStyle=I,a.fillRect.apply(a,[c.x-N[0]/2,c.y-N[1]/2+S].concat((0,i.Z)(N)))}a.textAlign="center",a.textBaseline="middle";var L=qt(s,D);a.fillStyle=L,a.font="".concat(P,"px Sans-Serif");var z=Zt()(k,{width:g.labelWordWrap}).split("\n"),E=w.length>g.labelLength?[].concat((0,i.Z)(z.slice(0,-1)),["".concat(z.slice(-1),"...")]):z,Z=[v,m].includes(c.id)?1+.3*f:1;E.forEach((function(e,n){a.fillText(e,c.x,c.y+Z*S*8+g.labelLineSpace*P*n)}))}}}function Tt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Bt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Tt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Tt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Ft=t.e(907).then(t.bind(t,99907)),Ht=t.g.window?t(24878).f$:null,At=t.g.window?t(24878).s6:null;function Mt(){var e=(0,m.useState)(!1),n=e[0],t=e[1];return(0,m.useEffect)((function(){t(!0)}),[]),n?(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(v.default,{children:(0,pe.jsx)("title",{children:"ORUI"})}),(0,pe.jsx)(Wt,{})]}):null}function Wt(){var e=wn("3d",!1),n=(0,l.Z)(e,2),t=n[0],r=n[1],s=wn("tagCols",{}),c=(0,l.Z)(s,2),a=c[0],x=c[1],b=(0,m.useState)({nodeIds:[]}),v=b[0],w=b[1],S=wn("physics",E),P=(0,l.Z)(S,2),N=P[0],D=P[1],I=wn("filter",Z),L=(0,l.Z)(I,2),z=L[0],H=L[1],A=wn("visuals",R),M=(0,l.Z)(A,2),W=M[0],V=M[1],X=(0,m.useState)(null),_=X[0],U=X[1],q=(0,m.useState)(null),G=q[0],J=q[1],Q=wn("behavior",T),K=(0,l.Z)(Q,2),Y=K[0],$=K[1],ee=wn("mouse",B),ne=(0,l.Z)(ee,2),te=ne[0],re=ne[1],ie=wn("local",F),oe=(0,l.Z)(ie,2),le=oe[0],se=oe[1],ce=(0,k.Z)({}),ae=(0,l.Z)(ce,2),ue=ae[0],de=ae[1],he=de.set,ge=de.reset,fe=de.undo,xe=de.redo,je=de.canUndo,be=de.canRedo,ve=(ue.past,ue.present),me=(ue.future,(0,m.useState)(null)),ye=me[0],Ce=me[1],Oe=(0,u.q)(),we=Oe.isOpen,ke=Oe.onOpen,Pe=Oe.onClose,Ne=(0,m.useRef)({}),De=(0,m.useRef)({}),Ie=(0,m.useRef)({}),Le=(0,m.useRef)([]),ze=(0,m.useRef)(null),Ee=(0,m.useRef)({}),Ze=(0,m.useRef)({nodes:[],links:[]});(0,m.useEffect)((function(){_&&(Ze.current=_)}),[_]);var Re=(0,m.useContext)(en.N).setEmacsTheme,Te=(0,m.useRef)({nodeIds:[]}),Be=(0,m.useRef)(T);Be.current=Y;var Fe=(0,m.useRef)(null);Te.current=v;var He=function(e,n){var t,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:2e3,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:200;if("color"!==e){var l=ze.current,s=Te.current,c=Be.current,a=null!==(t=De.current[n])&&void 0!==t?t:[],u=Object.fromEntries([n].concat((0,i.Z)(a.flatMap((function(e){return[e.source,e.target]})))).map((function(e){return[e,{}]})));if("zoom"===e)return s.nodeIds.length&&w({nodeIds:[]}),void setTimeout((function(){return l.zoomToFit(r,o,(function(e){return u[e.id]}))}),50);if(!s.nodeIds.length)return w({nodeIds:[n]}),void setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50);if("add"!==c.localSame)return w({nodeIds:[n]}),void setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50);if(!s.nodeIds.includes(n)||!s.nodeIds.some((function(e){return u[e]})))return w({nodeIds:[n]}),void setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50);w((function(e){return Bt(Bt({},e),{},{nodeIds:[].concat((0,i.Z)(e.nodeIds),[n])})})),setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50)}};(0,m.useEffect)((function(){Fe.current=new O.Z("ws://localhost:35903"),Fe.current.addEventListener("open",(function(){console.log("Connection with Emacs established")})),Fe.current.addEventListener("message",(function(e){var n=Be.current,t=JSON.parse(e.data);switch(t.type){case"graphdata":return function(e){var n,t,r,s=Ne.current;Le.current=null!==(n=e.tags)&&void 0!==n?n:[];var c=null!==(t=e.nodes)&&void 0!==t?t:[],a=null!==(r=e.links)&&void 0!==r?r:[],u=c.reduce((function(e,n){var t;return Bt(Bt({},e),{},(0,o.Z)({},n.file,[].concat((0,i.Z)(null!==(t=e[n.file])&&void 0!==t?t:[]),[n])))}),{}),d=Object.keys(u).flatMap((function(e){var n,t=null!==(n=u[e])&&void 0!==n?n:[],r=t.find((function(e){return 0===e.level})),i=t.filter((function(e){return 0!==e.level}));return r?i.map((function(e){var n=t.filter((function(n){var t;return!(n.level>=e.level||n.pos>=e.pos||null===(t=e.olp)||void 0===t||!t.includes(n.title))})).reduce((function(e,n){return n.level>e.level&&(e=n),e}),r);return{source:e.id,target:(null===n||void 0===n?void 0:n.id)||r.id,type:"heading"}})):[]})),h=Object.keys(u).flatMap((function(e){var n,t=null!==(n=u[e])&&void 0!==n?n:[],r=t.find((function(e){return 0===e.level})),i=t.filter((function(e){return 0!==e.level}));return r?i.map((function(e){return{source:e.id,target:r.id,type:"parent"}})):[]}));Ne.current=Object.fromEntries(c.map((function(e){return[e.id,e]})));var g=[].concat((0,i.Z)(a),(0,i.Z)(d),(0,i.Z)(h)),f=[],p=g.map((function(e){var n=e.source,t=e.target;return Ne.current[n]?Ne.current[t]?e:(f.push({id:t,tags:["bad"],properties:{FILELESS:"yes",bad:"yes"},file:"",title:t,level:0,pos:0,olp:null}),Bt(Bt({},e),{},{type:"bad"})):(f.push({id:n,tags:["bad"],properties:{FILELESS:"yes",bad:"yes"},file:"",title:n,level:0,pos:0,olp:null}),Bt(Bt({},e),{},{type:"bad"}))}));Ne.current=Bt(Bt({},Ne.current),Object.fromEntries(f.map((function(e){return[e.id,e]})))),De.current=p.reduce((function(e,n){var t,r,l;return Bt(Bt({},e),{},(l={},(0,o.Z)(l,n.source,[].concat((0,i.Z)(null!==(t=e[n.source])&&void 0!==t?t:[]),[n])),(0,o.Z)(l,n.target,[].concat((0,i.Z)(null!==(r=e[n.target])&&void 0!==r?r:[]),[n])),l))}),{});var x=[].concat((0,i.Z)(c),f);Ie.current=x.reduce((function(e,n){var t,r=null===(t=n.properties)||void 0===t?void 0:t.ROAM_REFS;if(null===r||void 0===r||!r.includes("cite"))return e;var i=r.replaceAll(/cite:(.*)/g,"$1");return i?Bt(Bt({},e),{},(0,o.Z)({},i,n)):e}),{});var j={nodes:x,links:p},b=Ze.current;if(0===b.nodes.length){var v=JSON.parse(JSON.stringify(j));return Ze.current=v,void U(v)}var m=[].concat((0,i.Z)(b.nodes.flatMap((function(e){var n,t=null!==(n=Ne.current[null===e||void 0===e?void 0:e.id])&&void 0!==n&&n;return t?[Bt(Bt({},e),t)]:[]}))),(0,i.Z)(Object.keys(Ne.current).filter((function(e){return!s[e]})).map((function(e){return Ne.current[e]})))),y=m.reduce((function(e,n,t){var r=null===n||void 0===n?void 0:n.id;return Bt(Bt({},e),{},(0,o.Z)({},r,t))}),{}),C=p.map((function(e){var n=_t(e),t=(0,l.Z)(n,2),r=t[0],i=t[1];return Bt(Bt({},e),{},{source:m[y[r]],target:m[y[i]]})}));U({nodes:m,links:C})}(t.data);case"variables":return console.log(t.data),void(Ee.current=t.data);case"theme":return Re(["custom",t.data]);case"command":switch(t.data.commandName){case"local":var r=Y.zoomSpeed,s=Y.zoomPadding;He("local",t.data.id,r,s),J(t.data.id);break;case"zoom":var c,a,u=(null===t||void 0===t||null===(c=t.data)||void 0===c?void 0:c.speed)||n.zoomSpeed,d=(null===t||void 0===t||null===(a=t.data)||void 0===a?void 0:a.padding)||n.zoomPadding;He("zoom",t.data.id,u,d),J(t.data.id);break;case"follow":He(n.follow,t.data.id,n.zoomSpeed,n.zoomPadding),J(t.data.id);break;default:return console.error("unknown message type",t.type)}}}))}),[]),(0,m.useEffect)((function(){var e=ze.current;!e||v.nodeIds.length>1||(v.nodeIds.length||!N.gravityOn?setTimeout((function(){e.zoomToFit(5,200)}),50):e.zoomToFit())}),[v.nodeIds]);var Ae=(0,j.iP)(),Me=(0,l.Z)(Ae,2),We=Me[0],Ve=Me[1],Xe=(0,m.useRef)(),_e=(0,m.useState)(null),Ue=_e[0],qe=_e[1],Ge=(0,m.useState)({left:0,top:0,right:void 0,bottom:void 0}),Je=Ge[0],Qe=Ge[1],Ke=(0,u.q)();(0,d.O)({ref:Xe,handler:function(){Ke.onClose()}});var Ye=function(e,n,t){Qe(t||{left:n.pageX,top:n.pageY,right:void 0,bottom:void 0}),qe(e),Ke.onOpen()},$e=function(e,n){"replace"!==n?v.nodeIds.includes(e.id)||w((function(n){return Bt(Bt({},n),{},{nodeIds:[].concat((0,i.Z)(n.nodeIds),[e.id])})})):w({nodeIds:[e.id]})},nn=(0,m.useState)({type:"Graph",title:"Graph",icon:(0,pe.jsx)(y.DvO,{})}),tn=(nn[0],nn[1],wn("mainWindowWidth",We)),rn=(0,l.Z)(tn,2),on=rn[0],ln=rn[1];return(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"flex-start",flexDirection:"row",height:"100vh",overflow:"clip",children:[(0,pe.jsx)(zt,{physics:N,setPhysics:D,threeDim:t,setThreeDim:r,filter:z,setFilter:H,visuals:W,setVisuals:V,mouse:te,setMouse:re,behavior:Y,setBehavior:$,tagColors:a,setTagColors:x,local:le,setLocal:se,tags:Le.current}),(0,pe.jsx)(h.xu,{position:"absolute",children:_&&(0,pe.jsx)(Vt,{nodeById:Ne.current,linksByNodeId:De.current,webSocket:Fe.current,variables:Ee.current,physics:N,graphData:_,threeDim:t,emacsNodeId:G,filter:z,visuals:W,behavior:Y,mouse:te,scope:v,setScope:w,tagColors:a,setPreviewNode:he,sidebarHighlightedNode:ye,windowWidth:We,windowHeight:Ve,openContextMenu:Ye,contextMenu:Ke,handleLocal:$e,mainWindowWidth:on,setMainWindowWidth:ln,setContextMenuTarget:qe,graphRef:ze,local:le})}),(0,pe.jsx)(h.xu,{position:"relative",zIndex:4,width:"100%",children:(0,pe.jsx)(g.k,{className:"headerBar",h:10,flexDir:"column",children:(0,pe.jsx)(g.k,{alignItems:"center",h:10,justifyContent:"flex-end",children:(0,pe.jsxs)(g.k,{height:"100%",flexDirection:"row",children:[v.nodeIds.length>0&&(0,pe.jsx)(f.u,{label:"Return to main graph",children:(0,pe.jsx)(p.h,{m:1,icon:(0,pe.jsx)(y.DvO,{}),"aria-label":"Exit local mode",onClick:function(){return w((function(e){return Bt(Bt({},e),{},{nodeIds:[]})}))},variant:"subtle"})}),(0,pe.jsx)(f.u,{label:we?"Close sidebar":"Open sidebar",children:(0,pe.jsx)(p.h,{m:1,icon:(0,pe.jsx)(C.iBV,{}),"aria-label":"Close file-viewer",variant:"subtle",onClick:we?Pe:ke})})]})})})}),(0,pe.jsx)(h.xu,{position:"relative",zIndex:4,children:(0,pe.jsx)(Dn,{isOpen:we,onOpen:ke,onClose:Pe,previewNode:ve,setPreviewNode:he,canUndo:je,canRedo:be,previousPreviewNode:fe,nextPreviewNode:xe,resetPreviewNode:ge,setSidebarHighlightedNode:Ce,openContextMenu:Ye,scope:v,setScope:w,windowWidth:We,tagColors:a,setTagColors:x,filter:z,setFilter:H,nodeById:Ne.current,linksByNodeId:De.current,nodeByCite:Ie.current})}),Ke.isOpen&&(0,pe.jsx)("div",{ref:Xe,children:(0,pe.jsx)(Se,{scope:v,target:Ue,background:!1,coordinates:Je,handleLocal:$e,menuClose:Ke.onClose.bind(Ke),webSocket:Fe.current,setPreviewNode:he,setFilter:H,filter:z,setTagColors:x,tagColors:a})})]})}var Vt=function(e){var n=e.graphRef,t=e.physics,s=e.graphData,u=e.threeDim,d=e.linksByNodeId,g=e.filter,f=e.emacsNodeId,p=e.nodeById,j=e.visuals,v=e.behavior,y=e.mouse,C=e.scope,O=e.local,k=(e.setScope,e.webSocket),S=e.tagColors,P=e.setPreviewNode,N=e.sidebarHighlightedNode,D=e.windowWidth,I=e.windowHeight,L=(e.setContextMenuTarget,e.openContextMenu),E=e.contextMenu,Z=e.handleLocal,R=e.variables,T=R.dailyDir,B=(R.roamDir,(0,m.useState)(null)),F=B[0],A=B[1],M=(0,a.useTheme)(),W=(0,m.useContext)(en.N).emacsTheme,V=function(e,n,t){switch(e){case y.preview:P(n);break;case y.local:Z(n,v.localSame);break;case y.follow:$(n,k);break;case y.context:L(n,t)}},X=(0,m.useRef)(null);(0,m.useEffect)((function(){f&&A(p[f])}),[f]);var _=(0,m.useRef)({}),U=(0,m.useRef)({}),q=(0,m.useMemo)((function(){var e;U.current={};var n=null===s||void 0===s||null===(e=s.nodes)||void 0===e?void 0:e.filter((function(e){var n,t,r,i,l=e;return g.tagsBlacklist.length&&g.tagsBlacklist.some((function(e){var n;return(null===l||void 0===l||null===(n=l.tags)||void 0===n?void 0:n.indexOf(e))>-1}))||g.tagsWhitelist.length>0&&!g.tagsWhitelist.some((function(e){var n;return(null===l||void 0===l||null===(n=l.tags)||void 0===n?void 0:n.indexOf(e))>-1}))||g.filelessCites&&null!==l&&void 0!==l&&null!==(n=l.properties)&&void 0!==n&&n.FILELESS||null!==g&&void 0!==g&&g.bad&&null!==l&&void 0!==l&&null!==(t=l.properties)&&void 0!==t&&t.bad||g.dailies&&T&&null!==(r=l.file)&&void 0!==r&&r.includes(T)?(U.current=Bt(Bt({},U.current),{},(0,o.Z)({},l.id,l)),!1):!g.noter||null===(i=l.properties)||void 0===i||!i.NOTER_PAGE||(U.current=Bt(Bt({},U.current),{},(0,o.Z)({},l.id,l)),!1)})).filter((function(e){var n,t=(null!==(n=d[null===e||void 0===e?void 0:e.id])&&void 0!==n?n:[]).filter((function(e){return!U.current[e.source]&&!U.current[e.target]}));return!g.orphans||(g.parent?0!==t.length:0!==t.length&&t.some((function(e){return!["parent","heading"].includes(e.type)})))})),t=n.map((function(e){return e.id})),r=s.links.filter((function(e){var n=_t(e),r=(0,l.Z)(n,2),i=r[0],o=r[1];if(!t.includes(i)||!t.includes(o))return!1;var s=e;return g.parent?"heading"===g.parent?"parent"!==s.type:"heading"!==s.type:!["parent","heading"].includes(s.type)}));return _.current=r.reduce((function(e,n){var t,r,s,c=n,a=_t(c),u=(0,l.Z)(a,2),d=u[0],h=u[1];return Bt(Bt({},e),{},(s={},(0,o.Z)(s,d,[].concat((0,i.Z)(null!==(t=e[d])&&void 0!==t?t:[]),[c])),(0,o.Z)(s,h,[].concat((0,i.Z)(null!==(r=e[h])&&void 0!==r?r:[]),[c])),s))}),{}),{nodes:n,links:r}}),[g,s]),G=(0,m.useState)({nodes:[],links:[]}),J=G[0],Q=G[1];(0,m.useEffect)((function(){if(C.nodeIds.length){var e=C.nodeIds.length>1?J.nodes:[],n=e.map((function(e){return e.id})),t=function(e,n){var t=[e[0]],r=[],i=[e[0]];return Array.from({length:n},(function(){t.forEach((function(e){var n;(null!==(n=_.current[e])&&void 0!==n?n:[]).forEach((function(e){var n=_t(e),t=(0,l.Z)(n,2),o=t[0],s=t[1];i.includes(o)?i.includes(s)||r.push(s):r.push(o)}))})),t=r,r.forEach((function(e){return e&&i.push(e)})),r=[]})),i}(C.nodeIds,O.neighbors),r=q.nodes.filter((function(r){var i;return e.length?!n.includes(r.id)&&(null!==(i=_.current[r.id])&&void 0!==i?i:[]).some((function(e){var n=_t(e),t=(0,l.Z)(n,2),r=t[0],i=t[1];return C.nodeIds.includes(r)||C.nodeIds.includes(i)})):t.includes(r.id)})).map((function(e){return Bt(Bt({},e),{},{x:0,y:0,vy:0,vx:0})})),o=[].concat((0,i.Z)(e),(0,i.Z)(r)),s=o.map((function(e){return e.id})),c=C.nodeIds.length>1?J.links:[],a=q.links.filter((function(e){var t=_t(e),r=(0,l.Z)(t,2),i=r[0],o=r[1];return!(c.length&&n.includes(o)&&n.includes(i))&&(s.includes(i)&&s.includes(o))})).map((function(e){var n=_t(e),t=(0,l.Z)(n,2);return{source:t[0],target:t[1]}})),u=[].concat((0,i.Z)(c),(0,i.Z)(a));Q({nodes:o,links:u})}}),[O.neighbors,g,C,JSON.stringify(s),q.links,q.nodes]),(0,m.useEffect)((function(){(0,r.Z)(c().mark((function e(){var r,i;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=n.current,e.next=3,Ft;case 3:i=e.sent,!t.gravityOn||C.nodeIds.length&&!t.gravityLocal?(r.d3Force("x",null),r.d3Force("y",null),u&&r.d3Force("z",null)):(r.d3Force("x",i.forceX().strength(t.gravity)),r.d3Force("y",i.forceY().strength(t.gravity)),u&&r.d3Force("z",i.forceZ().strength(t.gravity))),t.centering?r.d3Force("center",i.forceCenter().strength(t.centeringStrength)):r.d3Force("center",null),t.linkStrength&&r.d3Force("link").strength(t.linkStrength),t.linkIts&&r.d3Force("link").iterations(t.linkIts),t.charge&&r.d3Force("charge").strength(t.charge),r.d3Force("collide",t.collision?i.forceCollide().radius(t.collisionStrength):null);case 10:case"end":return e.stop()}}),e)})))()}),[t,u,C]),(0,m.useEffect)((function(){var e;null===(e=n.current)||void 0===e||e.d3ReheatSimulation()}),[t,C.nodeIds.length]);var K=(0,m.useRef)(0),Y=(0,m.useState)(1),ee=Y[0],ne=Y[1],te=(0,x._7)((function(e){return ne(e)}),{duration:j.animationSpeed,algorithm:z[j.algorithmName]}),re=(0,l.Z)(te,2),ie=re[0],oe=re[1],le=(0,x._7)((function(e){return ne(Math.min(ee,-1*(e-1)))}),{duration:j.animationSpeed,algorithm:z[j.algorithmName]}),se=(0,l.Z)(le,2),ce=se[0],ae=se[1],ue=(0,m.useMemo)((function(){var e;if(!X.current)return{};var n=_.current[X.current.id];return n?Object.fromEntries([null===(e=X.current)||void 0===e?void 0:e.id].concat((0,i.Z)(n.flatMap((function(e){return[e.source,e.target]})))).map((function(e){return[e,{}]}))):{}}),[JSON.stringify(X.current),JSON.stringify(_.current)]);(0,m.useEffect)((function(){null!==N&&void 0!==N&&N.id?A(N):A(null)}),[N]);var de=(0,m.useRef)(null);(0,m.useEffect)((function(){if(X.current=F,F&&(de.current=F),!j.highlightAnim)return ne(F?1:0);F?ie():(oe(),ee>.5?ce():ne(0))}),[F]);var he=(0,m.useMemo)((function(){return Object.fromEntries(H.map((function(e){var n=Ut(e,M),t=H.map((function(e){return[e,b.Z(n,Ut(e,M))]}));return[e,Object.fromEntries(t)]})))}),[W]),ge=(0,m.useMemo)((function(){var e,n,t,r=null!==(e=_.current[null===(n=de.current)||void 0===n?void 0:n.id])&&void 0!==e?e:[];return Object.fromEntries([null===(t=de.current)||void 0===t?void 0:t.id].concat((0,i.Z)(r.flatMap((function(e){return _t(e)})))).map((function(e){return[e,{}]})))}),[JSON.stringify(F),de.current,_.current]),fe=function(e){var n,t,r,i,o,l=null!==(n=null===(t=_.current[e])||void 0===t?void 0:t.length)&&void 0!==n?n:0;return j.nodeColorScheme[(r=l,i=0,o=j.nodeColorScheme.length-1,Math.min(Math.max(r,i),o))]},xe=function(e,n){return _.current[e].length>_.current[n].length?fe(e):fe(n)},je=(0,m.useMemo)((function(){return Ut(j.labelTextColor,M)}),[j.labelTextColor,W]),be=(0,m.useMemo)((function(){return Ut(j.labelBackgroundColor,M)}),[j.labelBackgroundColor,W]),ve=function(e){var n,t=null!==(n=_.current[e.id])&&void 0!==n?n:[],r=t.length?t.filter((function(e){return"parent"===e.type})).length:0,i=3+t.length*j.nodeSizeLinks-(g.parent?0:r);return 1===j.highlightNodeSize?i:i*(ue[e.id]||ge[e.id]?1+ee*(j.highlightNodeSize-1):1)},me=(0,m.useState)(!1),ye=me[0],Ce=me[1],Oe=(0,m.useRef)(1),we={graphData:C.nodeIds.length?J:q,width:D,height:I,backgroundColor:Ut(j.backgroundColor,M),warmupTicks:1===C.nodeIds.length?100:C.nodeIds.length>1?20:0,onZoom:function(e){var n=e.k;e.x,e.y;return Oe.current=n},nodeColor:function(e){return function(e,n){var t,r,i=ue[e.id]||ge[e.id];if(j.emacsNodeColor&&e.id===f)return Ut(j.emacsNodeColor,n);if(S&&null!==e&&void 0!==e&&e.tags.some((function(e){return S[e]}))){var o=S[null===e||void 0===e?void 0:e.tags.filter((function(e){return S[e]}))[0]];return i?he[o][o](j.highlightFade*ee):he[o][j.backgroundColor](j.highlightFade*ee)}return j.citeNodeColor&&null!==e&&void 0!==e&&null!==(t=e.properties)&&void 0!==t&&t.ROAM_REFS&&null!==e&&void 0!==e&&null!==(r=e.properties)&&void 0!==r&&r.FILELESS?i?Ut(j.citeNodeColor,n):he[j.citeNodeColor][j.backgroundColor](j.highlightFade*ee):j.refNodeColor&&e.properties.ROAM_REFS?i?Ut(j.refNodeColor,n):he[j.refNodeColor][j.backgroundColor](j.highlightFade*ee):i?j.nodeHighlight?he[fe(e.id)][j.nodeHighlight](ee):Ut(fe(e.id),n):he[fe(e.id)][j.backgroundColor](j.highlightFade*ee)}(e,M)},nodeRelSize:j.nodeRel,nodeVal:function(e){return ve(e)/Math.pow(Oe.current,j.nodeZoomSize)},nodeCanvasObject:function(e,n,t){Rt(Bt({nodeRel:j.nodeRel,filteredLinksByNodeId:_.current,lastHoverNode:de.current},{node:e,ctx:n,globalScale:t,highlightedNodes:ue,previouslyHighlightedNodes:ge,visuals:j,opacity:ee,nodeSize:ve,labelTextColor:je,labelBackgroundColor:be,hoverNode:F}))},nodeCanvasObjectMode:function(){return"after"},linkDirectionalParticles:j.particles?j.particlesNumber:void 0,linkDirectionalArrowLength:j.arrows?j.arrowsLength:void 0,linkDirectionalArrowRelPos:j.arrowsPos,linkDirectionalArrowColor:j.arrowsColor?function(){return Ut(j.arrowsColor,M)}:void 0,linkColor:function(e){var n,t="object"===typeof e.source?e.source.id:e.source,r="object"===typeof e.target?e.target.id:e.target,i=Xt(e,X.current),o=Xt(e,de.current),l=i||o,s=e;return j.refLinkColor&&"ref"===s.type?l&&(j.refLinkHighlightColor||j.linkHighlight)?he[j.refLinkColor][j.refLinkHighlightColor||j.linkHighlight](ee):he[j.refLinkColor][j.backgroundColor](j.highlightFade*ee):j.citeLinkColor&&null!==(n=s.type)&&void 0!==n&&n.includes("cite")?l&&(j.citeLinkHighlightColor||j.linkHighlight)?he[j.citeLinkColor][j.citeLinkHighlightColor||j.linkHighlight](ee):he[j.citeLinkColor][j.backgroundColor](j.highlightFade*ee):function(e,n,t,r){if(!j.linkHighlight&&!j.linkColorScheme&&!t)return Ut(xe(e,n),r);if(!t&&!j.linkColorScheme){var i=xe(e,n);return he[i][j.backgroundColor](j.highlightFade*ee)}return t?j.linkHighlight||j.linkColorScheme?j.linkHighlight?j.linkColorScheme?he[j.linkColorScheme][j.linkHighlight](ee):he[xe(e,n)][j.linkHighlight](ee):Ut(j.linkColorScheme,r):Ut(xe(e,n),r):he[j.linkColorScheme][j.backgroundColor](j.highlightFade*ee)}(t,r,l,M)},linkWidth:function(e){if(1===j.highlightLinkSize)return j.linkWidth;var n=Xt(e,X.current),t=Xt(e,de.current);return n||t?j.linkWidth*(1+ee*(j.highlightLinkSize-1)):j.linkWidth},linkDirectionalParticleWidth:j.particlesWidth,d3AlphaDecay:t.alphaDecay,d3AlphaMin:t.alphaMin,d3VelocityDecay:t.velocityDecay,onNodeClick:function(e,n){var t=e,r=n.timeStamp-K.current<200;if(K.current=n.timeStamp,r)return V("double",t,n);var i=K.current;return setTimeout((function(){if(K.current===i)return V("click",t,n)}),200)},onNodeHover:function(e){j.highlight&&(ye||(F||(ae(),ne(0)),A(e)))},onNodeRightClick:function(e,n){V("right",e,n)},onNodeDrag:function(e){A(e),Ce(!0)},onNodeDragEnd:function(){A(null),Ce(!1)}};return(0,pe.jsx)(h.xu,{overflow:"hidden",onClick:E.onClose,children:u?(0,pe.jsx)(At,Bt(Bt({ref:n},we),{},{nodeThreeObjectExtend:!0,nodeOpacity:j.nodeOpacity,nodeResolution:j.nodeResolution,linkOpacity:j.linkOpacity,nodeThreeObject:function(e){if(j.labels&&(!(j.labels<3)||ue[e.id])){var n=new w.Z(e.title.substring(0,40));return n.color=Ut(j.labelTextColor,M),n.backgroundColor=Ut(j.labelBackgroundColor,M),n.padding=2,n.textHeight=8,n}}})):(0,pe.jsx)(Ht,Bt(Bt({ref:n},we),{},{linkLineDash:function(e){var n,t=e;return j.citeDashes&&null!==(n=t.type)&&void 0!==n&&n.includes("cite")?[j.citeDashLength,j.citeGapLength]:j.refDashes&&"ref"==t.type?[j.refDashLength,j.refGapLength]:null}}))})};function Xt(e,n){var t,r;return(null===(t=e.source)||void 0===t?void 0:t.id)===(null===n||void 0===n?void 0:n.id)||(null===(r=e.target)||void 0===r?void 0:r.id)===(null===n||void 0===n?void 0:n.id)}function _t(e){return["object"===typeof e.source?e.source.id:e.source,"object"===typeof e.target?e.target.id:e.target]}function Ut(e,n){return e.split(".").reduce((function(e,n){return e[n]}),n.colors)}function qt(e,n){return"rgba("+(e=e.replace("#","")).match(new RegExp("(.{"+e.length/3+"})","g")).map((function(n){return parseInt(e.length%2?n+n:n,16)})).concat(isFinite(n)?n:1).join(",")+")"}},45301:function(e,n,t){(window.__NEXT_P=window.__NEXT_P||[]).push(["/",function(){return t(54530)}])}},function(e){e.O(0,[774,737,13,874,573,446,816,888,179],(function(){return n=45301,e(e.s=n);var n}));var n=e.O();_N_E=n}]); \ No newline at end of file
diff --git a/out/_next/static/chunks/pages/index-c3655ec8db181f6ae1ab.js b/out/_next/static/chunks/pages/index-c3655ec8db181f6ae1ab.js
deleted file mode 100644
index 6f09db5..0000000
--- a/out/_next/static/chunks/pages/index-c3655ec8db181f6ae1ab.js
+++ /dev/null
@@ -1 +0,0 @@
-(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[405],{54530:function(e,n,t){"use strict";t.r(n),t.d(n,{Graph:function(){return Vt},GraphPage:function(){return Wt},default:function(){return Mt},getThemeColor:function(){return Ut},hexToRGBA:function(){return qt},normalizeLinkEnds:function(){return _t}});var r=t(15861),i=t(42982),o=t(4942),l=t(70885),s=t(87757),c=t.n(s),a=t(40980),u=t(74860),d=t(95869),h=t(48017),g=t(94096),f=t(96699),p=t(48420),x=t(57775),j=t(54309),b=t(52596),v=t(9008),m=t(67294),y=t(47516),C=t(63750),O=t(22003),w=t(31122),k=t(7520),S=t(36194),P=[],N={};for(var D in S.oY)for(var I in S.oY[D]){var L=D+I;"LinearNone"===L&&(L="Linear"),P.push(L),N[L]=S.oY[D][I]}var z=N,E={enabled:!0,charge:-700,collision:!0,collisionStrength:20,centering:!0,centeringStrength:.2,linkStrength:.3,linkIts:1,alphaDecay:.05,alphaTarget:0,alphaMin:0,velocityDecay:.25,gravity:.3,gravityOn:!0,gravityLocal:!1},Z={orphans:!1,dailies:!1,parent:"heading",filelessCites:!1,tagsBlacklist:[],tagsWhitelist:[],bad:!0,nodes:[],links:[],date:[],noter:!0},R={particles:!1,particlesNumber:0,particlesWidth:4,arrows:!1,arrowsLength:1,arrowsPos:.5,arrowsColor:"",linkOpacity:.8,linkWidth:1,nodeRel:4,nodeOpacity:1,nodeResolution:12,labels:2,labelScale:1,labelFontSize:10,labelLength:40,labelWordWrap:25,labelLineSpace:1,labelDynamicDegree:8,labelDynamicStrength:.5,highlight:!0,highlightNodeSize:1.1,highlightLinkSize:1,highlightFade:.8,highlightAnim:!0,animationSpeed:360,algorithmOptions:P,algorithmName:"SinusoidalOut",linkColorScheme:"gray.500",nodeColorScheme:["red.500","gray.600","yellow.500","green.500","cyan.500","blue.500","pink.500","purple.500","orange.500"],nodeHighlight:"purple.500",linkHighlight:"purple.500",backgroundColor:"white",emacsNodeColor:"gray.800",labelTextColor:"black",labelBackgroundColor:"",labelBackgroundOpacity:.7,citeDashes:!0,citeDashLength:35,citeGapLength:15,citeLinkColor:"gray.700",citeLinkHighlightColor:"",citeNodeColor:"black",refDashes:!0,refDashLength:35,refGapLength:15,refLinkColor:"gray.700",refLinkHighlightColor:"",refNodeColor:"black",nodeSizeLinks:.5,nodeZoomSize:1.2},T={follow:"zoom",localSame:"add",zoomPadding:200,zoomSpeed:2e3},B={highlight:"hover",local:"double",follow:"never",context:"right",preview:"click",backgroundExitsLocal:!1},F={neighbors:1},H=["red.500","orange.500","yellow.500","green.500","cyan.500","blue.500","pink.500","purple.500","white","gray.100","gray.200","gray.300","gray.400","gray.500","gray.600","gray.700","gray.800","gray.900","black"],A=t(11252),M=t(336),W=t(85675),V=t(72026),X=t(64115),_=t(49364),U=t(94030),q=t(46617),G=t(50862),J=t(68928),Q=t(55830),K=t(2827);function Y(e,n,t){t.send(JSON.stringify({command:e,data:n}))}function $(e,n){Y("open",{id:e.id},n)}var ee=t(85305),ne=t(77787),te=t(45987),re=t(80658),ie=t(38554),oe=t.n(ie),le=t(84461),se=t(73808),ce=t(53869),ae=t(39629);function ue(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function de(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ue(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ue(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var he={ease:[.25,.1,.25,1],easeIn:[.4,0,1,1],easeOut:[0,0,.2,1],easeInOut:[.4,0,.2,1]};var ge=function(e,n){return de(de({},e),{},{delay:(0,se.hj)(n)?n:null===n||void 0===n?void 0:n.enter})},fe=function(e,n){return de(de({},e),{},{delay:(0,se.hj)(n)?n:null===n||void 0===n?void 0:n.exit})},pe=t(85893),xe=["in","unmountOnExit","animateOpacity","startingSize","endingSize","dimension","style","className","transition","transitionEnd"];function je(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function be(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?je(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):je(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var ve=function(e){return null!=e&&parseInt(e.toString(),10)>0},me={exit:{size:{duration:.2,ease:he.ease},opacity:{duration:.3,ease:he.ease}},enter:{size:{duration:.3,ease:he.ease},opacity:{duration:.4,ease:he.ease}}},ye={exit:function(e){var n,t,r=e.animateOpacity,i=e.startingSize,l=e.transition,s=e.transitionEnd,c=e.delay,a=e.dimension;return be(be({},r&&{opacity:ve(i)?1:0}),{},(t={overflow:"hidden"},(0,o.Z)(t,a,i),(0,o.Z)(t,"transitionEnd",null===s||void 0===s?void 0:s.exit),(0,o.Z)(t,"transition",null!==(n=null===l||void 0===l?void 0:l.exit)&&void 0!==n?n:fe(me.exit,c)),t))},enter:function(e){var n,t,r=e.animateOpacity,i=e.endingSize,l=e.transition,s=e.transitionEnd,c=e.delay,a=e.dimension;return be(be({},r&&{opacity:1}),{},(t={},(0,o.Z)(t,a,i),(0,o.Z)(t,"transitionEnd",null===s||void 0===s?void 0:s.enter),(0,o.Z)(t,"transition",null!==(n=null===l||void 0===l?void 0:l.enter)&&void 0!==n?n:ge(me.enter,c)),t))}},Ce=m.forwardRef((function(e,n){var t=e.in,r=e.unmountOnExit,i=e.animateOpacity,o=void 0===i||i,s=e.startingSize,c=void 0===s?0:s,a=e.endingSize,u=void 0===a?"auto":a,d=e.dimension,h=void 0===d?"height":d,g=e.style,f=e.className,p=e.transition,x=e.transitionEnd,j=(0,te.Z)(e,xe),b=m.useState(!1),v=(0,l.Z)(b,2),y=v[0],C=v[1];m.useEffect((function(){var e=setTimeout((function(){C(!0)}));return function(){return clearTimeout(e)}}),[]),(0,re.ZK)({condition:Boolean(c>0&&r),message:"startingSize and unmountOnExit are mutually exclusive. You can't use them together"});var O=parseFloat(c.toString())>0,w={startingSize:c,endingSize:u,animateOpacity:o,dimension:h,transition:y?p:{enter:{duration:0}},transitionEnd:oe()(x,{enter:{overflow:"initial"},exit:r?void 0:{display:O?"block":"none"}})},k=!r||t,S=t||r?"enter":"exit";return(0,pe.jsx)(ce.M,{initial:!1,custom:w,children:k&&(0,pe.jsx)(ae.E.div,be(be({ref:n},j),{},{className:(0,le.cx)("chakra-collapse",f),style:be({overflow:"hidden",display:"block"},g),custom:w,variants:ye,initial:!!r&&"exit",animate:S,exit:"exit"}))})}));function Oe(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function we(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Oe(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Oe(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}se.Ts&&(Ce.displayName="Collapse");var ke=function(e){var n=e.setTagColors,t=e.setFilter,r=e.filter,l=e.tagColors,s=e.target,c=r.tagsBlacklist,a=r.tagsWhitelist,d=c.indexOf(s)>-1,f=a.indexOf(s)>-1,p=(0,u.q)();return(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(h.xu,{bgColor:l[s],borderRadius:"sm",height:3,width:3,borderColor:l[s]||"gray.600",borderWidth:1}),closeOnSelect:!1,onClick:p.onToggle,children:(0,pe.jsx)(X.x,{children:"Change color"})}),(0,pe.jsx)(Ce,{in:p.isOpen,children:(0,pe.jsx)(g.k,{ml:2,mt:2,flexWrap:"wrap",children:H.map((function(e){return(0,pe.jsx)(h.xu,{children:(0,pe.jsx)(h.xu,{tabIndex:0,cursor:"pointer",onClick:function(){return n(we(we({},l),{},(0,o.Z)({},s,e)))},bgColor:e,m:1,borderRadius:"sm",height:3,width:3})},e)}))})}),!f&&(0,pe.jsx)(A.sN,{onClick:function(){t(d?function(e){return we(we({},e),{},{tagsBlacklist:e.tagsBlacklist.filter((function(e){return e!==s}))})}:function(e){return we(we({},e),{},{tagsBlacklist:[].concat((0,i.Z)(e.tagsBlacklist),[s])})})},icon:d?(0,pe.jsx)(ee.V,{}):(0,pe.jsx)(ne.t,{}),children:d?"Remove from blacklist":"Add to blacklist"}),!d&&(0,pe.jsx)(A.sN,{onClick:function(){t(f?function(e){return we(we({},e),{},{tagsWhitelist:e.tagsWhitelist.filter((function(e){return e!==s}))})}:function(e){return we(we({},e),{},{tagsWhitelist:[].concat((0,i.Z)(e.tagsWhitelist),[s])})})},icon:f?(0,pe.jsx)(ee.V,{}):(0,pe.jsx)(Q.O,{}),children:f?"Remove from whitelist":"Add to whitelist"})]})},Se=function(e){e.background;var n,t,r=e.target,i=(e.nodeType,e.coordinates),o=e.handleLocal,l=e.menuClose,s=e.scope,c=e.webSocket,a=e.setPreviewNode,d=e.setTagColors,h=e.tagColors,g=e.setFilter,f=e.filter,p=(0,u.q)(),x=p.isOpen,j=p.onOpen,b=p.onClose;(0,m.useRef)();return(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A.v2,{defaultIsOpen:!0,closeOnBlur:!1,onClose:function(){return l()},children:(0,pe.jsx)(A.qy,{zIndex:"overlay",bgColor:"white",color:"black",position:"absolute",left:i.left,top:i.top,right:i.right,bottom:i.bottom,fontSize:"xs",boxShadow:"xl",children:"string"!==typeof r?(0,pe.jsxs)(pe.Fragment,{children:[r&&(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(M.X,{size:"xs",isTruncated:!0,px:3,py:1,children:r.title}),(0,pe.jsx)(A.R,{borderColor:"gray.500"})]}),0!==s.nodeIds.length&&(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(A.sN,{onClick:function(){return o(r,"add")},icon:(0,pe.jsx)(U.I,{}),children:"Expand local graph at node"}),(0,pe.jsx)(A.sN,{onClick:function(){return o(r,"replace")},icon:(0,pe.jsx)(y.DvO,{}),children:"Open local graph for this node"})]}),null!==r&&void 0!==r&&null!==(n=r.properties)&&void 0!==n&&n.FILELESS?(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(G.d,{}),onClick:function(){return function(e,n){Y("create",{id:e.id,title:e.title,ref:e.properties.ROAM_REFS},n)}(r,c)},children:"Create node"}):(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(q.d,{}),onClick:function(){return $(r,c)},children:"Open in Emacs"}),(null===r||void 0===r||null===(t=r.properties)||void 0===t?void 0:t.ROAM_REFS)&&(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(J.h,{}),children:"Open in Zotero"}),0===s.nodeIds.length&&(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(y.DvO,{}),onClick:function(){return o(r,"replace")},children:"Open local graph"}),(0,pe.jsx)(A.sN,{icon:(0,pe.jsx)(Q.O,{}),onClick:function(){a(r)},children:"Preview"}),0===(null===r||void 0===r?void 0:r.level)&&(0,pe.jsx)(A.sN,{closeOnSelect:!1,icon:(0,pe.jsx)(K.p,{color:"red.500"}),color:"red.500",onClick:j,children:"Permenantly delete note"})]}):(0,pe.jsx)(ke,{target:r,tagColors:h,filter:f,setTagColors:d,setFilter:g})})}),"string"!==typeof r&&(0,pe.jsxs)(W.u_,{isCentered:!0,isOpen:x,onClose:b,children:[(0,pe.jsx)(W.ZA,{}),(0,pe.jsxs)(W.hz,{zIndex:"popover",children:[(0,pe.jsx)(W.xB,{children:"Delete node?"}),(0,pe.jsx)(W.ol,{}),(0,pe.jsx)(W.fe,{children:(0,pe.jsxs)(V.gC,{spacing:4,display:"flex",alignItems:"flex-start",children:[(0,pe.jsx)(X.x,{children:"This will permanently delete your note:"}),(0,pe.jsx)(X.x,{fontWeight:"bold",children:null===r||void 0===r?void 0:r.title}),0!==(null===r||void 0===r?void 0:r.level)&&(0,pe.jsx)(X.x,{children:"This will only delete the from this heading until but not including the next node. Your parent file and all other nodes will not be deleted."}),(0,pe.jsx)(X.x,{children:"Are you sure you want to do continue?"})]})}),(0,pe.jsxs)(W.mz,{children:[(0,pe.jsx)(_.z,{mr:3,onClick:function(){console.log("closing"),b(),l()},children:"Cancel"}),(0,pe.jsx)(_.z,{variant:"link",colorScheme:"red",ml:3,onClick:function(){console.log("aaaaa"),function(e,n){0===e.level&&Y("delete",{id:e.id,file:e.file},n)}(r,c),b(),l()},children:"Delete node"})]})]})]})]})},Pe=t(67101),Ne=t(35255),De=t(56884),Ie=function(e){var n=e.setJustification,t=(e.setIndent,e.setFont,e.justification),r=(e.setPreviewNode,e.canUndo),i=e.canRedo,o=(e.resetPreviewNode,e.previousPreviewNode),l=e.nextPreviewNode;return(0,pe.jsxs)(g.k,{flex:"0 1 40px",pb:3,alignItems:"center",justifyContent:"space-between",pl:1,pr:1,children:[(0,pe.jsx)(g.k,{children:(0,pe.jsxs)(Pe.h,{isAttached:!0,children:[(0,pe.jsx)(f.u,{label:"Go backward",children:(0,pe.jsx)(p.h,{variant:"subtle",icon:(0,pe.jsx)(Ne.w,{}),"aria-label":"Previous node",disabled:!r,onClick:function(){return o()}})}),(0,pe.jsx)(f.u,{label:"Go forward",children:(0,pe.jsx)(p.h,{variant:"subtle",icon:(0,pe.jsx)(De.X,{}),"aria-label":"Next node",disabled:!i,onClick:function(){return l()}})})]})}),(0,pe.jsx)(g.k,{children:(0,pe.jsx)(f.u,{label:"Justify content",children:(0,pe.jsx)(p.h,{variant:"subtle","aria-label":"Justify content",icon:[(0,pe.jsx)(y.v9V,{},"justify"),(0,pe.jsx)(y.YSr,{},"left"),(0,pe.jsx)(y.RXA,{},"right"),(0,pe.jsx)(y.tr_,{},"center")][t],onClick:function(){return n((function(e){return(e+1)%4}))}})})})]})},Le=t(35528);function ze(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Ee(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ze(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ze(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Ze=function(e){var n,t=e.filter,r=e.setFilter,o=e.tagColors,l=(e.setTagColors,e.openContextMenu),s=e.previewNode;return s.tags&&null!==(null===s||void 0===s?void 0:s.tags[0])?(0,pe.jsx)(g.k,{mb:2,flexWrap:"wrap",children:null===s||void 0===s||null===(n=s.tags)||void 0===n?void 0:n.map((function(e){var n,s,c,a=null!==(n=t.tagsBlacklist)&&void 0!==n?n:[],u=null!==(s=t.tagsWhitelist)&&void 0!==s?s:[],d=a.includes(e),h=u.includes(e);return(0,pe.jsxs)(Le.Vp,{tabIndex:0,mr:2,mt:2,onContextMenu:function(n){n.preventDefault(),l(e,n)},cursor:"pointer",onClick:function(){r(d?function(n){return Ee(Ee({},n),{},{tagsBlacklist:n.tagsBlacklist.filter((function(n){return n!==e})),tagsWhitelist:[].concat((0,i.Z)(n.tagsWhitelist),[e])})}:h?function(n){return Ee(Ee({},n),{},{tagsWhitelist:n.tagsWhitelist.filter((function(n){return n!==e}))})}:function(n){return Ee(Ee({},n),{},{tagsBlacklist:[].concat((0,i.Z)(n.tagsBlacklist),[e])})})},size:"sm",variant:"outline",colorScheme:(null===(c=o[e])||void 0===c?void 0:c.replaceAll(/(.*?)\..*/g,"$1"))||void 0,children:[(0,pe.jsx)(Le.Sn,{children:e}),d?(0,pe.jsx)(Le.bq,{as:ne.t}):h?(0,pe.jsx)(Le.bq,{as:Q.O}):null]},e)}))}):null},Re=t(18835),Te=t.n(Re),Be=t(13816),Fe=t.n(Be),He=t(42728),Ae=t.n(He),Me=t(77890),We=t.n(Me),Ve=t(94986),Xe=t.n(Ve),_e=t(88541),Ue=t.n(_e),qe=t(71167),Ge=t.n(qe),Je=(t(85062),t(27431)),Qe=t.n(Je),Ke=t(49444),Ye=t(45170),$e=t(67273),en=t(29356),nn={".katex":{overflowX:"scroll"},h1:{color:"black",lineHeight:"1.2",fontSize:"20",fontWeight:"bold",marginBottom:3},h2:{fontSize:"18",marginBottom:2,color:"black"},h3:{fontSize:"16",fontWeight:"600 !important",marginBottom:".5em",color:"black"},h4:{fontSize:"14",fontWeight:"500 !important",marginBottom:".25em",fontStyle:"italic",color:"black"},ol:{paddingLeft:"5"},ul:{paddingLeft:"5"},p:{fontSize:"14",fontWeight:"500 !important",paddingBottom:".5em"},div:{hyphens:"auto !important"},".title":{textAlign:"center",marginBottom:".2em"},".subtitle":{textAlign:"center",fontSize:"medium",fontWeight:"bold",marginTop:0},".TODO":{color:"red.500"},".equationContainer":{display:"table",textAlign:"center",width:"100%"},".equation":{verticalAlign:"middle"},".equation-label":{display:"tableCell",textAlign:"right",verticalAlign:"middle"},".inlinetask":{padding:"10px",border:"2px solid gray",margin:"10px",background:"#ffffcc"},"#org-div-home-and-up":{textAlign:"right",fontSize:"70 % ",whiteSpace:"nowrap"},textarea:{overflowX:"auto"},".linenr":{fontSize:"smaller"},".org-info-js_info-navigation":{borderStyle:"none"},"#org-info-js_console-label":{fontSize:"10px",fontWeight:"bold",whiteSpace:"nowrap"},".org-info-js_search-highlight":{backgroundColor:"#ffff00",color:"#000000",fontWeight:"bold"},".org-svg":{width:"90%"},".DONE":{color:"green"},".priority":{fontFamily:"monospace",color:"orange"},".tag":{backgroundColor:"white",fontFamily:"monospace",padding:"2px",fontSize:"80%",fontWeight:"normal"},".timestamp":{color:"#bebebe"},".timestamp-kwd":{color:"#5f9ea0"},".org-right":{marginLeft:"auto",marginRight:"0px",textAlign:"right"},".org-left":{marginLeft:"0px",marginRight:"auto",textAlign:"left"},".org-center":{marginLeft:"auto",marginRight:"auto",textAlign:"center"},".underline":{textDecoration:"underline"},"#postamble p":{fontSize:"90%",margin:".2em"},"#preamble p":{fontSize:"90%",margin:".2em"},"p.verse":{marginLeft:"3%"},pre:{borderRadius:"3px",backgroundColor:"white",padding:"8pt",fontFamily:"monospace",overflow:"auto",margin:"1.2em"},"pre.src":{position:"relative",overflow:"auto"},"pre.src:before":{display:"none",position:"absolute",top:"-8px",right:"12px",padding:"3px",backgroundColor:"white"},"caption.t-above":{captionSide:"top"},"caption.t-bottom":{captionSide:"bottom"},"th.org-right":{textAlign:"center"},"th.org-left":{textAlign:"center"},"th.org-center":{textAlign:"center"},"td.org-right":{textAlign:"right"},"td.org-left":{textAlign:"left"},"td.org-center":{textAlign:"center"},".footpara":{display:"inline"},".footdef":{marginBottom:"1em"},".figure":{padding:"1em"},".figure p":{textAlign:"center"}},tn=nn,rn=t(25675),on=t(62520),ln=t.n(on),sn=function(e){var n=e.src,t=e.file,r=(0,m.useState)(null);r[0],r[1];if(n.replaceAll(/(http)?.*/g,"$1"))return console.log(n.replaceAll(/(http)?.*/g,"$1")),(0,pe.jsx)(rn.default,{layout:"responsive",loader:function(e){var n=e.src;return e.width,e.quality,"".concat(n)},src:n,alt:"",width:"100%",height:"100%"});var i=n.replaceAll(/file:/g,""),o=ln().dirname(t),l=ln().isAbsolute(i)||"~"===i.slice(0,1)?i:ln().join(o,i),s=encodeURIComponent(encodeURIComponent(l));return(0,pe.jsx)(rn.default,{layout:"responsive",loader:function(e){var n=e.src;e.width,e.quality;return"http://localhost:35901/img/".concat(n)},src:s,alt:"",width:"100%",height:"100%"})},cn=t(86658),an=["style"];function un(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function dn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?un(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):un(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var hn=function(e){var n=e.setSidebarHighlightedNode,t=e.setPreviewNode,r=e.nodeById,o=e.openContextMenu,s=e.href,c=e.children,u=(0,m.useContext)(en.N).highlightColor,d=Ut(u,(0,a.useTheme)()),h=(0,l.Z)((0,i.Z)(s.matchAll(/(.*?)\:(.*)/g))[0],3),g=(h[0],h[1],h[2]);return(0,pe.jsx)(X.x,{onMouseEnter:function(){return n(r[g])},onMouseLeave:function(){return n({})},tabIndex:0,display:"inline",overflow:"hidden",fontWeight:500,color:u,textDecoration:"underline",onContextMenu:function(e){e.preventDefault(),o(r[g],e)},onClick:function(){return t(r[g])},_hover:{textDecoration:"none",cursor:"pointer",bgColor:d+"22"},_focus:{outlineColor:u},children:c})},gn=function(e){var n=e.href,t=e.children,r=(0,m.useContext)(en.N).highlightColor;return(0,pe.jsxs)(Ke.r,{color:r,isExternal:!0,href:n,children:[t,(0,pe.jsx)(J.h,{mx:"1px",pb:"2px"})]})},fn=function e(n){var t,r=n.href,o=n.children,s=n.nodeById,c=n.setSidebarHighlightedNode,a=(n.previewNode,n.setPreviewNode),u=n.nodeByCite,d=n.openContextMenu,g=(0,m.useState)(null),f=g[0],p=g[1],x=(0,l.Z)((0,i.Z)(r.matchAll(/(.*?)\:(.*)/g))[0],3),j=(x[0],x[1]),b=x[2],v=(0,m.useState)(!1),y=v[0],C=v[1];if((0,m.useEffect)((function(){j.replaceAll(/(http)?.*/g,"$1")||f||y&&fetch("http://localhost:35901/file/".concat(N)).then((function(e){return e.text()})).then((function(e){if("error"===e);else{var n=D.processSync(e).result;p(n)}})).catch((function(e){return console.log(e),"Could not fetch the text for some reason, sorry!\n\n This can happen because you have an id with forward slashes (/) in it."}))}),[y,f]),j.replaceAll(/(http)?.*/g,"$1"))return(0,pe.jsx)(gn,{href:r,children:o});var O,w,k,S,P=function(e,n){if("id"===e)return n;if(e.includes("cite")){var t,r=null!==(t=u[n])&&void 0!==t&&t;return r?null!==r&&void 0!==r&&r.properties.FILELESS?"":null===r||void 0===r?void 0:r.id:""}return""}(j,b),N=encodeURIComponent(encodeURIComponent(null===(t=s[P])||void 0===t?void 0:t.file)),D=Te()().use(Fe()).use(Ae()).use(Ge()).use(Qe(),{createElement:m.createElement,components:{a:function(n){var t=n.children,r=n.href;return(0,pe.jsx)(e,{nodeByCite:u,setSidebarHighlightedNode:c,href:r,nodeById:s,setPreviewNode:a,openContextMenu:d,children:t})},img:function(e){var n,t=e.src;return(0,pe.jsx)(sn,{src:t,file:null===(n=s[P])||void 0===n?void 0:n.file})}}});return P?(0,pe.jsx)(pe.Fragment,{children:(0,pe.jsxs)(Ye.J2,{gutter:12,trigger:"hover",placement:"top-start",children:[(0,pe.jsx)(Ye.xo,{children:(0,pe.jsx)(h.xu,{display:"inline",onMouseEnter:function(){return C(!0)},onMouseLeave:function(){return C(!1)},children:(0,pe.jsx)(hn,{setSidebarHighlightedNode:c,setPreviewNode:a,nodeById:s,href:r,children:o,nodeByCite:u,openContextMenu:d},null!==(O=null===(w=s[P])||void 0===w?void 0:w.title)&&void 0!==O?O:P)})}),(0,pe.jsx)($e.h,{children:(0,pe.jsxs)(Ye.yk,{transform:"scale(1)",boxShadow:"xl",position:"relative",zIndex:"tooltip",onMouseEnter:function(){var e;c(null!==(e=s[P])&&void 0!==e?e:{})},onMouseLeave:function(){c({})},children:[(0,pe.jsx)(Ye.QH,{}),(0,pe.jsx)(Ye.b,{pb:5,fontSize:"xs",position:"relative",zIndex:"tooltip",transform:"scale(1)",width:"100%",children:(0,pe.jsx)(cn.$B,{autoHeight:!0,autoHeightMax:300,autoHide:!0,renderThumbVertical:function(e){var n=e.style,t=(0,te.Z)(e,an);return(0,pe.jsx)(h.xu,dn({style:dn(dn({},n),{},{borderRadius:0})},t))},children:(0,pe.jsx)(h.xu,{w:"100%",color:"black",px:3,sx:tn,children:f})})})]},null!==(k=null===(S=s[P])||void 0===S?void 0:S.title)&&void 0!==k?k:P)})]})}):(0,pe.jsx)(X.x,{display:"inline",color:"base.700",cursor:"not-allowed",children:o})},pn=function(e){var n=e.nodeById,t=e.setSidebarHighlightedNode,r=e.setPreviewNode,i=e.previewText,o=e.nodeByCite,l=e.previewNode,s=e.openContextMenu,c=Te()().use(Fe()).use(Xe()).use(Ue()).use(We()).use(Ae()).use(Ge()).use(Qe(),{createElement:m.createElement,components:{a:function(e){var i=e.children,l=e.href;return(0,pe.jsx)(fn,{nodeByCite:o,setSidebarHighlightedNode:t,href:"".concat(l),nodeById:n,setPreviewNode:r,openContextMenu:s,children:i})},img:function(e){var n=e.src;return(0,pe.jsx)(sn,{src:n,file:l.file})}}}),a=(0,m.useMemo)((function(){return c.processSync(i).result}),[i]);return(0,pe.jsx)(pe.Fragment,{children:a})},xn=function(e){var n=e.openContextMenu,t=e.setSidebarHighlightedNode,r=e.nodeById,i=e.nodeByCite,o=e.previewNode,l=e.setPreviewNode,s=(0,m.useState)(""),c=s[0],a=s[1],u=encodeURIComponent(encodeURIComponent(o.file));return(0,m.useEffect)((function(){fetch("http://localhost:35901/file/".concat(u)).then((function(e){return e.text()})).then((function(e){"error"!==e&&a(e)})).catch((function(e){return console.log(e),"Could not fetch the text for some reason, sorry!\n\n This can happen because you have an id with forward slashes (/) in it."}))}),[o.id]),(0,pe.jsx)(pe.Fragment,{children:(null===o||void 0===o?void 0:o.id)&&(0,pe.jsx)(pn,{nodeById:r,previewNode:o,setPreviewNode:l,previewText:c,nodeByCite:i,setSidebarHighlightedNode:t,openContextMenu:n})})},jn=function(e){var n,t=e.previewNode,r=e.setPreviewNode,i=e.setSidebarHighlightedNode,o=e.nodeById,s=e.linksByNodeId,c=e.nodeByCite,a=e.openContextMenu,u=(null!==(n=s[null===t||void 0===t?void 0:t.id])&&void 0!==n?n:[]).filter((function(e){var n=_t(e),r=(0,l.Z)(n,2),i=r[0];r[1];return i!==(null===t||void 0===t?void 0:t.id)})).map((function(e){return e.source}));return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(M.X,{pt:4,children:"Backlinks (".concat(u.length,")")}),(0,pe.jsx)(V.gC,{py:2,spacing:3,alignItems:"start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(null===t||void 0===t?void 0:t.id)&&u.map((function(e){var n,t,l;n=null===(t=o[e])||void 0===t?void 0:t.title;return(0,pe.jsx)(h.xu,{overflow:"hidden",p:3,bg:"gray.300",width:"100%",children:(0,pe.jsx)(fn,{nodeByCite:c,setSidebarHighlightedNode:i,href:"id:".concat(e),nodeById:o,setPreviewNode:r,openContextMenu:a,children:null===(l=o[e])||void 0===l?void 0:l.title})},e)}))})]})};function bn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function vn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?bn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):bn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var mn=function(e){var n=e.setPreviewNode,t=e.justificationList,r=e.justification,i=e.previewNode,o=e.nodeById,l=e.nodeByCite,s=e.setSidebarHighlightedNode,c=e.linksByNodeId,a=e.openContextMenu;return(0,pe.jsx)(h.xu,{pr:8,height:"100%",className:"org",sx:vn(vn({},nn),{},{textAlign:t[r]}),children:(null===i||void 0===i?void 0:i.id)&&(0,pe.jsxs)(g.k,{height:"100%",flexDirection:"column",justifyContent:"space-between",children:[(0,pe.jsx)(xn,{setPreviewNode:n,previewNode:i,nodeById:o,nodeByCite:l,setSidebarHighlightedNode:s,openContextMenu:a}),(0,pe.jsx)(jn,{setPreviewNode:n,previewNode:i,nodeById:o,linksByNodeId:c,nodeByCite:l,setSidebarHighlightedNode:s,openContextMenu:a})]})})},yn=t(29119);function Cn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function On(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Cn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Cn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}function wn(e,n){var t,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=kn(e,null!==(t=r.storage)&&void 0!==t?t:localStorage),o=i.get(),l=void 0!==o?o:n,s=null!=o&&"object"===typeof o&&!1===Array.isArray(o)?On(On({},n),o):l;s!==o&&i.update(s);var c=(0,m.useState)(s),a=c[0],u=c[1];(0,m.useEffect)((function(){a!==s&&u(s)}),[e]);var d=function(e){e instanceof Function?u((function(n){var t=e(n);return i.update(t),t})):(u(e),i.update(e))};return[a,d]}function kn(e,n){return{get:function(){var t=n.getItem(e);if(t&&"undefined"!==t)return JSON.parse(t)},update:function(t){n.setItem(e,JSON.stringify(t))},remove:function(){n.removeItem(e)}}}var Sn=["style"];function Pn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Nn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Pn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Pn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Dn=function(e){var n=e.isOpen,t=e.onOpen,r=e.onClose,i=e.previewNode,o=e.setPreviewNode,s=e.nodeById,c=e.linksByNodeId,a=e.nodeByCite,u=e.setSidebarHighlightedNode,d=e.canUndo,f=e.canRedo,x=e.resetPreviewNode,j=e.previousPreviewNode,b=e.nextPreviewNode,v=e.openContextMenu,C=(e.scope,e.setScope,e.windowWidth),O=e.filter,w=e.setFilter,k=e.tagColors,S=e.setTagColors,P=((0,m.useContext)(en.N).highlightColor,(0,m.useState)()),N=P[0],D=P[1],I=wn("sidebarWidth",400),L=(0,l.Z)(I,2),z=L[0],E=L[1];(0,m.useEffect)((function(){null!==i&&void 0!==i&&i.id?(t(),D(i)):r()}),[null===i||void 0===i?void 0:i.id]);var Z=(0,m.useState)(1),R=Z[0],T=Z[1],B=(0,m.useState)("sans serif"),F=(B[0],B[1]),H=(0,m.useState)(0),A=(H[0],H[1]);return(0,pe.jsx)(Ce,{animateOpacity:!1,dimension:"width",in:n,unmountOnExit:!0,startingSize:0,style:{height:"100vh"},children:(0,pe.jsx)(yn.e,{size:{height:"100vh",width:z},onResizeStop:function(e,n,t,r){E((function(e){return e+r.width}))},enable:{top:!1,right:!1,bottom:!1,left:!0,topRight:!1,bottomRight:!1,bottomLeft:!1,topLeft:!1},minWidth:"220px",maxWidth:C-200,children:(0,pe.jsxs)(g.k,{flexDir:"column",h:"100vh",pl:2,color:"black",bg:"alt.100",width:"100%",children:[(0,pe.jsxs)(g.k,{pl:4,alignItems:"center",color:"black",width:"100%",children:[(0,pe.jsx)(g.k,{flexShrink:0,children:(0,pe.jsx)(y.UY3,{onContextMenu:function(e){e.preventDefault(),v(i,e)}})}),(0,pe.jsx)(g.k,{whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",onContextMenu:function(e){e.preventDefault(),v(i,e)},children:(0,pe.jsx)(M.X,{pl:2,whiteSpace:"nowrap",textOverflow:"ellipsis",overflow:"hidden",lineHeight:1,size:"sm",fontWeight:600,color:"gray.800",children:null===N||void 0===N?void 0:N.title})}),(0,pe.jsx)(g.k,{flexDir:"row",ml:"auto",children:(0,pe.jsx)(p.h,{m:1,icon:(0,pe.jsx)(y.T41,{}),"aria-label":"Options",variant:"subtle",onClick:function(e){v(i,e,{left:void 0,top:12,right:20-C,bottom:void 0})}})})]}),(0,pe.jsx)(Ie,{setJustification:T,setIndent:A,setFont:F,justification:R,setPreviewNode:o,canUndo:d,canRedo:f,resetPreviewNode:x,previousPreviewNode:j,nextPreviewNode:b}),(0,pe.jsx)(cn.$B,{autoHide:!0,renderThumbVertical:function(e){var n=e.style,t=(0,te.Z)(e,Sn);return(0,pe.jsx)(h.xu,Nn({style:Nn(Nn({},n),{},{borderRadius:0})},t))},children:(0,pe.jsxs)(V.gC,{flexGrow:1,alignItems:"left",bg:"alt.100",paddingLeft:4,children:[(0,pe.jsx)(Ze,{filter:O,setFilter:w,tagColors:k,setTagColors:S,openContextMenu:v,previewNode:i}),(0,pe.jsx)(mn,{setPreviewNode:o,previewNode:i,nodeById:s,nodeByCite:a,setSidebarHighlightedNode:u,justification:R,justificationList:["justify","start","end","center"],linksByNodeId:c,openContextMenu:v})]})})]})})})},In=t(93924),Ln=t(83986),zn=t(48931),En=t(56769),Zn=t(6569),Rn=t(88134),Tn=t(47647);function Bn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Fn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Bn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Bn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Hn=function(e){var n=e.filter,t=e.setFilter,r=e.tags,i=e.highlightColor,l=e.mode,s=r.map((function(e){return{value:e,label:e}})),c="blacklist"===l?"tagsBlacklist":"tagsWhitelist",a=(0,m.useState)(n[c].map((function(e){return{value:e,label:e}}))),u=a[0],d=a[1];return(0,pe.jsx)(Tn.CUIAutoComplete,{labelStyleProps:{fontWeight:300,fontSize:14},items:s,label:"Add tag to "+l,placeholder:" ",onCreateItem:function(e){return null},disableCreateItem:!0,selectedItems:u,onSelectedItemsChange:function(e){e.selectedItems&&(d(e.selectedItems),t(Fn(Fn({},n),{},(0,o.Z)({},c,e.selectedItems.map((function(e){return e.value}))))))},listItemStyleProps:{overflow:"hidden"},highlightItemBg:"gray.400",toggleButtonStyleProps:{variant:"outline"},inputStyleProps:{mt:2,height:8,focusBorderColor:i,color:"gray.800",borderColor:"gray.500"},tagStyleProps:{justifyContent:"flex-start",fontSize:10,borderColor:i,borderWidth:1,borderRadius:"md",color:i,bg:"",height:4,mb:2},hideToggleButton:!0,itemRenderer:function(e){return e.label}})};function An(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Mn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?An(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):An(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Wn=function(e){var n=e.colorList,t=e.tagColors,r=e.setTagColors,i=e.highlightColor,l=e.tags.map((function(e){return{value:e,label:e}})),s=(0,m.useState)(Object.keys(t).map((function(e){return{value:e,label:e}}))),c=s[0],a=s[1];return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(Tn.CUIAutoComplete,{items:l,labelStyleProps:{fontWeight:300,fontSize:14},label:"Add tag to color",placeholder:" ",disableCreateItem:!0,selectedItems:c,onSelectedItemsChange:function(e){e.selectedItems&&(a(Array.from(new Set(e.selectedItems))),r(Object.fromEntries(Array.from(new Set(e.selectedItems)).map((function(e){var n;return[e.label,null!==(n=t[e.label])&&void 0!==n?n:"gray.600"]})))))},listItemStyleProps:{overflow:"hidden"},highlightItemBg:"gray.400",toggleButtonStyleProps:{variant:"outline"},inputStyleProps:{height:8,focusBorderColor:i,color:"gray.800",borderColor:"gray.500"},tagStyleProps:{display:"none",rounded:"full",bg:i,height:8,paddingLeft:4,fontWeight:"bold"},hideToggleButton:!0,itemRenderer:function(e){return e.label}}),(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:Object.keys(t).map((function(e){return(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",width:"100%",pl:2,children:[(0,pe.jsx)(h.xu,{width:"100%",children:(0,pe.jsx)(X.x,{children:e})}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",children:(0,pe.jsx)(h.xu,{bgColor:t[e],borderRadius:"sm",height:6,width:6})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsx)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:n.map((function(n){return(0,pe.jsx)(A.sN,{onClick:function(){return r(Mn(Mn({},t),{},(0,o.Z)({},e,n)))},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:n,borderRadius:"sm",height:6,width:6})},n)}))})]})]}),(0,pe.jsx)(p.h,{"aria-label":"Delete tag color",variant:"ghost",icon:(0,pe.jsx)(K.p,{}),onClick:function(){r(Object.fromEntries(Array.from(new Set(c)).map((function(e){var n;return[e.label,null!==(n=t[e.label])&&void 0!==n?n:"gray.600"]})))),a(c.filter((function(n){return n.value!==e})))}})]},e)}))})]})},Vn=t(24682),Xn=t(24189),_n=function(e){var n=e.infoText;return(0,pe.jsx)(h.xu,{paddingLeft:"1",children:(0,pe.jsx)(f.u,{label:n,placement:"top",color:"gray.100",bg:"gray.800",hasArrow:!0,children:(0,pe.jsx)(Xn.h,{})})})},Un=["min","max","step","value"],qn=function(e){var n=e.min,t=void 0===n?0:n,r=e.max,i=void 0===r?10:r,o=e.step,l=void 0===o?.1:o,s=e.value,c=void 0===s?1:s,a=(0,te.Z)(e,Un),u=a.onChange,d=a.label,g=a.infoText,p=(0,m.useContext)(en.N).highlightColor;return(0,pe.jsxs)(h.xu,{pt:1,pb:2,children:[(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"flex-end",mb:2,children:[(0,pe.jsx)(X.x,{children:d}),g&&(0,pe.jsx)(_n,{infoText:g})]}),(0,pe.jsxs)(Vn.iR,{value:c,onChange:u,min:t,max:i,step:l,children:[(0,pe.jsx)(Vn.Uj,{children:(0,pe.jsx)(Vn.Ms,{})}),(0,pe.jsx)(f.u,{bg:p,label:c.toFixed(1),children:(0,pe.jsx)(Vn.gs,{bg:"white"})})]})]},d)};function Gn(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Jn(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Gn(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Gn(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Qn=function(e){var n=e.filter,t=e.setFilter,r=e.local,i=e.setLocal,o=e.tagColors,l=e.setTagColors,s=e.highlightColor,c=e.colorList,a=e.tags;return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:7,color:"gray.800",children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Link children to"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",size:"sm",children:function(){switch(n.parent){case"parent":return(0,pe.jsx)(X.x,{children:"File"});case"heading":return(0,pe.jsx)(X.x,{children:"Heading"});default:return(0,pe.jsx)(X.x,{children:"Nothing"})}}()}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t((function(e){return Jn(Jn({},e),{},{parent:""})}))},children:"Nothing"}),(0,pe.jsx)(A.sN,{onClick:function(){return t((function(e){return Jn(Jn({},e),{},{parent:"parent"})}))},children:"Parent file node"}),(0,pe.jsx)(A.sN,{onClick:function(){return t((function(e){return Jn(Jn({},e),{},{parent:"heading"})}))},children:"Next highest heading node"})]})]})]})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Orphans"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return Jn(Jn({},e),{},{orphans:!e.orphans})}))},isChecked:n.orphans})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Dailies"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return Jn(Jn({},e),{},{dailies:!e.dailies})}))},isChecked:n.dailies})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Org-noter pages"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return Jn(Jn({},e),{},{noter:!e.noter})}))},isChecked:n.noter})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Citations without note files"}),(0,pe.jsx)(Rn.r,{onChange:function(){t(Jn(Jn({},n),{},{filelessCites:!n.filelessCites}))},isChecked:n.filelessCites})]}),(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Non-existent nodes"}),(0,pe.jsx)(Rn.r,{onChange:function(){l(Jn(Jn({},o),{},{bad:"white"})),t(Jn(Jn({},n),{},{bad:!n.bad}))},isChecked:n.bad})]}),(0,pe.jsx)(qn,{label:"Number of neighbors in local graph",value:r.neighbors,onChange:function(e){return i(Jn(Jn({},r),{},{neighbors:e}))},min:1,max:5,step:1})]}),(0,pe.jsxs)(En.UQ,{padding:0,allowToggle:!0,allowMultiple:!0,paddingLeft:3,children:[(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:["Tag filters",(0,pe.jsx)(En.XE,{})]}),(0,pe.jsxs)(En.Hk,{pr:0,mr:0,children:[(0,pe.jsx)(Hn,{highlightColor:s,filter:n,setFilter:t,tags:a,mode:"blacklist"}),(0,pe.jsx)(Hn,{highlightColor:s,filter:n,setFilter:t,tags:a,mode:"whitelist"})]})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:["Tag colors",(0,pe.jsx)(En.XE,{})]}),(0,pe.jsx)(En.Hk,{pr:0,mr:0,children:(0,pe.jsx)(Wn,{tags:a,colorList:c,tagColors:o,setTagColors:l,highlightColor:s})})]})]})]})},Kn=t(15267),Yn=function(e){var n=e.value,t=e.onChange,r=e.label,i=e.infoText,o=e.children;return(0,pe.jsxs)(h.xu,{paddingTop:2,children:[(0,pe.jsxs)(h.xu,{display:"flex",justifyContent:"space-between",paddingBottom:2,children:[(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"center",children:[(0,pe.jsx)(X.x,{children:r}),i&&(0,pe.jsx)(_n,{infoText:i})]}),(0,pe.jsx)(Rn.r,{isChecked:!!n,onChange:t})]}),(0,pe.jsx)(Kn.U,{in:!!n,animateOpacity:!0,children:(0,pe.jsx)(h.xu,{paddingLeft:4,paddingTop:2,paddingBottom:2,children:o})})]},r)};function $n(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function et(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?$n(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):$n(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var nt=function(e){var n=e.physics,t=e.setPhysics,r=(0,m.useCallback)((function(e,n,r){t((function(t){return et(et({},t),{},(0,o.Z)({},n,e/r))}))}),[]);return(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:7,color:"gray.800",children:[(0,pe.jsxs)(Yn,{label:"Gravity",value:n.gravityOn,onChange:function(){return t(et(et({},n),{},{gravityOn:!n.gravityOn}))},children:[(0,pe.jsxs)(g.k,{justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Also in local"}),(0,pe.jsx)(Rn.r,{onChange:function(){t((function(e){return et(et({},e),{},{gravityLocal:!e.gravityLocal})}))},isChecked:n.gravityLocal})]}),(0,pe.jsx)(qn,{label:"Strength",value:10*n.gravity,onChange:function(e){return r(e,"gravity",10)}})]}),(0,pe.jsx)(qn,{value:-n.charge/100,onChange:function(e){return r(e,"charge",-.01)},label:"Repulsive Force"}),(0,pe.jsx)(Yn,{label:"Collision",infoText:"Perfomance sap, disable if slow",value:n.collision,onChange:function(){return t(et(et({},n),{},{collision:!n.collision}))},children:(0,pe.jsx)(qn,{value:n.collisionStrength/5,onChange:function(e){return r(e,"collisionStrength",.2)},label:"Collision Radius",infoText:"Easy with this one, high values can lead to a real jiggly mess"})}),(0,pe.jsx)(qn,{value:5*n.linkStrength,onChange:function(e){return r(e,"linkStrength",5)},label:"Link Force"}),(0,pe.jsx)(qn,{label:"Link Iterations",value:n.linkIts,onChange:function(e){return r(e,"linkIts",1)},min:0,max:6,step:1,infoText:"How many links down the line the physics of a single node affects (Slow)"}),(0,pe.jsx)(qn,{label:"Viscosity",value:10*n.velocityDecay,onChange:function(e){return r(e,"velocityDecay",10)}})]}),(0,pe.jsx)(h.xu,{children:(0,pe.jsx)(En.UQ,{paddingLeft:3,allowToggle:!0,children:(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(X.x,{children:"Advanced"}),(0,pe.jsx)(En.XE,{marginRight:2})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:3,color:"gray.800",children:[(0,pe.jsx)(qn,{label:"Stabilization rate",value:50*n.alphaDecay,onChange:function(e){return r(e,"alphaDecay",50)}}),(0,pe.jsx)(Yn,{label:"Center nodes",value:n.centering,onChange:function(){return t(et(et({},n),{},{centering:!n.centering}))},infoText:"Keeps the nodes in the center of the viewport. If disabled you can drag the nodes anywhere you want.",children:(0,pe.jsx)(qn,{label:"Centering Strength",value:n.centeringStrength,max:2,step:.01,onChange:function(e){return r(e,"centeringStrength",1)}})})]})})]})})})]})},tt=t(46049);function rt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function it(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?rt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):rt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var ot=function(e){var n=e.visuals,t=e.setVisuals;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsx)(h.xu,{children:(0,pe.jsx)(Yn,{label:"Highlight",onChange:function(){return t((function(e){return it(it({},e),{},{highlight:!e.highlight})}))},value:n.highlight,children:(0,pe.jsxs)(V.gC,{spacing:1,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.400"}),align:"stretch",paddingLeft:0,children:[(0,pe.jsx)(qn,{label:"Highlight Link Thickness",value:n.highlightLinkSize,onChange:function(e){return t((function(n){return it(it({},n),{},{highlightLinkSize:e})}))}}),(0,pe.jsx)(qn,{label:"Highlight Node Size",value:n.highlightNodeSize,onChange:function(e){return t((function(n){return it(it({},n),{},{highlightNodeSize:e})}))}}),(0,pe.jsx)(qn,{min:0,max:1,label:"Highlight Fade",value:n.highlightFade,onChange:function(e){return t((function(n){return it(it({},n),{},{highlightFade:e})}))}}),(0,pe.jsxs)(Yn,{label:"Highlight Animation",onChange:function(){t((function(e){return it(it({},e),{},{highlightAnim:!e.highlightAnim})}))},value:n.highlightAnim,children:[(0,pe.jsx)(qn,{label:"Animation speed",onChange:function(e){return t((function(n){return it(it({},n),{},{animationSpeed:e})}))},value:n.animationSpeed,infoText:"Slower speed has a chance of being buggy",min:50,max:1e3,step:10}),(0,pe.jsx)(tt.Ph,{placeholder:n.algorithmName,onChange:function(e){t((function(n){return it(it({},n),{},{algorithmName:e.target.value})}))},children:n.algorithmOptions.map((function(e){return(0,pe.jsx)("option",{value:e,children:e},e)}))})]})]})})})})},lt=t(67546),st=t(93441);function ct(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function at(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ct(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ct(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var ut=function(e){var n=e.label,t=e.colorList,r=e.value,i=e.visValue,l=e.setVisuals,s=e.noEmpty,c=(0,m.useCallback)((function(e){return l((function(n){return at(at({},n),{},(0,o.Z)({},r,e))}))}),[]);return(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:n}),(0,pe.jsxs)(Ye.J2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(Ye.xo,{children:(0,pe.jsx)(_.z,{colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(h.xu,{bgColor:i,borderRadius:"sm",height:6,width:6})})}),(0,pe.jsx)($e.h,{children:(0,pe.jsx)(Ye.yk,{zIndex:"tooltip",maxW:36,position:"relative",children:(0,pe.jsxs)(g.k,{flexWrap:"wrap",bgColor:"gray.200",children:[!s&&(0,pe.jsx)(h.xu,{onClick:function(){return c("")},justifyContent:"space-between",alignItems:"center",display:"flex",m:1,children:(0,pe.jsx)(h.xu,{height:6,width:6,borderColor:"gray.600",borderRadius:"xl",borderWidth:1})}),t.map((function(e){return(0,pe.jsx)(h.xu,{m:1,onClick:function(){return c(e)},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"xl",height:6,width:6})},e)}))]})})})]})]})};function dt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function ht(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?dt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):dt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var gt=function(e){var n=e.visuals,t=e.setVisualsCallback,r=e.highlightColor,o=e.setHighlightColor;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Nodes"}),(0,pe.jsx)(f.u,{label:"Shuffle node colors",children:(0,pe.jsx)(p.h,{"aria-label":"Shuffle node colors",size:"sm",icon:(0,pe.jsx)(lt.n,{}),variant:"ghost",onClick:function(){var e,r=null!==(e=n.nodeColorScheme)&&void 0!==e?e:[];t(ht(ht({},n),{},{nodeColorScheme:r.map((function(e){return[Math.random(),e]})).sort((function(e,n){return(0,l.Z)(e,1)[0]-(0,l.Z)(n,1)[0]})).map((function(e){var n=(0,l.Z)(e,2);n[0];return n[1]}))}))}})}),(0,pe.jsx)(f.u,{label:"Cycle node colors",children:(0,pe.jsx)(p.h,{"aria-label":"Shift node colors",icon:(0,pe.jsx)(st.L,{}),size:"sm",variant:"ghost",onClick:function(){var e,r=null!==(e=n.nodeColorScheme)&&void 0!==e?e:[];t(ht(ht({},n),{},{nodeColorScheme:[].concat((0,i.Z)(r.slice(1,r.length)),[r[0]])}))}})}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",closeOnSelect:!1,matchWidth:!0,children:[(0,pe.jsx)(A.j2,{width:20,as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(g.k,{height:6,width:6,flexDirection:"column",flexWrap:"wrap",children:n.nodeColorScheme.map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px",borderRadius:"2xl"},e)}))})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsx)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:(0,pe.jsx)(A.__,{width:500,type:"checkbox",defaultValue:n.nodeColorScheme,onChange:function(e){e.length&&t(ht(ht({},n),{},{nodeColorScheme:e}))},children:H.map((function(e){return(0,pe.jsx)(A.ii,{isChecked:n.nodeColorScheme.some((function(n){return n===e})),value:e,isDisabled:1===n.nodeColorScheme.length&&n.nodeColorScheme[0]===e,children:(0,pe.jsx)(h.xu,{justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"sm",height:6,width:6})})},e)}))})})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Links"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(h.xu,{children:n.linkColorScheme?(0,pe.jsx)(h.xu,{bgColor:n.linkColorScheme,borderRadius:"sm",height:6,width:6}):(0,pe.jsx)(g.k,{height:6,width:6,flexDirection:"column",flexWrap:"wrap",children:n.nodeColorScheme.map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px",borderRadius:"2xl"},e)}))})})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(ht(ht({},n),{},{linkColorScheme:""}))},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(g.k,{height:6,width:6,flexDirection:"column",flexWrap:"wrap",children:n.nodeColorScheme.map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px",borderRadius:"2xl"},e)}))})}),H.map((function(e){return(0,pe.jsx)(A.sN,{onClick:function(){return t(ht(ht({},n),{},{linkColorScheme:e}))},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"sm",height:6,width:6})},e)}))]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Accent"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:(0,pe.jsx)(h.xu,{bgColor:r,borderRadius:"sm",height:6,width:6})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsx)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:H.map((function(e){return(0,pe.jsx)(A.sN,{onClick:function(){return o(e)},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{bgColor:e,borderRadius:"sm",height:6,width:6})},e)}))})]})]})]}),(0,pe.jsx)(ut,{colorList:H,label:"Link highlight",setVisuals:t,value:"linkHighlight",visValue:n.linkHighlight}),(0,pe.jsx)(ut,{colorList:H,label:"Node highlight",setVisuals:t,value:"nodeHighlight",visValue:n.nodeHighlight}),(0,pe.jsx)(ut,{colorList:H,label:"Background",setVisuals:t,value:"backgroundColor",visValue:n.backgroundColor}),(0,pe.jsx)(ut,{colorList:H,label:"Emacs node",setVisuals:t,value:"emacsNodeColor",visValue:n.emacsNodeColor})]})})};function ft(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function pt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?ft(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):ft(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var xt=function(e){var n=e.visuals,t=e.setVisuals,r=e.threeDim;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(qn,{label:"Node size",value:n.nodeRel,onChange:function(e){return t(pt(pt({},n),{},{nodeRel:e}))}}),(0,pe.jsx)(qn,{label:"Node connections size scale",value:n.nodeSizeLinks,min:0,max:2,onChange:function(e){return t(pt(pt({},n),{},{nodeSizeLinks:e}))}}),(0,pe.jsx)(qn,{label:"Node zoom invariance",value:n.nodeZoomSize,min:0,max:2,infoText:"How much the graph will try to keep the nodesize consistent across zoom scales. 0 is no consistency, node will always be their true size, 1 is linear, 2 is quadratic.",onChange:function(e){return t((function(n){return pt(pt({},n),{},{nodeZoomSize:e})}))}}),r&&(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(qn,{label:"Node opacity",value:n.nodeOpacity,min:0,max:1,onChange:function(e){return t(pt(pt({},n),{},{nodeOpacity:e}))}}),(0,pe.jsx)(qn,{label:"Node resolution",value:n.nodeResolution,min:5,max:32,step:1,onChange:function(e){return t(pt(pt({},n),{},{nodeResolution:e}))}})]}),(0,pe.jsx)(qn,{label:"Link width",value:n.linkWidth,onChange:function(e){return t(pt(pt({},n),{},{linkWidth:e}))}}),r&&(0,pe.jsx)(qn,{label:"Link opacity",min:0,max:1,value:n.linkOpacity,onChange:function(e){return t(pt(pt({},n),{},{linkOpacity:e}))}}),(0,pe.jsxs)(Yn,{label:"Link arrows",value:n.arrows,onChange:function(){return t(pt(pt({},n),{},{arrows:!n.arrows}))},children:[(0,pe.jsx)(qn,{label:"Arrow size",value:n.arrowsLength/10,onChange:function(e){return t(pt(pt({},n),{},{arrowsLength:10*e}))}}),(0,pe.jsx)(qn,{label:"Arrow Position",value:n.arrowsPos,min:0,max:1,step:.01,onChange:function(e){return t(pt(pt({},n),{},{arrowsPos:e}))}}),(0,pe.jsx)(ut,{colorList:H,label:"Arrow Color",setVisuals:t,value:"arrowsColor",visValue:n.arrowsColor},"arrow")]}),(0,pe.jsxs)(Yn,{label:"Directional Particles",value:n.particles,onChange:function(){return t(pt(pt({},n),{},{particles:!n.particles}))},children:[(0,pe.jsx)(qn,{label:"Particle Number",value:n.particlesNumber,max:5,step:1,onChange:function(e){return t(pt(pt({},n),{},{particlesNumber:e}))}}),(0,pe.jsx)(qn,{label:"Particle Size",value:n.particlesWidth,onChange:function(e){return t(pt(pt({},n),{},{particlesWidth:e}))}})]})]})})};function jt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function bt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?jt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):jt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var vt=function(e){var n=e.visuals,t=e.setVisuals;return(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.400"}),align:"stretch",color:"gray.800",children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Show labels"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:n.labels?n.labels<2?"On Highlight":"Always":"Never"}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:0}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:1}))},children:"On Highlight"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:2}))},children:"Always"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(bt(bt({},n),{},{labels:3}))},children:"Always (even in 3D)"})]})]})]})]}),(0,pe.jsxs)(Kn.U,{in:n.labels>1,animateOpacity:!0,children:[(0,pe.jsx)(h.xu,{paddingTop:2,children:(0,pe.jsx)(qn,{label:"Label Appearance Scale",value:2*n.labelScale,onChange:function(e){return t(bt(bt({},n),{},{labelScale:e/2}))}})}),(0,pe.jsxs)(h.xu,{paddingTop:2,children:[(0,pe.jsx)(qn,{label:"Label dynamicity",infoText:"By default, labels of nodes with more links will appear earlier than those with fewer. This slider changes the strength of this effect, put it at zero to disable it.",value:n.labelDynamicStrength,min:0,max:1,step:.05,onChange:function(e){return t((function(n){return bt(bt({},n),{},{labelDynamicStrength:e})}))}}),(0,pe.jsx)(Kn.U,{in:n.labelDynamicStrength>0,children:(0,pe.jsx)(qn,{label:"Dynamic zoom degree cap",infoText:"By default, labels of nodes with more links will appear earlier than those with fewer. This slider changes the strength of this effect, put it at zero to disable it.",value:n.labelDynamicDegree,min:1,max:15,step:1,onChange:function(e){return t((function(n){return bt(bt({},n),{},{labelDynamicDegree:e})}))}})})]})]}),(0,pe.jsx)(ut,{colorList:H,label:"Text",setVisuals:t,value:"labelTextColor",visValue:n.labelTextColor}),(0,pe.jsxs)(h.xu,{children:[(0,pe.jsx)(ut,{colorList:H,label:"Background",setVisuals:t,value:"labelBackgroundColor",visValue:n.labelBackgroundColor}),(0,pe.jsx)(Kn.U,{in:!!n.labelBackgroundColor,animateOpacity:!0,children:(0,pe.jsx)(h.xu,{paddingTop:2,children:(0,pe.jsx)(qn,{label:"Background opacity",value:n.labelBackgroundOpacity,onChange:function(e){console.log(n.labelBackgroundOpacity),t(bt(bt({},n),{},{labelBackgroundOpacity:e}))},min:0,max:1,step:.01})})})]}),(0,pe.jsx)(qn,{label:"Label font size",value:n.labelFontSize,min:5,max:20,step:.5,onChange:function(e){return t(bt(bt({},n),{},{labelFontSize:e}))}}),(0,pe.jsx)(qn,{label:"Max. label characters",value:n.labelLength,min:10,max:100,step:1,onChange:function(e){return t(bt(bt({},n),{},{labelLength:e}))}}),(0,pe.jsx)(qn,{label:"Max. label line length",value:n.labelWordWrap,min:10,max:100,step:1,onChange:function(e){return t(bt(bt({},n),{},{labelWordWrap:e}))}}),(0,pe.jsx)(qn,{label:"Space between label lines",value:n.labelLineSpace,min:.2,max:3,step:.1,onChange:function(e){return t(bt(bt({},n),{},{labelLineSpace:e}))}})]})};function mt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function yt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?mt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):mt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Ct=function(e){var n=e.visuals,t=e.setVisuals;return(0,pe.jsx)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",color:"gray.800",children:(0,pe.jsxs)(h.xu,{children:[(0,pe.jsxs)(Yn,{label:"Dash cite links",infoText:"Add dashes to citation links made with org-roam-bibtex",value:n.citeDashes,onChange:function(){return t(yt(yt({},n),{},{citeDashes:!n.citeDashes}))},children:[(0,pe.jsx)(qn,{label:"Dash length",value:n.citeDashLength/10,onChange:function(e){return t(yt(yt({},n),{},{citeDashLength:10*e}))}}),(0,pe.jsx)(qn,{label:"Gap length",value:n.citeGapLength/5,onChange:function(e){return t(yt(yt({},n),{},{citeGapLength:5*e}))}})]}),(0,pe.jsx)(ut,{colorList:H,label:"Citation node color",setVisuals:t,value:"citeNodeColor",visValue:n.citeNodeColor}),(0,pe.jsx)(ut,{colorList:H,label:"Citation link color",setVisuals:t,value:"citeLinkColor",visValue:n.citeLinkColor}),(0,pe.jsx)(ut,{colorList:H,label:"Reference link highlight",setVisuals:t,value:"citeLinkHighlightColor",visValue:n.citeLinkHighlightColor}),(0,pe.jsxs)(Yn,{label:"Dash ref links",infoText:"Add dashes to citation links, whose target has a note, made with org-roam-bibtex",value:n.refDashes,onChange:function(){return t(yt(yt({},n),{},{refDashes:!n.refDashes}))},children:[(0,pe.jsx)(qn,{label:"Dash length",value:n.refDashLength/10,onChange:function(e){return t(yt(yt({},n),{},{refDashLength:10*e}))}}),(0,pe.jsx)(qn,{label:"Gap length",value:n.refGapLength/5,onChange:function(e){return t(yt(yt({},n),{},{refGapLength:5*e}))}})]}),(0,pe.jsx)(ut,{colorList:H,label:"Reference node color",setVisuals:t,value:"refNodeColor",visValue:n.refNodeColor}),(0,pe.jsx)(ut,{colorList:H,label:"Reference link color",setVisuals:t,value:"refLinkColor",visValue:n.refLinkColor}),(0,pe.jsx)(ut,{colorList:H,label:"Reference link highlight",setVisuals:t,value:"refLinkHighlightColor",visValue:n.refLinkHighlightColor})]})})},Ot=t(67690),wt=function(){var e=(0,m.useContext)(en.N),n=e.emacsTheme,t=e.setEmacsTheme;e.highlightColor;return(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",pl:7,pr:2,children:[(0,pe.jsx)(X.x,{children:"Theme"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"bottom",closeOnSelect:!1,children:[(0,pe.jsx)(A.j2,{as:_.z,colorScheme:"",color:"black",rightIcon:(0,pe.jsx)(Zn.v,{}),children:n[0]}),(0,pe.jsxs)(A.qy,{minW:10,zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return""},justifyContent:"space-between",alignItems:"center",display:"flex",children:(0,pe.jsx)(h.xu,{height:6,width:6})}),Object.keys(Ot.n).map((function(e,n){return(0,pe.jsxs)(A.sN,{onClick:function(){return t([e,Ot.n[e]])},justifyContent:"space-between",alignItems:"center",display:"flex",children:[(0,pe.jsx)(X.x,{children:e}),(0,pe.jsx)(g.k,{height:6,width:20,flexDirection:"column",flexWrap:"wrap",children:Object.values(Ot.n[e]).map((function(e){return(0,pe.jsx)(h.xu,{bgColor:e,flex:"1 1 8px"},e)}))})]},e)}))]})]})]})},kt=function(e){var n=e.visuals,t=e.setVisuals,r=e.highlightColor,i=e.setHighlightColor,o=e.threeDim,l=(0,m.useCallback)((function(e){return t(e)}),[]);return(0,pe.jsxs)(V.gC,{justifyContent:"flex-start",align:"stretch",children:[(0,pe.jsx)(wt,{}),(0,pe.jsxs)(En.UQ,{allowToggle:!0,defaultIndex:[0],paddingLeft:3,children:[(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Colors"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(gt,{visuals:n,setVisualsCallback:l,highlightColor:r,setHighlightColor:i})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Nodes & Links"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(xt,{visuals:n,setVisuals:l,threeDim:o})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Labels"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(vt,{visuals:n,setVisuals:l})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Highlighting"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(ot,{visuals:n,setVisuals:l})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{children:(0,pe.jsxs)(g.k,{justifyContent:"space-between",w:"100%",children:[(0,pe.jsx)(X.x,{children:"Citations"}),(0,pe.jsx)(En.XE,{marginRight:2})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(Ct,{visuals:n,setVisuals:l})})]})]})]})};function St(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Pt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?St(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):St(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Nt=function(e){var n=e.behavior,t=e.setBehavior,r=e.mouse,i=e.setMouse;return(0,pe.jsxs)(V.gC,{spacing:2,justifyContent:"flex-start",divider:(0,pe.jsx)(V.cX,{borderColor:"gray.500"}),align:"stretch",paddingLeft:7,color:"gray.800",children:[(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Preview node"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:r.preview?r.preview[0].toUpperCase()+r.preview.slice(1):"Never"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{preview:""}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{preview:"click"}))},children:"Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{preview:"double"}))},children:"Double Click"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsxs)(g.k,{children:[(0,pe.jsx)(X.x,{children:"Expand Node"}),(0,pe.jsx)(_n,{infoText:"View only the node and its direct neighbors"})]}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:r.local?r.local[0].toUpperCase()+r.local.slice(1):"Never"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{zIndex:"popover",bgColor:"gray.200",children:[(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:""}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:"click"}))},children:"Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:"double"}))},children:"Double Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{local:"right"}))},children:"Right Click"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Open in Emacs"}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:r.follow?r.follow[0].toUpperCase()+r.follow.slice(1):"Never"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:""}))},children:"Never"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:"click"}))},children:"Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:"double"}))},children:"Double Click"}),(0,pe.jsx)(A.sN,{onClick:function(){return i(Pt(Pt({},r),{},{follow:"right"}))},children:"Right Click"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsx)(X.x,{children:"Follow Emacs by..."}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:n.follow[0].toUpperCase()+n.follow.slice(1)})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{follow:"color"}))},children:"Just coloring the currently opened node"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{follow:"local"}))},children:"Opening the local graph"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{follow:"zoom"}))},children:"Zooming to the current node"})]})]})]})]}),(0,pe.jsxs)(g.k,{alignItems:"center",justifyContent:"space-between",children:[(0,pe.jsxs)(g.k,{children:[(0,pe.jsx)(X.x,{children:"Local graph"}),(0,pe.jsx)(_n,{infoText:"When in local mode and clicking a new node, should I add that node's local graph or open the new one?"})]}),(0,pe.jsxs)(A.v2,{isLazy:!0,placement:"right",children:[(0,pe.jsx)(A.j2,{as:_.z,rightIcon:(0,pe.jsx)(Zn.v,{}),colorScheme:"",color:"black",children:(0,pe.jsx)(X.x,{children:"add"===n.localSame?"Add":"Replace"})}),(0,pe.jsxs)($e.h,{children:[" ",(0,pe.jsxs)(A.qy,{bgColor:"gray.200",zIndex:"popover",children:[(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{localSame:"replace"}))},children:"Open that nodes graph"}),(0,pe.jsx)(A.sN,{onClick:function(){return t(Pt(Pt({},n),{},{localSame:"add"}))},children:"Add node to local graph"})]})]})]})]}),(0,pe.jsx)(qn,{label:"Zoom speed",value:n.zoomSpeed,min:0,max:4e3,step:100,onChange:function(e){return t(Pt(Pt({},n),{},{zoomSpeed:e}))}}),(0,pe.jsx)(qn,{label:"Zoom padding",value:n.zoomPadding,min:0,max:400,step:1,onChange:function(e){return t(Pt(Pt({},n),{},{zoomPadding:e}))},infoText:"How much to zoom out to accomodate all nodes when changing the view."})]})},Dt=["style"];function It(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Lt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?It(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):It(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var zt=function(e){var n=e.physics,t=e.setPhysics,r=e.threeDim,i=e.setThreeDim,o=e.filter,s=e.setFilter,c=e.visuals,a=e.setVisuals,u=e.mouse,d=e.setMouse,g=e.behavior,x=e.setBehavior,j=e.tags,b=e.tagColors,v=e.setTagColors,y=e.local,C=e.setLocal,O=wn("showTweaks",!1),w=(0,l.Z)(O,2),k=w[0],S=w[1],P=(0,m.useContext)(en.N),N=P.highlightColor,D=P.setHighlightColor;return k?(0,pe.jsxs)(h.xu,{position:"absolute",bg:"alt.100",w:"xs",marginTop:2,marginLeft:2,borderRadius:"lg",paddingBottom:5,zIndex:10,boxShadow:"xl",maxH:"95vh",fontSize:"sm",children:[(0,pe.jsxs)(h.xu,{display:"flex",justifyContent:"space-between",alignItems:"center",paddingRight:2,paddingTop:1,children:[(0,pe.jsx)(f.u,{label:"2D",children:(0,pe.jsx)(_.z,{onClick:function(){return i(!r)},variant:"subtle",zIndex:"overlay",children:r?"3D":"2D"})}),(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"center",children:[(0,pe.jsx)(f.u,{label:"Reset settings to defaults",children:(0,pe.jsx)(p.h,{"aria-label":"Reset Defaults",icon:(0,pe.jsx)(Ln.A,{}),onClick:function(){a(R),s(Z),d(B),t(E),x(T)},variant:"subtle",size:"sm"})}),(0,pe.jsx)(p.h,{size:"sm",icon:(0,pe.jsx)(zn.T,{}),"aria-label":"Close Tweak Panel",variant:"subtle",onClick:function(){return S(!1)}})]})]}),(0,pe.jsx)(cn.ZP,{autoHeight:!0,autoHeightMax:.85*globalThis.innerHeight,autoHide:!0,renderThumbVertical:function(e){var n=e.style,t=(0,te.Z)(e,Dt);return(0,pe.jsx)(h.xu,Lt(Lt({},t),{},{style:Lt(Lt({},n),{},{borderRadius:10}),bg:N}))},children:(0,pe.jsxs)(En.UQ,{allowMultiple:!0,allowToggle:!0,color:"black",children:[(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Filter"})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(Qn,{filter:o,setFilter:s,tagColors:b,setTagColors:v,highlightColor:N,colorList:H,tags:j,local:y,setLocal:C})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsx)(En.KF,{display:"flex",justifyContent:"space-between",children:(0,pe.jsxs)(h.xu,{display:"flex",children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Physics"})]})}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(nt,{physics:n,setPhysics:t})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Visual"})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(kt,{visuals:c,setVisuals:a,highlightColor:N,setHighlightColor:D,threeDim:r})})]}),(0,pe.jsxs)(En.Qd,{children:[(0,pe.jsxs)(En.KF,{children:[(0,pe.jsx)(En.XE,{marginRight:2}),(0,pe.jsx)(M.X,{size:"sm",children:"Behavior"})]}),(0,pe.jsx)(En.Hk,{children:(0,pe.jsx)(Nt,{behavior:g,setBehavior:x,mouse:u,setMouse:d})})]})]})})]}):(0,pe.jsx)(h.xu,{position:"absolute",zIndex:"overlay",marginTop:1,marginLeft:0,display:k?"none":"block",children:(0,pe.jsx)(p.h,{variant:"subtle","aria-label":"Settings",icon:(0,pe.jsx)(In.e,{}),onClick:function(){return S(!0)}})})},Et=t(22663),Zt=t.n(Et);function Rt(e){var n,t,r,o,l=e.labelBackgroundColor,s=e.labelTextColor,c=e.node,a=e.ctx,u=e.globalScale,d=e.highlightedNodes,h=e.previouslyHighlightedNodes,g=e.visuals,f=e.opacity,p=e.nodeSize,x=e.filteredLinksByNodeId,j=(e.nodeRel,e.hoverNode),b=e.lastHoverNode;if(c&&g.labels){var v=null!==(n=null===j||void 0===j?void 0:j.id)&&void 0!==n?n:"",m=null!==(t=null===b||void 0===b?void 0:b.id)&&void 0!==t?t:"",y=null!==(r=x[c.id])&&void 0!==r?r:[],C=!(!d[c.id]&&!h[c.id]),O=Math.min(5*(u-g.labelScale)+2*Math.pow(Math.min(y.length,g.labelDynamicDegree),g.labelDynamicStrength),1);if(!(O<.01)||C){var w=null!==(o=c.title)&&void 0!==o?o:"",k=w.substring(0,g.labelLength),S=Math.cbrt(g.nodeRel*p(c)/Math.pow(u,g.nodeZoomSize)),P=g.labelFontSize/Math.cbrt(Math.pow(u,g.nodeZoomSize)),N=[1.1*a.measureText(k).width,P].map((function(e){return e+.5*P})),D=function(e,n,t,r,i){return i?Math.max(e,r):1*e*(-1*(n.highlightFade*r-1))}(O,g,0,f,C);if(g.labelBackgroundColor&&g.labelBackgroundOpacity){var I=qt(l,D*g.labelBackgroundOpacity);a.fillStyle=I,a.fillRect.apply(a,[c.x-N[0]/2,c.y-N[1]/2+S].concat((0,i.Z)(N)))}a.textAlign="center",a.textBaseline="middle";var L=qt(s,D);a.fillStyle=L,a.font="".concat(P,"px Sans-Serif");var z=Zt()(k,{width:g.labelWordWrap}).split("\n"),E=w.length>g.labelLength?[].concat((0,i.Z)(z.slice(0,-1)),["".concat(z.slice(-1),"...")]):z,Z=[v,m].includes(c.id)?1+.3*f:1;E.forEach((function(e,n){a.fillText(e,c.x,c.y+Z*S*8+g.labelLineSpace*P*n)}))}}}function Tt(e,n){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);n&&(r=r.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),t.push.apply(t,r)}return t}function Bt(e){for(var n=1;n<arguments.length;n++){var t=null!=arguments[n]?arguments[n]:{};n%2?Tt(Object(t),!0).forEach((function(n){(0,o.Z)(e,n,t[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):Tt(Object(t)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(t,n))}))}return e}var Ft=t.e(907).then(t.bind(t,99907)),Ht=t.g.window?t(24878).f$:null,At=t.g.window?t(24878).s6:null;function Mt(){var e=(0,m.useState)(!1),n=e[0],t=e[1];return(0,m.useEffect)((function(){t(!0)}),[]),n?(0,pe.jsxs)(pe.Fragment,{children:[(0,pe.jsx)(v.default,{children:(0,pe.jsx)("title",{children:"ORUI"})}),(0,pe.jsx)(Wt,{})]}):null}function Wt(){var e=wn("3d",!1),n=(0,l.Z)(e,2),t=n[0],r=n[1],s=wn("tagCols",{}),c=(0,l.Z)(s,2),a=c[0],x=c[1],b=(0,m.useState)({nodeIds:[]}),v=b[0],w=b[1],S=wn("physics",E),P=(0,l.Z)(S,2),N=P[0],D=P[1],I=wn("filter",Z),L=(0,l.Z)(I,2),z=L[0],H=L[1],A=wn("visuals",R),M=(0,l.Z)(A,2),W=M[0],V=M[1],X=(0,m.useState)(null),_=X[0],U=X[1],q=(0,m.useState)(null),G=q[0],J=q[1],Q=wn("behavior",T),K=(0,l.Z)(Q,2),Y=K[0],$=K[1],ee=wn("mouse",B),ne=(0,l.Z)(ee,2),te=ne[0],re=ne[1],ie=wn("local",F),oe=(0,l.Z)(ie,2),le=oe[0],se=oe[1],ce=(0,k.Z)({}),ae=(0,l.Z)(ce,2),ue=ae[0],de=ae[1],he=de.set,ge=de.reset,fe=de.undo,xe=de.redo,je=de.canUndo,be=de.canRedo,ve=(ue.past,ue.present),me=(ue.future,(0,m.useState)(null)),ye=me[0],Ce=me[1],Oe=(0,u.q)(),we=Oe.isOpen,ke=Oe.onOpen,Pe=Oe.onClose,Ne=(0,m.useRef)({}),De=(0,m.useRef)({}),Ie=(0,m.useRef)({}),Le=(0,m.useRef)([]),ze=(0,m.useRef)(null),Ee=(0,m.useRef)({}),Ze=(0,m.useRef)({nodes:[],links:[]});(0,m.useEffect)((function(){_&&(Ze.current=_)}),[_]);var Re=(0,m.useContext)(en.N).setEmacsTheme,Te=(0,m.useRef)({nodeIds:[]}),Be=(0,m.useRef)(T);Be.current=Y;var Fe=(0,m.useRef)(null);Te.current=v;var He=function(e,n){var t,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:2e3,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:200;if("color"!==e){var l=ze.current,s=Te.current,c=Be.current,a=null!==(t=De.current[n])&&void 0!==t?t:[],u=Object.fromEntries([n].concat((0,i.Z)(a.flatMap((function(e){return[e.source,e.target]})))).map((function(e){return[e,{}]})));if("zoom"===e)return s.nodeIds.length&&w({nodeIds:[]}),void setTimeout((function(){return l.zoomToFit(r,o,(function(e){return u[e.id]}))}),50);if(!s.nodeIds.length)return w({nodeIds:[n]}),void setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50);if("add"!==c.localSame)return w({nodeIds:[n]}),void setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50);if(!s.nodeIds.includes(n)||!s.nodeIds.some((function(e){return u[e]})))return w({nodeIds:[n]}),void setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50);w((function(e){return Bt(Bt({},e),{},{nodeIds:[].concat((0,i.Z)(e.nodeIds),[n])})})),setTimeout((function(){l.centerAt(0,0,10),l.zoomToFit(1,o)}),50)}};(0,m.useEffect)((function(){Fe.current=new O.Z("ws://localhost:35903"),Fe.current.addEventListener("open",(function(){console.log("Connection with Emacs established")})),Fe.current.addEventListener("message",(function(e){var n=Be.current,t=JSON.parse(e.data);switch(t.type){case"graphdata":return function(e){var n,t,r,s=Ne.current;Le.current=null!==(n=e.tags)&&void 0!==n?n:[];var c=null!==(t=e.nodes)&&void 0!==t?t:[],a=null!==(r=e.links)&&void 0!==r?r:[],u=c.reduce((function(e,n){var t;return Bt(Bt({},e),{},(0,o.Z)({},n.file,[].concat((0,i.Z)(null!==(t=e[n.file])&&void 0!==t?t:[]),[n])))}),{}),d=Object.keys(u).flatMap((function(e){var n,t=null!==(n=u[e])&&void 0!==n?n:[],r=t.find((function(e){return 0===e.level})),i=t.filter((function(e){return 0!==e.level}));return r?i.map((function(e){var n=t.filter((function(n){var t;return!(n.level>=e.level||n.pos>=e.pos||null===(t=e.olp)||void 0===t||!t.includes(n.title))})).reduce((function(e,n){return n.level>e.level&&(e=n),e}),r);return{source:e.id,target:(null===n||void 0===n?void 0:n.id)||r.id,type:"heading"}})):[]})),h=Object.keys(u).flatMap((function(e){var n,t=null!==(n=u[e])&&void 0!==n?n:[],r=t.find((function(e){return 0===e.level})),i=t.filter((function(e){return 0!==e.level}));return r?i.map((function(e){return{source:e.id,target:r.id,type:"parent"}})):[]}));Ne.current=Object.fromEntries(c.map((function(e){return[e.id,e]})));var g=[].concat((0,i.Z)(a),(0,i.Z)(d),(0,i.Z)(h)),f=[],p=g.map((function(e){var n=e.source,t=e.target;return Ne.current[n]?Ne.current[t]?e:(f.push({id:t,tags:["bad"],properties:{FILELESS:"yes",bad:"yes"},file:"",title:t,level:0,pos:0,olp:null}),Bt(Bt({},e),{},{type:"bad"})):(f.push({id:n,tags:["bad"],properties:{FILELESS:"yes",bad:"yes"},file:"",title:n,level:0,pos:0,olp:null}),Bt(Bt({},e),{},{type:"bad"}))}));Ne.current=Bt(Bt({},Ne.current),Object.fromEntries(f.map((function(e){return[e.id,e]})))),De.current=p.reduce((function(e,n){var t,r,l;return Bt(Bt({},e),{},(l={},(0,o.Z)(l,n.source,[].concat((0,i.Z)(null!==(t=e[n.source])&&void 0!==t?t:[]),[n])),(0,o.Z)(l,n.target,[].concat((0,i.Z)(null!==(r=e[n.target])&&void 0!==r?r:[]),[n])),l))}),{});var x=[].concat((0,i.Z)(c),f);Ie.current=x.reduce((function(e,n){var t,r=null===(t=n.properties)||void 0===t?void 0:t.ROAM_REFS;if(null===r||void 0===r||!r.includes("cite"))return e;var i=r.replaceAll(/cite:(.*)/g,"$1");return i?Bt(Bt({},e),{},(0,o.Z)({},i,n)):e}),{});var j={nodes:x,links:p},b=Ze.current;if(0===b.nodes.length){var v=JSON.parse(JSON.stringify(j));return Ze.current=v,void U(v)}var m=[].concat((0,i.Z)(b.nodes.flatMap((function(e){var n,t=null!==(n=Ne.current[null===e||void 0===e?void 0:e.id])&&void 0!==n&&n;return t?[Bt(Bt({},e),t)]:[]}))),(0,i.Z)(Object.keys(Ne.current).filter((function(e){return!s[e]})).map((function(e){return Ne.current[e]})))),y=m.reduce((function(e,n,t){var r=null===n||void 0===n?void 0:n.id;return Bt(Bt({},e),{},(0,o.Z)({},r,t))}),{}),C=p.map((function(e){var n=_t(e),t=(0,l.Z)(n,2),r=t[0],i=t[1];return Bt(Bt({},e),{},{source:m[y[r]],target:m[y[i]]})}));U({nodes:m,links:C})}(t.data);case"variables":return console.log(t.data),void(Ee.current=t.data);case"theme":return Re(["custom",t.data]);case"command":switch(t.data.commandName){case"local":var r=Y.zoomSpeed,s=Y.zoomPadding;He("local",t.data.id,r,s),J(t.data.id);break;case"zoom":var c,a,u=(null===t||void 0===t||null===(c=t.data)||void 0===c?void 0:c.speed)||n.zoomSpeed,d=(null===t||void 0===t||null===(a=t.data)||void 0===a?void 0:a.padding)||n.zoomPadding;He("zoom",t.data.id,u,d),J(t.data.id);break;case"follow":He(n.follow,t.data.id,n.zoomSpeed,n.zoomPadding),J(t.data.id);break;default:return console.error("unknown message type",t.type)}}}))}),[]),(0,m.useEffect)((function(){var e=ze.current;!e||v.nodeIds.length>1||(v.nodeIds.length||!N.gravityOn?setTimeout((function(){e.zoomToFit(5,200)}),50):e.zoomToFit())}),[v.nodeIds]);var Ae=(0,j.iP)(),Me=(0,l.Z)(Ae,2),We=Me[0],Ve=Me[1],Xe=(0,m.useRef)(),_e=(0,m.useState)(null),Ue=_e[0],qe=_e[1],Ge=(0,m.useState)({left:0,top:0,right:void 0,bottom:void 0}),Je=Ge[0],Qe=Ge[1],Ke=(0,u.q)();(0,d.O)({ref:Xe,handler:function(){Ke.onClose()}});var Ye=function(e,n,t){Qe(t||{left:n.pageX,top:n.pageY,right:void 0,bottom:void 0}),qe(e),Ke.onOpen()},$e=function(e,n){"replace"!==n?v.nodeIds.includes(e.id)||w((function(n){return Bt(Bt({},n),{},{nodeIds:[].concat((0,i.Z)(n.nodeIds),[e.id])})})):w({nodeIds:[e.id]})},nn=(0,m.useState)({type:"Graph",title:"Graph",icon:(0,pe.jsx)(y.DvO,{})}),tn=(nn[0],nn[1],wn("mainWindowWidth",We)),rn=(0,l.Z)(tn,2),on=rn[0],ln=rn[1];return(0,pe.jsxs)(h.xu,{display:"flex",alignItems:"flex-start",flexDirection:"row",height:"100vh",overflow:"clip",children:[(0,pe.jsx)(zt,{physics:N,setPhysics:D,threeDim:t,setThreeDim:r,filter:z,setFilter:H,visuals:W,setVisuals:V,mouse:te,setMouse:re,behavior:Y,setBehavior:$,tagColors:a,setTagColors:x,local:le,setLocal:se,tags:Le.current}),(0,pe.jsx)(h.xu,{position:"absolute",children:_&&(0,pe.jsx)(Vt,{nodeById:Ne.current,linksByNodeId:De.current,webSocket:Fe.current,variables:Ee.current,physics:N,graphData:_,threeDim:t,emacsNodeId:G,filter:z,visuals:W,behavior:Y,mouse:te,scope:v,setScope:w,tagColors:a,setPreviewNode:he,sidebarHighlightedNode:ye,windowWidth:We,windowHeight:Ve,openContextMenu:Ye,contextMenu:Ke,handleLocal:$e,mainWindowWidth:on,setMainWindowWidth:ln,setContextMenuTarget:qe,graphRef:ze,local:le})}),(0,pe.jsx)(h.xu,{position:"relative",zIndex:4,width:"100%",children:(0,pe.jsx)(g.k,{className:"headerBar",h:10,flexDir:"column",children:(0,pe.jsx)(g.k,{alignItems:"center",h:10,justifyContent:"flex-end",children:(0,pe.jsxs)(g.k,{height:"100%",flexDirection:"row",children:[v.nodeIds.length>0&&(0,pe.jsx)(f.u,{label:"Return to main graph",children:(0,pe.jsx)(p.h,{m:1,icon:(0,pe.jsx)(y.DvO,{}),"aria-label":"Exit local mode",onClick:function(){return w((function(e){return Bt(Bt({},e),{},{nodeIds:[]})}))},variant:"subtle"})}),(0,pe.jsx)(f.u,{label:we?"Close sidebar":"Open sidebar",children:(0,pe.jsx)(p.h,{m:1,icon:(0,pe.jsx)(C.iBV,{}),"aria-label":"Close file-viewer",variant:"subtle",onClick:we?Pe:ke})})]})})})}),(0,pe.jsx)(h.xu,{position:"relative",zIndex:4,children:(0,pe.jsx)(Dn,{isOpen:we,onOpen:ke,onClose:Pe,previewNode:ve,setPreviewNode:he,canUndo:je,canRedo:be,previousPreviewNode:fe,nextPreviewNode:xe,resetPreviewNode:ge,setSidebarHighlightedNode:Ce,openContextMenu:Ye,scope:v,setScope:w,windowWidth:We,tagColors:a,setTagColors:x,filter:z,setFilter:H,nodeById:Ne.current,linksByNodeId:De.current,nodeByCite:Ie.current})}),Ke.isOpen&&(0,pe.jsx)("div",{ref:Xe,children:(0,pe.jsx)(Se,{scope:v,target:Ue,background:!1,coordinates:Je,handleLocal:$e,menuClose:Ke.onClose.bind(Ke),webSocket:Fe.current,setPreviewNode:he,setFilter:H,filter:z,setTagColors:x,tagColors:a})})]})}var Vt=function(e){var n=e.graphRef,t=e.physics,s=e.graphData,u=e.threeDim,d=e.linksByNodeId,g=e.filter,f=e.emacsNodeId,p=e.nodeById,j=e.visuals,v=e.behavior,y=e.mouse,C=e.scope,O=e.local,k=(e.setScope,e.webSocket),S=e.tagColors,P=e.setPreviewNode,N=e.sidebarHighlightedNode,D=e.windowWidth,I=e.windowHeight,L=(e.setContextMenuTarget,e.openContextMenu),E=e.contextMenu,Z=e.handleLocal,R=e.variables,T=R.dailyDir,B=(R.roamDir,(0,m.useState)(null)),F=B[0],A=B[1],M=(0,a.useTheme)(),W=(0,m.useContext)(en.N).emacsTheme,V=function(e,n,t){switch(e){case y.preview:P(n);break;case y.local:Z(n,v.localSame);break;case y.follow:$(n,k);break;case y.context:L(n,t)}},X=(0,m.useRef)(null);(0,m.useEffect)((function(){f&&A(p[f])}),[f]);var _=(0,m.useRef)({}),U=(0,m.useRef)({}),q=(0,m.useMemo)((function(){var e;U.current={};var n=null===s||void 0===s||null===(e=s.nodes)||void 0===e?void 0:e.filter((function(e){var n,t,r,i,l=e;return g.tagsBlacklist.length&&g.tagsBlacklist.some((function(e){var n;return(null===l||void 0===l||null===(n=l.tags)||void 0===n?void 0:n.indexOf(e))>-1}))||g.tagsWhitelist.length>0&&!g.tagsWhitelist.some((function(e){var n;return(null===l||void 0===l||null===(n=l.tags)||void 0===n?void 0:n.indexOf(e))>-1}))||g.filelessCites&&null!==l&&void 0!==l&&null!==(n=l.properties)&&void 0!==n&&n.FILELESS||null!==g&&void 0!==g&&g.bad&&null!==l&&void 0!==l&&null!==(t=l.properties)&&void 0!==t&&t.bad||g.dailies&&T&&null!==(r=l.file)&&void 0!==r&&r.includes(T)?(U.current=Bt(Bt({},U.current),{},(0,o.Z)({},l.id,l)),!1):!g.noter||null===(i=l.properties)||void 0===i||!i.NOTER_PAGE||(U.current=Bt(Bt({},U.current),{},(0,o.Z)({},l.id,l)),!1)})).filter((function(e){var n,t=(null!==(n=d[null===e||void 0===e?void 0:e.id])&&void 0!==n?n:[]).filter((function(e){return!U.current[e.source]&&!U.current[e.target]}));return!g.orphans||(g.parent?0!==t.length:0!==t.length&&t.some((function(e){return!["parent","heading"].includes(e.type)})))})),t=n.map((function(e){return e.id})),r=s.links.filter((function(e){var n=_t(e),r=(0,l.Z)(n,2),i=r[0],o=r[1];if(!t.includes(i)||!t.includes(o))return!1;var s=e;return g.parent?"heading"===g.parent?"parent"!==s.type:"heading"!==s.type:!["parent","heading"].includes(s.type)}));return _.current=r.reduce((function(e,n){var t,r,s,c=n,a=_t(c),u=(0,l.Z)(a,2),d=u[0],h=u[1];return Bt(Bt({},e),{},(s={},(0,o.Z)(s,d,[].concat((0,i.Z)(null!==(t=e[d])&&void 0!==t?t:[]),[c])),(0,o.Z)(s,h,[].concat((0,i.Z)(null!==(r=e[h])&&void 0!==r?r:[]),[c])),s))}),{}),{nodes:n,links:r}}),[g,s]),G=(0,m.useState)({nodes:[],links:[]}),J=G[0],Q=G[1];(0,m.useEffect)((function(){if(C.nodeIds.length){var e=C.nodeIds.length>1?J.nodes:[],n=e.map((function(e){return e.id})),t=function(e,n){var t=[e[0]],r=[],i=[e[0]];return Array.from({length:n},(function(){t.forEach((function(e){var n;(null!==(n=_.current[e])&&void 0!==n?n:[]).forEach((function(e){var n=_t(e),t=(0,l.Z)(n,2),o=t[0],s=t[1];i.includes(o)?i.includes(s)||r.push(s):r.push(o)}))})),t=r,r.forEach((function(e){return e&&i.push(e)})),r=[]})),i}(C.nodeIds,O.neighbors),r=q.nodes.filter((function(r){var i;return e.length?!n.includes(r.id)&&(null!==(i=_.current[r.id])&&void 0!==i?i:[]).some((function(e){var n=_t(e),t=(0,l.Z)(n,2),r=t[0],i=t[1];return C.nodeIds.includes(r)||C.nodeIds.includes(i)})):t.includes(r.id)})).map((function(e){return Bt(Bt({},e),{},{x:0,y:0,vy:0,vx:0})})),o=[].concat((0,i.Z)(e),(0,i.Z)(r)),s=o.map((function(e){return e.id})),c=C.nodeIds.length>1?J.links:[],a=q.links.filter((function(e){var t=_t(e),r=(0,l.Z)(t,2),i=r[0],o=r[1];return!(c.length&&n.includes(o)&&n.includes(i))&&(s.includes(i)&&s.includes(o))})).map((function(e){var n=_t(e),t=(0,l.Z)(n,2);return{source:t[0],target:t[1]}})),u=[].concat((0,i.Z)(c),(0,i.Z)(a));Q({nodes:o,links:u})}}),[O.neighbors,g,C,JSON.stringify(s),q.links,q.nodes]),(0,m.useEffect)((function(){(0,r.Z)(c().mark((function e(){var r,i;return c().wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=n.current,e.next=3,Ft;case 3:i=e.sent,!t.gravityOn||C.nodeIds.length&&!t.gravityLocal?(r.d3Force("x",null),r.d3Force("y",null),u&&r.d3Force("z",null)):(r.d3Force("x",i.forceX().strength(t.gravity)),r.d3Force("y",i.forceY().strength(t.gravity)),u&&r.d3Force("z",i.forceZ().strength(t.gravity))),t.centering?r.d3Force("center",i.forceCenter().strength(t.centeringStrength)):r.d3Force("center",null),t.linkStrength&&r.d3Force("link").strength(t.linkStrength),t.linkIts&&r.d3Force("link").iterations(t.linkIts),t.charge&&r.d3Force("charge").strength(t.charge),r.d3Force("collide",t.collision?i.forceCollide().radius(t.collisionStrength):null);case 10:case"end":return e.stop()}}),e)})))()}),[t,u,C]),(0,m.useEffect)((function(){var e;null===(e=n.current)||void 0===e||e.d3ReheatSimulation()}),[t,C.nodeIds.length]);var K=(0,m.useRef)(0),Y=(0,m.useState)(1),ee=Y[0],ne=Y[1],te=(0,x._7)((function(e){return ne(e)}),{duration:j.animationSpeed,algorithm:z[j.algorithmName]}),re=(0,l.Z)(te,2),ie=re[0],oe=re[1],le=(0,x._7)((function(e){return ne(Math.min(ee,-1*(e-1)))}),{duration:j.animationSpeed,algorithm:z[j.algorithmName]}),se=(0,l.Z)(le,2),ce=se[0],ae=se[1],ue=(0,m.useMemo)((function(){var e;if(!X.current)return{};var n=_.current[X.current.id];return n?Object.fromEntries([null===(e=X.current)||void 0===e?void 0:e.id].concat((0,i.Z)(n.flatMap((function(e){return[e.source,e.target]})))).map((function(e){return[e,{}]}))):{}}),[JSON.stringify(X.current),JSON.stringify(_.current)]);(0,m.useEffect)((function(){null!==N&&void 0!==N&&N.id?A(N):A(null)}),[N]);var de=(0,m.useRef)(null);(0,m.useEffect)((function(){if(X.current=F,F&&(de.current=F),!j.highlightAnim)return ne(F?1:0);F?ie():(oe(),ee>.5?ce():ne(0))}),[F]);var he=(0,m.useMemo)((function(){return Object.fromEntries(H.map((function(e){var n=Ut(e,M),t=H.map((function(e){return[e,b.Z(n,Ut(e,M))]}));return[e,Object.fromEntries(t)]})))}),[W]),ge=(0,m.useMemo)((function(){var e,n,t,r=null!==(e=_.current[null===(n=de.current)||void 0===n?void 0:n.id])&&void 0!==e?e:[];return Object.fromEntries([null===(t=de.current)||void 0===t?void 0:t.id].concat((0,i.Z)(r.flatMap((function(e){return _t(e)})))).map((function(e){return[e,{}]})))}),[JSON.stringify(F),de.current,_.current]),fe=function(e){var n,t,r,i,o,l=null!==(n=null===(t=_.current[e])||void 0===t?void 0:t.length)&&void 0!==n?n:0;return j.nodeColorScheme[(r=l,i=0,o=j.nodeColorScheme.length-1,Math.min(Math.max(r,i),o))]},xe=function(e,n){return _.current[e].length>_.current[n].length?fe(e):fe(n)},je=(0,m.useMemo)((function(){return Ut(j.labelTextColor,M)}),[j.labelTextColor,W]),be=(0,m.useMemo)((function(){return Ut(j.labelBackgroundColor,M)}),[j.labelBackgroundColor,W]),ve=function(e){var n,t=null!==(n=_.current[e.id])&&void 0!==n?n:[],r=t.length?t.filter((function(e){return"parent"===e.type})).length:0,i=3+t.length*j.nodeSizeLinks-(g.parent?0:r);return 1===j.highlightNodeSize?i:i*(ue[e.id]||ge[e.id]?1+ee*(j.highlightNodeSize-1):1)},me=(0,m.useState)(!1),ye=me[0],Ce=me[1],Oe=(0,m.useRef)(1),we={graphData:C.nodeIds.length?J:q,width:D,height:I,backgroundColor:Ut(j.backgroundColor,M),warmupTicks:1===C.nodeIds.length?100:C.nodeIds.length>1?20:0,onZoom:function(e){var n=e.k;e.x,e.y;return Oe.current=n},nodeColor:function(e){return function(e,n){var t,r,i=ue[e.id]||ge[e.id];if(j.emacsNodeColor&&e.id===f)return Ut(j.emacsNodeColor,n);if(S&&null!==e&&void 0!==e&&e.tags.some((function(e){return S[e]}))){var o=S[null===e||void 0===e?void 0:e.tags.filter((function(e){return S[e]}))[0]];return i?he[o][o](j.highlightFade*ee):he[o][j.backgroundColor](j.highlightFade*ee)}return j.citeNodeColor&&null!==e&&void 0!==e&&null!==(t=e.properties)&&void 0!==t&&t.ROAM_REFS&&null!==e&&void 0!==e&&null!==(r=e.properties)&&void 0!==r&&r.FILELESS?i?Ut(j.citeNodeColor,n):he[j.citeNodeColor][j.backgroundColor](j.highlightFade*ee):j.refNodeColor&&e.properties.ROAM_REFS?i?Ut(j.refNodeColor,n):he[j.refNodeColor][j.backgroundColor](j.highlightFade*ee):i?j.nodeHighlight?he[fe(e.id)][j.nodeHighlight](ee):Ut(fe(e.id),n):he[fe(e.id)][j.backgroundColor](j.highlightFade*ee)}(e,M)},nodeRelSize:j.nodeRel,nodeVal:function(e){return ve(e)/Math.pow(Oe.current,j.nodeZoomSize)},nodeCanvasObject:function(e,n,t){Rt(Bt({nodeRel:j.nodeRel,filteredLinksByNodeId:_.current,lastHoverNode:de.current},{node:e,ctx:n,globalScale:t,highlightedNodes:ue,previouslyHighlightedNodes:ge,visuals:j,opacity:ee,nodeSize:ve,labelTextColor:je,labelBackgroundColor:be,hoverNode:F}))},nodeCanvasObjectMode:function(){return"after"},linkDirectionalParticles:j.particles?j.particlesNumber:void 0,linkDirectionalArrowLength:j.arrows?j.arrowsLength:void 0,linkDirectionalArrowRelPos:j.arrowsPos,linkDirectionalArrowColor:j.arrowsColor?function(){return Ut(j.arrowsColor,M)}:void 0,linkColor:function(e){var n,t="object"===typeof e.source?e.source.id:e.source,r="object"===typeof e.target?e.target.id:e.target,i=Xt(e,X.current),o=Xt(e,de.current),l=i||o,s=e;return j.refLinkColor&&"ref"===s.type?l&&(j.refLinkHighlightColor||j.linkHighlight)?he[j.refLinkColor][j.refLinkHighlightColor||j.linkHighlight](ee):he[j.refLinkColor][j.backgroundColor](j.highlightFade*ee):j.citeLinkColor&&null!==(n=s.type)&&void 0!==n&&n.includes("cite")?l&&(j.citeLinkHighlightColor||j.linkHighlight)?he[j.citeLinkColor][j.citeLinkHighlightColor||j.linkHighlight](ee):he[j.citeLinkColor][j.backgroundColor](j.highlightFade*ee):function(e,n,t,r){if(!j.linkHighlight&&!j.linkColorScheme&&!t)return Ut(xe(e,n),r);if(!t&&!j.linkColorScheme){var i=xe(e,n);return he[i][j.backgroundColor](j.highlightFade*ee)}return t?j.linkHighlight||j.linkColorScheme?j.linkHighlight?j.linkColorScheme?he[j.linkColorScheme][j.linkHighlight](ee):he[xe(e,n)][j.linkHighlight](ee):Ut(j.linkColorScheme,r):Ut(xe(e,n),r):he[j.linkColorScheme][j.backgroundColor](j.highlightFade*ee)}(t,r,l,M)},linkWidth:function(e){if(1===j.highlightLinkSize)return j.linkWidth;var n=Xt(e,X.current),t=Xt(e,de.current);return n||t?j.linkWidth*(1+ee*(j.highlightLinkSize-1)):j.linkWidth},linkDirectionalParticleWidth:j.particlesWidth,d3AlphaDecay:t.alphaDecay,d3AlphaMin:t.alphaMin,d3VelocityDecay:t.velocityDecay,onNodeClick:function(e,n){var t=e,r=n.timeStamp-K.current<200;if(K.current=n.timeStamp,r)return V("double",t,n);var i=K.current;return setTimeout((function(){if(K.current===i)return V("click",t,n)}),200)},onNodeHover:function(e){j.highlight&&(ye||(F||(ae(),ne(0)),A(e)))},onNodeRightClick:function(e,n){V("right",e,n)},onNodeDrag:function(e){A(e),Ce(!0)},onNodeDragEnd:function(){A(null),Ce(!1)}};return(0,pe.jsx)(h.xu,{overflow:"hidden",onClick:E.onClose,children:u?(0,pe.jsx)(At,Bt(Bt({ref:n},we),{},{nodeThreeObjectExtend:!0,nodeOpacity:j.nodeOpacity,nodeResolution:j.nodeResolution,linkOpacity:j.linkOpacity,nodeThreeObject:function(e){if(j.labels&&(!(j.labels<3)||ue[e.id])){var n=new w.Z(e.title.substring(0,40));return n.color=Ut(j.labelTextColor,M),n.backgroundColor=Ut(j.labelBackgroundColor,M),n.padding=2,n.textHeight=8,n}}})):(0,pe.jsx)(Ht,Bt(Bt({ref:n},we),{},{linkLineDash:function(e){var n,t=e;return j.citeDashes&&null!==(n=t.type)&&void 0!==n&&n.includes("cite")?[j.citeDashLength,j.citeGapLength]:j.refDashes&&"ref"==t.type?[j.refDashLength,j.refGapLength]:null}}))})};function Xt(e,n){var t,r;return(null===(t=e.source)||void 0===t?void 0:t.id)===(null===n||void 0===n?void 0:n.id)||(null===(r=e.target)||void 0===r?void 0:r.id)===(null===n||void 0===n?void 0:n.id)}function _t(e){return["object"===typeof e.source?e.source.id:e.source,"object"===typeof e.target?e.target.id:e.target]}function Ut(e,n){return e.split(".").reduce((function(e,n){return e[n]}),n.colors)}function qt(e,n){return"rgba("+(e=e.replace("#","")).match(new RegExp("(.{"+e.length/3+"})","g")).map((function(n){return parseInt(e.length%2?n+n:n,16)})).concat(isFinite(n)?n:1).join(",")+")"}},45301:function(e,n,t){(window.__NEXT_P=window.__NEXT_P||[]).push(["/",function(){return t(54530)}])}},function(e){e.O(0,[774,737,13,874,573,446,816,888,179],(function(){return n=45301,e(e.s=n);var n}));var n=e.O();_N_E=n}]); \ No newline at end of file
diff --git a/out/index.html b/out/index.html
index 2c4694a..ee74bdc 100644
--- a/out/index.html
+++ b/out/index.html
@@ -1 +1 @@
-<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><meta name="next-head-count" content="2"/><link rel="preload" href="/_next/static/css/a37ded5ec4cf14937ec5.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a37ded5ec4cf14937ec5.css" data-n-g=""/><link rel="preload" href="/_next/static/css/9aeb688eb5e47ce218d8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/9aeb688eb5e47ce218d8.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-a40ef1678bae11e696dba45124eadd70.js"></script><script src="/_next/static/chunks/webpack-06f739dee1b1cddd24d8.js" defer=""></script><script src="/_next/static/chunks/framework-2f612445bd50b211f15a.js" defer=""></script><script src="/_next/static/chunks/main-965b0767a8d0eaf0c110.js" defer=""></script><script src="/_next/static/chunks/pages/_app-8bd0d6de2a60ac35d501.js" defer=""></script><script src="/_next/static/chunks/fb7d5399-b53d39280eb7028fd5fb.js" defer=""></script><script src="/_next/static/chunks/0c428ae2-753f1ebbec24c403674c.js" defer=""></script><script src="/_next/static/chunks/1a48c3c1-8e9d488ce132c4739e94.js" defer=""></script><script src="/_next/static/chunks/b5f2ed29-c14b12daa385c4cc7854.js" defer=""></script><script src="/_next/static/chunks/d25bd147-2c59edc357c0e2372258.js" defer=""></script><script src="/_next/static/chunks/816-0c5ca424da57aea390ea.js" defer=""></script><script src="/_next/static/chunks/pages/index-c3655ec8db181f6ae1ab.js" defer=""></script><script src="/_next/static/Ydx3xl3sZeYptBHO1AStM/_buildManifest.js" defer=""></script><script src="/_next/static/Ydx3xl3sZeYptBHO1AStM/_ssgManifest.js" defer=""></script></head><body><div id="__next"><style data-emotion="css-global 1n4e8ad">:host,:root{--chakra-ring-inset:var(--chakra-empty,/*!*/ /*!*/);--chakra-ring-offset-width:0px;--chakra-ring-offset-color:#fff;--chakra-ring-color:rgba(66, 153, 225, 0.6);--chakra-ring-offset-shadow:0 0 #0000;--chakra-ring-shadow:0 0 #0000;--chakra-space-x-reverse:0;--chakra-space-y-reverse:0;--chakra-colors-transparent:transparent;--chakra-colors-current:currentColor;--chakra-colors-black:#bbc2cf;--chakra-colors-white:#242730;--chakra-colors-whiteAlpha-50:rgba(255, 255, 255, 0.04);--chakra-colors-whiteAlpha-100:rgba(255, 255, 255, 0.06);--chakra-colors-whiteAlpha-200:rgba(255, 255, 255, 0.08);--chakra-colors-whiteAlpha-300:rgba(255, 255, 255, 0.16);--chakra-colors-whiteAlpha-400:rgba(255, 255, 255, 0.24);--chakra-colors-whiteAlpha-500:rgba(255, 255, 255, 0.36);--chakra-colors-whiteAlpha-600:rgba(255, 255, 255, 0.48);--chakra-colors-whiteAlpha-700:rgba(255, 255, 255, 0.64);--chakra-colors-whiteAlpha-800:rgba(255, 255, 255, 0.80);--chakra-colors-whiteAlpha-900:rgba(255, 255, 255, 0.92);--chakra-colors-blackAlpha-50:rgba(0, 0, 0, 0.04);--chakra-colors-blackAlpha-100:rgba(0, 0, 0, 0.06);--chakra-colors-blackAlpha-200:rgba(0, 0, 0, 0.08);--chakra-colors-blackAlpha-300:rgba(0, 0, 0, 0.16);--chakra-colors-blackAlpha-400:rgba(0, 0, 0, 0.24);--chakra-colors-blackAlpha-500:rgba(0, 0, 0, 0.36);--chakra-colors-blackAlpha-600:rgba(0, 0, 0, 0.48);--chakra-colors-blackAlpha-700:rgba(0, 0, 0, 0.64);--chakra-colors-blackAlpha-800:rgba(0, 0, 0, 0.80);--chakra-colors-blackAlpha-900:rgba(0, 0, 0, 0.92);--chakra-colors-gray-50:#F7FAFC;--chakra-colors-gray-100:#1c1f24;--chakra-colors-gray-200:rgb(29, 33, 38);--chakra-colors-gray-300:#21272d;--chakra-colors-gray-400:#23272e;--chakra-colors-gray-500:#484854;--chakra-colors-gray-600:#62686E;--chakra-colors-gray-700:#757B80;--chakra-colors-gray-800:#9ca0a4;--chakra-colors-gray-900:#DFDFDF;--chakra-colors-red-50:#FFF5F5;--chakra-colors-red-100:#FED7D7;--chakra-colors-red-200:#FEB2B2;--chakra-colors-red-300:#FC8181;--chakra-colors-red-400:#F56565;--chakra-colors-red-500:#ff665c;--chakra-colors-red-600:#C53030;--chakra-colors-red-700:#9B2C2C;--chakra-colors-red-800:#822727;--chakra-colors-red-900:#63171B;--chakra-colors-orange-50:#FFFAF0;--chakra-colors-orange-100:#FEEBC8;--chakra-colors-orange-200:#FBD38D;--chakra-colors-orange-300:#F6AD55;--chakra-colors-orange-400:#ED8936;--chakra-colors-orange-500:#e69055;--chakra-colors-orange-600:#C05621;--chakra-colors-orange-700:#9C4221;--chakra-colors-orange-800:#7B341E;--chakra-colors-orange-900:#652B19;--chakra-colors-yellow-50:#FFFFF0;--chakra-colors-yellow-100:#FEFCBF;--chakra-colors-yellow-200:#FAF089;--chakra-colors-yellow-300:#F6E05E;--chakra-colors-yellow-400:#ECC94B;--chakra-colors-yellow-500:#FCCE7B;--chakra-colors-yellow-600:#B7791F;--chakra-colors-yellow-700:#975A16;--chakra-colors-yellow-800:#744210;--chakra-colors-yellow-900:#5F370E;--chakra-colors-green-50:#F0FFF4;--chakra-colors-green-100:#C6F6D5;--chakra-colors-green-200:#9AE6B4;--chakra-colors-green-300:#68D391;--chakra-colors-green-400:#48BB78;--chakra-colors-green-500:#7bc275;--chakra-colors-green-600:#2F855A;--chakra-colors-green-700:#276749;--chakra-colors-green-800:#22543D;--chakra-colors-green-900:#1C4532;--chakra-colors-teal-50:#E6FFFA;--chakra-colors-teal-100:#B2F5EA;--chakra-colors-teal-200:#81E6D9;--chakra-colors-teal-300:#4FD1C5;--chakra-colors-teal-400:#38B2AC;--chakra-colors-teal-500:#51afef;--chakra-colors-teal-600:#2C7A7B;--chakra-colors-teal-700:#285E61;--chakra-colors-teal-800:#234E52;--chakra-colors-teal-900:#1D4044;--chakra-colors-blue-50:#ebf8ff;--chakra-colors-blue-100:#bee3f8;--chakra-colors-blue-200:#90cdf4;--chakra-colors-blue-300:#63b3ed;--chakra-colors-blue-400:#4299e1;--chakra-colors-blue-500:#51afef;--chakra-colors-blue-600:#2b6cb0;--chakra-colors-blue-700:#2c5282;--chakra-colors-blue-800:#2a4365;--chakra-colors-blue-900:#1A365D;--chakra-colors-cyan-50:#EDFDFD;--chakra-colors-cyan-100:#C4F1F9;--chakra-colors-cyan-200:#9DECF9;--chakra-colors-cyan-300:#76E4F7;--chakra-colors-cyan-400:#0BC5EA;--chakra-colors-cyan-500:#5cEfFF;--chakra-colors-cyan-600:#00A3C4;--chakra-colors-cyan-700:#0987A0;--chakra-colors-cyan-800:#086F83;--chakra-colors-cyan-900:#065666;--chakra-colors-purple-50:#FAF5FF;--chakra-colors-purple-100:#E9D8FD;--chakra-colors-purple-200:#D6BCFA;--chakra-colors-purple-300:#B794F4;--chakra-colors-purple-400:#9F7AEA;--chakra-colors-purple-500:#a991f1;--chakra-colors-purple-600:#6B46C1;--chakra-colors-purple-700:#553C9A;--chakra-colors-purple-800:#44337A;--chakra-colors-purple-900:#322659;--chakra-colors-pink-50:#FFF5F7;--chakra-colors-pink-100:#FED7E2;--chakra-colors-pink-200:#FBB6CE;--chakra-colors-pink-300:#F687B3;--chakra-colors-pink-400:#ED64A6;--chakra-colors-pink-500:#C57BDB;--chakra-colors-pink-600:#B83280;--chakra-colors-pink-700:#97266D;--chakra-colors-pink-800:#702459;--chakra-colors-pink-900:#521B41;--chakra-colors-linkedin-50:#E8F4F9;--chakra-colors-linkedin-100:#CFEDFB;--chakra-colors-linkedin-200:#9BDAF3;--chakra-colors-linkedin-300:#68C7EC;--chakra-colors-linkedin-400:#34B3E4;--chakra-colors-linkedin-500:#00A0DC;--chakra-colors-linkedin-600:#008CC9;--chakra-colors-linkedin-700:#0077B5;--chakra-colors-linkedin-800:#005E93;--chakra-colors-linkedin-900:#004471;--chakra-colors-facebook-50:#E8F4F9;--chakra-colors-facebook-100:#D9DEE9;--chakra-colors-facebook-200:#B7C2DA;--chakra-colors-facebook-300:#6482C0;--chakra-colors-facebook-400:#4267B2;--chakra-colors-facebook-500:#385898;--chakra-colors-facebook-600:#314E89;--chakra-colors-facebook-700:#29487D;--chakra-colors-facebook-800:#223B67;--chakra-colors-facebook-900:#1E355B;--chakra-colors-messenger-50:#D0E6FF;--chakra-colors-messenger-100:#B9DAFF;--chakra-colors-messenger-200:#A2CDFF;--chakra-colors-messenger-300:#7AB8FF;--chakra-colors-messenger-400:#2E90FF;--chakra-colors-messenger-500:#0078FF;--chakra-colors-messenger-600:#0063D1;--chakra-colors-messenger-700:#0052AC;--chakra-colors-messenger-800:#003C7E;--chakra-colors-messenger-900:#002C5C;--chakra-colors-whatsapp-50:#dffeec;--chakra-colors-whatsapp-100:#b9f5d0;--chakra-colors-whatsapp-200:#90edb3;--chakra-colors-whatsapp-300:#65e495;--chakra-colors-whatsapp-400:#3cdd78;--chakra-colors-whatsapp-500:#22c35e;--chakra-colors-whatsapp-600:#179848;--chakra-colors-whatsapp-700:#0c6c33;--chakra-colors-whatsapp-800:#01421c;--chakra-colors-whatsapp-900:#001803;--chakra-colors-twitter-50:#E5F4FD;--chakra-colors-twitter-100:#C8E9FB;--chakra-colors-twitter-200:#A8DCFA;--chakra-colors-twitter-300:#83CDF7;--chakra-colors-twitter-400:#57BBF5;--chakra-colors-twitter-500:#1DA1F2;--chakra-colors-twitter-600:#1A94DA;--chakra-colors-twitter-700:#1681BF;--chakra-colors-twitter-800:#136B9E;--chakra-colors-twitter-900:#0D4D71;--chakra-colors-telegram-50:#E3F2F9;--chakra-colors-telegram-100:#C5E4F3;--chakra-colors-telegram-200:#A2D4EC;--chakra-colors-telegram-300:#7AC1E4;--chakra-colors-telegram-400:#47A9DA;--chakra-colors-telegram-500:#0088CC;--chakra-colors-telegram-600:#007AB8;--chakra-colors-telegram-700:#006BA1;--chakra-colors-telegram-800:#005885;--chakra-colors-telegram-900:#003F5E;--chakra-colors-alt-100:#2a2e38;--chakra-colors-alt-900:#5D656B;--chakra-borders-none:0;--chakra-borders-1px:1px solid;--chakra-borders-2px:2px solid;--chakra-borders-4px:4px solid;--chakra-borders-8px:8px solid;--chakra-fonts-heading:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-body:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-mono:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--chakra-fontSizes-xs:0.75rem;--chakra-fontSizes-sm:0.875rem;--chakra-fontSizes-md:1rem;--chakra-fontSizes-lg:1.125rem;--chakra-fontSizes-xl:1.25rem;--chakra-fontSizes-2xl:1.5rem;--chakra-fontSizes-3xl:1.875rem;--chakra-fontSizes-4xl:2.25rem;--chakra-fontSizes-5xl:3rem;--chakra-fontSizes-6xl:3.75rem;--chakra-fontSizes-7xl:4.5rem;--chakra-fontSizes-8xl:6rem;--chakra-fontSizes-9xl:8rem;--chakra-fontWeights-hairline:100;--chakra-fontWeights-thin:200;--chakra-fontWeights-light:300;--chakra-fontWeights-normal:400;--chakra-fontWeights-medium:500;--chakra-fontWeights-semibold:600;--chakra-fontWeights-bold:700;--chakra-fontWeights-extrabold:800;--chakra-fontWeights-black:900;--chakra-letterSpacings-tighter:-0.05em;--chakra-letterSpacings-tight:-0.025em;--chakra-letterSpacings-normal:0;--chakra-letterSpacings-wide:0.025em;--chakra-letterSpacings-wider:0.05em;--chakra-letterSpacings-widest:0.1em;--chakra-lineHeights-3:.75rem;--chakra-lineHeights-4:1rem;--chakra-lineHeights-5:1.25rem;--chakra-lineHeights-6:1.5rem;--chakra-lineHeights-7:1.75rem;--chakra-lineHeights-8:2rem;--chakra-lineHeights-9:2.25rem;--chakra-lineHeights-10:2.5rem;--chakra-lineHeights-normal:normal;--chakra-lineHeights-none:1;--chakra-lineHeights-shorter:1.25;--chakra-lineHeights-short:1.375;--chakra-lineHeights-base:1.5;--chakra-lineHeights-tall:1.625;--chakra-lineHeights-taller:2;--chakra-radii-none:0;--chakra-radii-sm:0.125rem;--chakra-radii-base:0.25rem;--chakra-radii-md:0.375rem;--chakra-radii-lg:0.5rem;--chakra-radii-xl:0.75rem;--chakra-radii-2xl:1rem;--chakra-radii-3xl:1.5rem;--chakra-radii-full:9999px;--chakra-space-1:0.25rem;--chakra-space-2:0.5rem;--chakra-space-3:0.75rem;--chakra-space-4:1rem;--chakra-space-5:1.25rem;--chakra-space-6:1.5rem;--chakra-space-7:1.75rem;--chakra-space-8:2rem;--chakra-space-9:2.25rem;--chakra-space-10:2.5rem;--chakra-space-12:3rem;--chakra-space-14:3.5rem;--chakra-space-16:4rem;--chakra-space-20:5rem;--chakra-space-24:6rem;--chakra-space-28:7rem;--chakra-space-32:8rem;--chakra-space-36:9rem;--chakra-space-40:10rem;--chakra-space-44:11rem;--chakra-space-48:12rem;--chakra-space-52:13rem;--chakra-space-56:14rem;--chakra-space-60:15rem;--chakra-space-64:16rem;--chakra-space-72:18rem;--chakra-space-80:20rem;--chakra-space-96:24rem;--chakra-space-px:1px;--chakra-space-0\.5:0.125rem;--chakra-space-1\.5:0.375rem;--chakra-space-2\.5:0.625rem;--chakra-space-3\.5:0.875rem;--chakra-shadows-xs:0 0 0 1px rgba(0, 0, 0, 0.05);--chakra-shadows-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--chakra-shadows-base:0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);--chakra-shadows-md:0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);--chakra-shadows-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);--chakra-shadows-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);--chakra-shadows-2xl:0 25px 50px -12px rgba(0, 0, 0, 0.25);--chakra-shadows-outline:0 0 0 3px #a991f1aa;--chakra-shadows-inner:inset 0 2px 4px 0 rgba(0,0,0,0.06);--chakra-shadows-none:none;--chakra-shadows-dark-lg:rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,rgba(0, 0, 0, 0.2) 0px 5px 10px,rgba(0, 0, 0, 0.4) 0px 15px 40px;--chakra-sizes-1:0.25rem;--chakra-sizes-2:0.5rem;--chakra-sizes-3:0.75rem;--chakra-sizes-4:1rem;--chakra-sizes-5:1.25rem;--chakra-sizes-6:1.5rem;--chakra-sizes-7:1.75rem;--chakra-sizes-8:2rem;--chakra-sizes-9:2.25rem;--chakra-sizes-10:2.5rem;--chakra-sizes-12:3rem;--chakra-sizes-14:3.5rem;--chakra-sizes-16:4rem;--chakra-sizes-20:5rem;--chakra-sizes-24:6rem;--chakra-sizes-28:7rem;--chakra-sizes-32:8rem;--chakra-sizes-36:9rem;--chakra-sizes-40:10rem;--chakra-sizes-44:11rem;--chakra-sizes-48:12rem;--chakra-sizes-52:13rem;--chakra-sizes-56:14rem;--chakra-sizes-60:15rem;--chakra-sizes-64:16rem;--chakra-sizes-72:18rem;--chakra-sizes-80:20rem;--chakra-sizes-96:24rem;--chakra-sizes-px:1px;--chakra-sizes-0\.5:0.125rem;--chakra-sizes-1\.5:0.375rem;--chakra-sizes-2\.5:0.625rem;--chakra-sizes-3\.5:0.875rem;--chakra-sizes-max:max-content;--chakra-sizes-min:min-content;--chakra-sizes-full:100%;--chakra-sizes-3xs:14rem;--chakra-sizes-2xs:16rem;--chakra-sizes-xs:20rem;--chakra-sizes-sm:24rem;--chakra-sizes-md:28rem;--chakra-sizes-lg:32rem;--chakra-sizes-xl:36rem;--chakra-sizes-2xl:42rem;--chakra-sizes-3xl:48rem;--chakra-sizes-4xl:56rem;--chakra-sizes-5xl:64rem;--chakra-sizes-6xl:72rem;--chakra-sizes-7xl:80rem;--chakra-sizes-8xl:90rem;--chakra-sizes-container-sm:640px;--chakra-sizes-container-md:768px;--chakra-sizes-container-lg:1024px;--chakra-sizes-container-xl:1280px;--chakra-zIndices-hide:-1;--chakra-zIndices-auto:auto;--chakra-zIndices-base:0;--chakra-zIndices-docked:10;--chakra-zIndices-dropdown:1000;--chakra-zIndices-sticky:1100;--chakra-zIndices-banner:1200;--chakra-zIndices-overlay:1300;--chakra-zIndices-modal:1400;--chakra-zIndices-popover:1500;--chakra-zIndices-skipLink:1600;--chakra-zIndices-toast:1700;--chakra-zIndices-tooltip:1800;--chakra-transition-property-common:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;--chakra-transition-property-colors:background-color,border-color,color,fill,stroke;--chakra-transition-property-dimensions:width,height;--chakra-transition-property-position:left,right,top,bottom;--chakra-transition-property-background:background-color,background-image,background-position;--chakra-transition-easing-ease-in:cubic-bezier(0.4, 0, 1, 1);--chakra-transition-easing-ease-out:cubic-bezier(0, 0, 0.2, 1);--chakra-transition-easing-ease-in-out:cubic-bezier(0.4, 0, 0.2, 1);--chakra-transition-duration-ultra-fast:50ms;--chakra-transition-duration-faster:100ms;--chakra-transition-duration-fast:150ms;--chakra-transition-duration-normal:200ms;--chakra-transition-duration-slow:300ms;--chakra-transition-duration-slower:400ms;--chakra-transition-duration-ultra-slow:500ms;--chakra-blur-none:0;--chakra-blur-sm:4px;--chakra-blur-base:8px;--chakra-blur-md:12px;--chakra-blur-lg:16px;--chakra-blur-xl:24px;--chakra-blur-2xl:40px;--chakra-blur-3xl:64px;}</style><style data-emotion="css-global 1syi0wy">html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;touch-action:manipulation;}body{position:relative;min-height:100%;font-feature-settings:'kern';}*,*::before,*::after{border-width:0;border-style:solid;box-sizing:border-box;}main{display:block;}hr{border-top-width:1px;box-sizing:content-box;height:0;overflow:visible;}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:1em;}a{background-color:transparent;color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;}abbr[title]{border-bottom:none;-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;}b,strong{font-weight:bold;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sub{bottom:-0.25em;}sup{top:-0.5em;}img{border-style:none;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible;}button,select{text-transform:none;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0;}fieldset{padding:0.35em 0.75em 0.625em;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline;}textarea{overflow:auto;}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0;}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{-webkit-appearance:none!important;}input[type="number"]{-moz-appearance:textfield;}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}[type="search"]::-webkit-search-decoration{-webkit-appearance:none!important;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block;}summary{display:-webkit-box;display:-webkit-list-item;display:-ms-list-itembox;display:list-item;}template{display:none;}[hidden]{display:none!important;}body,blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0;}button{background:transparent;padding:0;}fieldset{margin:0;padding:0;}ol,ul{margin:0;padding:0;}textarea{resize:vertical;}button,[role="button"]{cursor:pointer;}button::-moz-focus-inner{border:0!important;}table{border-collapse:collapse;}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit;}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle;}img,video{max-width:100%;height:auto;}[data-js-focus-visible] :focus:not([data-focus-visible-added]){outline:none;box-shadow:none;}select::-ms-expand{display:none;}</style><style data-emotion="css-global 1baqkrf">body{font-family:var(--chakra-fonts-body);color:var(--chakra-colors-gray-800);background:var(--chakra-colors-white);transition-property:background-color;transition-duration:var(--chakra-transition-duration-normal);line-height:var(--chakra-lineHeights-base);}*::-webkit-input-placeholder{color:var(--chakra-colors-gray-400);}*::-moz-placeholder{color:var(--chakra-colors-gray-400);}*:-ms-input-placeholder{color:var(--chakra-colors-gray-400);}*::placeholder{color:var(--chakra-colors-gray-400);}*,*::before,::after{border-color:var(--chakra-colors-gray-200);word-wrap:break-word;}</style><span></span></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/","query":{},"buildId":"Ydx3xl3sZeYptBHO1AStM","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html> \ No newline at end of file
+<!DOCTYPE html><html><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width"/><meta name="next-head-count" content="2"/><link rel="preload" href="/_next/static/css/a37ded5ec4cf14937ec5.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a37ded5ec4cf14937ec5.css" data-n-g=""/><link rel="preload" href="/_next/static/css/9aeb688eb5e47ce218d8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/9aeb688eb5e47ce218d8.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-a40ef1678bae11e696dba45124eadd70.js"></script><script src="/_next/static/chunks/webpack-06f739dee1b1cddd24d8.js" defer=""></script><script src="/_next/static/chunks/framework-2f612445bd50b211f15a.js" defer=""></script><script src="/_next/static/chunks/main-965b0767a8d0eaf0c110.js" defer=""></script><script src="/_next/static/chunks/pages/_app-8bd0d6de2a60ac35d501.js" defer=""></script><script src="/_next/static/chunks/fb7d5399-b53d39280eb7028fd5fb.js" defer=""></script><script src="/_next/static/chunks/0c428ae2-753f1ebbec24c403674c.js" defer=""></script><script src="/_next/static/chunks/1a48c3c1-8e9d488ce132c4739e94.js" defer=""></script><script src="/_next/static/chunks/b5f2ed29-c14b12daa385c4cc7854.js" defer=""></script><script src="/_next/static/chunks/d25bd147-2c59edc357c0e2372258.js" defer=""></script><script src="/_next/static/chunks/816-0c5ca424da57aea390ea.js" defer=""></script><script src="/_next/static/chunks/pages/index-174b94dde3c5121b0185.js" defer=""></script><script src="/_next/static/Syn_MlQhRUe5f18KTJnFB/_buildManifest.js" defer=""></script><script src="/_next/static/Syn_MlQhRUe5f18KTJnFB/_ssgManifest.js" defer=""></script></head><body><div id="__next"><style data-emotion="css-global 1n4e8ad">:host,:root{--chakra-ring-inset:var(--chakra-empty,/*!*/ /*!*/);--chakra-ring-offset-width:0px;--chakra-ring-offset-color:#fff;--chakra-ring-color:rgba(66, 153, 225, 0.6);--chakra-ring-offset-shadow:0 0 #0000;--chakra-ring-shadow:0 0 #0000;--chakra-space-x-reverse:0;--chakra-space-y-reverse:0;--chakra-colors-transparent:transparent;--chakra-colors-current:currentColor;--chakra-colors-black:#bbc2cf;--chakra-colors-white:#242730;--chakra-colors-whiteAlpha-50:rgba(255, 255, 255, 0.04);--chakra-colors-whiteAlpha-100:rgba(255, 255, 255, 0.06);--chakra-colors-whiteAlpha-200:rgba(255, 255, 255, 0.08);--chakra-colors-whiteAlpha-300:rgba(255, 255, 255, 0.16);--chakra-colors-whiteAlpha-400:rgba(255, 255, 255, 0.24);--chakra-colors-whiteAlpha-500:rgba(255, 255, 255, 0.36);--chakra-colors-whiteAlpha-600:rgba(255, 255, 255, 0.48);--chakra-colors-whiteAlpha-700:rgba(255, 255, 255, 0.64);--chakra-colors-whiteAlpha-800:rgba(255, 255, 255, 0.80);--chakra-colors-whiteAlpha-900:rgba(255, 255, 255, 0.92);--chakra-colors-blackAlpha-50:rgba(0, 0, 0, 0.04);--chakra-colors-blackAlpha-100:rgba(0, 0, 0, 0.06);--chakra-colors-blackAlpha-200:rgba(0, 0, 0, 0.08);--chakra-colors-blackAlpha-300:rgba(0, 0, 0, 0.16);--chakra-colors-blackAlpha-400:rgba(0, 0, 0, 0.24);--chakra-colors-blackAlpha-500:rgba(0, 0, 0, 0.36);--chakra-colors-blackAlpha-600:rgba(0, 0, 0, 0.48);--chakra-colors-blackAlpha-700:rgba(0, 0, 0, 0.64);--chakra-colors-blackAlpha-800:rgba(0, 0, 0, 0.80);--chakra-colors-blackAlpha-900:rgba(0, 0, 0, 0.92);--chakra-colors-gray-50:#F7FAFC;--chakra-colors-gray-100:#1c1f24;--chakra-colors-gray-200:rgb(29, 33, 38);--chakra-colors-gray-300:#21272d;--chakra-colors-gray-400:#23272e;--chakra-colors-gray-500:#484854;--chakra-colors-gray-600:#62686E;--chakra-colors-gray-700:#757B80;--chakra-colors-gray-800:#9ca0a4;--chakra-colors-gray-900:#DFDFDF;--chakra-colors-red-50:#FFF5F5;--chakra-colors-red-100:#FED7D7;--chakra-colors-red-200:#FEB2B2;--chakra-colors-red-300:#FC8181;--chakra-colors-red-400:#F56565;--chakra-colors-red-500:#ff665c;--chakra-colors-red-600:#C53030;--chakra-colors-red-700:#9B2C2C;--chakra-colors-red-800:#822727;--chakra-colors-red-900:#63171B;--chakra-colors-orange-50:#FFFAF0;--chakra-colors-orange-100:#FEEBC8;--chakra-colors-orange-200:#FBD38D;--chakra-colors-orange-300:#F6AD55;--chakra-colors-orange-400:#ED8936;--chakra-colors-orange-500:#e69055;--chakra-colors-orange-600:#C05621;--chakra-colors-orange-700:#9C4221;--chakra-colors-orange-800:#7B341E;--chakra-colors-orange-900:#652B19;--chakra-colors-yellow-50:#FFFFF0;--chakra-colors-yellow-100:#FEFCBF;--chakra-colors-yellow-200:#FAF089;--chakra-colors-yellow-300:#F6E05E;--chakra-colors-yellow-400:#ECC94B;--chakra-colors-yellow-500:#FCCE7B;--chakra-colors-yellow-600:#B7791F;--chakra-colors-yellow-700:#975A16;--chakra-colors-yellow-800:#744210;--chakra-colors-yellow-900:#5F370E;--chakra-colors-green-50:#F0FFF4;--chakra-colors-green-100:#C6F6D5;--chakra-colors-green-200:#9AE6B4;--chakra-colors-green-300:#68D391;--chakra-colors-green-400:#48BB78;--chakra-colors-green-500:#7bc275;--chakra-colors-green-600:#2F855A;--chakra-colors-green-700:#276749;--chakra-colors-green-800:#22543D;--chakra-colors-green-900:#1C4532;--chakra-colors-teal-50:#E6FFFA;--chakra-colors-teal-100:#B2F5EA;--chakra-colors-teal-200:#81E6D9;--chakra-colors-teal-300:#4FD1C5;--chakra-colors-teal-400:#38B2AC;--chakra-colors-teal-500:#51afef;--chakra-colors-teal-600:#2C7A7B;--chakra-colors-teal-700:#285E61;--chakra-colors-teal-800:#234E52;--chakra-colors-teal-900:#1D4044;--chakra-colors-blue-50:#ebf8ff;--chakra-colors-blue-100:#bee3f8;--chakra-colors-blue-200:#90cdf4;--chakra-colors-blue-300:#63b3ed;--chakra-colors-blue-400:#4299e1;--chakra-colors-blue-500:#51afef;--chakra-colors-blue-600:#2b6cb0;--chakra-colors-blue-700:#2c5282;--chakra-colors-blue-800:#2a4365;--chakra-colors-blue-900:#1A365D;--chakra-colors-cyan-50:#EDFDFD;--chakra-colors-cyan-100:#C4F1F9;--chakra-colors-cyan-200:#9DECF9;--chakra-colors-cyan-300:#76E4F7;--chakra-colors-cyan-400:#0BC5EA;--chakra-colors-cyan-500:#5cEfFF;--chakra-colors-cyan-600:#00A3C4;--chakra-colors-cyan-700:#0987A0;--chakra-colors-cyan-800:#086F83;--chakra-colors-cyan-900:#065666;--chakra-colors-purple-50:#FAF5FF;--chakra-colors-purple-100:#E9D8FD;--chakra-colors-purple-200:#D6BCFA;--chakra-colors-purple-300:#B794F4;--chakra-colors-purple-400:#9F7AEA;--chakra-colors-purple-500:#a991f1;--chakra-colors-purple-600:#6B46C1;--chakra-colors-purple-700:#553C9A;--chakra-colors-purple-800:#44337A;--chakra-colors-purple-900:#322659;--chakra-colors-pink-50:#FFF5F7;--chakra-colors-pink-100:#FED7E2;--chakra-colors-pink-200:#FBB6CE;--chakra-colors-pink-300:#F687B3;--chakra-colors-pink-400:#ED64A6;--chakra-colors-pink-500:#C57BDB;--chakra-colors-pink-600:#B83280;--chakra-colors-pink-700:#97266D;--chakra-colors-pink-800:#702459;--chakra-colors-pink-900:#521B41;--chakra-colors-linkedin-50:#E8F4F9;--chakra-colors-linkedin-100:#CFEDFB;--chakra-colors-linkedin-200:#9BDAF3;--chakra-colors-linkedin-300:#68C7EC;--chakra-colors-linkedin-400:#34B3E4;--chakra-colors-linkedin-500:#00A0DC;--chakra-colors-linkedin-600:#008CC9;--chakra-colors-linkedin-700:#0077B5;--chakra-colors-linkedin-800:#005E93;--chakra-colors-linkedin-900:#004471;--chakra-colors-facebook-50:#E8F4F9;--chakra-colors-facebook-100:#D9DEE9;--chakra-colors-facebook-200:#B7C2DA;--chakra-colors-facebook-300:#6482C0;--chakra-colors-facebook-400:#4267B2;--chakra-colors-facebook-500:#385898;--chakra-colors-facebook-600:#314E89;--chakra-colors-facebook-700:#29487D;--chakra-colors-facebook-800:#223B67;--chakra-colors-facebook-900:#1E355B;--chakra-colors-messenger-50:#D0E6FF;--chakra-colors-messenger-100:#B9DAFF;--chakra-colors-messenger-200:#A2CDFF;--chakra-colors-messenger-300:#7AB8FF;--chakra-colors-messenger-400:#2E90FF;--chakra-colors-messenger-500:#0078FF;--chakra-colors-messenger-600:#0063D1;--chakra-colors-messenger-700:#0052AC;--chakra-colors-messenger-800:#003C7E;--chakra-colors-messenger-900:#002C5C;--chakra-colors-whatsapp-50:#dffeec;--chakra-colors-whatsapp-100:#b9f5d0;--chakra-colors-whatsapp-200:#90edb3;--chakra-colors-whatsapp-300:#65e495;--chakra-colors-whatsapp-400:#3cdd78;--chakra-colors-whatsapp-500:#22c35e;--chakra-colors-whatsapp-600:#179848;--chakra-colors-whatsapp-700:#0c6c33;--chakra-colors-whatsapp-800:#01421c;--chakra-colors-whatsapp-900:#001803;--chakra-colors-twitter-50:#E5F4FD;--chakra-colors-twitter-100:#C8E9FB;--chakra-colors-twitter-200:#A8DCFA;--chakra-colors-twitter-300:#83CDF7;--chakra-colors-twitter-400:#57BBF5;--chakra-colors-twitter-500:#1DA1F2;--chakra-colors-twitter-600:#1A94DA;--chakra-colors-twitter-700:#1681BF;--chakra-colors-twitter-800:#136B9E;--chakra-colors-twitter-900:#0D4D71;--chakra-colors-telegram-50:#E3F2F9;--chakra-colors-telegram-100:#C5E4F3;--chakra-colors-telegram-200:#A2D4EC;--chakra-colors-telegram-300:#7AC1E4;--chakra-colors-telegram-400:#47A9DA;--chakra-colors-telegram-500:#0088CC;--chakra-colors-telegram-600:#007AB8;--chakra-colors-telegram-700:#006BA1;--chakra-colors-telegram-800:#005885;--chakra-colors-telegram-900:#003F5E;--chakra-colors-alt-100:#2a2e38;--chakra-colors-alt-900:#5D656B;--chakra-borders-none:0;--chakra-borders-1px:1px solid;--chakra-borders-2px:2px solid;--chakra-borders-4px:4px solid;--chakra-borders-8px:8px solid;--chakra-fonts-heading:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-body:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--chakra-fonts-mono:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--chakra-fontSizes-xs:0.75rem;--chakra-fontSizes-sm:0.875rem;--chakra-fontSizes-md:1rem;--chakra-fontSizes-lg:1.125rem;--chakra-fontSizes-xl:1.25rem;--chakra-fontSizes-2xl:1.5rem;--chakra-fontSizes-3xl:1.875rem;--chakra-fontSizes-4xl:2.25rem;--chakra-fontSizes-5xl:3rem;--chakra-fontSizes-6xl:3.75rem;--chakra-fontSizes-7xl:4.5rem;--chakra-fontSizes-8xl:6rem;--chakra-fontSizes-9xl:8rem;--chakra-fontWeights-hairline:100;--chakra-fontWeights-thin:200;--chakra-fontWeights-light:300;--chakra-fontWeights-normal:400;--chakra-fontWeights-medium:500;--chakra-fontWeights-semibold:600;--chakra-fontWeights-bold:700;--chakra-fontWeights-extrabold:800;--chakra-fontWeights-black:900;--chakra-letterSpacings-tighter:-0.05em;--chakra-letterSpacings-tight:-0.025em;--chakra-letterSpacings-normal:0;--chakra-letterSpacings-wide:0.025em;--chakra-letterSpacings-wider:0.05em;--chakra-letterSpacings-widest:0.1em;--chakra-lineHeights-3:.75rem;--chakra-lineHeights-4:1rem;--chakra-lineHeights-5:1.25rem;--chakra-lineHeights-6:1.5rem;--chakra-lineHeights-7:1.75rem;--chakra-lineHeights-8:2rem;--chakra-lineHeights-9:2.25rem;--chakra-lineHeights-10:2.5rem;--chakra-lineHeights-normal:normal;--chakra-lineHeights-none:1;--chakra-lineHeights-shorter:1.25;--chakra-lineHeights-short:1.375;--chakra-lineHeights-base:1.5;--chakra-lineHeights-tall:1.625;--chakra-lineHeights-taller:2;--chakra-radii-none:0;--chakra-radii-sm:0.125rem;--chakra-radii-base:0.25rem;--chakra-radii-md:0.375rem;--chakra-radii-lg:0.5rem;--chakra-radii-xl:0.75rem;--chakra-radii-2xl:1rem;--chakra-radii-3xl:1.5rem;--chakra-radii-full:9999px;--chakra-space-1:0.25rem;--chakra-space-2:0.5rem;--chakra-space-3:0.75rem;--chakra-space-4:1rem;--chakra-space-5:1.25rem;--chakra-space-6:1.5rem;--chakra-space-7:1.75rem;--chakra-space-8:2rem;--chakra-space-9:2.25rem;--chakra-space-10:2.5rem;--chakra-space-12:3rem;--chakra-space-14:3.5rem;--chakra-space-16:4rem;--chakra-space-20:5rem;--chakra-space-24:6rem;--chakra-space-28:7rem;--chakra-space-32:8rem;--chakra-space-36:9rem;--chakra-space-40:10rem;--chakra-space-44:11rem;--chakra-space-48:12rem;--chakra-space-52:13rem;--chakra-space-56:14rem;--chakra-space-60:15rem;--chakra-space-64:16rem;--chakra-space-72:18rem;--chakra-space-80:20rem;--chakra-space-96:24rem;--chakra-space-px:1px;--chakra-space-0\.5:0.125rem;--chakra-space-1\.5:0.375rem;--chakra-space-2\.5:0.625rem;--chakra-space-3\.5:0.875rem;--chakra-shadows-xs:0 0 0 1px rgba(0, 0, 0, 0.05);--chakra-shadows-sm:0 1px 2px 0 rgba(0, 0, 0, 0.05);--chakra-shadows-base:0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06);--chakra-shadows-md:0 4px 6px -1px rgba(0, 0, 0, 0.1),0 2px 4px -1px rgba(0, 0, 0, 0.06);--chakra-shadows-lg:0 10px 15px -3px rgba(0, 0, 0, 0.1),0 4px 6px -2px rgba(0, 0, 0, 0.05);--chakra-shadows-xl:0 20px 25px -5px rgba(0, 0, 0, 0.1),0 10px 10px -5px rgba(0, 0, 0, 0.04);--chakra-shadows-2xl:0 25px 50px -12px rgba(0, 0, 0, 0.25);--chakra-shadows-outline:0 0 0 3px #a991f1aa;--chakra-shadows-inner:inset 0 2px 4px 0 rgba(0,0,0,0.06);--chakra-shadows-none:none;--chakra-shadows-dark-lg:rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,rgba(0, 0, 0, 0.2) 0px 5px 10px,rgba(0, 0, 0, 0.4) 0px 15px 40px;--chakra-sizes-1:0.25rem;--chakra-sizes-2:0.5rem;--chakra-sizes-3:0.75rem;--chakra-sizes-4:1rem;--chakra-sizes-5:1.25rem;--chakra-sizes-6:1.5rem;--chakra-sizes-7:1.75rem;--chakra-sizes-8:2rem;--chakra-sizes-9:2.25rem;--chakra-sizes-10:2.5rem;--chakra-sizes-12:3rem;--chakra-sizes-14:3.5rem;--chakra-sizes-16:4rem;--chakra-sizes-20:5rem;--chakra-sizes-24:6rem;--chakra-sizes-28:7rem;--chakra-sizes-32:8rem;--chakra-sizes-36:9rem;--chakra-sizes-40:10rem;--chakra-sizes-44:11rem;--chakra-sizes-48:12rem;--chakra-sizes-52:13rem;--chakra-sizes-56:14rem;--chakra-sizes-60:15rem;--chakra-sizes-64:16rem;--chakra-sizes-72:18rem;--chakra-sizes-80:20rem;--chakra-sizes-96:24rem;--chakra-sizes-px:1px;--chakra-sizes-0\.5:0.125rem;--chakra-sizes-1\.5:0.375rem;--chakra-sizes-2\.5:0.625rem;--chakra-sizes-3\.5:0.875rem;--chakra-sizes-max:max-content;--chakra-sizes-min:min-content;--chakra-sizes-full:100%;--chakra-sizes-3xs:14rem;--chakra-sizes-2xs:16rem;--chakra-sizes-xs:20rem;--chakra-sizes-sm:24rem;--chakra-sizes-md:28rem;--chakra-sizes-lg:32rem;--chakra-sizes-xl:36rem;--chakra-sizes-2xl:42rem;--chakra-sizes-3xl:48rem;--chakra-sizes-4xl:56rem;--chakra-sizes-5xl:64rem;--chakra-sizes-6xl:72rem;--chakra-sizes-7xl:80rem;--chakra-sizes-8xl:90rem;--chakra-sizes-container-sm:640px;--chakra-sizes-container-md:768px;--chakra-sizes-container-lg:1024px;--chakra-sizes-container-xl:1280px;--chakra-zIndices-hide:-1;--chakra-zIndices-auto:auto;--chakra-zIndices-base:0;--chakra-zIndices-docked:10;--chakra-zIndices-dropdown:1000;--chakra-zIndices-sticky:1100;--chakra-zIndices-banner:1200;--chakra-zIndices-overlay:1300;--chakra-zIndices-modal:1400;--chakra-zIndices-popover:1500;--chakra-zIndices-skipLink:1600;--chakra-zIndices-toast:1700;--chakra-zIndices-tooltip:1800;--chakra-transition-property-common:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;--chakra-transition-property-colors:background-color,border-color,color,fill,stroke;--chakra-transition-property-dimensions:width,height;--chakra-transition-property-position:left,right,top,bottom;--chakra-transition-property-background:background-color,background-image,background-position;--chakra-transition-easing-ease-in:cubic-bezier(0.4, 0, 1, 1);--chakra-transition-easing-ease-out:cubic-bezier(0, 0, 0.2, 1);--chakra-transition-easing-ease-in-out:cubic-bezier(0.4, 0, 0.2, 1);--chakra-transition-duration-ultra-fast:50ms;--chakra-transition-duration-faster:100ms;--chakra-transition-duration-fast:150ms;--chakra-transition-duration-normal:200ms;--chakra-transition-duration-slow:300ms;--chakra-transition-duration-slower:400ms;--chakra-transition-duration-ultra-slow:500ms;--chakra-blur-none:0;--chakra-blur-sm:4px;--chakra-blur-base:8px;--chakra-blur-md:12px;--chakra-blur-lg:16px;--chakra-blur-xl:24px;--chakra-blur-2xl:40px;--chakra-blur-3xl:64px;}</style><style data-emotion="css-global 1syi0wy">html{line-height:1.5;-webkit-text-size-adjust:100%;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;touch-action:manipulation;}body{position:relative;min-height:100%;font-feature-settings:'kern';}*,*::before,*::after{border-width:0;border-style:solid;box-sizing:border-box;}main{display:block;}hr{border-top-width:1px;box-sizing:content-box;height:0;overflow:visible;}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:1em;}a{background-color:transparent;color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;}abbr[title]{border-bottom:none;-webkit-text-decoration:underline;text-decoration:underline;-webkit-text-decoration:underline dotted;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;}b,strong{font-weight:bold;}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sub{bottom:-0.25em;}sup{top:-0.5em;}img{border-style:none;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible;}button,select{text-transform:none;}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0;}fieldset{padding:0.35em 0.75em 0.625em;}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal;}progress{vertical-align:baseline;}textarea{overflow:auto;}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0;}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{-webkit-appearance:none!important;}input[type="number"]{-moz-appearance:textfield;}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px;}[type="search"]::-webkit-search-decoration{-webkit-appearance:none!important;}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit;}details{display:block;}summary{display:-webkit-box;display:-webkit-list-item;display:-ms-list-itembox;display:list-item;}template{display:none;}[hidden]{display:none!important;}body,blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre{margin:0;}button{background:transparent;padding:0;}fieldset{margin:0;padding:0;}ol,ul{margin:0;padding:0;}textarea{resize:vertical;}button,[role="button"]{cursor:pointer;}button::-moz-focus-inner{border:0!important;}table{border-collapse:collapse;}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit;}img,svg,video,canvas,audio,iframe,embed,object{display:block;vertical-align:middle;}img,video{max-width:100%;height:auto;}[data-js-focus-visible] :focus:not([data-focus-visible-added]){outline:none;box-shadow:none;}select::-ms-expand{display:none;}</style><style data-emotion="css-global 1baqkrf">body{font-family:var(--chakra-fonts-body);color:var(--chakra-colors-gray-800);background:var(--chakra-colors-white);transition-property:background-color;transition-duration:var(--chakra-transition-duration-normal);line-height:var(--chakra-lineHeights-base);}*::-webkit-input-placeholder{color:var(--chakra-colors-gray-400);}*::-moz-placeholder{color:var(--chakra-colors-gray-400);}*:-ms-input-placeholder{color:var(--chakra-colors-gray-400);}*::placeholder{color:var(--chakra-colors-gray-400);}*,*::before,::after{border-color:var(--chakra-colors-gray-200);word-wrap:break-word;}</style><span></span></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{}},"page":"/","query":{},"buildId":"Syn_MlQhRUe5f18KTJnFB","nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script></body></html> \ No newline at end of file