From 22197d63370ae0daa781109940ac901a3dcba124 Mon Sep 17 00:00:00 2001 From: Pyrospower Date: Fri, 20 Mar 2026 12:13:26 +0100 Subject: [PATCH 1/3] chore: WIP partial migration state before full dependency upgrade Snapshot of the partially started migration including: - Some shadcn-svelte components updated to Svelte 5 syntax - Content layer partially migrated to src/data/ with glob loader - New [...id].astro page alongside old [...slug].astro --- .../ui/select/select-group-heading.svelte | 16 ++++++++ .../select/select-scroll-down-button.svelte | 19 +++++++++ .../ui/select/select-scroll-up-button.svelte | 19 +++++++++ src/components/ui/separator/index.ts | 7 ++++ src/components/ui/separator/separator.svelte | 22 ++++++++++ src/config.content.ts | 15 +++++++ .../issues/holonews_fr_10.10._-_16.10..mdx | 7 ++++ .../issues/holonews_fr_11.07._-_17.07..mdx | 7 ++++ src/data/issues/holonews_fr_24.10_-_30.10.mdx | 7 ++++ .../issues/holonews_fr_30.05._-_05.06..mdx | 7 ++++ ...ws_fr_holostars_-tempus-_debut_special.mdx | 25 ++++++++++++ .../issues/holonews_fr_ver._01.08_-_07.08.mdx | 7 ++++ .../holonews_fr_ver._02.05._-_08.05..mdx | 7 ++++ .../issues/holonews_fr_ver._03.01_-_09.01.mdx | 7 ++++ .../holonews_fr_ver._04.04._-_10.04..mdx | 7 ++++ .../issues/holonews_fr_ver._06.12_-_12.12.mdx | 7 ++++ .../holonews_fr_ver._07.02._-_13.02..mdx | 7 ++++ .../issues/holonews_fr_ver._09.05_-_15.05.mdx | 7 ++++ .../issues/holonews_fr_ver._10.01_-_16.01.mdx | 7 ++++ .../issues/holonews_fr_ver._13.06_-_19.06.mdx | 7 ++++ .../issues/holonews_fr_ver._13.12_-_19.12.mdx | 7 ++++ .../issues/holonews_fr_ver._14.02_-_20.02.mdx | 7 ++++ .../holonews_fr_ver._14.03._-_20.03..mdx | 7 ++++ .../holonews_fr_ver._15.08._-_21.08..mdx | 7 ++++ .../issues/holonews_fr_ver._17.01_-_23.01.mdx | 7 ++++ .../issues/holonews_fr_ver._18.07_-_24.07.mdx | 7 ++++ .../holonews_fr_ver._20.06._-_26.06.mdx | 7 ++++ .../holonews_fr_ver._21.02._-_27.02..mdx | 7 ++++ .../issues/holonews_fr_ver._21.03_-_27.03.mdx | 7 ++++ .../holonews_fr_ver._22.08._-_28.08..mdx | 7 ++++ .../issues/holonews_fr_ver._22.11_-_28.11.mdx | 7 ++++ .../issues/holonews_fr_ver._23.05_-_29.05.mdx | 7 ++++ .../issues/holonews_fr_ver._24.01_-_30.01.mdx | 7 ++++ .../issues/holonews_fr_ver._25.07_-_31.07.mdx | 7 ++++ .../issues/holonews_fr_ver._27.06_-_03.07.mdx | 7 ++++ .../issues/holonews_fr_ver._28.02_-_06.03.mdx | 7 ++++ .../holonews_fr_ver._28.03._-_03.04..mdx | 7 ++++ .../holonews_fr_ver._29.08._-_04.09..mdx | 7 ++++ .../issues/holonews_fr_ver._29.11_-_05.12.mdx | 7 ++++ .../holonews_fr_ver._31.01._-_06.02..mdx | 7 ++++ .../holonews_fr_ver._lite_20.12_-_26.12.mdx | 7 ++++ .../holonews_fr_ver._lite_27.12_-_02.01.mdx | 7 ++++ ..._sp\303\251cial_d\303\251buts_d'holox.mdx" | 7 ++++ .../issues/holonews_french_17.10_-_23.10.mdx | 7 ++++ ...ws_holoid03_debut_special_-_fr_version.mdx | 20 ++++++++++ .../holonews_sana_special_issue_fr_ver..mdx | 7 ++++ ...ws_uproar!!_debut_special_-_fr_version.mdx | 23 +++++++++++ src/pages/issues/[...id].astro | 40 +++++++++++++++++++ 48 files changed, 472 insertions(+) create mode 100644 src/components/ui/select/select-group-heading.svelte create mode 100644 src/components/ui/select/select-scroll-down-button.svelte create mode 100644 src/components/ui/select/select-scroll-up-button.svelte create mode 100644 src/components/ui/separator/index.ts create mode 100644 src/components/ui/separator/separator.svelte create mode 100644 src/config.content.ts create mode 100644 src/data/issues/holonews_fr_10.10._-_16.10..mdx create mode 100644 src/data/issues/holonews_fr_11.07._-_17.07..mdx create mode 100644 src/data/issues/holonews_fr_24.10_-_30.10.mdx create mode 100644 src/data/issues/holonews_fr_30.05._-_05.06..mdx create mode 100644 src/data/issues/holonews_fr_holostars_-tempus-_debut_special.mdx create mode 100644 src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx create mode 100644 src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx create mode 100644 src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx create mode 100644 src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx create mode 100644 src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx create mode 100644 src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx create mode 100644 src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx create mode 100644 src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx create mode 100644 src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx create mode 100644 src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx create mode 100644 src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx create mode 100644 src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx create mode 100644 src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx create mode 100644 src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx create mode 100644 src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx create mode 100644 src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx create mode 100644 src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx create mode 100644 src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx create mode 100644 src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx create mode 100644 src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx create mode 100644 src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx create mode 100644 src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx create mode 100644 src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx create mode 100644 src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx create mode 100644 src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx create mode 100644 src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx create mode 100644 src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx create mode 100644 src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx create mode 100644 src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx create mode 100644 src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx create mode 100644 src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx create mode 100644 "src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" create mode 100644 src/data/issues/holonews_french_17.10_-_23.10.mdx create mode 100644 src/data/issues/holonews_holoid03_debut_special_-_fr_version.mdx create mode 100644 src/data/issues/holonews_sana_special_issue_fr_ver..mdx create mode 100644 src/data/issues/holonews_uproar!!_debut_special_-_fr_version.mdx create mode 100644 src/pages/issues/[...id].astro diff --git a/src/components/ui/select/select-group-heading.svelte b/src/components/ui/select/select-group-heading.svelte new file mode 100644 index 0000000..7984bef --- /dev/null +++ b/src/components/ui/select/select-group-heading.svelte @@ -0,0 +1,16 @@ + + + diff --git a/src/components/ui/select/select-scroll-down-button.svelte b/src/components/ui/select/select-scroll-down-button.svelte new file mode 100644 index 0000000..b927d62 --- /dev/null +++ b/src/components/ui/select/select-scroll-down-button.svelte @@ -0,0 +1,19 @@ + + + + + diff --git a/src/components/ui/select/select-scroll-up-button.svelte b/src/components/ui/select/select-scroll-up-button.svelte new file mode 100644 index 0000000..b8939ba --- /dev/null +++ b/src/components/ui/select/select-scroll-up-button.svelte @@ -0,0 +1,19 @@ + + + + + diff --git a/src/components/ui/separator/index.ts b/src/components/ui/separator/index.ts new file mode 100644 index 0000000..82442d2 --- /dev/null +++ b/src/components/ui/separator/index.ts @@ -0,0 +1,7 @@ +import Root from "./separator.svelte"; + +export { + Root, + // + Root as Separator, +}; diff --git a/src/components/ui/separator/separator.svelte b/src/components/ui/separator/separator.svelte new file mode 100644 index 0000000..839494d --- /dev/null +++ b/src/components/ui/separator/separator.svelte @@ -0,0 +1,22 @@ + + + diff --git a/src/config.content.ts b/src/config.content.ts new file mode 100644 index 0000000..33949f5 --- /dev/null +++ b/src/config.content.ts @@ -0,0 +1,15 @@ +import { defineCollection, z } from "astro:content"; +import { glob } from "astro/loaders"; + +export const collections = { + issues: defineCollection({ + loader: glob({ pattern: "**/[^_]*.md", base: "./src/data/issues" }), + schema: z.object({ + title: z.string(), + date: z.string().datetime({ offset: true }).pipe(z.coerce.date()), + link: z.string().url(), + images: z.array(z.string().url()), + tags: z.array(z.string()), + }), + }), +}; diff --git a/src/data/issues/holonews_fr_10.10._-_16.10..mdx b/src/data/issues/holonews_fr_10.10._-_16.10..mdx new file mode 100644 index 0000000..44d39b7 --- /dev/null +++ b/src/data/issues/holonews_fr_10.10._-_16.10..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR 10.10. - 16.10." +date: "2022-10-27T11:51:46.788000+0000" +link: "https://reddit.com/r/HoloNews/comments/yepx37/holonews_fr_1010_1610/" +images: ["https://preview.redd.it/3bzrie087cw91.png?width=640&crop=smart&auto=webp&s=7636c6c5f4dffb1065778d9a674b4e8642e2622c","https://i.redd.it/d01519587cw91.gif","https://i.redd.it/wjw5oud87cw91.gif","https://preview.redd.it/acfbjss87cw91.png?width=640&crop=smart&auto=webp&s=78f755b9410aba8cac5cef7e8c080db510a9ac33","https://preview.redd.it/sgvwf7w87cw91.png?width=640&crop=smart&auto=webp&s=53d4f9edfc5e699c96b1429a1c5bc78ece4c7144","https://preview.redd.it/w6wc6oz87cw91.png?width=640&crop=smart&auto=webp&s=26949b5b03b842fe9517c18dae1bf2360c7cd486","https://preview.redd.it/yroqjl397cw91.png?width=640&crop=smart&auto=webp&s=688d66be18c7dc75a4073d7c5291330e021dba24","https://preview.redd.it/dlkrhp697cw91.png?width=640&crop=smart&auto=webp&s=990a87f058209405adcc65d237712f7ae6c27189","https://preview.redd.it/y0sg1r997cw91.png?width=640&crop=smart&auto=webp&s=91958a0bd3733f54ff4f49ca3eb4b666081d8495","https://preview.redd.it/091s8zc97cw91.png?width=640&crop=smart&auto=webp&s=bc02366b3688ccb67359234536ad93d43cc79795","https://preview.redd.it/60w8k9g97cw91.png?width=640&crop=smart&auto=webp&s=f8f99c275252b55cafaa30090da9b254b31ccd08","https://preview.redd.it/45g7zek97cw91.png?width=640&crop=smart&auto=webp&s=b80bebc6543877d228e13c5b1f173be226d0d37d","https://preview.redd.it/oox2exn97cw91.png?width=640&crop=smart&auto=webp&s=dcc672ab0168170e0ff80a6a53a12918dd16dfb4"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_11.07._-_17.07..mdx b/src/data/issues/holonews_fr_11.07._-_17.07..mdx new file mode 100644 index 0000000..1b7f93f --- /dev/null +++ b/src/data/issues/holonews_fr_11.07._-_17.07..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR 11.07. - 17.07." +date: "2022-07-25T16:37:32.029000+0000" +link: "https://reddit.com/r/HoloNews/comments/w7tkee/holonews_fr_1107_1707/" +images: ["https://preview.redd.it/inupyz55sqd91.png?width=640&crop=smart&auto=webp&s=a13f43b1822e58a7223fd5a279385a053ae8a98e","https://i.redd.it/8dnl82obsqd91.gif","https://preview.redd.it/5x04ir55sqd91.png?width=640&crop=smart&auto=webp&s=70538af4cfbb95b1767ce6af3b7240adb3a6e006","https://i.redd.it/3xglyy55sqd91.gif","https://preview.redd.it/zdrtoz55sqd91.png?width=640&crop=smart&auto=webp&s=5ee931aa25cc004c9ae71bcbdd0960d7dae7c708","https://preview.redd.it/3cqxn165sqd91.png?width=640&crop=smart&auto=webp&s=bc45e14ee76e4bf724d19ef246ed892289443c3c","https://preview.redd.it/iyzym265sqd91.png?width=640&crop=smart&auto=webp&s=3158f75f9144ed8fe8728f30b5185e6d65479249","https://preview.redd.it/9uzxv265sqd91.png?width=640&crop=smart&auto=webp&s=5e70e4684752a4ed05fbe48135131e133c9aff95","https://preview.redd.it/njk2ov55sqd91.png?width=640&crop=smart&auto=webp&s=7087d0cff466285ace1f9019297627b174c114b8","https://preview.redd.it/ordd9765sqd91.png?width=640&crop=smart&auto=webp&s=37f5c74cd18e1d49a0175af99a099d3044958238","https://preview.redd.it/17xdy565sqd91.png?width=640&crop=smart&auto=webp&s=9d55acff85a990e6c7b874987a5c48cb2270327e","https://preview.redd.it/m4x6l765sqd91.png?width=640&crop=smart&auto=webp&s=e91aa0ed1673d4a376f8b94e8741027d5f074609","https://preview.redd.it/dzym0t55sqd91.png?width=640&crop=smart&auto=webp&s=2f9edb65378036072489ec09300b5cdd016b6cf7","https://preview.redd.it/31jeru55sqd91.png?width=640&crop=smart&auto=webp&s=8e29ac52bee9af7487038e31d545a05484aa02cc","https://preview.redd.it/ovsazt55sqd91.png?width=640&crop=smart&auto=webp&s=b1eb27bc1d2a498877be1e50922b41b32ed33d0a","https://preview.redd.it/lcvmsu55sqd91.png?width=640&crop=smart&auto=webp&s=a9d9b43ff564ee302c34d05fd99fb07cf29c4d38","https://preview.redd.it/57633v55sqd91.png?width=640&crop=smart&auto=webp&s=c1684738dcc40506baa175126f3188de869d98bf","https://preview.redd.it/5fxqsw55sqd91.png?width=640&crop=smart&auto=webp&s=530a45e18edd134fcaaee8fe7b99da825abb1622"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_24.10_-_30.10.mdx b/src/data/issues/holonews_fr_24.10_-_30.10.mdx new file mode 100644 index 0000000..74c739c --- /dev/null +++ b/src/data/issues/holonews_fr_24.10_-_30.10.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR 24.10 - 30.10" +date: "2022-11-25T10:13:41.430000+0000" +link: "https://reddit.com/r/HoloNews/comments/z49vh9/holonews_fr_2410_3010/" +images: ["https://preview.redd.it/sia4alx4o22a1.png?width=640&crop=smart&auto=webp&s=692efb5929e41f7cf44a2dad87e4777e2eb66c61","https://i.redd.it/4dgyri05o22a1.gif","https://preview.redd.it/q8w30uc5o22a1.png?width=640&crop=smart&auto=webp&s=03d913adca6f119832e2d7e5ebb1ecce95bcf8fd","https://i.redd.it/2opnzsf5o22a1.gif","https://i.redd.it/sonzn5m5o22a1.gif","https://i.redd.it/335o9ht5o22a1.gif","https://preview.redd.it/dgdc2u26o22a1.png?width=640&crop=smart&auto=webp&s=f96e59aec9df46ce309414d3ba472e48ad4b7f86","https://preview.redd.it/6yz6cz56o22a1.png?width=640&crop=smart&auto=webp&s=3d23e420677faf60ca75ad5f75a3b7bf4124a25a","https://preview.redd.it/3kvpg596o22a1.png?width=640&crop=smart&auto=webp&s=9f537feef364a7ac68ddd246ce15228d70b64a34","https://preview.redd.it/4grhzyb6o22a1.png?width=640&crop=smart&auto=webp&s=2e3984edda1e500125c4609509c09a60cec2bfa2","https://preview.redd.it/2kwkcgf6o22a1.png?width=640&crop=smart&auto=webp&s=69926c9f6e59a39c2168a69d72306abee75910d5","https://preview.redd.it/fcad0hi6o22a1.png?width=640&crop=smart&auto=webp&s=fad0c5401be1ff5a3863385cb0b8f93a57256d1b","https://preview.redd.it/lztz23l6o22a1.png?width=640&crop=smart&auto=webp&s=e806b27ea4cbc72e94dad670eba8b54c04808859","https://preview.redd.it/wi7in5p6o22a1.png?width=640&crop=smart&auto=webp&s=a844849e4432d4dedd5cd3b0ddce57c7ee611476","https://preview.redd.it/fosw4gs6o22a1.png?width=640&crop=smart&auto=webp&s=cbe0b64438958ae0d71d196bbb01e4f2c14a3675","https://preview.redd.it/488gfnv6o22a1.png?width=640&crop=smart&auto=webp&s=664e0c54baf43ea16fba07afe6a4df6a31bbf468","https://preview.redd.it/8e1wbcz6o22a1.png?width=640&crop=smart&auto=webp&s=d313a99b1f8c377125e56ec82ff28843807f9b25","https://preview.redd.it/lw5dm337o22a1.png?width=640&crop=smart&auto=webp&s=5089280089dee7ed86a8cd953f29459692571ab0","https://preview.redd.it/7f150h77o22a1.png?width=640&crop=smart&auto=webp&s=85f14d563c25de2e638d92fb53524d8a3c95fa3b","https://preview.redd.it/cbumokb7o22a1.png?width=640&crop=smart&auto=webp&s=cd0f5a38344afbe611b2acd672e309bfb3352a2e"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_30.05._-_05.06..mdx b/src/data/issues/holonews_fr_30.05._-_05.06..mdx new file mode 100644 index 0000000..36bbffc --- /dev/null +++ b/src/data/issues/holonews_fr_30.05._-_05.06..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR 30.05. - 05.06." +date: "2022-06-15T16:37:48.038000+0000" +link: "https://reddit.com/r/HoloNews/comments/vcyot7/holonews_fr_3005_0506/" +images: ["https://preview.redd.it/ma0oy6gvbt591.png?width=640&crop=smart&auto=webp&s=65c5b90b9937a2edcc8784a15ce444829a09e441","https://i.redd.it/cl3aoohvbt591.gif","https://i.redd.it/ie5ynpgvbt591.gif","https://i.redd.it/jro1atgvbt591.gif","https://preview.redd.it/5pswx0gvbt591.png?width=640&crop=smart&auto=webp&s=34c06a35a31fa3949281dff88d148b1f96b36ed3","https://preview.redd.it/qejof3gvbt591.png?width=640&crop=smart&auto=webp&s=a810f26d05289dc70869c3008c5ede4d4e355504","https://preview.redd.it/ua3je7gvbt591.png?width=640&crop=smart&auto=webp&s=75970127e81f40b14cbdfc23cccb86e981ae8592","https://preview.redd.it/bnjt28gvbt591.png?width=640&crop=smart&auto=webp&s=754200ba89fe44e585ed415844045123b2caae06","https://preview.redd.it/ey9i7thvbt591.png?width=640&crop=smart&auto=webp&s=a2ad9adf90fb7e7135287ce120c3f3c24a71e8c0","https://preview.redd.it/i25rzagvbt591.png?width=640&crop=smart&auto=webp&s=9929922f65d796e2ba3c905789d5fc6e0ecb4640","https://preview.redd.it/wljo5agvbt591.png?width=640&crop=smart&auto=webp&s=a39cfeb6854c51a7d85268c9311a5ffad22160ab","https://preview.redd.it/lg1g5cgvbt591.png?width=640&crop=smart&auto=webp&s=b471c815fb738f013bb9b1382980f9d11502ff2e","https://preview.redd.it/v4p04cgvbt591.png?width=640&crop=smart&auto=webp&s=b43bfffa17abdcc264a63578dcf64fe5aa4b3486","https://preview.redd.it/1nlnedgvbt591.png?width=640&crop=smart&auto=webp&s=84e7070cf06ead6e9e4c540d8c8b4d05b93eb452","https://preview.redd.it/10mxlfgvbt591.png?width=640&crop=smart&auto=webp&s=307d61a9b41db45861e6c4c49a27118d307473a6","https://preview.redd.it/a9e19ggvbt591.png?width=640&crop=smart&auto=webp&s=57d4e9dc212ea8a71b0baace7bb34a8ef449e1aa","https://preview.redd.it/16re6jgvbt591.png?width=640&crop=smart&auto=webp&s=dadaa5141bda600e01893f55d28dff0256f854da","https://preview.redd.it/yx6dvdgvbt591.png?width=640&crop=smart&auto=webp&s=b3dbb6f881424e6bd4afca58de6485dfe10bf07d","https://preview.redd.it/yf6d8hgvbt591.png?width=640&crop=smart&auto=webp&s=7819ef03e5be090513bef47dbb2fc878a6c05e78"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_holostars_-tempus-_debut_special.mdx b/src/data/issues/holonews_fr_holostars_-tempus-_debut_special.mdx new file mode 100644 index 0000000..04ff9b4 --- /dev/null +++ b/src/data/issues/holonews_fr_holostars_-tempus-_debut_special.mdx @@ -0,0 +1,25 @@ +--- +title: "HoloNews FR HOLOSTARS -TEMPUS- Debut Special" +date: "2022-07-29T16:48:19.098000+0000" +link: "https://reddit.com/r/HoloNews/comments/wb9p8l/holonews_fr_holostars_tempus_debut_special/" +images: + [ + "https://preview.redd.it/s3o8xm90eje91.png?width=640&crop=smart&auto=webp&s=5f815dfa385e0dc4ec9d2420c9b8797d4fa87912", + "https://preview.redd.it/dzfp4g90eje91.png?width=640&crop=smart&auto=webp&s=fa65ce7c399eabe49e812bcc3d6bb90e9c6a8d16", + "https://preview.redd.it/1l6aug90eje91.png?width=640&crop=smart&auto=webp&s=7c5090263bb163bf3020f29bab44ca74085165e2", + "https://preview.redd.it/fof8f890eje91.png?width=640&crop=smart&auto=webp&s=9ee443c7184986cfaf58b8d68f7347acc5853bcf", + "https://i.redd.it/9me7cj90eje91.gif", + "https://preview.redd.it/6q8s1b90eje91.png?width=640&crop=smart&auto=webp&s=7228c1761c79ebcdaa352127176cb3117ca67488", + "https://i.redd.it/wvug0k90eje91.gif", + "https://preview.redd.it/9667kj90eje91.png?width=640&crop=smart&auto=webp&s=19be89c4e53f73b9bb6f1d1024396c36772e896a", + "https://i.redd.it/qv6kyba0eje91.gif", + "https://preview.redd.it/51pm4l90eje91.png?width=640&crop=smart&auto=webp&s=1dd35c7dec15eefd454db979107adec415f8b81e", + "https://i.redd.it/tx0hgea0eje91.gif", + "https://preview.redd.it/9lxhek90eje91.png?width=640&crop=smart&auto=webp&s=1adc267edf7a1ae0e5f05675343b1a0955a9b5f8", + "https://preview.redd.it/fq3b1a90eje91.png?width=640&crop=smart&auto=webp&s=bdf99bae5fda3bf96e07dd7d0f6e3e41824bf82d", + "https://i.redd.it/ipc9kf90eje91.gif", + "https://preview.redd.it/0f6c7b90eje91.png?width=640&crop=smart&auto=webp&s=40206813ba65394ad97839d3c6c93aaa9ba24fdb", + "https://preview.redd.it/0elfze90eje91.png?width=640&crop=smart&auto=webp&s=faa0f4ab8e9190bfddba66825c238853e86649f2", + ] +tags: ["special"] +--- diff --git a/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx b/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx new file mode 100644 index 0000000..28360b4 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 01.08 - 07.08" +date: "2022-08-15T16:23:36.864000+0000" +link: "https://reddit.com/r/HoloNews/comments/wp3utw/holonews_fr_ver_0108_0708/" +images: ["https://preview.redd.it/7cwhos56lwh91.png?width=640&crop=smart&auto=webp&s=8162f7e5c897d76e9c979386fdffceba45f3cb68","https://i.redd.it/eph6kg56lwh91.gif","https://i.redd.it/klv7w376lwh91.gif","https://i.redd.it/omqga176lwh91.gif","https://i.redd.it/1aqchi66lwh91.gif","https://i.redd.it/co8v6w66lwh91.gif","https://preview.redd.it/x9kqii56lwh91.png?width=640&crop=smart&auto=webp&s=1bec0820b57fe748c8dfc78ee8e42853fb46f9f9","https://preview.redd.it/xgl1ov56lwh91.png?width=640&crop=smart&auto=webp&s=97c56ffa8318049488ceb41fb697d8847f5b7b7a","https://preview.redd.it/4x4jwu56lwh91.png?width=640&crop=smart&auto=webp&s=a12389ceb4834976e6a9228c19a20745e6ac0242","https://preview.redd.it/0kjwhn56lwh91.png?width=640&crop=smart&auto=webp&s=5166bb27f299f9b151c4fe995610005fe78e09eb","https://preview.redd.it/yn90nl56lwh91.png?width=640&crop=smart&auto=webp&s=e5aa4d5853f93820386a10a3c3f6e48a19779045","https://preview.redd.it/mpcmzv56lwh91.png?width=640&crop=smart&auto=webp&s=d6ecfaa817a32fd3a39be026089208e7ee8f1ecc","https://preview.redd.it/ihfx3x56lwh91.png?width=640&crop=smart&auto=webp&s=b203d6a0c90906530714dc9c09eb7b46feda4bf9","https://preview.redd.it/v9k1kl56lwh91.png?width=640&crop=smart&auto=webp&s=b3cf3c7937b04ce0bc8903d76e16d02f8b2960f4","https://preview.redd.it/lp3qz866lwh91.png?width=640&crop=smart&auto=webp&s=e454dfbb090a515f1f35b79c0e4c00c7be1a730f","https://preview.redd.it/1pijhy56lwh91.png?width=640&crop=smart&auto=webp&s=5a0b2c7beba7b50a63f762ff0355409a0032e9bd","https://preview.redd.it/po7s6z56lwh91.png?width=640&crop=smart&auto=webp&s=1b4bc2ab623a7c1060eea13473a225bb9a0a09cc","https://preview.redd.it/xul38166lwh91.png?width=640&crop=smart&auto=webp&s=31b08298485128c0ad443e7d6dbf714a738e9f3f","https://preview.redd.it/rrk4n166lwh91.png?width=640&crop=smart&auto=webp&s=0ca7b7090a7bd12eb8449ea35c3ce23ff2ff6e67"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx b/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx new file mode 100644 index 0000000..d348e69 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 02.05. - 08.05." +date: "2022-05-19T16:51:21.261000+0000" +link: "https://reddit.com/r/HoloNews/comments/ut7q1c/holonews_fr_ver_0205_0805/" +images: ["https://preview.redd.it/4bdt9fnspg091.png?width=640&crop=smart&auto=webp&s=36a264382dfa72475d093a1b4e4178449218b945","https://preview.redd.it/ha0268nspg091.png?width=640&crop=smart&auto=webp&s=33f222623ee5581ae85da9a6472846c157d55346","https://i.redd.it/sdzj9xnspg091.gif","https://preview.redd.it/yii65xmspg091.png?width=640&crop=smart&auto=webp&s=810b5bb5941b9067ec7b20a8d10fbccbadcff9a3","https://preview.redd.it/hwgnzxmspg091.png?width=640&crop=smart&auto=webp&s=a378d2c69c908e2df53dbbf03899abdf686e499a","https://preview.redd.it/3m9h2wmspg091.png?width=640&crop=smart&auto=webp&s=e5f92d38d316a09ece8af7f339e3854479da2c93","https://preview.redd.it/50v2twmspg091.png?width=640&crop=smart&auto=webp&s=a6702f21b72c37332dddccb9aa57c4d09c098132","https://preview.redd.it/tu86yymspg091.png?width=640&crop=smart&auto=webp&s=08e241575fe1b020ee8aade81d0af1aab72feec3","https://preview.redd.it/msp250nspg091.png?width=640&crop=smart&auto=webp&s=84a89fa6afeec50643b761daa62426a2e216d86d","https://preview.redd.it/bkozi1nspg091.png?width=640&crop=smart&auto=webp&s=4114262caefe5f7d738cbf5d9677f37b9dee80cc","https://preview.redd.it/rphaednspg091.png?width=640&crop=smart&auto=webp&s=c812a74dc54e32c377641547d843d4cc5fb2edbf","https://preview.redd.it/z9n8j2nspg091.png?width=640&crop=smart&auto=webp&s=432f436a8994d4f130b7760f1e46321f9c698bed","https://preview.redd.it/g0v222nspg091.png?width=640&crop=smart&auto=webp&s=59eb5c22cbb271f610169e0213fca4885408e1c4","https://preview.redd.it/tpgoqenspg091.png?width=640&crop=smart&auto=webp&s=df4eba2abbebb689027595cf2b2dab3125182194","https://preview.redd.it/v1b9q7nspg091.png?width=640&crop=smart&auto=webp&s=c20e79f7e1b33a5115e9bd89e7d0379aa395098b","https://preview.redd.it/jgm6u5nspg091.png?width=640&crop=smart&auto=webp&s=38be17fb48f3caa1d10e36d0cc3a12a50f0e91ae","https://preview.redd.it/60cho6nspg091.png?width=640&crop=smart&auto=webp&s=5f3723f70577ff3d85224f4e929cbe5d91071284"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx b/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx new file mode 100644 index 0000000..4b99afd --- /dev/null +++ b/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 03.01 - 09.01" +date: "2022-01-20T16:36:02.893000+0000" +link: "https://reddit.com/r/HoloNews/comments/s8mzqp/holonews_fr_ver_0301_0901/" +images: ["https://preview.redd.it/e0dk876kevc81.png?width=640&crop=smart&auto=webp&s=b1a10b8c11dd5444432233ebad7dc85f19b37a6b","https://i.redd.it/hia0f17kevc81.gif","https://i.redd.it/n55qx67kevc81.gif","https://i.redd.it/ahkv077kevc81.gif","https://i.redd.it/5ape827kevc81.gif","https://preview.redd.it/abe6bx5kevc81.png?width=640&crop=smart&auto=webp&s=52aaddc7317c62cc23de1804ae9ea6e1d4d6b67f","https://preview.redd.it/i347xy5kevc81.png?width=640&crop=smart&auto=webp&s=e059be0277f5cbb6d3b5a49dd6b842dca6e28a5b","https://preview.redd.it/ixnr5z5kevc81.png?width=640&crop=smart&auto=webp&s=00296bebce0cf49ff2a60adf446b0001d94c4256","https://preview.redd.it/kktgi06kevc81.png?width=640&crop=smart&auto=webp&s=a279380f1c1c25e62fbcda2599952a4ac935aa63","https://preview.redd.it/4asej26kevc81.png?width=640&crop=smart&auto=webp&s=1da02be9928fec88553f343688ab2960062d8c54","https://preview.redd.it/2l6kq26kevc81.png?width=640&crop=smart&auto=webp&s=b3e0388325c217a42376d9fb2ef69ad64d695cf0","https://preview.redd.it/o3u8t16kevc81.png?width=640&crop=smart&auto=webp&s=81c5cf45cb2c8f077963d391af23bfbf1df040c5","https://preview.redd.it/tel1c36kevc81.png?width=640&crop=smart&auto=webp&s=0368541747da3a937db11e3bc008dd900543be7d","https://preview.redd.it/zugkx56kevc81.png?width=640&crop=smart&auto=webp&s=056846a9305b54458cc498ee463ae613c86f975c","https://preview.redd.it/evbxr56kevc81.png?width=640&crop=smart&auto=webp&s=c064699f9beef5a8c903e64d48889e866b7c9ca9","https://preview.redd.it/691e766kevc81.png?width=640&crop=smart&auto=webp&s=8473f4355a1bfcb01aabe183e71c71adbd824f8b","https://preview.redd.it/mc0gyv5kevc81.png?width=640&crop=smart&auto=webp&s=52fb16261be0fd121febc144ffd98ae44629ec3f","https://preview.redd.it/m4mlsr5kevc81.png?width=640&crop=smart&auto=webp&s=d1b6bc6fd846c2b101ba88fb12811394c6e484fd"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx b/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx new file mode 100644 index 0000000..c7f9f72 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 04.04. - 10.04." +date: "2022-04-18T14:18:29.626000+0000" +link: "https://reddit.com/r/HoloNews/comments/u6e90i/holonews_fr_ver_0404_1004/" +images: ["https://preview.redd.it/447d9x59qau81.png?width=640&crop=smart&auto=webp&s=da1e72ad85758efd28cf305535e60e368ec906ab","https://i.redd.it/evaqgz69qau81.gif","https://i.redd.it/4cpyy569qau81.gif","https://i.redd.it/2lhpqm59qau81.gif","https://preview.redd.it/vqoemv59qau81.png?width=640&crop=smart&auto=webp&s=b577f973557b160e93c85dc2b50aebe53ae0cfcc","https://preview.redd.it/1p0w9x59qau81.png?width=640&crop=smart&auto=webp&s=eb24d7aed08ae47eb98c77548d486027886f3aef","https://preview.redd.it/8onp0069qau81.png?width=640&crop=smart&auto=webp&s=77c2052d6367e0672b2f9e574a1921b2f4f1535f","https://preview.redd.it/47q8zz59qau81.png?width=640&crop=smart&auto=webp&s=5b214222c0bf05bb30f184628729d134f4029a70","https://preview.redd.it/ng2jez59qau81.png?width=640&crop=smart&auto=webp&s=78a6f629b1d8d2347e487b340162b0cd02fcd30b","https://preview.redd.it/bvkxy169qau81.png?width=640&crop=smart&auto=webp&s=1954ff66b0b26e3e8ec5f1ab36dd544231decdd0","https://preview.redd.it/4isaim59qau81.png?width=640&crop=smart&auto=webp&s=2e2233b68a7665018531f331396e2d12d5982b20","https://preview.redd.it/tg33do59qau81.png?width=640&crop=smart&auto=webp&s=fe5c5e2398aae966f5a15220b53bd23994d842fe","https://preview.redd.it/k0xgzo59qau81.png?width=640&crop=smart&auto=webp&s=04894ea46f5cc6870c464c348b2b43220c05a620","https://preview.redd.it/f28i0069qau81.png?width=640&crop=smart&auto=webp&s=cfd9f432f4ca684c8741fa8a0de0757357fa5925","https://preview.redd.it/rpi8qr59qau81.png?width=640&crop=smart&auto=webp&s=e98e9e66e3150f9e0ca4b61ef491be956bcb1bd4","https://preview.redd.it/te1hcs59qau81.png?width=640&crop=smart&auto=webp&s=54067a4bbe0ce794e14ae015a4120d71e97c3f3c","https://preview.redd.it/jccgzt59qau81.png?width=640&crop=smart&auto=webp&s=c6f01e7fa0a3652ff04988062d8f9b317659f5af","https://preview.redd.it/zaqhfz59qau81.png?width=640&crop=smart&auto=webp&s=5d87fad3fb4ef7e073cd1546cc7bdd8172e18842","https://preview.redd.it/xr2di069qau81.png?width=640&crop=smart&auto=webp&s=6e8eada40e4418ca77867db22b2f2f2ec815bb3c","https://preview.redd.it/e9o8r269qau81.png?width=640&crop=smart&auto=webp&s=a0bbca7e0346cb52f6ac821b06ad9a3b15f05d31"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx b/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx new file mode 100644 index 0000000..9f98780 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 06.12 - 12.12" +date: "2021-12-22T16:46:40.026000+0000" +link: "https://reddit.com/r/HoloNews/comments/rm97dw/holonews_fr_ver_0612_1212/" +images: ["https://preview.redd.it/5m6u9vp5i4781.png?width=640&crop=smart&auto=webp&s=7e457b5c24559a4cb3729e0bca75fd436a4b7165","https://preview.redd.it/nxfdzpp5i4781.png?width=640&crop=smart&auto=webp&s=7eab2a23d433cc117eb4a12f319cc3a214d5ae20","https://i.redd.it/hzn54bq5i4781.gif","https://i.redd.it/84g75zp5i4781.gif","https://preview.redd.it/jzt074p5i4781.png?width=640&crop=smart&auto=webp&s=997f51f1b3d6470afd96392271d196610aba110c","https://preview.redd.it/xcgw2ro5i4781.png?width=640&crop=smart&auto=webp&s=85aff27ea989920d74b94ae79bc75ce0a4392708","https://preview.redd.it/5kftsfp5i4781.png?width=640&crop=smart&auto=webp&s=83e0568463842cd00b87c774eb0d1585f76d4cef","https://preview.redd.it/kplmeso5i4781.png?width=640&crop=smart&auto=webp&s=0ea90b4f544dae17840de1b754a844c428d356f0","https://preview.redd.it/3l7onpp5i4781.png?width=640&crop=smart&auto=webp&s=38d52e16a5c2e277921cf205ef3f1011c8ee1464","https://preview.redd.it/l819swo5i4781.png?width=640&crop=smart&auto=webp&s=c7bd7d92b3639dbbc69088ebfb49c6816ba8232a","https://preview.redd.it/hl8t1hp5i4781.png?width=640&crop=smart&auto=webp&s=05a87ee5c1f7493e5d32dce40bebd7abe2e024f9","https://preview.redd.it/spyjo0p5i4781.png?width=640&crop=smart&auto=webp&s=4a623d558b68c67ecb4547633c7226217f1c17ad","https://preview.redd.it/e4f2xbp5i4781.png?width=640&crop=smart&auto=webp&s=c79249d75260e4ca600f6da0372bed1234a92097","https://preview.redd.it/zybw02p5i4781.png?width=640&crop=smart&auto=webp&s=d41d4462503e963675c3d5362b89eb71f33b5389","https://preview.redd.it/j7pps8p5i4781.png?width=640&crop=smart&auto=webp&s=dcb9b082a98544a2e6a20a2e10a2ebaf4e8f6e5f","https://preview.redd.it/ufn3pso5i4781.png?width=640&crop=smart&auto=webp&s=140e213e675490db910653c1c37ed7259165f74c","https://preview.redd.it/2xyiqnp5i4781.png?width=640&crop=smart&auto=webp&s=ba9e8d7d8edcb7fc00143b7342f7e334abeb76da","https://preview.redd.it/l1ow7ap5i4781.png?width=640&crop=smart&auto=webp&s=c646d37f6d0ccd884044a772736a99aa0fd442e9","https://preview.redd.it/8ewqvso5i4781.png?width=640&crop=smart&auto=webp&s=b74795ad6432996d87370d219679c38b4ab0e903","https://preview.redd.it/0vvx7po5i4781.png?width=640&crop=smart&auto=webp&s=eaf33e2828b780aca5a67a53903ed3d5b7ebefa4"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx b/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx new file mode 100644 index 0000000..af5d198 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 07.02. - 13.02." +date: "2022-02-21T14:09:17.542000+0000" +link: "https://reddit.com/r/HoloNews/comments/sxuedk/holonews_fr_ver_0702_1302/" +images: ["https://preview.redd.it/1xfzyfoe17j81.png?width=640&crop=smart&auto=webp&s=69ac8f5daa881a83eefe8f8190748dd9c30706d1","https://i.redd.it/vx10udpe17j81.gif","https://i.redd.it/6qdrdooe17j81.gif","https://preview.redd.it/y7orleoe17j81.png?width=640&crop=smart&auto=webp&s=74998876761e262deed684eb5b53a51396ded201","https://preview.redd.it/7qv70ioe17j81.png?width=640&crop=smart&auto=webp&s=aa3dbb48840f050b2f67f1fac8c38814fbd88136","https://preview.redd.it/aqfugaoe17j81.png?width=640&crop=smart&auto=webp&s=da06ce83b779cf147cc36b615492b4d0982ccd3f","https://preview.redd.it/8jlvjloe17j81.png?width=640&crop=smart&auto=webp&s=98053983677d9c8fc005ba981e28137f659c1923","https://preview.redd.it/vu96h6oe17j81.png?width=640&crop=smart&auto=webp&s=b20ac10643527831a5f66b34786e5e87a2a83d3a","https://preview.redd.it/ywb64loe17j81.png?width=640&crop=smart&auto=webp&s=60fce1043dcd8e04b3534965e30eca2b2ec8a98b","https://preview.redd.it/t75966pe17j81.png?width=640&crop=smart&auto=webp&s=72f77c7cd6fb78a2487dad6bdfccafc4fe8f4a9f","https://preview.redd.it/5wthh8oe17j81.png?width=640&crop=smart&auto=webp&s=1a86e660068db52e38573cff7742de79dafbf662","https://preview.redd.it/c09s25oe17j81.png?width=640&crop=smart&auto=webp&s=5cbe3680b6467f9da0b935546816dad8d499ff54","https://preview.redd.it/1v57uhoe17j81.png?width=640&crop=smart&auto=webp&s=41c54d02b72dec2d35bdd5b1b32c1b57530ffb69","https://preview.redd.it/qf0n8aoe17j81.png?width=640&crop=smart&auto=webp&s=74641f3cdf7bd1a6c419064576002a3b53604637","https://preview.redd.it/u7q04boe17j81.png?width=640&crop=smart&auto=webp&s=0bb8480b0715cca40ae48a67ad0888fbee201922","https://preview.redd.it/zyj0iloe17j81.png?width=640&crop=smart&auto=webp&s=efc19b82b99cee47e70142c7f682b8fd14f28f72","https://preview.redd.it/e6g9weoe17j81.png?width=640&crop=smart&auto=webp&s=66e538b401cdf2197feb68fb1342e76b75668534","https://preview.redd.it/v1qafhoe17j81.png?width=640&crop=smart&auto=webp&s=db1ea0aee1483346bf2eb62c7734f266af900473","https://preview.redd.it/z6e4h4oe17j81.png?width=640&crop=smart&auto=webp&s=6e5a8c47eb6c597fe2c44120585bd5a7b11d612a","https://preview.redd.it/o9evvcoe17j81.png?width=640&crop=smart&auto=webp&s=df331404b6d04ec3dbcd8a6fe34dd307e1dcda49"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx b/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx new file mode 100644 index 0000000..3fda26a --- /dev/null +++ b/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 09.05 - 15.05" +date: "2022-05-25T16:19:11.481000+0000" +link: "https://reddit.com/r/HoloNews/comments/uxkygz/holonews_fr_ver_0905_1505/" +images: ["https://preview.redd.it/6d08rvbndn191.png?width=640&crop=smart&auto=webp&s=7e2fd1ef053ff2fe358a609eaabd9b285712c3d3","https://i.redd.it/st3x3ucndn191.gif","https://i.redd.it/hnb15qcndn191.gif","https://i.redd.it/fytcxvbndn191.gif","https://preview.redd.it/m2u0pjbndn191.png?width=640&crop=smart&auto=webp&s=cd79e6d50aaf007979553ea641edc9254ddf881e","https://preview.redd.it/deqm6xbndn191.png?width=640&crop=smart&auto=webp&s=0fad1eeeb31516731caa5ef2e129d754427a90e0","https://preview.redd.it/ha4s0lbndn191.png?width=640&crop=smart&auto=webp&s=a2fd10886fcfe15a0ba3993cd7ffb9251d23fcba","https://preview.redd.it/acwo6ybndn191.png?width=640&crop=smart&auto=webp&s=f8380c0618b174c4aaaed89a43d47c85528ac4de","https://preview.redd.it/cj6uylbndn191.png?width=640&crop=smart&auto=webp&s=1f9c69ec63ac1f124746a0384eed3da6be3a566b","https://preview.redd.it/mu6x71cndn191.png?width=640&crop=smart&auto=webp&s=cafbd9db5c001d5043d3886b0074c4d7cfa90f14","https://preview.redd.it/wu1g0qbndn191.png?width=640&crop=smart&auto=webp&s=a6e98f1011de70edf8b47cf7aab59c78a401d1e4","https://preview.redd.it/zv18f4cndn191.png?width=640&crop=smart&auto=webp&s=72c9183f4d0fb2bef328de562bda9e969f7dc066","https://preview.redd.it/0iwz07cndn191.png?width=640&crop=smart&auto=webp&s=70c364a93c727a7516950bd3963bed83a2f58ee1","https://preview.redd.it/4wc5t6cndn191.png?width=640&crop=smart&auto=webp&s=c85e5a0a8c62f4dbbeccfe9c3b281d499fb07f44","https://preview.redd.it/zf57hpbndn191.png?width=640&crop=smart&auto=webp&s=9fd1bb1fe3f7209bebf5fc0d77b7ae97701aaaa3","https://preview.redd.it/ph45p7cndn191.png?width=640&crop=smart&auto=webp&s=15ba7ecd4a015e61debac2ae2b2aadba6a65d425"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx b/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx new file mode 100644 index 0000000..9e70c87 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR Ver. 10.01 - 16.01" +date: "2022-01-27T14:20:51.083000+0000" +link: "https://reddit.com/r/HoloNews/comments/sdzh5w/holonews_fr_ver_1001_1601/" +images: ["https://preview.redd.it/a76xd4h6i8e81.png?width=640&crop=smart&auto=webp&s=2160e06d63719f7d76812b300423c06f6d658d7a","https://i.redd.it/ldw5o6h6i8e81.gif","https://i.redd.it/rtncihi6i8e81.gif","https://i.redd.it/c5gisfi6i8e81.gif","https://preview.redd.it/x5494bh6i8e81.png?width=640&crop=smart&auto=webp&s=7488bd4f327323ad0979a4b1183d0955b202fd11","https://preview.redd.it/5jy3qhh6i8e81.png?width=640&crop=smart&auto=webp&s=3a22eab335ce4698b6d6e299df4d2d3334351e25","https://preview.redd.it/f4nqihh6i8e81.png?width=640&crop=smart&auto=webp&s=433fd2b7bd2779f11b2006fdf57a099bc4c88df5","https://preview.redd.it/3fitkhh6i8e81.png?width=640&crop=smart&auto=webp&s=8cac1142ecb982d1c06121e1e2cd1e717c9cd4c1","https://preview.redd.it/e9p0ahh6i8e81.png?width=640&crop=smart&auto=webp&s=96c9984596982e0ce748641b6dffc378e49ffe6c","https://preview.redd.it/da0p0hh6i8e81.png?width=640&crop=smart&auto=webp&s=a575ed71198b5ef83fb6f1c942132ceefb828cdb","https://preview.redd.it/7gvwwhh6i8e81.png?width=640&crop=smart&auto=webp&s=1d83353fc0bc2dff157a9c9a88e38801c307981a","https://preview.redd.it/104s7ih6i8e81.png?width=640&crop=smart&auto=webp&s=477e2122148b4ef0757c5b7db6c010cb7f1cc075","https://preview.redd.it/th3koth6i8e81.png?width=640&crop=smart&auto=webp&s=a451fa59e863f049ba2da3db78a640c3cbe4adcc","https://preview.redd.it/iw24srh6i8e81.png?width=640&crop=smart&auto=webp&s=a09c329c87b17fa942d47934cd6a62f5636a9a34","https://preview.redd.it/2udkcmh6i8e81.png?width=640&crop=smart&auto=webp&s=7f02583e2a85bd24dccb0a5db084fb7a0f12d9fd","https://preview.redd.it/kc62oei6i8e81.png?width=640&crop=smart&auto=webp&s=cf86fe46ca2384b39099017b21768f6eb4ef675a","https://preview.redd.it/y1gnwei6i8e81.png?width=640&crop=smart&auto=webp&s=b3aaa1da19a3b37c390ad1679968a4993d21ea79","https://preview.redd.it/djp3zei6i8e81.png?width=640&crop=smart&auto=webp&s=a4080bdfe2c04dff85e166cf9ed334d39b59ec80","https://preview.redd.it/obuq7mi6i8e81.png?width=640&crop=smart&auto=webp&s=240389696801ca970648cd9143523facede88b6b","https://preview.redd.it/sk6ss9h6i8e81.png?width=640&crop=smart&auto=webp&s=59e36b78eaaa448846caaedbd330253ac1d42533"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx b/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx new file mode 100644 index 0000000..534fbca --- /dev/null +++ b/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 13.06 - 19.06" +date: "2022-06-27T16:43:05.423000+0000" +link: "https://reddit.com/r/HoloNews/comments/vlzuj2/holonews_fr_ver_1306_1906/" +images: ["https://preview.redd.it/4gafg71007891.png?width=640&crop=smart&auto=webp&s=55e9dec36ffe6e76e1f8dbe0ede59d01f38a868e","https://i.redd.it/q8n0df2007891.gif","https://preview.redd.it/afwo4y0007891.png?width=640&crop=smart&auto=webp&s=70baf8b329ba1861153f4483cd02d7a529a2aaef","https://i.redd.it/s4x3x42007891.gif","https://i.redd.it/d18nbs2007891.gif","https://i.redd.it/c3krlc2007891.gif","https://preview.redd.it/vsc0491007891.png?width=640&crop=smart&auto=webp&s=ed4896f76dd308bb5406c63d0a4a76b9a8ba5582","https://preview.redd.it/s8i86e1007891.png?width=640&crop=smart&auto=webp&s=69851b3f717262b0ab3beac099832d0ac873d4e6","https://preview.redd.it/mfyk4z0007891.png?width=640&crop=smart&auto=webp&s=43c15344c536d74655db9e4b5812d310dd4ee253","https://preview.redd.it/elcvud1007891.png?width=640&crop=smart&auto=webp&s=be9e361ccb0357ed50d812a9450b7fd4d614d321","https://preview.redd.it/yapvr21007891.png?width=640&crop=smart&auto=webp&s=b50b4276bfd0a7957100d638dc8c47cae2a92ebb","https://preview.redd.it/jc8e6e1007891.png?width=640&crop=smart&auto=webp&s=b0dfadcd41e7aa11d6d6cde874950fa0ff7f88b2","https://preview.redd.it/2aotee1007891.png?width=640&crop=smart&auto=webp&s=51e3bf1f1f43d395bbf5ea8ae0bf81809b0def2e","https://preview.redd.it/y13tq21007891.png?width=640&crop=smart&auto=webp&s=4296a60300dbd1f1fae2c7ceb1a474ebaf82abaa","https://preview.redd.it/5b7awf1007891.png?width=640&crop=smart&auto=webp&s=5fd9bc247acc09895c2b0d3af40f6a11eb514596","https://preview.redd.it/8bwjx61007891.png?width=640&crop=smart&auto=webp&s=8fc31732846bf8b7e14f7977536776d8e6b4a737","https://preview.redd.it/yt54hs1007891.png?width=640&crop=smart&auto=webp&s=2939f79cea455088f292bab53cd073bdf23e8fb2","https://preview.redd.it/urmq5h1007891.png?width=640&crop=smart&auto=webp&s=27d2ed6ecd4f0a7f3ace23ae4ae024317fa13950","https://preview.redd.it/x7r5pk1007891.png?width=640&crop=smart&auto=webp&s=57895970b13ba7336aa91b0b9dba9b177f8c2ec3","https://preview.redd.it/5jtaoj1007891.png?width=640&crop=smart&auto=webp&s=5b1f8f69573a4bbe81a6157c8ec9de18abb7f00a"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx b/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx new file mode 100644 index 0000000..f0ce445 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx @@ -0,0 +1,7 @@ +--- +title: "Holonews FR ver. 13.12 - 19.12" +date: "2021-12-30T17:03:40.473000+0000" +link: "https://reddit.com/r/HoloNews/comments/rs6inc/holonews_fr_ver_1312_1912/" +images: ["https://i.redd.it/mdbr8fr7op881.gif","https://i.redd.it/2gkvmbr7op881.gif","https://i.redd.it/cfgs5fr7op881.gif","https://preview.redd.it/yoztz9r7op881.png?width=640&crop=smart&auto=webp&s=faf4b4ff1d037d972b11359332d21340e67b2c6e","https://preview.redd.it/6hzku9r7op881.png?width=640&crop=smart&auto=webp&s=f611a3956a9a7cd55f7bca2cd03adb150b719f29","https://preview.redd.it/4ans4cr7op881.png?width=640&crop=smart&auto=webp&s=aa4c3e5e272c4343ed4c2d5a8cff19c26251a49b","https://i.redd.it/6q9z38s7op881.gif","https://preview.redd.it/8qzv4gr7op881.png?width=640&crop=smart&auto=webp&s=6bb2eeafe88d807e930549682160700a6ea9a2a7","https://preview.redd.it/xtq505r7op881.png?width=640&crop=smart&auto=webp&s=b45496451e744c0886e4daf84d2da4a1b6161b24","https://preview.redd.it/spozawqbop881.png?width=640&crop=smart&auto=webp&s=4feb1114688a978e54c1701b8b824b5f74c77cb5","https://preview.redd.it/mrnna2rbop881.png?width=640&crop=smart&auto=webp&s=ada9d46983ed3c8c8292a3a4e87fd44f96bb1b55","https://preview.redd.it/if4hbzrbop881.png?width=640&crop=smart&auto=webp&s=d81fbf28c071a282cfded7cacbb2fc7eb4febdf2","https://preview.redd.it/bdhhvxqbop881.png?width=640&crop=smart&auto=webp&s=e42b6bcb4d0c7508c2674d72f754ca7b3ba7403c","https://preview.redd.it/g5e6n8rbop881.png?width=640&crop=smart&auto=webp&s=671ae8975a7ba4a28ab1ba3d102923ca2dbb226d","https://preview.redd.it/othl11rbop881.png?width=640&crop=smart&auto=webp&s=843f7cbbbb9e89d587c910ba92b48512c99b71d9","https://preview.redd.it/youn1arbop881.png?width=640&crop=smart&auto=webp&s=bb47e4647030f2d055471fb3c06ffd0047f07735","https://preview.redd.it/0rlzk5rbop881.png?width=640&crop=smart&auto=webp&s=228320575dd5bb8645dc35ca1d4d6aa79ca189bb","https://preview.redd.it/s9btd0rbop881.png?width=640&crop=smart&auto=webp&s=cfc05afb23cf6c0a2aa92daf3b992d3219258a45","https://preview.redd.it/097yrwqbop881.png?width=640&crop=smart&auto=webp&s=b5fe85eda72561c8b43b1c86f7691b8a0c0f80fc","https://preview.redd.it/gxjactqbop881.png?width=640&crop=smart&auto=webp&s=6683cab62c30f5b5ea01bfb73e3a64183818b0c5"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx b/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx new file mode 100644 index 0000000..75dbcf0 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 14.02 - 20.02" +date: "2022-02-28T16:33:37.515000+0000" +link: "https://reddit.com/r/HoloNews/comments/t3jlfs/holonews_fr_ver_1402_2002/" +images: ["https://preview.redd.it/vofozn9hplk81.png?width=640&crop=smart&auto=webp&s=27ae1c9d56f9bf4873fa12f688649f0862bb313c","https://i.redd.it/2x1avp9hplk81.gif","https://i.redd.it/q3grcw9hplk81.gif","https://i.redd.it/5c90dx9hplk81.gif","https://preview.redd.it/rtbwlt9hplk81.png?width=640&crop=smart&auto=webp&s=e511390519cb06a702c8fb02718e0658498bf955","https://preview.redd.it/n829ms9hplk81.png?width=640&crop=smart&auto=webp&s=edada192fd6599e6c75a049287658c1b6498f11b","https://preview.redd.it/wz3l9c9hplk81.png?width=640&crop=smart&auto=webp&s=9ce5f1d5c71ccb653319d143f6fe6f77869ab18d","https://preview.redd.it/y2itib9hplk81.png?width=640&crop=smart&auto=webp&s=12e89b1630c6cbd113379f10584dfd3453233314","https://preview.redd.it/0tignb9hplk81.png?width=640&crop=smart&auto=webp&s=4cc3c1ec43edea06db4a9f51305eafaddd0e0b5f","https://preview.redd.it/gvvkmc9hplk81.png?width=640&crop=smart&auto=webp&s=c031e7d337bf1de9fd8bfd39d427fafbe48fb620","https://preview.redd.it/e8oyxd9hplk81.png?width=640&crop=smart&auto=webp&s=92a3903ed9210fe9a5db25038b51fc1cc2aeb033","https://preview.redd.it/26e2rg9hplk81.png?width=640&crop=smart&auto=webp&s=d02bfd6c9a22e55755feac5eb10e6cbaca38907f","https://preview.redd.it/jrofnf9hplk81.png?width=640&crop=smart&auto=webp&s=62aacb83f40ee241e4f4e91bca1029d3f2be6551","https://preview.redd.it/ra08ek9hplk81.png?width=640&crop=smart&auto=webp&s=084be884b52ad02faa9e89642909878e9dfba355","https://preview.redd.it/fuhzya9hplk81.png?width=640&crop=smart&auto=webp&s=ecfd66c568f609b3852144852c5bc95267b4c074","https://preview.redd.it/oe03uf9hplk81.png?width=640&crop=smart&auto=webp&s=617a5e34007ab70f8018375de30d51744d69343d","https://preview.redd.it/msc19i9hplk81.png?width=640&crop=smart&auto=webp&s=92560dd1db5833f74b01460744d8b4a82f2122ac","https://preview.redd.it/oc740k9hplk81.png?width=640&crop=smart&auto=webp&s=91a4ea310ada07f71bda879d4805eeccbc80aea5","https://preview.redd.it/k8z90j9hplk81.png?width=640&crop=smart&auto=webp&s=d12fd84ccdc75f87cd0e240b875ee6b6da15a6b7","https://preview.redd.it/38e8fj9hplk81.png?width=640&crop=smart&auto=webp&s=7cf7d280ef148101d187fe3934bd8c063d42d4e1"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx b/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx new file mode 100644 index 0000000..6060d3e --- /dev/null +++ b/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 14.03. - 20.03." +date: "2022-03-28T17:22:30.799000+0000" +link: "https://reddit.com/r/HoloNews/comments/tqeeiy/holonews_fr_ver_1403_2003/" +images: ["https://preview.redd.it/8l00lc61s5q81.png?width=640&crop=smart&auto=webp&s=453234cee70e0f548eed14bcc3b686d60118260e","https://i.redd.it/6uhrci61s5q81.gif","https://i.redd.it/cyqkof61s5q81.gif","https://i.redd.it/sylozk61s5q81.gif","https://preview.redd.it/vdqp7661s5q81.png?width=640&crop=smart&auto=webp&s=9d91fbed8899e9fe903537d6f79c621b17f98337","https://preview.redd.it/ii0pva61s5q81.png?width=640&crop=smart&auto=webp&s=9318492da5dac19d8b39fe81b1fdc72c1c665527","https://preview.redd.it/ea20f961s5q81.png?width=640&crop=smart&auto=webp&s=1417346c2aea0fd091f306550ad68b149dc63b07","https://preview.redd.it/y7r06h61s5q81.png?width=640&crop=smart&auto=webp&s=bed828d1631524f1865ce25ba57950a08b057f98","https://preview.redd.it/ilke9b61s5q81.png?width=640&crop=smart&auto=webp&s=be283f4da67749f62f511273da38f6974d419fae","https://preview.redd.it/cd6a9h61s5q81.png?width=640&crop=smart&auto=webp&s=f543205abd9397032632e17da83aa041ab9a3723","https://preview.redd.it/urbzei61s5q81.png?width=640&crop=smart&auto=webp&s=a8a7f73fa22047c3b4231709d6a599a11d6c6e52","https://preview.redd.it/ozi8q661s5q81.png?width=640&crop=smart&auto=webp&s=bb0b8c13b6021fcd9615a2f8965f5325dbdeca21","https://preview.redd.it/gw04iy61s5q81.png?width=640&crop=smart&auto=webp&s=b043da58c6d4b49c7c9fd8eea154428446fdf401","https://preview.redd.it/wk838d61s5q81.png?width=640&crop=smart&auto=webp&s=9557ef890f9cf60a5d1e4159b87bb1852e77cb77","https://preview.redd.it/jrpfmf61s5q81.png?width=640&crop=smart&auto=webp&s=89d897714f0ad2f21c5b3622d98a8dba56363eb3","https://preview.redd.it/l8ljjk61s5q81.png?width=640&crop=smart&auto=webp&s=8da3d628ea00e9b68a098ca9af9b56f7a76189c2","https://preview.redd.it/0zxhnd61s5q81.png?width=640&crop=smart&auto=webp&s=137ae1dcd569912482a52ccaccb9231563ef37b0","https://preview.redd.it/47e7fa61s5q81.png?width=640&crop=smart&auto=webp&s=0a528a44c670d8c7f6195df4d0d9966962ffd884","https://preview.redd.it/n98lfk61s5q81.png?width=640&crop=smart&auto=webp&s=91f0f69ace839651baac83aeca97c07d00e909a0"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx b/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx new file mode 100644 index 0000000..9968e21 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 15.08. - 21.08." +date: "2022-08-29T17:08:07.184000+0000" +link: "https://reddit.com/r/HoloNews/comments/x0u1a8/holonews_fr_ver_1508_2108/" +images: ["https://preview.redd.it/2ciom6supok91.png?width=640&crop=smart&auto=webp&s=a2a3c4992e8be646d742bdd59e3f3f8e4372ac33","https://i.redd.it/634sj0supok91.gif","https://preview.redd.it/e97q8xsupok91.png?width=640&crop=smart&auto=webp&s=d7ada2e095dca223fbe4466427123aab775f41ee","https://i.redd.it/lhhuwrsupok91.gif","https://i.redd.it/8nol54supok91.gif","https://preview.redd.it/stxer8supok91.png?width=640&crop=smart&auto=webp&s=01d888ec2cb59541c50c0d9ac6933f517a718cac","https://i.redd.it/garj0urupok91.gif","https://preview.redd.it/dzlymyrupok91.png?width=640&crop=smart&auto=webp&s=10bf18de905a5667dbf8f70fc7e93b8bb7d16c66","https://preview.redd.it/vucz81supok91.png?width=640&crop=smart&auto=webp&s=996b02056423a26d02ce37f2fa3c939b4a93d3cd","https://preview.redd.it/nuys91supok91.png?width=640&crop=smart&auto=webp&s=e0957be9073eeeb47ce37fc797987568461b0d9d","https://preview.redd.it/courx9supok91.png?width=640&crop=smart&auto=webp&s=1273453defd8ff55f4f970fb9296241b50a2044d","https://preview.redd.it/cp33mksupok91.png?width=640&crop=smart&auto=webp&s=d3960874a027037b145bb0638de96a47e0b2f01a","https://preview.redd.it/2iuegvrupok91.png?width=640&crop=smart&auto=webp&s=02669107cf0fef01489275046620eaef9e39913a","https://preview.redd.it/gup31rsupok91.png?width=640&crop=smart&auto=webp&s=5bd77a5f4344919c4173af822be99187de8b3c48","https://preview.redd.it/cq9bttsupok91.png?width=640&crop=smart&auto=webp&s=46548ab7eeb1768aa3c41089d7d1ac9e35eafb4b","https://preview.redd.it/x3pycvrupok91.png?width=640&crop=smart&auto=webp&s=7d5027456b42eeaa05855f9206192ad5092e7d36","https://preview.redd.it/uw7vqwrupok91.png?width=640&crop=smart&auto=webp&s=6843c861fa271acb89c0ca3607ccbd75d02070ac","https://preview.redd.it/4t5qgwrupok91.png?width=640&crop=smart&auto=webp&s=017892af2ce1c5b923d8af297a27642a70ac787e","https://preview.redd.it/1zq51wsupok91.png?width=640&crop=smart&auto=webp&s=be13fa6989a625ebe500340870400eab030dee07"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx b/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx new file mode 100644 index 0000000..53f67c0 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 17.01 - 23.01" +date: "2022-02-01T16:11:27.093000+0000" +link: "https://reddit.com/r/HoloNews/comments/shylp9/holonews_fr_ver_1701_2301/" +images: ["https://preview.redd.it/trqd5hf6x8f81.png?width=640&crop=smart&auto=webp&s=34605931436bd174ae8291be43559165f82cd9e5","https://i.redd.it/0se94vf6x8f81.gif","https://i.redd.it/tv8xlhf6x8f81.gif","https://i.redd.it/j4f6g8g6x8f81.gif","https://i.redd.it/cd52pyf6x8f81.gif","https://preview.redd.it/wyxpejf6x8f81.png?width=640&crop=smart&auto=webp&s=1b5114e7cc077ed90d6f8d1a50d2103a005aeffa","https://preview.redd.it/eg6iinf6x8f81.png?width=640&crop=smart&auto=webp&s=cb93a3f0f231c8aef20153cb355d963d5d1078e8","https://preview.redd.it/8yecplf6x8f81.png?width=640&crop=smart&auto=webp&s=bc45a8d226b09d27f513f6ce26f0eabbbc9cdbfb","https://preview.redd.it/qjxy9nf6x8f81.png?width=640&crop=smart&auto=webp&s=ab8a7fce77388059f184e3f4898feba5053ac3b0","https://preview.redd.it/2mvamff6x8f81.png?width=640&crop=smart&auto=webp&s=bbca0f824900bc7673cc3c023abf468aeb550e42","https://preview.redd.it/h286wlf6x8f81.png?width=640&crop=smart&auto=webp&s=ae8be14fd9a4fb383bf7b179b05536a554669f4b","https://preview.redd.it/dya8inf6x8f81.png?width=640&crop=smart&auto=webp&s=c3ac661fa1961c669f07aa05ff6795e869dc6fb3","https://preview.redd.it/ul3ntmf6x8f81.png?width=640&crop=smart&auto=webp&s=a2716fd3b95806416365b153a86cf46d11ed9311","https://preview.redd.it/re6y8of6x8f81.png?width=640&crop=smart&auto=webp&s=5d0d7b3c420b2ee8493a9dad9d532e347e236b91","https://preview.redd.it/ww8qoof6x8f81.png?width=640&crop=smart&auto=webp&s=01695cf89c2777ac8ec3c1af48bbc8167809226d","https://preview.redd.it/08bviof6x8f81.png?width=640&crop=smart&auto=webp&s=fbe6fa0e3851eddf409602064abbb5a5fe40dbd2","https://preview.redd.it/kt122qf6x8f81.png?width=640&crop=smart&auto=webp&s=6ecefb9bddc638fff6a871fb39bfa58eb123becc","https://preview.redd.it/n0g75tf6x8f81.png?width=640&crop=smart&auto=webp&s=3da5663ab629967818d3d454f9524c4a47090408","https://preview.redd.it/udnc3tf6x8f81.png?width=640&crop=smart&auto=webp&s=7e17a39cb459ab74aae2a263c39d6ff22f3de821","https://preview.redd.it/l83xopf6x8f81.png?width=640&crop=smart&auto=webp&s=1654d30eeb92204e8d364f996bcfd1c1bde484fd"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx b/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx new file mode 100644 index 0000000..3ca6f53 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR Ver. 18.07 - 24.07" +date: "2022-08-04T16:09:47.902000+0000" +link: "https://reddit.com/r/HoloNews/comments/wg54k1/holonews_fr_ver_1807_2407/" +images: ["https://preview.redd.it/j1sg7blo0qf91.png?width=640&crop=smart&auto=webp&s=875d080bded05de47847553516eb706d78b749e3","https://i.redd.it/mhzj60no0qf91.gif","https://i.redd.it/upgcmano0qf91.gif","https://i.redd.it/ofvroeno0qf91.gif","https://i.redd.it/ac2sk9no0qf91.gif","https://i.redd.it/9yip5omo0qf91.gif","https://preview.redd.it/sk6j3clo0qf91.png?width=640&crop=smart&auto=webp&s=b95136f3f3fefd479e264f02fdcebee10ebf5595","https://preview.redd.it/vf0r5zko0qf91.png?width=640&crop=smart&auto=webp&s=278bf6a9053de369fb0b32fd74adbe607359ac46","https://preview.redd.it/opnzsdlo0qf91.png?width=640&crop=smart&auto=webp&s=2496266de37e2aef7c2fc0447781df418989a5de","https://preview.redd.it/60vvyglo0qf91.png?width=640&crop=smart&auto=webp&s=681fa90f7d9759063c2430beb49ca2d693def520","https://preview.redd.it/hqc7zhlo0qf91.png?width=640&crop=smart&auto=webp&s=5d26114bee86c14ccdbe4e08d76eefa9eb9c97f1","https://preview.redd.it/fhlibllo0qf91.png?width=640&crop=smart&auto=webp&s=8c24bcdb191433b9daffd4e215da59b3bdd6c101","https://preview.redd.it/9t9pknlo0qf91.png?width=640&crop=smart&auto=webp&s=b31173c3638d3b1ab965d6ee9a51685aea3b13d0","https://preview.redd.it/ys0mh1lo0qf91.png?width=640&crop=smart&auto=webp&s=aec73dcf641c48852cc407c493ea046881c32fb6","https://preview.redd.it/0ixorqlo0qf91.png?width=640&crop=smart&auto=webp&s=f162f2271735030b16a0da84e29d99731332c88a","https://preview.redd.it/z5fgc2lo0qf91.png?width=640&crop=smart&auto=webp&s=e9cf1741e03837d1bdac8148c19eab244611717d","https://preview.redd.it/gou7namo0qf91.png?width=640&crop=smart&auto=webp&s=ddec0c1753e4f246705f48ef90062478d8e9f309","https://preview.redd.it/1ufxkslo0qf91.png?width=640&crop=smart&auto=webp&s=c49366b494af0be81f80a0d4ec303554cb3f03b7","https://preview.redd.it/2gksmulo0qf91.png?width=640&crop=smart&auto=webp&s=88287054c54e70fb0b4db443b92a7a7bee71037d","https://preview.redd.it/u2aubvlo0qf91.png?width=640&crop=smart&auto=webp&s=0e20ddeb4a9aea9fd53ba0ad5298c63fa95775d2"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx b/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx new file mode 100644 index 0000000..352b2c0 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 20.06. - 26.06" +date: "2022-07-08T06:33:58.918000+0000" +link: "https://reddit.com/r/HoloNews/comments/vu4684/holonews_fr_ver_2006_2606/" +images: ["https://preview.redd.it/a4m7wf92haa91.png?width=640&crop=smart&auto=webp&s=464404bb3d0ac9559ad0d97a1f24061fedfdbce1","https://i.redd.it/xom67c82haa91.gif","https://i.redd.it/xkxis982haa91.gif","https://i.redd.it/z9k5b892haa91.gif","https://preview.redd.it/8hxr4782haa91.png?width=640&crop=smart&auto=webp&s=3e9ca5ac0b03d3736c1689eaa856a648e8e4800c","https://i.redd.it/fqhy7f82haa91.gif","https://i.redd.it/o0w4l592haa91.gif","https://preview.redd.it/oyrub192haa91.png?width=640&crop=smart&auto=webp&s=5ab91050d582828df3e4256012f69db572972259","https://preview.redd.it/qy1jhg82haa91.png?width=640&crop=smart&auto=webp&s=4c3a184dc7a56aadb9249ef9fe9c720695016d74","https://preview.redd.it/oiuvl892haa91.png?width=640&crop=smart&auto=webp&s=271db9c52c870ca2f2d1866a87a381c902b6d71f","https://preview.redd.it/uezevg82haa91.png?width=640&crop=smart&auto=webp&s=90ecdaa7669c29791cbcb190c43aa59ad14c5cd1","https://preview.redd.it/8e85d2a2haa91.png?width=640&crop=smart&auto=webp&s=4b489cfb50f0e3247c566e6905d8fa2e38312acf","https://preview.redd.it/vlsl4i82haa91.png?width=640&crop=smart&auto=webp&s=4f0fbad2697d92c19c6a5490b72f874a9f5916f4","https://preview.redd.it/2m142j82haa91.png?width=640&crop=smart&auto=webp&s=6276d7759992fff74bd14f6d8a1bc3209cc83d5d","https://preview.redd.it/86fl4d92haa91.png?width=640&crop=smart&auto=webp&s=4bc72d30aca3d357409bdd450d70e1557d5dba92","https://preview.redd.it/x3gxo4a2haa91.png?width=640&crop=smart&auto=webp&s=c6776b5e0327052793d507f62a79ae41603d9f8f","https://preview.redd.it/n384f4a2haa91.png?width=640&crop=smart&auto=webp&s=378575797d8ae025d33d7e372a70056083a4e00a","https://preview.redd.it/x5aehn82haa91.png?width=640&crop=smart&auto=webp&s=00b0f5da213a7933bf219bb883ea410216c46d34"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx b/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx new file mode 100644 index 0000000..b589cce --- /dev/null +++ b/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 21.02. - 27.02." +date: "2022-03-07T18:59:47.304000+0000" +link: "https://reddit.com/r/HoloNews/comments/t8wk61/holonews_fr_ver_2102_2702/" +images: ["https://preview.redd.it/cpqvl105e0m81.png?width=640&crop=smart&auto=webp&s=ce8396cd38c057104db6ed211b90339ac18b66b3","https://i.redd.it/zp8yf9c5e0m81.gif","https://i.redd.it/dcw55vv5e0m81.gif","https://i.redd.it/c5zwidl5e0m81.gif","https://preview.redd.it/06z3en77e0m81.png?width=640&crop=smart&auto=webp&s=aedf2dcecd10326e5fdbd28d97e1811d6404bb8b","https://preview.redd.it/lchhitc7e0m81.png?width=640&crop=smart&auto=webp&s=9c98eb4702c0fdff91064c1260df0adfddc6e7d2","https://preview.redd.it/vfwjodj7e0m81.png?width=640&crop=smart&auto=webp&s=7667316c207344eae8c9ca6514a50923313be9ca","https://preview.redd.it/ttokyiq7e0m81.png?width=640&crop=smart&auto=webp&s=c0073a3eee48e8ee2b57b36147ee3843cc4b7f04","https://preview.redd.it/jusqv148e0m81.png?width=640&crop=smart&auto=webp&s=0fe1ca947b2d7cbf2fa9e5e6d019a70dd99a5170","https://preview.redd.it/slpsxie8e0m81.png?width=640&crop=smart&auto=webp&s=80afac18e6c61b189cffe69f22e00ab18416040b","https://preview.redd.it/mpiwp3n8e0m81.png?width=640&crop=smart&auto=webp&s=dc03a60bb843209a7479d8c4260d244055f66515","https://preview.redd.it/6hkaqlu8e0m81.png?width=640&crop=smart&auto=webp&s=99553f09a992c4bf4c9e7f2c3ae164a387b98746","https://preview.redd.it/3l14ee19e0m81.png?width=640&crop=smart&auto=webp&s=aa7325bf069ed609c160997c7b5ede79d9233e2d","https://preview.redd.it/2mcp2m89e0m81.png?width=640&crop=smart&auto=webp&s=faae2f33baa85ef5bbeb1dcb20cea8682e297e27","https://preview.redd.it/f4oo2fg9e0m81.png?width=640&crop=smart&auto=webp&s=7e895f6f1ffc8ea1d11d2b0268cbde79f46ecc27","https://preview.redd.it/r4ro0vn9e0m81.png?width=640&crop=smart&auto=webp&s=a92f675d5dd995f438b2dc45d4ccf69d320a7d53","https://preview.redd.it/6szj8cv9e0m81.png?width=640&crop=smart&auto=webp&s=db72ffc99052f5cc7033f2d39a79aa158869faf6","https://preview.redd.it/7rllf92ae0m81.png?width=640&crop=smart&auto=webp&s=e61743fcbece87590aafd378e77160b02e963b3a","https://preview.redd.it/mbwnn8eae0m81.png?width=640&crop=smart&auto=webp&s=166af0c1d19f9f2b6a1a85ae5d65574221adaac6","https://preview.redd.it/4hlcf6oae0m81.png?width=640&crop=smart&auto=webp&s=9d6770a6eada494417af40072b168c79743427f6"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx b/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx new file mode 100644 index 0000000..c0b3e93 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 21.03 - 27.03" +date: "2022-04-04T15:59:52.145000+0000" +link: "https://reddit.com/r/HoloNews/comments/tw5k46/holonews_fr_ver_2103_2703/" +images: ["https://preview.redd.it/e9jtowfnbjr81.png?width=640&crop=smart&auto=webp&s=77c006c509931d09cc00a146b7cb8dac40524eda","https://i.redd.it/4o117xfnbjr81.gif","https://i.redd.it/z5xe8ifnbjr81.gif","https://i.redd.it/bfq810gnbjr81.gif","https://preview.redd.it/327mqnfnbjr81.png?width=640&crop=smart&auto=webp&s=a9879df3490ccc52e3ec35e1dbb46614450f16ce","https://preview.redd.it/0imd3rfnbjr81.png?width=640&crop=smart&auto=webp&s=3457e31dc9d639d95a729be5ab3e1a7d44348991","https://preview.redd.it/0w3wwrfnbjr81.png?width=640&crop=smart&auto=webp&s=3eb5268cebec1f8563fb329724626c1de859577e","https://preview.redd.it/lp0el1gnbjr81.png?width=640&crop=smart&auto=webp&s=6ca513dff53343e9cb39cb7ab25af4874fe6d5f6","https://preview.redd.it/074ictfnbjr81.png?width=640&crop=smart&auto=webp&s=c0b4d4f7525192de8aaa27f5ac10adcdef001aa8","https://preview.redd.it/9zavgtfnbjr81.png?width=640&crop=smart&auto=webp&s=736cc59093a687e96e66961666ee5b55840fe6be","https://preview.redd.it/pcshx2gnbjr81.png?width=640&crop=smart&auto=webp&s=19e5e694210fe2e1198955645b2aa24c8dbb724c","https://preview.redd.it/jglnjtfnbjr81.png?width=640&crop=smart&auto=webp&s=d7caacae7abf7dd1ac8e436a4230c944f5034ff7","https://preview.redd.it/jbcusifnbjr81.png?width=640&crop=smart&auto=webp&s=06ded2d623b522b750c6d7325fa1141603fd896d","https://preview.redd.it/glejulfnbjr81.png?width=640&crop=smart&auto=webp&s=799cc6c4309236e9064c3d16085c6d34d9334096","https://preview.redd.it/6zijamfnbjr81.png?width=640&crop=smart&auto=webp&s=c3a0c284c786ad6394983b8968b978fc01b926a5","https://preview.redd.it/z98vbufnbjr81.png?width=640&crop=smart&auto=webp&s=6291f449539348c2baae71fb1de98bb3d02262d8","https://preview.redd.it/hep20vfnbjr81.png?width=640&crop=smart&auto=webp&s=58d9f1500659c5bf5583ffcc8fa72fb89371f9f9","https://preview.redd.it/1ftqgzfnbjr81.png?width=640&crop=smart&auto=webp&s=a394764600a111c980ee58d0647ed08d5185669d","https://preview.redd.it/jsvzf2gnbjr81.png?width=640&crop=smart&auto=webp&s=2cb574d5b900fef32fcc8d2cba97e55c5d3ee177"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx b/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx new file mode 100644 index 0000000..58aa7e0 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 22.08. - 28.08." +date: "2022-09-05T14:08:01.678000+0000" +link: "https://reddit.com/r/HoloNews/comments/x6h3c2/holonews_fr_ver_2208_2808/" +images: ["https://preview.redd.it/jvjs8fvzr1m91.png?width=640&crop=smart&auto=webp&s=dbf11a7a04e72beda05c23487c3d5089fd9dc882","https://i.redd.it/q2jbxbvzr1m91.gif","https://i.redd.it/1cwrw0wzr1m91.gif","https://i.redd.it/4tpf09vzr1m91.gif","https://i.redd.it/a97apuvzr1m91.gif","https://preview.redd.it/ug961yvzr1m91.png?width=640&crop=smart&auto=webp&s=ba218c8fdc4099f952420c8f16069aacc2264459","https://preview.redd.it/i7f201wzr1m91.png?width=640&crop=smart&auto=webp&s=e5a7129317641336f215b737a67f90cf090a70c6","https://preview.redd.it/cnfnk6vzr1m91.png?width=640&crop=smart&auto=webp&s=bfaf9a09535b88f12d4e81c17d781ff9612bcdef","https://preview.redd.it/4xjo32wzr1m91.png?width=640&crop=smart&auto=webp&s=5ddb500940dd7f7c941b3b974673f026a96f1071","https://preview.redd.it/9mo0w9vzr1m91.png?width=640&crop=smart&auto=webp&s=2ebfce3d04d906ac9a528ed4373331a0c98e0d8e","https://preview.redd.it/pnjv1kvzr1m91.png?width=640&crop=smart&auto=webp&s=359e9b2393f0320ffb893b29423af73bf4ff6a85","https://preview.redd.it/kpem0lvzr1m91.png?width=640&crop=smart&auto=webp&s=51b9c3e34772df789d99615bb88294edef955053","https://preview.redd.it/6e4867vzr1m91.png?width=640&crop=smart&auto=webp&s=69f5bc9734620a21850fe6c2ebfaa9c3e6ae63b6","https://preview.redd.it/5jr7r6vzr1m91.png?width=640&crop=smart&auto=webp&s=d845e28a1358729697c51d41bf29a4f9c57dab0e","https://preview.redd.it/9a555bvzr1m91.png?width=640&crop=smart&auto=webp&s=2f516b600e73cb4d10a64e2eebd4a2af982d90b7"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx b/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx new file mode 100644 index 0000000..1449bbf --- /dev/null +++ b/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 22.11 - 28.11" +date: "2021-12-05T17:59:43.728000+0000" +link: "https://reddit.com/r/HoloNews/comments/r9l84y/holonews_fr_ver_2211_2811/" +images: ["https://i.redd.it/6vrs9lemjr381.gif","https://preview.redd.it/sntzwjemjr381.png?width=640&crop=smart&auto=webp&s=ca5d4cb0fcb304bf37e525844b34be909581aea0","https://preview.redd.it/8pp441emjr381.png?width=640&crop=smart&auto=webp&s=30c53ff2fff7ac362554e5389237c8b69812b9e5","https://preview.redd.it/5s4id3emjr381.png?width=640&crop=smart&auto=webp&s=4ffc5ddf1c42b7cc8afccd4e6567d760785fdba3","https://preview.redd.it/addr02emjr381.png?width=640&crop=smart&auto=webp&s=afabbc6e3174a4d2cb995bf39a6311bde53e79a0","https://preview.redd.it/s8yy6zdmjr381.png?width=640&crop=smart&auto=webp&s=55d0fd72d7679d8a8e1746f3ecdff18a8dd843ef","https://preview.redd.it/7boungemjr381.png?width=640&crop=smart&auto=webp&s=d2807e8e4340eb4904702bd47ce8dc90a48338e5","https://preview.redd.it/84x9lydmjr381.png?width=640&crop=smart&auto=webp&s=c2e64fe9f11c2e8d617078415b4b5f4f19909c13","https://preview.redd.it/i85zowdmjr381.png?width=640&crop=smart&auto=webp&s=a720575fccaa0d97234101eb8a3feb54bbfb1015","https://preview.redd.it/ne64drdmjr381.png?width=640&crop=smart&auto=webp&s=98ca392f6249b3721e2ceb5855225d283d5bab72","https://preview.redd.it/4cl9sudmjr381.png?width=640&crop=smart&auto=webp&s=35de31027b7d13c31928eecbd1b1b95705bbe7a1","https://preview.redd.it/qya1fydmjr381.png?width=640&crop=smart&auto=webp&s=362ac1eed29761d83c6ca48b7ae63d02727c5ca6","https://preview.redd.it/3ppw2udmjr381.png?width=640&crop=smart&auto=webp&s=db3b8d45eb6360c53ef4a59ecd4392e7c7f50e1b","https://preview.redd.it/t3x3uudmjr381.png?width=640&crop=smart&auto=webp&s=d4211f77097b25c77a5dc15db307ec47f7b6695a","https://preview.redd.it/npfnstdmjr381.png?width=640&crop=smart&auto=webp&s=ed45c8a247812b0467830aabf9404016e8368d6a","https://preview.redd.it/f2nlytdmjr381.png?width=640&crop=smart&auto=webp&s=c81ba7e3c85f982c81712f27dc1eb1da763edb93","https://preview.redd.it/u31d7cemjr381.png?width=640&crop=smart&auto=webp&s=6c9d4b8104d3300c7bd749975c31752be08ec9d3","https://preview.redd.it/1wb8w5emjr381.png?width=640&crop=smart&auto=webp&s=e9e2239b45b2a3a8f6898bc386a959e73e7a8177","https://i.redd.it/kd71wpdmjr381.gif"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx b/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx new file mode 100644 index 0000000..9846942 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 23.05 - 29.05" +date: "2022-06-01T17:30:28.097000+0000" +link: "https://reddit.com/r/HoloNews/comments/v2megg/holonews_fr_ver_2305_2905/" +images: ["https://preview.redd.it/8xlqlojpo1391.png?width=640&crop=smart&auto=webp&s=e31afcdca8a1b900c1ebc7f0a403670cdf5a7efd","https://i.redd.it/pzvaf5kpo1391.gif","https://i.redd.it/zanfu8kpo1391.gif","https://preview.redd.it/zvk90cjpo1391.png?width=640&crop=smart&auto=webp&s=333da5025e8d5cc10a5450dcb7ac05956065b046","https://preview.redd.it/xxddaejpo1391.png?width=640&crop=smart&auto=webp&s=f288f7071e8f600d7a2f34003acab5c17d4d4bbb","https://preview.redd.it/upd17fjpo1391.png?width=640&crop=smart&auto=webp&s=8d7015be1aea1f85aa94be44d19dd6e1a24dcd62","https://preview.redd.it/q40nsfjpo1391.png?width=640&crop=smart&auto=webp&s=5112cc36e236fdce0b735d780d158918501dd936","https://preview.redd.it/w0mqrjjpo1391.png?width=640&crop=smart&auto=webp&s=e516bb2c35e1a009c6c511b7ced5703919d9f7f7","https://preview.redd.it/381pgkjpo1391.png?width=640&crop=smart&auto=webp&s=c9101696f5078360e812c70ab683ac360a0ead5d","https://preview.redd.it/kmsb9njpo1391.png?width=640&crop=smart&auto=webp&s=855eedc12720c13b34af0ddc45a1a25bc017fd85","https://preview.redd.it/mwlahcjpo1391.png?width=640&crop=smart&auto=webp&s=7854b53b0da6c752fadbc469b49d32b30f0f9047","https://preview.redd.it/0zeegdjpo1391.png?width=640&crop=smart&auto=webp&s=b0c5caa6b544e1a71079f157e9dbb0ee1c099c49","https://preview.redd.it/5hp1zdjpo1391.png?width=640&crop=smart&auto=webp&s=949a94884511a142fb5195e25e1a94c52e122df9","https://preview.redd.it/9ddhsmjpo1391.png?width=640&crop=smart&auto=webp&s=7396514cca62dcd35e971303404e245ac9cd727d","https://preview.redd.it/9imzlmjpo1391.png?width=640&crop=smart&auto=webp&s=c503745f8afee437edb0f87719ab25c7aeee0fea","https://preview.redd.it/o9myiojpo1391.png?width=640&crop=smart&auto=webp&s=245213ac1f6627e17d97f5b981649b37802470b6"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx b/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx new file mode 100644 index 0000000..b80ccf9 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 24.01 - 30.01" +date: "2022-02-07T16:35:15.685000+0000" +link: "https://reddit.com/r/HoloNews/comments/smuejl/holonews_fr_ver_2401_3001/" +images: ["https://preview.redd.it/6z4vachuufg81.png?width=640&crop=smart&auto=webp&s=1954ac9ee4affe5580b5e00d5d1d013b126ef588","https://i.redd.it/f1fq2thuufg81.gif","https://i.redd.it/8502rshuufg81.gif","https://preview.redd.it/wofetfhuufg81.png?width=640&crop=smart&auto=webp&s=c065e79bfa3137d63b1e391601291ff5ba0dfab7","https://preview.redd.it/ccrn9hhuufg81.png?width=640&crop=smart&auto=webp&s=e2f8f9cd36abd54bba43423c19e8ee502ef4e67e","https://preview.redd.it/zy0gofhuufg81.png?width=640&crop=smart&auto=webp&s=04894b0f0fb97f9104f0dd29c6ec1c289a0edef1","https://preview.redd.it/wzx3dfhuufg81.png?width=640&crop=smart&auto=webp&s=2d338a07aaa22e86a2f184012d76095da8fbde56","https://preview.redd.it/z1wvufhuufg81.png?width=640&crop=smart&auto=webp&s=d5b79d6963dc86f035204c662c447416d016e3c7","https://preview.redd.it/3qkztghuufg81.png?width=640&crop=smart&auto=webp&s=f183c6227bb1d49ec6ad660c66a870201ae15c6e","https://preview.redd.it/ou4ruhhuufg81.png?width=640&crop=smart&auto=webp&s=52fcc5bf74610890a659866ff94a3078014f34a3","https://preview.redd.it/fdc3qqhuufg81.png?width=640&crop=smart&auto=webp&s=a8be1a0716b94679a8107c4d790027ef07575ec4","https://preview.redd.it/100fakhuufg81.png?width=640&crop=smart&auto=webp&s=102da2e12fc5bd839f2b4c49c92ac3be106b1de6","https://preview.redd.it/tnixxkhuufg81.png?width=640&crop=smart&auto=webp&s=3771c0343b835848cdfd5426dd1067ecf648c89b","https://preview.redd.it/8oh3ekhuufg81.png?width=640&crop=smart&auto=webp&s=aa7f515665811a0b47ed99a3b689b98022ca8b69","https://preview.redd.it/0mowfkhuufg81.png?width=640&crop=smart&auto=webp&s=28ee6fac29fab7f9fe05b5d58198eeccc91e58c8","https://preview.redd.it/4o5dvkhuufg81.png?width=640&crop=smart&auto=webp&s=ef3cd1298806fc3e1389041c0e0aedf622188332","https://preview.redd.it/4874bvhuufg81.png?width=640&crop=smart&auto=webp&s=1b17359cc38db40e12e3b9cf954edf8abaa7979f","https://preview.redd.it/a1a13nhuufg81.png?width=640&crop=smart&auto=webp&s=39b99492d574a9f3ffbc49e35eb60505f851f878","https://preview.redd.it/b3y7abhuufg81.png?width=640&crop=smart&auto=webp&s=64f8e37dfe913d1d18fb7bce061141e8f3f1cb24","https://preview.redd.it/0jefs2huufg81.png?width=640&crop=smart&auto=webp&s=c534950ccd162ac4a93a402c0815a7a64ea797ca"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx b/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx new file mode 100644 index 0000000..e6a227f --- /dev/null +++ b/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR Ver. 25.07 - 31.07" +date: "2022-08-08T15:40:28.892000+0000" +link: "https://reddit.com/r/HoloNews/comments/wjc0f8/holonews_fr_ver_2507_3107/" +images: ["https://preview.redd.it/1coo2kg4fig91.png?width=640&crop=smart&auto=webp&s=01af945c1647b78bf734eb990c38d53cfd193396","https://i.redd.it/grl0ilg4fig91.gif","https://i.redd.it/1k1ddfh4fig91.gif","https://i.redd.it/6p089nh4fig91.gif","https://i.redd.it/ghl4ofh4fig91.gif","https://preview.redd.it/7dsfemg4fig91.png?width=640&crop=smart&auto=webp&s=bfdca631997dd8746e304b0147a4f2a4d1197ff1","https://preview.redd.it/dqxpzng4fig91.png?width=640&crop=smart&auto=webp&s=457bfbe862d844a01f0a0789c8ae6b06b150f5d2","https://preview.redd.it/hci7log4fig91.png?width=640&crop=smart&auto=webp&s=5214684021ba1dd623f7b29ac8226ff2abc3b108","https://preview.redd.it/zwe0eqg4fig91.png?width=640&crop=smart&auto=webp&s=3746e94a164c594924eba3d5c1c0b78ba8d5db71","https://preview.redd.it/oe0g9rg4fig91.png?width=640&crop=smart&auto=webp&s=550cae72600f23450d471c4fbd5b10a28d2f5e73","https://preview.redd.it/dlffwig4fig91.png?width=640&crop=smart&auto=webp&s=8325e9b0227567cc088c456016da2159b5963d55","https://preview.redd.it/w6k76rg4fig91.png?width=640&crop=smart&auto=webp&s=7809f9b148fa3ec98d97739f32473d26e54ad4e1","https://preview.redd.it/lphuwhg4fig91.png?width=640&crop=smart&auto=webp&s=c2fa37b054b6076b6b3c6dbb3ab71d24859816cf","https://preview.redd.it/f4u7iug4fig91.png?width=640&crop=smart&auto=webp&s=8f7b251ffe6c97c3fe77d8d4803ea51b3b5e88cd","https://preview.redd.it/1sb36tg4fig91.png?width=640&crop=smart&auto=webp&s=a65464a0d9117876f6a1a79313933b16d4f9563e","https://preview.redd.it/817aptg4fig91.png?width=640&crop=smart&auto=webp&s=75f61c243ccaa4dc4abd73dee24ba833a2dfed56","https://preview.redd.it/mbsueug4fig91.png?width=640&crop=smart&auto=webp&s=ad74c31bedb17320c414bae138b565d12386c46e","https://preview.redd.it/ta1ztxg4fig91.png?width=640&crop=smart&auto=webp&s=f2ef0d193b68e9ccb25bdf2e61c0313e20596b69","https://preview.redd.it/kva7dyg4fig91.png?width=640&crop=smart&auto=webp&s=1fb88631f627ce7185331f0b045bdd231ccba3ad"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx b/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx new file mode 100644 index 0000000..a16e6a6 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 27.06 - 03.07" +date: "2022-07-14T16:07:14.151000+0000" +link: "https://reddit.com/r/HoloNews/comments/vyzi9z/holonews_fr_ver_2706_0307/" +images: ["https://preview.redd.it/lzth3o635kb91.png?width=640&crop=smart&auto=webp&s=b1cc026041e5094a596616ad57812188ba7fed69","https://i.redd.it/zfx073835kb91.gif","https://i.redd.it/idjmrq835kb91.gif","https://i.redd.it/j4omtq835kb91.gif","https://preview.redd.it/mq7aco635kb91.png?width=640&crop=smart&auto=webp&s=ab5813261eab344d55b14136efcac7009b164192","https://preview.redd.it/exo5mb635kb91.png?width=640&crop=smart&auto=webp&s=2580cf6158318b9ab8fb6280e45cc41a3a1765cf","https://preview.redd.it/q1yelp635kb91.png?width=640&crop=smart&auto=webp&s=5f9d064558ab8d88ec56f21b1663a30d7fbbdda6","https://preview.redd.it/fof5pb635kb91.png?width=640&crop=smart&auto=webp&s=c121b55a5356a850e9ebebbe5a3da76575f0748a","https://preview.redd.it/4w71ks635kb91.png?width=640&crop=smart&auto=webp&s=c9c08ebfb0916bb8f13585ee6a68d80c8b704222","https://preview.redd.it/5ebsws635kb91.png?width=640&crop=smart&auto=webp&s=6b96b2a6e2960776b6b6a38b4a8fb6ceaef9ce39","https://preview.redd.it/kicl5b635kb91.png?width=640&crop=smart&auto=webp&s=6ba2bd2694007fd615c6c6f75e3d1c432b7ffb07","https://preview.redd.it/xoe62h635kb91.png?width=640&crop=smart&auto=webp&s=8704ac47a5cc09b2f1170e708d5f20121daceb60","https://preview.redd.it/gfy0du635kb91.png?width=640&crop=smart&auto=webp&s=50dfc59a898e1c0d30004e22973d94937adc929a","https://preview.redd.it/leqsbu635kb91.png?width=640&crop=smart&auto=webp&s=7ce930965562b3b75d3b67e8cc3a15d1ea519524","https://preview.redd.it/zcz347735kb91.png?width=640&crop=smart&auto=webp&s=7e352bcf23dd084f7cb0553bca31af306f6e5bc2","https://preview.redd.it/7840zv635kb91.png?width=640&crop=smart&auto=webp&s=b27fe020fb27e9225b380283cf76be025c1d0bb5","https://preview.redd.it/tm45wx635kb91.png?width=640&crop=smart&auto=webp&s=f82d5b0d733aef8b8dab3a44ed4e0a93cc7de2d8","https://preview.redd.it/8v8hoy635kb91.png?width=640&crop=smart&auto=webp&s=04c02aadb85ecd2c1c8953412cbcc06da52a3558"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx b/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx new file mode 100644 index 0000000..8cd1735 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 28.02 - 06.03" +date: "2022-03-14T15:30:18.900000+0000" +link: "https://reddit.com/r/HoloNews/comments/te03uf/holonews_fr_ver_2802_0603/" +images: ["https://preview.redd.it/23q6kht6bdn81.png?width=640&crop=smart&auto=webp&s=8cca50e411d708de56fd2895a9e2b31b1b115816","https://i.redd.it/z2qk4bu6bdn81.gif","https://i.redd.it/g1m45it6bdn81.gif","https://preview.redd.it/l54eomt6bdn81.png?width=640&crop=smart&auto=webp&s=cec6f31ee6af44760ac312216d5b8f1e9c529c48","https://preview.redd.it/9gug2nt6bdn81.png?width=640&crop=smart&auto=webp&s=6153102f0ffd6c25c9f88706f85708d3abeed99f","https://preview.redd.it/s6b0gnt6bdn81.png?width=640&crop=smart&auto=webp&s=c4215e9899b3cac04450101beceafb5b7c3205a0","https://preview.redd.it/57dvdet6bdn81.png?width=640&crop=smart&auto=webp&s=8f6ba4ffb9be56ca96576f70abaa8a1ac95a74e2","https://preview.redd.it/yrs4rbt6bdn81.png?width=640&crop=smart&auto=webp&s=a9dadc3f297d3a5ea7548631bae75bf01c2a4819","https://preview.redd.it/no8whnt6bdn81.png?width=640&crop=smart&auto=webp&s=af832bda289bd0351e9c8074c50772481ed6a098","https://preview.redd.it/uaeq8ot6bdn81.png?width=640&crop=smart&auto=webp&s=aa4558a8b8a05c56b960dca69a848af37fbb303a","https://preview.redd.it/c9r3kpt6bdn81.png?width=640&crop=smart&auto=webp&s=a66ad0f02dd5f84919daadc5068bb47f90273b5e","https://preview.redd.it/3c8hqpt6bdn81.png?width=640&crop=smart&auto=webp&s=fac1f0b5e6754d375906a0c4b666c2a1a127d79e","https://preview.redd.it/onkx9st6bdn81.png?width=640&crop=smart&auto=webp&s=2cbcbcb5bb8757cf1f36e4597681e9f8aed9ca51","https://preview.redd.it/odrpuqt6bdn81.png?width=640&crop=smart&auto=webp&s=a1432657350fb5629a1d4c3e48f11f5e3beda6a6","https://preview.redd.it/dtit2tt6bdn81.png?width=640&crop=smart&auto=webp&s=3107e232d1ffdd085b9d4043f25dc84a4fb4334b","https://preview.redd.it/j33dbst6bdn81.png?width=640&crop=smart&auto=webp&s=f21134e369a0e29bb8b796eaf464b8958fc1224c","https://preview.redd.it/zmf24vt6bdn81.png?width=640&crop=smart&auto=webp&s=6cc8dd70e97506f198b1ad83c0892a31a5346dc5","https://preview.redd.it/uipk4ut6bdn81.png?width=640&crop=smart&auto=webp&s=01a780e5395e00c93052d75991cf54fe71168c19"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx b/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx new file mode 100644 index 0000000..95f1385 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 28.03. - 03.04." +date: "2022-04-11T14:09:32.843000+0000" +link: "https://reddit.com/r/HoloNews/comments/u18n0z/holonews_fr_ver_2803_0304/" +images: ["https://preview.redd.it/np4jtys6qws81.png?width=640&crop=smart&auto=webp&s=9ecf4b2076d7bc3d6a75fe25f63a6e82ba1b354c","https://i.redd.it/2e2l5au6qws81.gif","https://i.redd.it/s31dcdu6qws81.gif","https://i.redd.it/8yufcbu6qws81.gif","https://preview.redd.it/yxqpv5t6qws81.png?width=640&crop=smart&auto=webp&s=eb60e57ccf2ba2efc2e0b91cb9527a282998e3e1","https://preview.redd.it/eysp99t6qws81.png?width=640&crop=smart&auto=webp&s=96a52f3e2d0f0c2724299e2228712c386cfb98f9","https://preview.redd.it/b3tt71t6qws81.png?width=640&crop=smart&auto=webp&s=e45e7074f6cbdd48bc5c71630e41459906ec883c","https://preview.redd.it/w07ty7t6qws81.png?width=640&crop=smart&auto=webp&s=aa425aa4a1446e1041b8a2519961698080063768","https://preview.redd.it/c7y0lat6qws81.png?width=640&crop=smart&auto=webp&s=1b3edd5381bb4c8884de3dd5030a15e24ff1d469","https://i.redd.it/r0t33dt6qws81.gif","https://preview.redd.it/qohnw3t6qws81.png?width=640&crop=smart&auto=webp&s=2fe000cb9a81ba7c82f56ca73771f87d0b372e55","https://preview.redd.it/e5qky9t6qws81.png?width=640&crop=smart&auto=webp&s=6b3283816f2e7f0431eba93a6b5ec184ba2839b3","https://preview.redd.it/b7ucr7t6qws81.png?width=640&crop=smart&auto=webp&s=75fc8d2b1df0c5c6c14b78e3511f5a35c39ee6a6","https://preview.redd.it/wipg43t6qws81.png?width=640&crop=smart&auto=webp&s=bd655f41b3051d51d3d1a3b51548e9244ab44b68","https://preview.redd.it/4ne2vvs6qws81.png?width=640&crop=smart&auto=webp&s=e057bc06f61fa213e05a37debcf2d905d95991d7","https://preview.redd.it/d8wrk3t6qws81.png?width=640&crop=smart&auto=webp&s=fd9d0823a6e30de0aae089698324a5d55f1b22ba","https://preview.redd.it/4oiv8ys6qws81.png?width=640&crop=smart&auto=webp&s=1e3d18be7b5f9a9653d5b9e68d041b9bf64f8cbc","https://preview.redd.it/wmzc4at6qws81.png?width=640&crop=smart&auto=webp&s=2548a2d31b260d7d6aaa05233812db53d0da5e46","https://preview.redd.it/w3lnk4t6qws81.png?width=640&crop=smart&auto=webp&s=aacdd5b044165ee8b79a45868bda760016cac6d8","https://preview.redd.it/ytwwazs6qws81.png?width=640&crop=smart&auto=webp&s=2bef6b974c0ef284302da40ede3f36faf6cc37c6"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx b/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx new file mode 100644 index 0000000..667ec62 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 29.08. - 04.09." +date: "2022-09-14T01:38:02.461000+0000" +link: "https://reddit.com/r/HoloNews/comments/xdovzu/holonews_fr_ver_2908_0409/" +images: ["https://preview.redd.it/cgmzilkiaqn91.png?width=640&crop=smart&auto=webp&s=97bc92a9b6ac93a397ac9057708425d25e5085a0","https://i.redd.it/w1zt85oiaqn91.gif","https://i.redd.it/y2k6rn1jaqn91.gif","https://preview.redd.it/vporqo8jaqn91.png?width=640&crop=smart&auto=webp&s=6b0b74332f20f3be68725f1c8e2e13e105e75fdb","https://i.redd.it/whfafsbjaqn91.gif","https://i.redd.it/rtwizwhjaqn91.gif","https://preview.redd.it/phir6wkjaqn91.png?width=640&crop=smart&auto=webp&s=3674ce302821494539a684b245d1e383044f93cc","https://preview.redd.it/71npw1ojaqn91.png?width=640&crop=smart&auto=webp&s=d7eb7df7757f71cd42c755b80a1d7d7ec59eb213","https://preview.redd.it/v2ax75rjaqn91.png?width=640&crop=smart&auto=webp&s=113b2558781da9b15b119ab4be42776b6987e4e6","https://preview.redd.it/bqtatjujaqn91.png?width=640&crop=smart&auto=webp&s=a8c032e3aa195c418deb1d9b7ae8c0b7542124b7","https://preview.redd.it/9rcfpbxjaqn91.png?width=640&crop=smart&auto=webp&s=aea0a0507e1108ac619404984e3b58312be2c546","https://preview.redd.it/w763jdzjaqn91.png?width=640&crop=smart&auto=webp&s=9ad6eb52599382b0a1b2242345920ef0a88d0f0f","https://preview.redd.it/yp52ri2kaqn91.png?width=640&crop=smart&auto=webp&s=75f011842465ae2708265a7642f9256e6db2ac81","https://preview.redd.it/ygevsr6kaqn91.png?width=640&crop=smart&auto=webp&s=8064f91ccf953ec5fb45ba18041fe662863a4aef","https://preview.redd.it/8t26mh9kaqn91.png?width=640&crop=smart&auto=webp&s=c51e5eba1eacf90f1224f3465e63212515070728","https://preview.redd.it/1l9el6ckaqn91.png?width=640&crop=smart&auto=webp&s=a27affd0768a26c0dce4155c13de3b5bd2a7f971","https://preview.redd.it/568mfgfkaqn91.png?width=640&crop=smart&auto=webp&s=40ce6f964c164e7388df55dc40d7e8402cdea3cc","https://preview.redd.it/jp7n1whkaqn91.png?width=640&crop=smart&auto=webp&s=7153c5630a7c26422758f1954238bf056106169e","https://preview.redd.it/h9aba3lkaqn91.png?width=640&crop=smart&auto=webp&s=bf32019e4ff152df906524b5defb21ccdb9f66bf","https://preview.redd.it/lcf2saokaqn91.png?width=640&crop=smart&auto=webp&s=ffbe518fcd6880de3cb49b99b024056d67995538"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx b/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx new file mode 100644 index 0000000..5258420 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. 29.11 - 05.12" +date: "2021-12-15T16:46:51.709000+0000" +link: "https://reddit.com/r/HoloNews/comments/rh3dzi/holonews_fr_ver_2911_0512/" +images: ["https://preview.redd.it/qfiuoa7rjq581.png?width=640&crop=smart&auto=webp&s=128b029bb95e4ca22e863e2775cba3e0fa38b80e","https://i.redd.it/8wdgeh7rjq581.gif","https://preview.redd.it/729cdb7rjq581.png?width=640&crop=smart&auto=webp&s=2db0a22eecc35a12cfdba2b7958c13cb50d7ac09","https://i.redd.it/y903pm7rjq581.gif","https://preview.redd.it/cmn54b7rjq581.png?width=640&crop=smart&auto=webp&s=ff1650e13f9f5fc0eb8cc04d2123887966083bce","https://preview.redd.it/8h12qa7rjq581.png?width=640&crop=smart&auto=webp&s=187f821ea2f6b4457f2a3522a365ac0dd673c7f1","https://preview.redd.it/ywcsfm7rjq581.png?width=640&crop=smart&auto=webp&s=bda3c1af1f4949dac5656d1e2cccb92e8508773b","https://preview.redd.it/9940wb7rjq581.png?width=640&crop=smart&auto=webp&s=b5100203a8255c4b833739897eee95da7f98fc7d","https://preview.redd.it/us6flb7rjq581.png?width=640&crop=smart&auto=webp&s=407fd1b65ff8f0cf7f232135b4af1f67f1fc7586","https://preview.redd.it/2ndrif7rjq581.png?width=640&crop=smart&auto=webp&s=57fad8843db201b0fdcb51433f4e21c3ab406d20","https://preview.redd.it/jz095e7rjq581.png?width=640&crop=smart&auto=webp&s=853684040d70aef17b382ffbe6838ac19ecbb79b","https://preview.redd.it/eroq6e7rjq581.png?width=640&crop=smart&auto=webp&s=fc1760af75c0c0cfc3e3a35235bad5e3fda22090","https://preview.redd.it/xnsxdb7rjq581.png?width=640&crop=smart&auto=webp&s=ef68f9e4cee9eb3e7632db36c9487bc91f49ef68","https://preview.redd.it/cbatbs7rjq581.png?width=640&crop=smart&auto=webp&s=9c899ba3a59d3ab0efed8dc139ca42f6049457fe","https://preview.redd.it/udoavh7rjq581.png?width=640&crop=smart&auto=webp&s=67416d88d47adcd308eeeff129d6cfbdfad9d38f","https://preview.redd.it/2107xv6rjq581.png?width=640&crop=smart&auto=webp&s=9f07c47445844f3ef77ed69c0543e383ca874b17","https://preview.redd.it/dm5t477rjq581.png?width=640&crop=smart&auto=webp&s=9cc0af45c5bbb91aff85b994ffce66fc2a732063","https://preview.redd.it/740ubz6rjq581.png?width=640&crop=smart&auto=webp&s=7f67afb966fb85686437f0065aecf0111292afa9","https://preview.redd.it/xmq1va7rjq581.png?width=640&crop=smart&auto=webp&s=d144b161e93be3570e9167cc544aeb47c026ab1e","https://preview.redd.it/ev1vbx6rjq581.png?width=640&crop=smart&auto=webp&s=155937498d6d9283654e0838072a2a4fff0b4b1c"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx b/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx new file mode 100644 index 0000000..d47a593 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx @@ -0,0 +1,7 @@ +--- +title: "Holonews FR ver. 31.01. - 06.02." +date: "2022-02-14T17:40:28.027000+0000" +link: "https://reddit.com/r/HoloNews/comments/ssgeh6/holonews_fr_ver_3101_0602/" +images: ["https://preview.redd.it/61ezrffs4uh81.png?width=640&crop=smart&auto=webp&s=9d0f58a95d1fdcfdd474c5898e481a0d94556d9b","https://i.redd.it/z53agqfs4uh81.gif","https://i.redd.it/8batfofs4uh81.gif","https://preview.redd.it/d7mn0jfs4uh81.png?width=640&crop=smart&auto=webp&s=e00145715d182549e32dbdd9c08cbb85323a5e79","https://preview.redd.it/el1lpcfs4uh81.png?width=640&crop=smart&auto=webp&s=107d84a004b90e53382ce866545992f663c090c4","https://preview.redd.it/tzca4efs4uh81.png?width=640&crop=smart&auto=webp&s=c2a689d2c8f523b1bd3d9930b91b4732ab197cb3","https://preview.redd.it/hl9l6dfs4uh81.png?width=640&crop=smart&auto=webp&s=11cdee87460482574a91a6c78bd1f283a0d33cea","https://preview.redd.it/nyyhspfs4uh81.png?width=640&crop=smart&auto=webp&s=63b0fc317a48b6d1577d0e2d59a4ae07c42185db","https://preview.redd.it/x3i8kifs4uh81.png?width=640&crop=smart&auto=webp&s=e45c20500fc33fad431137f4b85bfb8a5aaeacfb","https://preview.redd.it/4fs7jhfs4uh81.png?width=640&crop=smart&auto=webp&s=41be5b4fb0a4d5b9ec1e1dc210c17ff5de36658a","https://preview.redd.it/8jlmukfs4uh81.png?width=640&crop=smart&auto=webp&s=291df50cc35dd6c9df9e5ad04c17ec7fffb050f4","https://preview.redd.it/ei221dfs4uh81.png?width=640&crop=smart&auto=webp&s=37e2e0d9bc950298b61857f237f21fc457046ee1","https://preview.redd.it/p6avthfs4uh81.png?width=640&crop=smart&auto=webp&s=ab26a52e7c91dca0c6ae782ac55641e99b2b5742","https://preview.redd.it/qpou2nfs4uh81.png?width=640&crop=smart&auto=webp&s=5b194e2017a43eb1f044a1fed7915080ca05ac8a","https://preview.redd.it/dfngglfs4uh81.png?width=640&crop=smart&auto=webp&s=ad7f976dffcf23049bc1a2b59b49fffb6ac176a5","https://preview.redd.it/roi4olfs4uh81.png?width=640&crop=smart&auto=webp&s=21a2b1937b3289fe8453f45a791ec88c9a17d1dc","https://preview.redd.it/ewrx7efs4uh81.png?width=640&crop=smart&auto=webp&s=a38428bcf45d31c74950e6d039bab43915eafacf","https://preview.redd.it/vih0tjfs4uh81.png?width=640&crop=smart&auto=webp&s=f5ee7281e1063cb8ad14d1d4f993437679625fa3","https://preview.redd.it/4x14jafs4uh81.png?width=640&crop=smart&auto=webp&s=8e8229140043543c46535191e485ce381854b0f6","https://preview.redd.it/97k03dfs4uh81.png?width=640&crop=smart&auto=webp&s=be20e4b7bd7255eb7bb4003b4e5bc7d11e902c64"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx b/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx new file mode 100644 index 0000000..6b84588 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. LITE 20.12 - 26.12" +date: "2022-01-12T16:57:27.391000+0000" +link: "https://reddit.com/r/HoloNews/comments/s2azxb/holonews_fr_ver_lite_2012_2612/" +images: ["https://preview.redd.it/3wneo35zeab81.png?width=640&crop=smart&auto=webp&s=a243a7c789c83c6dd5d10447794121297b9c77fd","https://preview.redd.it/9axzq35zeab81.png?width=640&crop=smart&auto=webp&s=8e29248af19fd75b561ca1e2bf01f31c53a991f6","https://i.redd.it/25o1wc5zeab81.gif","https://preview.redd.it/zh1lqu3zeab81.png?width=640&crop=smart&auto=webp&s=1a8da2e78b363c2f957b1e1f349cb2cca12c1848","https://preview.redd.it/owf5sl3zeab81.png?width=640&crop=smart&auto=webp&s=1991ff856f701e084bcdc030f515d308b8a7554c","https://preview.redd.it/feykt35zeab81.png?width=640&crop=smart&auto=webp&s=d862f1eb6437cae05224576dff3995a1995f9fb1","https://preview.redd.it/lnb2q25zeab81.png?width=640&crop=smart&auto=webp&s=a7595923436797d3024033bcccd7571fa68fa938","https://preview.redd.it/w3tzco3zeab81.png?width=640&crop=smart&auto=webp&s=4ba0ec3214a892c1e15ca3a87e837532c2a38ad0","https://preview.redd.it/5sp8xw4zeab81.png?width=640&crop=smart&auto=webp&s=3b0a4460af180e8bb87ade973ce5415b1d4daa9a","https://preview.redd.it/y3zbvl3zeab81.png?width=640&crop=smart&auto=webp&s=d30f43925cfefa0cbb740b70428523effcbf8991","https://preview.redd.it/69vne65zeab81.png?width=640&crop=smart&auto=webp&s=ebfa8fc66279799f829d8cbc57fd4550e55a9613","https://preview.redd.it/lm24g45zeab81.png?width=640&crop=smart&auto=webp&s=362300c782d52469e642fcb60a814dd88c3779e8","https://preview.redd.it/2kqs765zeab81.png?width=640&crop=smart&auto=webp&s=10ba5610935e5ef0711dca54d75dbbf59b6e66cc","https://preview.redd.it/b7icc73zeab81.png?width=640&crop=smart&auto=webp&s=00ca1f5253070c981171caf09b7506c2fb651941","https://preview.redd.it/cesdba5zeab81.png?width=640&crop=smart&auto=webp&s=485bcb4db9a24a4188af42942ae4b882daadad64","https://preview.redd.it/2ms3s35zeab81.png?width=640&crop=smart&auto=webp&s=64ab7f2c86f3433912dfa015ad010b3cbaa0b443","https://preview.redd.it/8hjto73zeab81.png?width=640&crop=smart&auto=webp&s=9b64b7405b37418d426f11eb7cf6dc0cdeb43d0f","https://preview.redd.it/90ezx35zeab81.png?width=640&crop=smart&auto=webp&s=d473ae722631e16515b51f96331cae42cc0d0678","https://preview.redd.it/eisvlg3zeab81.png?width=640&crop=smart&auto=webp&s=b8cea2fd0de1dc255b89caf4944fc2b8713bd1a1"] +tags: ["lite"] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx b/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx new file mode 100644 index 0000000..e743759 --- /dev/null +++ b/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. LITE 27.12 - 02.01" +date: "2022-01-13T16:11:14.543000+0000" +link: "https://reddit.com/r/HoloNews/comments/s32xsw/holonews_fr_ver_lite_2712_0201/" +images: ["https://preview.redd.it/nmg8hicubhb81.png?width=640&crop=smart&auto=webp&s=a8b289891d856f6a7bc2b8a4da366eda3687a5ee","https://preview.redd.it/ayja8gcubhb81.png?width=640&crop=smart&auto=webp&s=eadeb1cacfa8401f7ef9dffbd4df36e95815b1ab","https://preview.redd.it/qh7q1fcubhb81.png?width=640&crop=smart&auto=webp&s=7e93fb12c1f45c86babc42dba7e2f655cfcb53e9","https://preview.redd.it/romqrncubhb81.png?width=640&crop=smart&auto=webp&s=04558668df52e0b418a8c259c7ec31e52b51eb2e","https://preview.redd.it/b6luaicubhb81.png?width=640&crop=smart&auto=webp&s=abeb6c597ae584802d477f87fd063484cd5ba4a1","https://preview.redd.it/0m01hkcubhb81.png?width=640&crop=smart&auto=webp&s=1a0bb076061c81e9b198f1f42dd93e0d2a886142","https://preview.redd.it/40hgtlcubhb81.png?width=640&crop=smart&auto=webp&s=1c7b98fee03cea5a9d4dc7adf2dcd588d54c946c","https://preview.redd.it/osr47mcubhb81.png?width=640&crop=smart&auto=webp&s=25ffdf2368b22b91fe49e1f9bef30fa0fa0eae79","https://preview.redd.it/2d9gywcubhb81.png?width=640&crop=smart&auto=webp&s=27f67a654a16012c0df5d47e89f902c270fec5ac","https://preview.redd.it/4cz7kicubhb81.png?width=640&crop=smart&auto=webp&s=abfe06f7248e8f7f4238f149e753ee2ec41411ba","https://preview.redd.it/wwym2pcubhb81.png?width=640&crop=smart&auto=webp&s=43a73b2eec3a73688cf0b98ade7af4e6bf7718a7","https://preview.redd.it/bvrj7jcubhb81.png?width=640&crop=smart&auto=webp&s=849981db16afeb68ab1f6e9f58f5e87e5cf69c0b"] +tags: ["lite"] +--- \ No newline at end of file diff --git "a/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" "b/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" new file mode 100644 index 0000000..1a322c0 --- /dev/null +++ "b/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" @@ -0,0 +1,7 @@ +--- +title: "HoloNews FR ver. Numéro Spécial Débuts d'holoX" +date: "2021-12-08T16:55:37.599000+0000" +link: "https://reddit.com/r/HoloNews/comments/rbvlel/holonews_fr_ver_numéro_spécial_débuts_dholox/" +images: ["https://preview.redd.it/v9irlsp8kc481.png?width=640&crop=smart&auto=webp&s=be2e14aa5cff262eb5be7f242629b3f0b976cb1b","https://preview.redd.it/x6j349p8kc481.png?width=640&crop=smart&auto=webp&s=d4c47366adf22f668eb6ccc43eaebff73957c2ba","https://i.redd.it/ozgnj2q8kc481.gif","https://preview.redd.it/5vpzg4p8kc481.png?width=640&crop=smart&auto=webp&s=352d9dba88f3ce78841bdb8c2b8ab94ca339953b","https://i.redd.it/e2zrxeq8kc481.gif","https://preview.redd.it/org9vyo8kc481.png?width=640&crop=smart&auto=webp&s=c39e7661b3688e4d2414d3c51f9859063160ad65","https://i.redd.it/isqekdq8kc481.gif","https://preview.redd.it/hlluz2p8kc481.png?width=640&crop=smart&auto=webp&s=0d865aac51986006509ca4e48ec42c6b519d75dd","https://i.redd.it/0mqtdjq8kc481.gif","https://preview.redd.it/ce1tl1p8kc481.png?width=640&crop=smart&auto=webp&s=9d4d81226cde95d5870f111abdb8e75b270110a8","https://i.redd.it/mmeh3cq8kc481.gif","https://preview.redd.it/hn76m8p8kc481.png?width=640&crop=smart&auto=webp&s=234077f7bbfaa2770fe3eb7b4f7bceac57438660","https://i.redd.it/wptkaxp8kc481.gif","https://preview.redd.it/k6y7cyo8kc481.png?width=640&crop=smart&auto=webp&s=d1214edc2eaed253a35c4f8f1c665c4fd0669643","https://preview.redd.it/lp8tsto8kc481.png?width=640&crop=smart&auto=webp&s=9a31c29c5caee21143b29737543ff47223ac45ed"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_french_17.10_-_23.10.mdx b/src/data/issues/holonews_french_17.10_-_23.10.mdx new file mode 100644 index 0000000..13e53cd --- /dev/null +++ b/src/data/issues/holonews_french_17.10_-_23.10.mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews french 17.10 - 23.10" +date: "2022-11-06T18:01:16.445000+0000" +link: "https://reddit.com/r/HoloNews/comments/ynxghk/holonews_french_1710_2310/" +images: ["https://preview.redd.it/gz3dr109edy91.png?width=640&crop=smart&auto=webp&s=68c962537b76d1b1c4a576545fc9bfe8fed83f32","https://i.redd.it/bmwo8f49edy91.gif","https://preview.redd.it/k0jee8j9edy91.png?width=640&crop=smart&auto=webp&s=0507cdf001c6c77b5ca501c0e30ed2428c35069e","https://preview.redd.it/sd82mtm9edy91.png?width=640&crop=smart&auto=webp&s=4a756c376fee13a402fb55003a39c62532f85a71","https://i.redd.it/6xquwfp9edy91.gif","https://preview.redd.it/je2v5rs9edy91.png?width=640&crop=smart&auto=webp&s=904f448ffaba9e6e745a891749425b524b0a1d4c","https://preview.redd.it/2s5w8rv9edy91.png?width=640&crop=smart&auto=webp&s=9ca9c7e5955821e10b55b5fd74e5688068ab962b","https://preview.redd.it/7olqdyz9edy91.png?width=640&crop=smart&auto=webp&s=c35a23497f37ad91bd2b85c5f22c15ce235cb73c","https://preview.redd.it/7htxo03aedy91.png?width=640&crop=smart&auto=webp&s=5ebb4c3f3238e37296497e2a936e92d2a9a35469","https://preview.redd.it/hi40o46aedy91.png?width=640&crop=smart&auto=webp&s=77cbc45b74c44b11ba67a5d9cbc1b4e7e525c7ab","https://preview.redd.it/u9dwv4aaedy91.png?width=640&crop=smart&auto=webp&s=a72c6ab9e226dbb70318b982ff9be8fb9dde54f3","https://preview.redd.it/ri6w1hdaedy91.png?width=640&crop=smart&auto=webp&s=ae805651b7c6e3e632facd326ffdc6203d0c3582","https://preview.redd.it/1jrumygaedy91.png?width=640&crop=smart&auto=webp&s=5d82a84295f897d21889d68df9b73e4891db9eba","https://preview.redd.it/p0005ykaedy91.png?width=640&crop=smart&auto=webp&s=1227250bc2757ba114edc7b83884cbc861a2e38a","https://preview.redd.it/jk8wveoaedy91.png?width=640&crop=smart&auto=webp&s=845735eabc2e9fe579350b1ad455b8994b15e20a","https://preview.redd.it/uq2dxfraedy91.png?width=640&crop=smart&auto=webp&s=35728fb9576296d95e68afc344839c033f71a4af","https://preview.redd.it/b8siebwaedy91.png?width=640&crop=smart&auto=webp&s=7778529201b7c83b9020708ab38a8dd547bf8633","https://preview.redd.it/wk34kd0bedy91.png?width=640&crop=smart&auto=webp&s=962a9324633cb4acccde4bc49233beefbcba582a"] +tags: [] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_holoid03_debut_special_-_fr_version.mdx b/src/data/issues/holonews_holoid03_debut_special_-_fr_version.mdx new file mode 100644 index 0000000..aa8ce5a --- /dev/null +++ b/src/data/issues/holonews_holoid03_debut_special_-_fr_version.mdx @@ -0,0 +1,20 @@ +--- +title: "HoloNews HoloID03 Debut Special - FR Version" +date: "2022-04-09T15:35:43.174000+0000" +link: "https://reddit.com/r/HoloNews/comments/tzvo80/holonews_holoid03_debut_special_fr_version/" +images: + [ + "https://preview.redd.it/1k667zayvis81.png?width=640&crop=smart&auto=webp&s=e941cd400bccb7288a654982ef563006f8b2f8d8", + "https://i.redd.it/m9dhlfbyvis81.gif", + "https://preview.redd.it/qygvcsayvis81.png?width=640&crop=smart&auto=webp&s=ad0083c918aa65b63c2c613c708b222c7f0c9e9d", + "https://i.redd.it/lrxqn7byvis81.gif", + "https://preview.redd.it/n244sqayvis81.png?width=640&crop=smart&auto=webp&s=8cc03fc291d5c0fe6cca78daa79a3ce8978ff0ba", + "https://i.redd.it/4wcnxfbyvis81.gif", + "https://preview.redd.it/kls1yrayvis81.png?width=640&crop=smart&auto=webp&s=394d34e26128c11d58c10eda9cadede77e9f459e", + "https://preview.redd.it/1u9tyvayvis81.png?width=640&crop=smart&auto=webp&s=8577e1ae1bd57a4623102c9cbfd7e359a11677e1", + "https://i.redd.it/y66urvayvis81.gif", + "https://preview.redd.it/iaef6vayvis81.png?width=640&crop=smart&auto=webp&s=1b3b6050b70a5a34501b8a9e81db5b37aed66415", + "https://preview.redd.it/brxautayvis81.png?width=640&crop=smart&auto=webp&s=dce02a34671035762cdde0afdd658f7aa08ccb86", + ] +tags: ["special"] +--- diff --git a/src/data/issues/holonews_sana_special_issue_fr_ver..mdx b/src/data/issues/holonews_sana_special_issue_fr_ver..mdx new file mode 100644 index 0000000..1f5d7b7 --- /dev/null +++ b/src/data/issues/holonews_sana_special_issue_fr_ver..mdx @@ -0,0 +1,7 @@ +--- +title: "HoloNews Sana Special Issue FR Ver." +date: "2022-08-01T16:20:21.565000+0000" +link: "https://reddit.com/r/HoloNews/comments/wdlidu/holonews_sana_special_issue_fr_ver/" +images: ["https://preview.redd.it/dri6gk1un4f91.png?width=640&crop=smart&auto=webp&s=c1f6d9ceb3975bdaa9be3aea6485a121c65c2bc2","https://preview.redd.it/0coc5f1un4f91.png?width=640&crop=smart&auto=webp&s=65057f0119bed851def896b0ba549c7218b2ce0e","https://preview.redd.it/ru3dyl1un4f91.png?width=640&crop=smart&auto=webp&s=205256adbbefea97e6677b75f327909ede910eee","https://preview.redd.it/3idu6o1un4f91.png?width=640&crop=smart&auto=webp&s=27f6162d674f355177b3f99f66b24ee9f107f53a","https://preview.redd.it/qgp5qp1un4f91.png?width=640&crop=smart&auto=webp&s=cf0c9094c2440204152bd808a99c6b1940a9e12e","https://preview.redd.it/fthpgp1un4f91.png?width=640&crop=smart&auto=webp&s=56f095ff4ac5e32b2eac869aaaf68ec5604ed60d","https://preview.redd.it/3pk3ar1un4f91.png?width=640&crop=smart&auto=webp&s=f7bba6f90a14e7db1392c27eeb96f8ec15916c2b","https://i.redd.it/9f168h2un4f91.gif","https://preview.redd.it/0ghn302un4f91.png?width=640&crop=smart&auto=webp&s=8c4a0e4359c7e29fa3709ad5e0c1832fba087efb","https://preview.redd.it/yp3r7d2un4f91.png?width=640&crop=smart&auto=webp&s=e3fe887c763949ad25ea19f2d024cc0032ec4f1c","https://preview.redd.it/inrl012un4f91.png?width=640&crop=smart&auto=webp&s=d1949d01b66a7fe23bb15f27a6035667ecdad36c","https://preview.redd.it/nkpcua2un4f91.png?width=640&crop=smart&auto=webp&s=e9b2505ea1695da4430ab0749c9b912dfa5bd386","https://preview.redd.it/r5bl842un4f91.png?width=640&crop=smart&auto=webp&s=e0533ce520d6a107ca3396b87dd41ed32b5381ea","https://preview.redd.it/p40b0z1un4f91.png?width=640&crop=smart&auto=webp&s=fc78106653e411ed44d634ead2c50d9eb972e60c","https://preview.redd.it/475v542un4f91.png?width=640&crop=smart&auto=webp&s=a5d5ae73a05f53e8f5cde8b55cbc48e45c50cdb5","https://preview.redd.it/fn3hrt1un4f91.png?width=640&crop=smart&auto=webp&s=ad9db108d612f62f31386c599cedd39362aa7ce3","https://preview.redd.it/52rp3e2un4f91.png?width=640&crop=smart&auto=webp&s=6ea1813a36ebd7734a63e35490e1bb794c97f1fa","https://preview.redd.it/n4dcuw1un4f91.png?width=640&crop=smart&auto=webp&s=df844409cf161e85aaa320122572e8be22d589d2","https://preview.redd.it/ml8tgf1un4f91.png?width=640&crop=smart&auto=webp&s=d4ffae1933aa42a00a23e27ec99a807a6e1ed5e1","https://preview.redd.it/uutf0n2un4f91.png?width=640&crop=smart&auto=webp&s=4f6ec9176aaeeeddd57f80ae7ee7720d10aa0c2a"] +tags: ["special"] +--- \ No newline at end of file diff --git a/src/data/issues/holonews_uproar!!_debut_special_-_fr_version.mdx b/src/data/issues/holonews_uproar!!_debut_special_-_fr_version.mdx new file mode 100644 index 0000000..de6b829 --- /dev/null +++ b/src/data/issues/holonews_uproar!!_debut_special_-_fr_version.mdx @@ -0,0 +1,23 @@ +--- +title: "HoloNews UPROAR!! Debut Special - FR Version" +date: "2022-04-09T15:36:48.992000+0000" +link: "https://reddit.com/r/HoloNews/comments/tzvp16/holonews_uproar_debut_special_fr_version/" +images: + [ + "https://preview.redd.it/7y785i46wis81.png?width=640&crop=smart&auto=webp&s=49c643ed92ef8839ea68a7a220cf5ff839dfd2f0", + "https://i.redd.it/2olhh456wis81.gif", + "https://preview.redd.it/4309tb46wis81.png?width=640&crop=smart&auto=webp&s=3ad19d9e513c7d03d45188ec9b57d28141950d0b", + "https://i.redd.it/18fvcg56wis81.gif", + "https://preview.redd.it/xqns4f46wis81.png?width=640&crop=smart&auto=webp&s=7a87ba4e3a817212826eb7432064353a537775ae", + "https://i.redd.it/56grmz56wis81.gif", + "https://preview.redd.it/sv65vd46wis81.png?width=640&crop=smart&auto=webp&s=b49860d30ea17faca0ab5f0dce70a1ceff53b480", + "https://i.redd.it/obomnn56wis81.gif", + "https://preview.redd.it/31fq3e46wis81.png?width=640&crop=smart&auto=webp&s=509fefcaf2cffcf022eff6d20854720f6ae3d61a", + "https://preview.redd.it/rw15uf46wis81.png?width=640&crop=smart&auto=webp&s=587659c3e8128991d75227e587b42c996b68d5bf", + "https://i.redd.it/v800fg46wis81.gif", + "https://preview.redd.it/ufxywg46wis81.png?width=640&crop=smart&auto=webp&s=37c2fc6117615018b58eaf2e24d00eef4ac3341d", + "https://preview.redd.it/j69sk846wis81.png?width=640&crop=smart&auto=webp&s=e9379987d1d9c288a54d3205734747d0af0bf0ed", + "https://preview.redd.it/myhj3046wis81.png?width=640&crop=smart&auto=webp&s=519c69ba46583f2a803f0503197ca711e0f4dbe7", + ] +tags: ["special"] +--- diff --git a/src/pages/issues/[...id].astro b/src/pages/issues/[...id].astro new file mode 100644 index 0000000..c81e8fa --- /dev/null +++ b/src/pages/issues/[...id].astro @@ -0,0 +1,40 @@ +--- +import IssueViewer from "$lib/components/IssueViewer.svelte"; +import Layout from "$lib/layouts/Layout.astro"; +import { getCollection } from "astro:content"; + +export async function getStaticPaths() { + const issues = await getCollection("issues"); + return issues.map((entry) => ({ + params: { id: entry.id }, + props: { entry }, + })); +} + +const { entry } = Astro.props; +--- + + +
+

{entry.data.title}

+
+ { + entry.data.tags?.map((tag) => ( + + {tag} + + )) + } + +
+ +
+
From 8f2c733ea7ff1984af1a86635d35d66eae3f02b0 Mon Sep 17 00:00:00 2001 From: Pyrospower Date: Fri, 20 Mar 2026 23:08:30 +0100 Subject: [PATCH 2/3] chore: updated all the dependencies --- .vscode/settings.json | 4 +- README.md | 14 +- astro.config.mjs | 17 +- components.json | 15 +- package.json | 48 +- pnpm-lock.yaml | 4943 ++++++++--------- prettier.config.mjs | 4 +- src/components/IssueListing.svelte | 74 +- src/components/IssueViewer.svelte | 59 +- src/components/ui/badge/badge.svelte | 49 +- src/components/ui/badge/index.ts | 23 +- src/components/ui/button/button.svelte | 99 +- src/components/ui/button/index.ts | 60 +- src/components/ui/card/card-action.svelte | 23 + src/components/ui/card/card-content.svelte | 21 +- .../ui/card/card-description.svelte | 21 +- src/components/ui/card/card-footer.svelte | 21 +- src/components/ui/card/card-header.svelte | 24 +- src/components/ui/card/card-title.svelte | 26 +- src/components/ui/card/card.svelte | 22 +- src/components/ui/card/index.ts | 5 +- .../ui/dialog/dialog-content.svelte | 36 - .../ui/dialog/dialog-description.svelte | 16 - src/components/ui/dialog/dialog-footer.svelte | 16 - src/components/ui/dialog/dialog-header.svelte | 13 - .../ui/dialog/dialog-overlay.svelte | 21 - src/components/ui/dialog/dialog-portal.svelte | 8 - src/components/ui/dialog/dialog-title.svelte | 16 - src/components/ui/dialog/index.ts | 37 - src/components/ui/input/index.ts | 22 - src/components/ui/input/input.svelte | 78 +- src/components/ui/label/label.svelte | 21 +- src/components/ui/range-calendar/index.ts | 30 - .../range-calendar/range-calendar-cell.svelte | 21 - .../range-calendar/range-calendar-day.svelte | 43 - .../range-calendar-grid-body.svelte | 13 - .../range-calendar-grid-head.svelte | 13 - .../range-calendar-grid-row.svelte | 13 - .../range-calendar/range-calendar-grid.svelte | 16 - .../range-calendar-head-cell.svelte | 16 - .../range-calendar-header.svelte | 16 - .../range-calendar-heading.svelte | 19 - .../range-calendar-months.svelte | 16 - .../range-calendar-next-button.svelte | 27 - .../range-calendar-prev-button.svelte | 27 - .../ui/range-calendar/range-calendar.svelte | 60 - src/components/ui/scroll-area/index.ts | 10 - .../scroll-area/scroll-area-scrollbar.svelte | 27 - .../ui/scroll-area/scroll-area.svelte | 32 - src/components/ui/select/index.ts | 61 +- .../ui/select/select-content.svelte | 74 +- .../ui/select/select-group-heading.svelte | 11 +- src/components/ui/select/select-group.svelte | 17 + src/components/ui/select/select-item.svelte | 54 +- src/components/ui/select/select-label.svelte | 26 +- src/components/ui/select/select-portal.svelte | 7 + .../select/select-scroll-down-button.svelte | 11 +- .../ui/select/select-scroll-up-button.svelte | 11 +- .../ui/select/select-separator.svelte | 19 +- .../ui/select/select-trigger.svelte | 34 +- src/components/ui/select/select.svelte | 11 + src/components/ui/separator/index.ts | 6 +- src/components/ui/separator/separator.svelte | 9 +- src/components/ui/tabs/index.ts | 19 - src/components/ui/tabs/tabs-content.svelte | 21 - src/components/ui/tabs/tabs-list.svelte | 19 - src/components/ui/tabs/tabs-trigger.svelte | 23 - src/config.content.ts | 15 - src/content.config.ts | 16 + src/content/config.ts | 14 - .../issues/holonews_fr_10.10._-_16.10..mdx | 7 - .../issues/holonews_fr_11.07._-_17.07..mdx | 7 - .../issues/holonews_fr_24.10_-_30.10.mdx | 7 - .../issues/holonews_fr_30.05._-_05.06..mdx | 7 - ...ws_fr_holostars_-tempus-_debut_special.mdx | 25 - .../issues/holonews_fr_ver._01.08_-_07.08.mdx | 7 - .../holonews_fr_ver._02.05._-_08.05..mdx | 7 - .../issues/holonews_fr_ver._03.01_-_09.01.mdx | 7 - .../holonews_fr_ver._04.04._-_10.04..mdx | 7 - .../issues/holonews_fr_ver._06.12_-_12.12.mdx | 7 - .../holonews_fr_ver._07.02._-_13.02..mdx | 7 - .../issues/holonews_fr_ver._09.05_-_15.05.mdx | 7 - .../issues/holonews_fr_ver._10.01_-_16.01.mdx | 7 - .../issues/holonews_fr_ver._13.06_-_19.06.mdx | 7 - .../issues/holonews_fr_ver._13.12_-_19.12.mdx | 7 - .../issues/holonews_fr_ver._14.02_-_20.02.mdx | 7 - .../holonews_fr_ver._14.03._-_20.03..mdx | 7 - .../holonews_fr_ver._15.08._-_21.08..mdx | 7 - .../issues/holonews_fr_ver._17.01_-_23.01.mdx | 7 - .../issues/holonews_fr_ver._18.07_-_24.07.mdx | 7 - .../holonews_fr_ver._20.06._-_26.06.mdx | 7 - .../holonews_fr_ver._21.02._-_27.02..mdx | 7 - .../issues/holonews_fr_ver._21.03_-_27.03.mdx | 7 - .../holonews_fr_ver._22.08._-_28.08..mdx | 7 - .../issues/holonews_fr_ver._22.11_-_28.11.mdx | 7 - .../issues/holonews_fr_ver._23.05_-_29.05.mdx | 7 - .../issues/holonews_fr_ver._24.01_-_30.01.mdx | 7 - .../issues/holonews_fr_ver._25.07_-_31.07.mdx | 7 - .../issues/holonews_fr_ver._27.06_-_03.07.mdx | 7 - .../issues/holonews_fr_ver._28.02_-_06.03.mdx | 7 - .../holonews_fr_ver._28.03._-_03.04..mdx | 7 - .../holonews_fr_ver._29.08._-_04.09..mdx | 7 - .../issues/holonews_fr_ver._29.11_-_05.12.mdx | 7 - .../holonews_fr_ver._31.01._-_06.02..mdx | 7 - .../holonews_fr_ver._lite_20.12_-_26.12.mdx | 7 - .../holonews_fr_ver._lite_27.12_-_02.01.mdx | 7 - ..._sp\303\251cial_d\303\251buts_d'holox.mdx" | 7 - .../issues/holonews_french_17.10_-_23.10.mdx | 7 - ...ws_holoid03_debut_special_-_fr_version.mdx | 20 - .../holonews_sana_special_issue_fr_ver..mdx | 7 - ...ws_uproar!!_debut_special_-_fr_version.mdx | 23 - .../issues/holonews_fr_10.10._-_16.10..mdx | 19 +- .../issues/holonews_fr_11.07._-_17.07..mdx | 24 +- src/data/issues/holonews_fr_24.10_-_30.10.mdx | 26 +- .../issues/holonews_fr_30.05._-_05.06..mdx | 25 +- .../issues/holonews_fr_ver._01.08_-_07.08.mdx | 25 +- .../holonews_fr_ver._02.05._-_08.05..mdx | 23 +- .../issues/holonews_fr_ver._03.01_-_09.01.mdx | 24 +- .../holonews_fr_ver._04.04._-_10.04..mdx | 26 +- .../issues/holonews_fr_ver._06.12_-_12.12.mdx | 26 +- .../holonews_fr_ver._07.02._-_13.02..mdx | 26 +- .../issues/holonews_fr_ver._09.05_-_15.05.mdx | 22 +- .../issues/holonews_fr_ver._10.01_-_16.01.mdx | 26 +- .../issues/holonews_fr_ver._13.06_-_19.06.mdx | 26 +- .../issues/holonews_fr_ver._13.12_-_19.12.mdx | 26 +- .../issues/holonews_fr_ver._14.02_-_20.02.mdx | 26 +- .../holonews_fr_ver._14.03._-_20.03..mdx | 25 +- .../holonews_fr_ver._15.08._-_21.08..mdx | 25 +- .../issues/holonews_fr_ver._17.01_-_23.01.mdx | 26 +- .../issues/holonews_fr_ver._18.07_-_24.07.mdx | 26 +- .../holonews_fr_ver._20.06._-_26.06.mdx | 24 +- .../holonews_fr_ver._21.02._-_27.02..mdx | 26 +- .../issues/holonews_fr_ver._21.03_-_27.03.mdx | 25 +- .../holonews_fr_ver._22.08._-_28.08..mdx | 21 +- .../issues/holonews_fr_ver._22.11_-_28.11.mdx | 25 +- .../issues/holonews_fr_ver._23.05_-_29.05.mdx | 22 +- .../issues/holonews_fr_ver._24.01_-_30.01.mdx | 26 +- .../issues/holonews_fr_ver._25.07_-_31.07.mdx | 25 +- .../issues/holonews_fr_ver._27.06_-_03.07.mdx | 24 +- .../issues/holonews_fr_ver._28.02_-_06.03.mdx | 24 +- .../holonews_fr_ver._28.03._-_03.04..mdx | 26 +- .../holonews_fr_ver._29.08._-_04.09..mdx | 26 +- .../issues/holonews_fr_ver._29.11_-_05.12.mdx | 26 +- .../holonews_fr_ver._31.01._-_06.02..mdx | 26 +- .../holonews_fr_ver._lite_20.12_-_26.12.mdx | 25 +- .../holonews_fr_ver._lite_27.12_-_02.01.mdx | 18 +- ..._sp\303\251cial_d\303\251buts_d'holox.mdx" | 21 +- .../issues/holonews_french_17.10_-_23.10.mdx | 24 +- .../holonews_sana_special_issue_fr_ver..mdx | 26 +- src/env.d.ts | 1 - src/layouts/Layout.astro | 2 +- src/pages/404.astro | 21 +- src/pages/issues/[...id].astro | 4 +- src/pages/issues/[...slug].astro | 40 - src/styles/app.css | 78 +- src/utils.ts | 60 +- tailwind.config.ts | 64 - tsconfig.json | 7 +- 158 files changed, 3812 insertions(+), 4464 deletions(-) create mode 100644 src/components/ui/card/card-action.svelte delete mode 100644 src/components/ui/dialog/dialog-content.svelte delete mode 100644 src/components/ui/dialog/dialog-description.svelte delete mode 100644 src/components/ui/dialog/dialog-footer.svelte delete mode 100644 src/components/ui/dialog/dialog-header.svelte delete mode 100644 src/components/ui/dialog/dialog-overlay.svelte delete mode 100644 src/components/ui/dialog/dialog-portal.svelte delete mode 100644 src/components/ui/dialog/dialog-title.svelte delete mode 100644 src/components/ui/dialog/index.ts delete mode 100644 src/components/ui/range-calendar/index.ts delete mode 100644 src/components/ui/range-calendar/range-calendar-cell.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-day.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-grid-body.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-grid-head.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-grid-row.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-grid.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-head-cell.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-header.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-heading.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-months.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-next-button.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar-prev-button.svelte delete mode 100644 src/components/ui/range-calendar/range-calendar.svelte delete mode 100644 src/components/ui/scroll-area/index.ts delete mode 100644 src/components/ui/scroll-area/scroll-area-scrollbar.svelte delete mode 100644 src/components/ui/scroll-area/scroll-area.svelte create mode 100644 src/components/ui/select/select-group.svelte create mode 100644 src/components/ui/select/select-portal.svelte create mode 100644 src/components/ui/select/select.svelte delete mode 100644 src/components/ui/tabs/index.ts delete mode 100644 src/components/ui/tabs/tabs-content.svelte delete mode 100644 src/components/ui/tabs/tabs-list.svelte delete mode 100644 src/components/ui/tabs/tabs-trigger.svelte delete mode 100644 src/config.content.ts create mode 100644 src/content.config.ts delete mode 100644 src/content/config.ts delete mode 100644 src/content/issues/holonews_fr_10.10._-_16.10..mdx delete mode 100644 src/content/issues/holonews_fr_11.07._-_17.07..mdx delete mode 100644 src/content/issues/holonews_fr_24.10_-_30.10.mdx delete mode 100644 src/content/issues/holonews_fr_30.05._-_05.06..mdx delete mode 100644 src/content/issues/holonews_fr_holostars_-tempus-_debut_special.mdx delete mode 100644 src/content/issues/holonews_fr_ver._01.08_-_07.08.mdx delete mode 100644 src/content/issues/holonews_fr_ver._02.05._-_08.05..mdx delete mode 100644 src/content/issues/holonews_fr_ver._03.01_-_09.01.mdx delete mode 100644 src/content/issues/holonews_fr_ver._04.04._-_10.04..mdx delete mode 100644 src/content/issues/holonews_fr_ver._06.12_-_12.12.mdx delete mode 100644 src/content/issues/holonews_fr_ver._07.02._-_13.02..mdx delete mode 100644 src/content/issues/holonews_fr_ver._09.05_-_15.05.mdx delete mode 100644 src/content/issues/holonews_fr_ver._10.01_-_16.01.mdx delete mode 100644 src/content/issues/holonews_fr_ver._13.06_-_19.06.mdx delete mode 100644 src/content/issues/holonews_fr_ver._13.12_-_19.12.mdx delete mode 100644 src/content/issues/holonews_fr_ver._14.02_-_20.02.mdx delete mode 100644 src/content/issues/holonews_fr_ver._14.03._-_20.03..mdx delete mode 100644 src/content/issues/holonews_fr_ver._15.08._-_21.08..mdx delete mode 100644 src/content/issues/holonews_fr_ver._17.01_-_23.01.mdx delete mode 100644 src/content/issues/holonews_fr_ver._18.07_-_24.07.mdx delete mode 100644 src/content/issues/holonews_fr_ver._20.06._-_26.06.mdx delete mode 100644 src/content/issues/holonews_fr_ver._21.02._-_27.02..mdx delete mode 100644 src/content/issues/holonews_fr_ver._21.03_-_27.03.mdx delete mode 100644 src/content/issues/holonews_fr_ver._22.08._-_28.08..mdx delete mode 100644 src/content/issues/holonews_fr_ver._22.11_-_28.11.mdx delete mode 100644 src/content/issues/holonews_fr_ver._23.05_-_29.05.mdx delete mode 100644 src/content/issues/holonews_fr_ver._24.01_-_30.01.mdx delete mode 100644 src/content/issues/holonews_fr_ver._25.07_-_31.07.mdx delete mode 100644 src/content/issues/holonews_fr_ver._27.06_-_03.07.mdx delete mode 100644 src/content/issues/holonews_fr_ver._28.02_-_06.03.mdx delete mode 100644 src/content/issues/holonews_fr_ver._28.03._-_03.04..mdx delete mode 100644 src/content/issues/holonews_fr_ver._29.08._-_04.09..mdx delete mode 100644 src/content/issues/holonews_fr_ver._29.11_-_05.12.mdx delete mode 100644 src/content/issues/holonews_fr_ver._31.01._-_06.02..mdx delete mode 100644 src/content/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx delete mode 100644 src/content/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx delete mode 100644 "src/content/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" delete mode 100644 src/content/issues/holonews_french_17.10_-_23.10.mdx delete mode 100644 src/content/issues/holonews_holoid03_debut_special_-_fr_version.mdx delete mode 100644 src/content/issues/holonews_sana_special_issue_fr_ver..mdx delete mode 100644 src/content/issues/holonews_uproar!!_debut_special_-_fr_version.mdx delete mode 100644 src/env.d.ts delete mode 100644 src/pages/issues/[...slug].astro delete mode 100644 tailwind.config.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index a1a8bf1..fa62f63 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,6 +14,6 @@ "typescriptreact" ], "prettier.ignorePath": ".gitignore", - "typescript.enablePromptUseWorkspaceTsdk": true, - "typescript.tsdk": "node_modules/typescript/lib" + "js/ts.tsdk.promptToUseWorkspaceVersion": true, + "js/ts.tsdk.path": "node_modules/typescript/lib" } diff --git a/README.md b/README.md index b3c6e1e..ed1d8f1 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,14 @@ HoloNews FR Reader est une application web qui permet de consulter facilement to ## 🛠 Installation 1. **Cloner le repository** + ```sh git clone https://github.com/Pyrospower/holonews-fr-reader.git cd holonews-fr-reader ``` 2. **Installer les dépendances** + ```sh pnpm install ``` @@ -36,12 +38,12 @@ L'application sera accessible sur `http://localhost:4321` ## 🧞 Commandes disponibles -| Commande | Action | -| :------- | :----- | -| `pnpm install` | Installe les dépendances | -| `pnpm dev` | Lance le serveur de développement | -| `pnpm build` | Génère le site pour la production | -| `pnpm preview` | Prévisualise le build en local | +| Commande | Action | +| :--------------- | :-------------------------------- | +| `pnpm install` | Installe les dépendances | +| `pnpm dev` | Lance le serveur de développement | +| `pnpm build` | Génère le site pour la production | +| `pnpm preview` | Prévisualise le build en local | | `pnpm astro ...` | Exécute les commandes CLI d'Astro | ## 🔧 Technologies utilisées diff --git a/astro.config.mjs b/astro.config.mjs index 4aab12f..e61fc27 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,13 +1,16 @@ // @ts-check +import mdx from "@astrojs/mdx"; import svelte from "@astrojs/svelte"; -import tailwind from "@astrojs/tailwind"; +import tailwindcss from "@tailwindcss/vite"; import { defineConfig } from "astro/config"; -import mdx from "@astrojs/mdx"; - // https://astro.build/config export default defineConfig({ - integrations: [tailwind({ - applyBaseStyles: false, - }), svelte(), mdx()], -}); \ No newline at end of file + integrations: [svelte(), mdx()], + vite: { + plugins: [tailwindcss()], + resolve: { + noExternal: ["@lucide/svelte", "bits-ui"], + }, + }, +}); diff --git a/components.json b/components.json index 5f6fb4e..0a5d6c6 100644 --- a/components.json +++ b/components.json @@ -1,14 +1,19 @@ { "$schema": "https://shadcn-svelte.com/schema.json", - "style": "default", "tailwind": { - "config": "tailwind.config.ts", - "css": "src\\styles\\app.css", + "css": "src/styles/app.css", "baseColor": "slate" }, "aliases": { "components": "$lib/components", - "utils": "$lib/utils" + "utils": "$lib/utils", + "ui": "$lib/components/ui", + "hooks": "$lib/hooks", + "lib": "$lib" }, - "typescript": true + "typescript": true, + "registry": "https://shadcn-svelte.com/registry", + "iconLibrary": "lucide", + "menuColor": "default", + "menuAccent": "subtle" } diff --git a/package.json b/package.json index 7c01ba3..9939ab6 100644 --- a/package.json +++ b/package.json @@ -16,35 +16,35 @@ "astro": "astro" }, "dependencies": { - "@astrojs/check": "^0.9.4", - "@astrojs/mdx": "^3.1.8", - "@astrojs/svelte": "^5.7.2", - "@astrojs/tailwind": "^5.1.3", - "@internationalized/date": "^3.6.0", - "astro": "^4.16.7", - "bits-ui": "^0.22.0", + "@astrojs/check": "^0.9.8", + "@astrojs/mdx": "^5.0.2", + "@astrojs/svelte": "^8.0.3", + "@internationalized/date": "^3.12.0", + "@lucide/svelte": "^0.577.0", + "@tailwindcss/vite": "^4.2.2", + "astro": "^6.0.8", + "bits-ui": "^2.16.3", "clsx": "^2.1.1", - "lucide-svelte": "^0.468.0", - "playwright": "^1.49.1", - "sharp": "^0.33.5", - "svelte": "^4.2.19", - "tailwind-merge": "^2.5.5", - "tailwind-variants": "^0.3.0", - "tailwindcss": "^3.4.17", - "typescript": "^5.6.2" + "playwright": "^1.58.2", + "sharp": "^0.34.5", + "svelte": "^5.54.0", + "tailwind-merge": "^3.5.0", + "tailwind-variants": "^3.2.2", + "tailwindcss": "^4.2.2", + "typescript": "^5.9.3" }, "packageManager": "pnpm@9.15.0", "devDependencies": { - "@ianvs/prettier-plugin-sort-imports": "^4.4.0", - "@types/bun": "^1.1.14", - "@types/node": "^22.10.2", - "@typescript-eslint/parser": "^8.18.1", - "astro-eslint-parser": "^1.1.0", - "eslint": "^9.17.0", - "eslint-plugin-astro": "^1.3.1", + "@ianvs/prettier-plugin-sort-imports": "^4.7.1", + "@types/bun": "^1.3.11", + "@types/node": "^25.5.0", + "@typescript-eslint/parser": "^8.57.1", + "astro-eslint-parser": "^1.3.0", + "eslint": "^10.1.0", + "eslint-plugin-astro": "^1.6.0", "eslint-plugin-jsx-a11y": "^6.10.2", - "prettier": "^3.4.2", + "prettier": "^3.8.1", "prettier-plugin-astro": "^0.14.1", - "prettier-plugin-tailwindcss": "^0.6.9" + "prettier-plugin-tailwindcss": "^0.7.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 69f4070..ab3365c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,100 +9,92 @@ importers: .: dependencies: '@astrojs/check': - specifier: ^0.9.4 - version: 0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.6.2) + specifier: ^0.9.8 + version: 0.9.8(prettier-plugin-astro@0.14.1)(prettier@3.8.1)(typescript@5.9.3) '@astrojs/mdx': - specifier: ^3.1.8 - version: 3.1.8(astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2)) + specifier: ^5.0.2 + version: 5.0.2(astro@6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2)) '@astrojs/svelte': - specifier: ^5.7.2 - version: 5.7.2(astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2))(svelte@4.2.19)(typescript@5.6.2)(vite@5.4.9(@types/node@22.10.2)) - '@astrojs/tailwind': - specifier: ^5.1.3 - version: 5.1.3(astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.17) + specifier: ^8.0.3 + version: 8.0.3(@types/node@25.5.0)(astro@6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(lightningcss@1.32.0)(svelte@5.54.0)(typescript@5.9.3)(yaml@2.8.2) '@internationalized/date': - specifier: ^3.6.0 - version: 3.6.0 + specifier: ^3.12.0 + version: 3.12.0 + '@lucide/svelte': + specifier: ^0.577.0 + version: 0.577.0(svelte@5.54.0) + '@tailwindcss/vite': + specifier: ^4.2.2 + version: 4.2.2(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)) astro: - specifier: ^4.16.7 - version: 4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2) + specifier: ^6.0.8 + version: 6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2) bits-ui: - specifier: ^0.22.0 - version: 0.22.0(svelte@4.2.19) + specifier: ^2.16.3 + version: 2.16.3(@internationalized/date@3.12.0)(svelte@5.54.0) clsx: specifier: ^2.1.1 version: 2.1.1 - lucide-svelte: - specifier: ^0.468.0 - version: 0.468.0(svelte@4.2.19) playwright: - specifier: ^1.49.1 - version: 1.49.1 + specifier: ^1.58.2 + version: 1.58.2 sharp: - specifier: ^0.33.5 - version: 0.33.5 + specifier: ^0.34.5 + version: 0.34.5 svelte: - specifier: ^4.2.19 - version: 4.2.19 + specifier: ^5.54.0 + version: 5.54.0 tailwind-merge: - specifier: ^2.5.5 - version: 2.5.5 + specifier: ^3.5.0 + version: 3.5.0 tailwind-variants: - specifier: ^0.3.0 - version: 0.3.0(tailwindcss@3.4.17) + specifier: ^3.2.2 + version: 3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.2) tailwindcss: - specifier: ^3.4.17 - version: 3.4.17 + specifier: ^4.2.2 + version: 4.2.2 typescript: - specifier: ^5.6.2 - version: 5.6.2 + specifier: ^5.9.3 + version: 5.9.3 devDependencies: '@ianvs/prettier-plugin-sort-imports': - specifier: ^4.4.0 - version: 4.4.0(prettier@3.4.2) + specifier: ^4.7.1 + version: 4.7.1(prettier@3.8.1) '@types/bun': - specifier: ^1.1.14 - version: 1.1.14 + specifier: ^1.3.11 + version: 1.3.11 '@types/node': - specifier: ^22.10.2 - version: 22.10.2 + specifier: ^25.5.0 + version: 25.5.0 '@typescript-eslint/parser': - specifier: ^8.18.1 - version: 8.18.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.2) + specifier: ^8.57.1 + version: 8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3) astro-eslint-parser: - specifier: ^1.1.0 - version: 1.1.0(typescript@5.6.2) + specifier: ^1.3.0 + version: 1.3.0 eslint: - specifier: ^9.17.0 - version: 9.17.0(jiti@1.21.6) + specifier: ^10.1.0 + version: 10.1.0(jiti@2.6.1) eslint-plugin-astro: - specifier: ^1.3.1 - version: 1.3.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.2) + specifier: ^1.6.0 + version: 1.6.0(eslint@10.1.0(jiti@2.6.1)) eslint-plugin-jsx-a11y: specifier: ^6.10.2 - version: 6.10.2(eslint@9.17.0(jiti@1.21.6)) + version: 6.10.2(eslint@10.1.0(jiti@2.6.1)) prettier: - specifier: ^3.4.2 - version: 3.4.2 + specifier: ^3.8.1 + version: 3.8.1 prettier-plugin-astro: specifier: ^0.14.1 version: 0.14.1 prettier-plugin-tailwindcss: - specifier: ^0.6.9 - version: 0.6.9(@ianvs/prettier-plugin-sort-imports@4.4.0(prettier@3.4.2))(prettier-plugin-astro@0.14.1)(prettier@3.4.2) + specifier: ^0.7.2 + version: 0.7.2(@ianvs/prettier-plugin-sort-imports@4.7.1(prettier@3.8.1))(prettier-plugin-astro@0.14.1)(prettier@3.8.1) packages: - '@alloc/quick-lru@5.2.0': - resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} - engines: {node: '>=10'} - - '@ampproject/remapping@2.3.0': - resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} - engines: {node: '>=6.0.0'} - - '@astrojs/check@0.9.4': - resolution: {integrity: sha512-IOheHwCtpUfvogHHsvu0AbeRZEnjJg3MopdLddkJE70mULItS/Vh37BHcI00mcOJcH1vhD3odbpvWokpxam7xA==} + '@astrojs/check@0.9.8': + resolution: {integrity: sha512-LDng8446QLS5ToKjRHd3bgUdirvemVVExV7nRyJfW2wV36xuv7vDxwy5NWN9zqeSEDgg0Tv84sP+T3yEq+Zlkw==} hasBin: true peerDependencies: typescript: ^5.0.0 @@ -110,11 +102,17 @@ packages: '@astrojs/compiler@2.10.3': resolution: {integrity: sha512-bL/O7YBxsFt55YHU021oL+xz+B/9HvGNId3F9xURN16aeqDK9juHGktdkCSXz+U4nqFACq6ZFvWomOzhV+zfPw==} - '@astrojs/internal-helpers@0.4.1': - resolution: {integrity: sha512-bMf9jFihO8YP940uD70SI/RDzIhUHJAolWVcO1v5PUivxGKvfLZTLTVVxEYzGYyPsA3ivdLNqMnL5VgmQySa+g==} + '@astrojs/compiler@2.13.1': + resolution: {integrity: sha512-f3FN83d2G/v32ipNClRKgYv30onQlMZX1vCeZMjPsMMPl1mDpmbl0+N5BYo4S/ofzqJyS5hvwacEo0CCVDn/Qg==} - '@astrojs/language-server@2.15.0': - resolution: {integrity: sha512-wJHSjGApm5X8Rg1GvkevoatZBfvaFizY4kCPvuSYgs3jGCobuY3KstJGKC1yNLsRJlDweHruP+J54iKn9vEKoA==} + '@astrojs/compiler@3.0.1': + resolution: {integrity: sha512-z97oYbdebO5aoWzuJ/8q5hLK232+17KcLZ7cJ8BCWk6+qNzVxn/gftC0KzMBUTD8WAaBkPpNSQK6PXLnNrZ0CA==} + + '@astrojs/internal-helpers@0.8.0': + resolution: {integrity: sha512-J56GrhEiV+4dmrGLPNOl2pZjpHXAndWVyiVDYGDuw6MWKpBSEMLdFxHzeM/6sqaknw9M+HFfHZAcvi3OfT3D/w==} + + '@astrojs/language-server@2.16.6': + resolution: {integrity: sha512-N990lu+HSFiG57owR0XBkr02BYMgiLCshLf+4QG4v6jjSWkBeQGnzqi+E1L08xFPPJ7eEeXnxPXGLaVv5pa4Ug==} hasBin: true peerDependencies: prettier: ^3.0.0 @@ -125,163 +123,76 @@ packages: prettier-plugin-astro: optional: true - '@astrojs/markdown-remark@5.3.0': - resolution: {integrity: sha512-r0Ikqr0e6ozPb5bvhup1qdWnSPUvQu6tub4ZLYaKyG50BXZ0ej6FhGz3GpChKpH7kglRFPObJd/bDyf2VM9pkg==} + '@astrojs/markdown-remark@7.0.1': + resolution: {integrity: sha512-zAfLJmn07u9SlDNNHTpjv0RT4F8D4k54NR7ReRas8CO4OeGoqSvOuKwqCFg2/cqN3wHwdWlK/7Yv/lMXlhVIaw==} - '@astrojs/mdx@3.1.8': - resolution: {integrity: sha512-4o/+pvgoLFG0eG96cFs4t3NzZAIAOYu57fKAprWHXJrnq/qdBV0av6BYDjoESxvxNILUYoj8sdZVWtlPWVDLog==} - engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} + '@astrojs/mdx@5.0.2': + resolution: {integrity: sha512-0as6odPH9ZQhS3pdH9dWmVOwgXuDtytJiE4VvYgR0lSFBvF4PSTyE0HdODHm/d7dBghvWTPc2bQaBm4y4nTBNw==} + engines: {node: '>=22.12.0'} peerDependencies: - astro: ^4.8.0 + astro: ^6.0.0 - '@astrojs/prism@3.1.0': - resolution: {integrity: sha512-Z9IYjuXSArkAUx3N6xj6+Bnvx8OdUSHA8YoOgyepp3+zJmtVYJIl/I18GozdJVW1p5u/CNpl3Km7/gwTJK85cw==} - engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} + '@astrojs/prism@4.0.1': + resolution: {integrity: sha512-nksZQVjlferuWzhPsBpQ1JE5XuKAf1id1/9Hj4a9KG4+ofrlzxUUwX4YGQF/SuDiuiGKEnzopGOt38F3AnVWsQ==} + engines: {node: '>=22.12.0'} - '@astrojs/svelte@5.7.2': - resolution: {integrity: sha512-d3nfPe7OMoDqdw7SXfvYlyCSB4p84p92IIvEsu5E1jDPFbS1mlC76hjAlr0nJHQfV1MZPWifEmmfgDBWLCuS8g==} - engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} + '@astrojs/svelte@8.0.3': + resolution: {integrity: sha512-R9vUtQGV+j4Zs3cPm2zRHCyYxQR4DRDEl7rgwIu5i4UpAlVBUYIu34onpgNZEpvws1rxvLhrA/N10qLrFNTYyw==} + engines: {node: '>=22.12.0'} peerDependencies: - astro: ^4.0.0 - svelte: ^4.0.0 || ^5.0.0-next.190 + astro: ^6.0.0 + svelte: ^5.43.6 typescript: ^5.3.3 - '@astrojs/tailwind@5.1.3': - resolution: {integrity: sha512-XF7WhXRhqEHGvADqc0kDtF7Yv/g4wAWTaj91jBBTBaYnc4+MQLH94duFfFa4NlTkRG40VQd012eF3MhO3Kk+bg==} - peerDependencies: - astro: ^3.0.0 || ^4.0.0 || ^5.0.0 - tailwindcss: ^3.0.24 - - '@astrojs/telemetry@3.1.0': - resolution: {integrity: sha512-/ca/+D8MIKEC8/A9cSaPUqQNZm+Es/ZinRv0ZAzvu2ios7POQSsVD+VOj7/hypWNsNM3T7RpfgNq7H2TU1KEHA==} - engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0} + '@astrojs/telemetry@3.3.0': + resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==} + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} - '@astrojs/yaml2ts@0.2.1': - resolution: {integrity: sha512-CBaNwDQJz20E5WxzQh4thLVfhB3JEEGz72wRA+oJp6fQR37QLAqXZJU0mHC+yqMOQ6oj0GfRPJrz6hjf+zm6zA==} - - '@babel/code-frame@7.25.7': - resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==} - engines: {node: '>=6.9.0'} + '@astrojs/yaml2ts@0.2.3': + resolution: {integrity: sha512-PJzRmgQzUxI2uwpdX2lXSHtP4G8ocp24/t+bZyf5Fy0SZLSF9f9KXZoMlFM/XCGue+B0nH/2IZ7FpBYQATBsCg==} '@babel/code-frame@7.26.2': resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} - '@babel/compat-data@7.25.8': - resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==} - engines: {node: '>=6.9.0'} - - '@babel/core@7.25.8': - resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==} - engines: {node: '>=6.9.0'} - - '@babel/generator@7.25.7': - resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==} - engines: {node: '>=6.9.0'} - '@babel/generator@7.26.3': resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} engines: {node: '>=6.9.0'} - '@babel/helper-annotate-as-pure@7.25.7': - resolution: {integrity: sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==} - engines: {node: '>=6.9.0'} - - '@babel/helper-compilation-targets@7.25.7': - resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-imports@7.25.7': - resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-module-transforms@7.25.7': - resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - - '@babel/helper-plugin-utils@7.25.7': - resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==} - engines: {node: '>=6.9.0'} - - '@babel/helper-simple-access@7.25.7': - resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.25.7': - resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} - engines: {node: '>=6.9.0'} - - '@babel/helper-string-parser@7.25.9': - resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + '@babel/helper-string-parser@7.27.1': + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.7': - resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} + '@babel/helper-validator-identifier@7.28.5': + resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} - '@babel/helper-validator-identifier@7.25.9': - resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} - engines: {node: '>=6.9.0'} - - '@babel/helper-validator-option@7.25.7': - resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==} - engines: {node: '>=6.9.0'} - - '@babel/helpers@7.25.7': - resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==} - engines: {node: '>=6.9.0'} - - '@babel/highlight@7.25.7': - resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==} - engines: {node: '>=6.9.0'} - - '@babel/parser@7.25.8': - resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==} + '@babel/parser@7.29.2': + resolution: {integrity: sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==} engines: {node: '>=6.0.0'} hasBin: true - '@babel/parser@7.26.3': - resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} - engines: {node: '>=6.0.0'} - hasBin: true - - '@babel/plugin-syntax-jsx@7.25.7': - resolution: {integrity: sha512-ruZOnKO+ajVL/MVx+PwNBPOkrnXTXoWMtte1MBpegfCArhqOe3Bj52avVj1huLLxNKYKXYaSxZ2F+woK1ekXfw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/plugin-transform-react-jsx@7.25.7': - resolution: {integrity: sha512-vILAg5nwGlR9EXE8JIOX4NHXd49lrYbN8hnjffDtoULwpL9hUx/N55nqh2qd0q6FyNDfjl9V79ecKGvFbcSA0Q==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - - '@babel/template@7.25.7': - resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==} - engines: {node: '>=6.9.0'} - '@babel/template@7.25.9': resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} engines: {node: '>=6.9.0'} - '@babel/traverse@7.25.7': - resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==} - engines: {node: '>=6.9.0'} - '@babel/traverse@7.26.4': resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} engines: {node: '>=6.9.0'} - '@babel/types@7.25.8': - resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==} + '@babel/types@7.29.0': + resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} engines: {node: '>=6.9.0'} - '@babel/types@7.26.3': - resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} - engines: {node: '>=6.9.0'} + '@capsizecss/unpack@4.0.0': + resolution: {integrity: sha512-VERIM64vtTP1C4mxQ5thVT9fK0apjPFobqybMtA1UdUujWka24ERHbRHFGmpbbhp73MhV+KSsHQH9C6uOTdEQA==} + engines: {node: '>=18'} + + '@clack/core@1.1.0': + resolution: {integrity: sha512-SVcm4Dqm2ukn64/8Gub2wnlA5nS2iWJyCkdNHcvNHPIeBTGojpdJ+9cZKwLfmqy7irD4N5qLteSilJlE0WLAtA==} + + '@clack/prompts@1.1.0': + resolution: {integrity: sha512-pkqbPGtohJAvm4Dphs2M8xE29ggupihHdy1x84HNojZuMtFsHiUlRvqD24tM2+XmI+61LlfNceM3Wr7U5QES5g==} '@emmetio/abbreviation@2.3.3': resolution: {integrity: sha512-mgv58UrU3rh4YgbE/TzgLQwJ3pFsHHhCLqY20aJq+9comytTXUDNGG/SMtSeMJdkpxgXSXunBGLD8Boka3JyVA==} @@ -289,8 +200,8 @@ packages: '@emmetio/css-abbreviation@2.1.8': resolution: {integrity: sha512-s9yjhJ6saOO/uk1V74eifykk2CBYi01STTK3WlXWGOepyKa23ymJ053+DNQjpFcy1ingpaO7AxCcwLvHFY9tuw==} - '@emmetio/css-parser@0.4.0': - resolution: {integrity: sha512-z7wkxRSZgrQHXVzObGkXG+Vmj3uRlpM11oCZ9pbaz0nFejvCDmAiNDpY75+wgXOcffKpj4rzGtwGaZxfJKsJxw==} + '@emmetio/css-parser@0.4.1': + resolution: {integrity: sha512-2bC6m0MV/voF4CTZiAbG5MWKbq5EBmDPKu9Sb7s7nVcEzNQlrZP6mFFFlIaISM8X6514H9shWMme1fCm8cWAfQ==} '@emmetio/html-matcher@1.3.0': resolution: {integrity: sha512-NTbsvppE5eVyBMuyGfVu2CRrLvo7J4YHb6t9sBFLyY03WYhXET37qA4zOYUjBWFCRHO7pS1B9khERtY0f5JXPQ==} @@ -304,144 +215,162 @@ packages: '@emmetio/stream-reader@2.2.0': resolution: {integrity: sha512-fXVXEyFA5Yv3M3n8sUGT7+fvecGrZP4k6FnWWMSZVQf69kAq0LLpaBQLGcPR30m3zMmKYhECP4k/ZkzvhEW5kw==} - '@emnapi/runtime@1.2.0': - resolution: {integrity: sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==} + '@emnapi/runtime@1.9.1': + resolution: {integrity: sha512-VYi5+ZVLhpgK4hQ0TAjiQiZ6ol0oe4mBx7mVv7IflsiEp0OWoVsp/+f9Vc1hOhE0TtkORVrI1GvzyreqpgWtkA==} - '@esbuild/aix-ppc64@0.21.5': - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} - engines: {node: '>=12'} + '@esbuild/aix-ppc64@0.27.4': + resolution: {integrity: sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==} + engines: {node: '>=18'} cpu: [ppc64] os: [aix] - '@esbuild/android-arm64@0.21.5': - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} - engines: {node: '>=12'} + '@esbuild/android-arm64@0.27.4': + resolution: {integrity: sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==} + engines: {node: '>=18'} cpu: [arm64] os: [android] - '@esbuild/android-arm@0.21.5': - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} - engines: {node: '>=12'} + '@esbuild/android-arm@0.27.4': + resolution: {integrity: sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==} + engines: {node: '>=18'} cpu: [arm] os: [android] - '@esbuild/android-x64@0.21.5': - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} - engines: {node: '>=12'} + '@esbuild/android-x64@0.27.4': + resolution: {integrity: sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==} + engines: {node: '>=18'} cpu: [x64] os: [android] - '@esbuild/darwin-arm64@0.21.5': - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} - engines: {node: '>=12'} + '@esbuild/darwin-arm64@0.27.4': + resolution: {integrity: sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==} + engines: {node: '>=18'} cpu: [arm64] os: [darwin] - '@esbuild/darwin-x64@0.21.5': - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} - engines: {node: '>=12'} + '@esbuild/darwin-x64@0.27.4': + resolution: {integrity: sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==} + engines: {node: '>=18'} cpu: [x64] os: [darwin] - '@esbuild/freebsd-arm64@0.21.5': - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} - engines: {node: '>=12'} + '@esbuild/freebsd-arm64@0.27.4': + resolution: {integrity: sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==} + engines: {node: '>=18'} cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-x64@0.21.5': - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} - engines: {node: '>=12'} + '@esbuild/freebsd-x64@0.27.4': + resolution: {integrity: sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==} + engines: {node: '>=18'} cpu: [x64] os: [freebsd] - '@esbuild/linux-arm64@0.21.5': - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} - engines: {node: '>=12'} + '@esbuild/linux-arm64@0.27.4': + resolution: {integrity: sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==} + engines: {node: '>=18'} cpu: [arm64] os: [linux] - '@esbuild/linux-arm@0.21.5': - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} - engines: {node: '>=12'} + '@esbuild/linux-arm@0.27.4': + resolution: {integrity: sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==} + engines: {node: '>=18'} cpu: [arm] os: [linux] - '@esbuild/linux-ia32@0.21.5': - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} - engines: {node: '>=12'} + '@esbuild/linux-ia32@0.27.4': + resolution: {integrity: sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==} + engines: {node: '>=18'} cpu: [ia32] os: [linux] - '@esbuild/linux-loong64@0.21.5': - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} - engines: {node: '>=12'} + '@esbuild/linux-loong64@0.27.4': + resolution: {integrity: sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==} + engines: {node: '>=18'} cpu: [loong64] os: [linux] - '@esbuild/linux-mips64el@0.21.5': - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} - engines: {node: '>=12'} + '@esbuild/linux-mips64el@0.27.4': + resolution: {integrity: sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==} + engines: {node: '>=18'} cpu: [mips64el] os: [linux] - '@esbuild/linux-ppc64@0.21.5': - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} - engines: {node: '>=12'} + '@esbuild/linux-ppc64@0.27.4': + resolution: {integrity: sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==} + engines: {node: '>=18'} cpu: [ppc64] os: [linux] - '@esbuild/linux-riscv64@0.21.5': - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} - engines: {node: '>=12'} + '@esbuild/linux-riscv64@0.27.4': + resolution: {integrity: sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==} + engines: {node: '>=18'} cpu: [riscv64] os: [linux] - '@esbuild/linux-s390x@0.21.5': - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} - engines: {node: '>=12'} + '@esbuild/linux-s390x@0.27.4': + resolution: {integrity: sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==} + engines: {node: '>=18'} cpu: [s390x] os: [linux] - '@esbuild/linux-x64@0.21.5': - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} - engines: {node: '>=12'} + '@esbuild/linux-x64@0.27.4': + resolution: {integrity: sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==} + engines: {node: '>=18'} cpu: [x64] os: [linux] - '@esbuild/netbsd-x64@0.21.5': - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} - engines: {node: '>=12'} + '@esbuild/netbsd-arm64@0.27.4': + resolution: {integrity: sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==} + engines: {node: '>=18'} + cpu: [arm64] + os: [netbsd] + + '@esbuild/netbsd-x64@0.27.4': + resolution: {integrity: sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==} + engines: {node: '>=18'} cpu: [x64] os: [netbsd] - '@esbuild/openbsd-x64@0.21.5': - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} - engines: {node: '>=12'} + '@esbuild/openbsd-arm64@0.27.4': + resolution: {integrity: sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openbsd] + + '@esbuild/openbsd-x64@0.27.4': + resolution: {integrity: sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==} + engines: {node: '>=18'} cpu: [x64] os: [openbsd] - '@esbuild/sunos-x64@0.21.5': - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} - engines: {node: '>=12'} + '@esbuild/openharmony-arm64@0.27.4': + resolution: {integrity: sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==} + engines: {node: '>=18'} + cpu: [arm64] + os: [openharmony] + + '@esbuild/sunos-x64@0.27.4': + resolution: {integrity: sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==} + engines: {node: '>=18'} cpu: [x64] os: [sunos] - '@esbuild/win32-arm64@0.21.5': - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} - engines: {node: '>=12'} + '@esbuild/win32-arm64@0.27.4': + resolution: {integrity: sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==} + engines: {node: '>=18'} cpu: [arm64] os: [win32] - '@esbuild/win32-ia32@0.21.5': - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} - engines: {node: '>=12'} + '@esbuild/win32-ia32@0.27.4': + resolution: {integrity: sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==} + engines: {node: '>=18'} cpu: [ia32] os: [win32] - '@esbuild/win32-x64@0.21.5': - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} - engines: {node: '>=12'} + '@esbuild/win32-x64@0.27.4': + resolution: {integrity: sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==} + engines: {node: '>=18'} cpu: [x64] os: [win32] @@ -451,42 +380,44 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@eslint-community/eslint-utils@4.9.1': + resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint/config-array@0.19.1': - resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint-community/regexpp@4.12.2': + resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - '@eslint/core@0.9.1': - resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/config-array@0.23.3': + resolution: {integrity: sha512-j+eEWmB6YYLwcNOdlwQ6L2OsptI/LO6lNBuLIqe5R7RetD658HLoF+Mn7LzYmAWWNNzdC6cqP+L6r8ujeYXWLw==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - '@eslint/eslintrc@3.2.0': - resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/config-helpers@0.5.3': + resolution: {integrity: sha512-lzGN0onllOZCGroKJmRwY6QcEHxbjBw1gwB8SgRSqK8YbbtEXMvKynsXc3553ckIEBxsbMBU7oOZXKIPGZNeZw==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - '@eslint/js@9.17.0': - resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/core@1.1.1': + resolution: {integrity: sha512-QUPblTtE51/7/Zhfv8BDwO0qkkzQL7P/aWWbqcf4xWLEYn1oKjdO0gglQBB4GAsu7u6wjijbCmzsUTy6mnk6oQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - '@eslint/object-schema@2.1.5': - resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/object-schema@3.0.3': + resolution: {integrity: sha512-iM869Pugn9Nsxbh/YHRqYiqd23AmIbxJOcpUMOuWCVNdoQJ5ZtwL6h3t0bcZzJUlC3Dq9jCFCESBZnX0GTv7iQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - '@eslint/plugin-kit@0.2.4': - resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/plugin-kit@0.6.1': + resolution: {integrity: sha512-iH1B076HoAshH1mLpHMgwdGeTs0CYwL0SPMkGuSebZrwBp16v415e9NZXg2jtrqPVQjf6IANe2Vtlr5KswtcZQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - '@floating-ui/core@1.6.8': - resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} + '@floating-ui/core@1.7.5': + resolution: {integrity: sha512-1Ih4WTWyw0+lKyFMcBHGbb5U5FtuHJuujoyyr5zTaWS5EYMeT6Jb2AuDeftsCsEuchO+mM2ij5+q9crhydzLhQ==} - '@floating-ui/dom@1.6.11': - resolution: {integrity: sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==} + '@floating-ui/dom@1.7.6': + resolution: {integrity: sha512-9gZSAI5XM36880PPMm//9dfiEngYoC6Am2izES1FF406YFsjvyBMmeJ2g4SAju3xWwtuynNRFL2s9hgxpLI5SQ==} - '@floating-ui/utils@0.2.8': - resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} + '@floating-ui/utils@0.2.11': + resolution: {integrity: sha512-RiB/yIh78pcIxl6lLMG0CgBXAZ2Y0eVHqMPYugu+9U0AeT6YBeiJpf7lbdJNIugFP5SIjwNRgo4DhR1Qxi26Gg==} '@humanfs/core@0.19.1': resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} @@ -504,135 +435,175 @@ packages: resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} engines: {node: '>=18.18'} - '@humanwhocodes/retry@0.4.1': - resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} + '@humanwhocodes/retry@0.4.3': + resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} engines: {node: '>=18.18'} - '@ianvs/prettier-plugin-sort-imports@4.4.0': - resolution: {integrity: sha512-f4/e+/ANGk3tHuwRW0uh2YuBR50I4h1ZjGQ+5uD8sWfinHTivQsnieR5cz24t8M6Vx4rYvZ5v/IEKZhYpzQm9Q==} + '@ianvs/prettier-plugin-sort-imports@4.7.1': + resolution: {integrity: sha512-jmTNYGlg95tlsoG3JLCcuC4BrFELJtLirLAkQW/71lXSyOhVt/Xj7xWbbGcuVbNq1gwWgSyMrPjJc9Z30hynVw==} peerDependencies: + '@prettier/plugin-oxc': ^0.0.4 || ^0.1.0 '@vue/compiler-sfc': 2.7.x || 3.x - prettier: 2 || 3 + content-tag: ^4.0.0 + prettier: 2 || 3 || ^4.0.0-0 + prettier-plugin-ember-template-tag: ^2.1.0 peerDependenciesMeta: + '@prettier/plugin-oxc': + optional: true '@vue/compiler-sfc': optional: true + content-tag: + optional: true + prettier-plugin-ember-template-tag: + optional: true + + '@img/colour@1.1.0': + resolution: {integrity: sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==} + engines: {node: '>=18'} - '@img/sharp-darwin-arm64@0.33.5': - resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==} + '@img/sharp-darwin-arm64@0.34.5': + resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [darwin] - '@img/sharp-darwin-x64@0.33.5': - resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==} + '@img/sharp-darwin-x64@0.34.5': + resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [darwin] - '@img/sharp-libvips-darwin-arm64@1.0.4': - resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==} + '@img/sharp-libvips-darwin-arm64@1.2.4': + resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==} cpu: [arm64] os: [darwin] - '@img/sharp-libvips-darwin-x64@1.0.4': - resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==} + '@img/sharp-libvips-darwin-x64@1.2.4': + resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==} cpu: [x64] os: [darwin] - '@img/sharp-libvips-linux-arm64@1.0.4': - resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==} + '@img/sharp-libvips-linux-arm64@1.2.4': + resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==} cpu: [arm64] os: [linux] - '@img/sharp-libvips-linux-arm@1.0.5': - resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==} + '@img/sharp-libvips-linux-arm@1.2.4': + resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==} cpu: [arm] os: [linux] - '@img/sharp-libvips-linux-s390x@1.0.4': - resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==} + '@img/sharp-libvips-linux-ppc64@1.2.4': + resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==} + cpu: [ppc64] + os: [linux] + + '@img/sharp-libvips-linux-riscv64@1.2.4': + resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==} + cpu: [riscv64] + os: [linux] + + '@img/sharp-libvips-linux-s390x@1.2.4': + resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==} cpu: [s390x] os: [linux] - '@img/sharp-libvips-linux-x64@1.0.4': - resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==} + '@img/sharp-libvips-linux-x64@1.2.4': + resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==} cpu: [x64] os: [linux] - '@img/sharp-libvips-linuxmusl-arm64@1.0.4': - resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==} + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': + resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==} cpu: [arm64] os: [linux] - '@img/sharp-libvips-linuxmusl-x64@1.0.4': - resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==} + '@img/sharp-libvips-linuxmusl-x64@1.2.4': + resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==} cpu: [x64] os: [linux] - '@img/sharp-linux-arm64@0.33.5': - resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==} + '@img/sharp-linux-arm64@0.34.5': + resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - '@img/sharp-linux-arm@0.33.5': - resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==} + '@img/sharp-linux-arm@0.34.5': + resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm] os: [linux] - '@img/sharp-linux-s390x@0.33.5': - resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==} + '@img/sharp-linux-ppc64@0.34.5': + resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [ppc64] + os: [linux] + + '@img/sharp-linux-riscv64@0.34.5': + resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [riscv64] + os: [linux] + + '@img/sharp-linux-s390x@0.34.5': + resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [s390x] os: [linux] - '@img/sharp-linux-x64@0.33.5': - resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==} + '@img/sharp-linux-x64@0.34.5': + resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - '@img/sharp-linuxmusl-arm64@0.33.5': - resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==} + '@img/sharp-linuxmusl-arm64@0.34.5': + resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [arm64] os: [linux] - '@img/sharp-linuxmusl-x64@0.33.5': - resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==} + '@img/sharp-linuxmusl-x64@0.34.5': + resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [linux] - '@img/sharp-wasm32@0.33.5': - resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==} + '@img/sharp-wasm32@0.34.5': + resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [wasm32] - '@img/sharp-win32-ia32@0.33.5': - resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==} + '@img/sharp-win32-arm64@0.34.5': + resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==} + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} + cpu: [arm64] + os: [win32] + + '@img/sharp-win32-ia32@0.34.5': + resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [ia32] os: [win32] - '@img/sharp-win32-x64@0.33.5': - resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==} + '@img/sharp-win32-x64@0.34.5': + resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} cpu: [x64] os: [win32] - '@internationalized/date@3.6.0': - resolution: {integrity: sha512-+z6ti+CcJnRlLHok/emGEsWQhe7kfSmEW+/6qCzvKY67YPh7YOBfvc7+/+NXq+zJlbArg30tYpqLjNgcAYv2YQ==} - - '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + '@internationalized/date@3.12.0': + resolution: {integrity: sha512-/PyIMzK29jtXaGU23qTvNZxvBXRtKbNnGDFD+PY6CZw/Y8Ex8pFUzkuCJCG9aOqmShjqhS9mPqP6Dk5onQY8rQ==} '@jridgewell/gen-mapping@0.3.5': resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} engines: {node: '>=6.0.0'} + '@jridgewell/remapping@2.3.5': + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} + '@jridgewell/resolve-uri@3.1.2': resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} engines: {node: '>=6.0.0'} @@ -644,16 +615,19 @@ packages: '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/sourcemap-codec@1.5.5': + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} + '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} - '@mdx-js/mdx@3.1.0': - resolution: {integrity: sha512-/QxEhPAvGwbQmy1Px8F899L5Uc2KZ6JtXwlCgJmjSTBedwOZkByYcBG4GceIGPXRDsmfxhHazuS+hlOShRLeDw==} - - '@melt-ui/svelte@0.76.2': - resolution: {integrity: sha512-7SbOa11tXUS95T3fReL+dwDs5FyJtCEqrqG3inRziDws346SYLsxOQ6HmX+4BkIsQh1R8U3XNa+EMmdMt38lMA==} + '@lucide/svelte@0.577.0': + resolution: {integrity: sha512-0P6mkySd2MapIEgq08tADPmcN4DHndC/02PWwaLkOerXlx5Sv9aT4BxyXLIY+eccr0g/nEyCYiJesqS61YdBZQ==} peerDependencies: - svelte: '>=3 <5' + svelte: ^5 + + '@mdx-js/mdx@3.1.1': + resolution: {integrity: sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==} '@nodelib/fs.scandir@2.1.5': resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} @@ -670,16 +644,12 @@ packages: '@oslojs/encoding@1.1.0': resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} - '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} - '@pkgr/core@0.1.1': resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} - '@rollup/pluginutils@5.1.2': - resolution: {integrity: sha512-/FIdS3PyZ39bjZlwqFnWqCOVnW7o963LtKMwQOD0NhQqw22gSr2YY1afu3FxRip4ZCZNsD5jq6Aaz6QV3D/Njw==} + '@rollup/pluginutils@5.3.0': + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} engines: {node: '>=14.0.0'} peerDependencies: rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 @@ -687,149 +657,296 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.22.5': - resolution: {integrity: sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==} + '@rollup/rollup-android-arm-eabi@4.59.0': + resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.22.5': - resolution: {integrity: sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==} + '@rollup/rollup-android-arm64@4.59.0': + resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.22.5': - resolution: {integrity: sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==} + '@rollup/rollup-darwin-arm64@4.59.0': + resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.22.5': - resolution: {integrity: sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==} + '@rollup/rollup-darwin-x64@4.59.0': + resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==} cpu: [x64] os: [darwin] - '@rollup/rollup-linux-arm-gnueabihf@4.22.5': - resolution: {integrity: sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==} + '@rollup/rollup-freebsd-arm64@4.59.0': + resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.59.0': + resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.59.0': + resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.22.5': - resolution: {integrity: sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==} + '@rollup/rollup-linux-arm-musleabihf@4.59.0': + resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.22.5': - resolution: {integrity: sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==} + '@rollup/rollup-linux-arm64-gnu@4.59.0': + resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.22.5': - resolution: {integrity: sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==} + '@rollup/rollup-linux-arm64-musl@4.59.0': + resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.22.5': - resolution: {integrity: sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==} + '@rollup/rollup-linux-loong64-gnu@4.59.0': + resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-loong64-musl@4.59.0': + resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-ppc64-gnu@4.59.0': + resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-ppc64-musl@4.59.0': + resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.22.5': - resolution: {integrity: sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==} + '@rollup/rollup-linux-riscv64-gnu@4.59.0': + resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-riscv64-musl@4.59.0': + resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.22.5': - resolution: {integrity: sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==} + '@rollup/rollup-linux-s390x-gnu@4.59.0': + resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.22.5': - resolution: {integrity: sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==} + '@rollup/rollup-linux-x64-gnu@4.59.0': + resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.22.5': - resolution: {integrity: sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==} + '@rollup/rollup-linux-x64-musl@4.59.0': + resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.22.5': - resolution: {integrity: sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==} + '@rollup/rollup-openbsd-x64@4.59.0': + resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==} + cpu: [x64] + os: [openbsd] + + '@rollup/rollup-openharmony-arm64@4.59.0': + resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==} + cpu: [arm64] + os: [openharmony] + + '@rollup/rollup-win32-arm64-msvc@4.59.0': + resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.22.5': - resolution: {integrity: sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==} + '@rollup/rollup-win32-ia32-msvc@4.59.0': + resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.22.5': - resolution: {integrity: sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==} + '@rollup/rollup-win32-x64-gnu@4.59.0': + resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==} cpu: [x64] os: [win32] - '@shikijs/core@1.22.0': - resolution: {integrity: sha512-S8sMe4q71TJAW+qG93s5VaiihujRK6rqDFqBnxqvga/3LvqHEnxqBIOPkt//IdXVtHkQWKu4nOQNk0uBGicU7Q==} + '@rollup/rollup-win32-x64-msvc@4.59.0': + resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==} + cpu: [x64] + os: [win32] + + '@shikijs/core@4.0.2': + resolution: {integrity: sha512-hxT0YF4ExEqB8G/qFdtJvpmHXBYJ2lWW7qTHDarVkIudPFE6iCIrqdgWxGn5s+ppkGXI0aEGlibI0PAyzP3zlw==} + engines: {node: '>=20'} + + '@shikijs/engine-javascript@4.0.2': + resolution: {integrity: sha512-7PW0Nm49DcoUIQEXlJhNNBHyoGMjalRETTCcjMqEaMoJRLljy1Bi/EGV3/qLBgLKQejdspiiYuHGQW6dX94Nag==} + engines: {node: '>=20'} + + '@shikijs/engine-oniguruma@4.0.2': + resolution: {integrity: sha512-UpCB9Y2sUKlS9z8juFSKz7ZtysmeXCgnRF0dlhXBkmQnek7lAToPte8DkxmEYGNTMii72zU/lyXiCB6StuZeJg==} + engines: {node: '>=20'} - '@shikijs/engine-javascript@1.22.0': - resolution: {integrity: sha512-AeEtF4Gcck2dwBqCFUKYfsCq0s+eEbCEbkUuFou53NZ0sTGnJnJ/05KHQFZxpii5HMXbocV9URYVowOP2wH5kw==} + '@shikijs/langs@4.0.2': + resolution: {integrity: sha512-KaXby5dvoeuZzN0rYQiPMjFoUrz4hgwIE+D6Du9owcHcl6/g16/yT5BQxSW5cGt2MZBz6Hl0YuRqf12omRfUUg==} + engines: {node: '>=20'} - '@shikijs/engine-oniguruma@1.22.0': - resolution: {integrity: sha512-5iBVjhu/DYs1HB0BKsRRFipRrD7rqjxlWTj4F2Pf+nQSPqc3kcyqFFeZXnBMzDf0HdqaFVvhDRAGiYNvyLP+Mw==} + '@shikijs/primitive@4.0.2': + resolution: {integrity: sha512-M6UMPrSa3fN5ayeJwFVl9qWofl273wtK1VG8ySDZ1mQBfhCpdd8nEx7nPZ/tk7k+TYcpqBZzj/AnwxT9lO+HJw==} + engines: {node: '>=20'} - '@shikijs/types@1.22.0': - resolution: {integrity: sha512-Fw/Nr7FGFhlQqHfxzZY8Cwtwk5E9nKDUgeLjZgt3UuhcM3yJR9xj3ZGNravZZok8XmEZMiYkSMTPlPkULB8nww==} + '@shikijs/themes@4.0.2': + resolution: {integrity: sha512-mjCafwt8lJJaVSsQvNVrJumbnnj1RI8jbUKrPKgE6E3OvQKxnuRoBaYC51H4IGHePsGN/QtALglWBU7DoKDFnA==} + engines: {node: '>=20'} - '@shikijs/vscode-textmate@9.3.0': - resolution: {integrity: sha512-jn7/7ky30idSkd/O5yDBfAnVt+JJpepofP/POZ1iMOxK59cOfqIgg/Dj0eFsjOTMw+4ycJN0uhZH/Eb0bs/EUA==} + '@shikijs/types@4.0.2': + resolution: {integrity: sha512-qzbeRooUTPnLE+sHD/Z8DStmaDgnbbc/pMrU203950aRqjX/6AFHeDYT+j00y2lPdz0ywJKx7o/7qnqTivtlXg==} + engines: {node: '>=20'} - '@sveltejs/vite-plugin-svelte-inspector@2.1.0': - resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==} - engines: {node: ^18.0.0 || >=20} + '@shikijs/vscode-textmate@10.0.2': + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} + + '@sveltejs/acorn-typescript@1.0.9': + resolution: {integrity: sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA==} + peerDependencies: + acorn: ^8.9.0 + + '@sveltejs/vite-plugin-svelte-inspector@5.0.2': + resolution: {integrity: sha512-TZzRTcEtZffICSAoZGkPSl6Etsj2torOVrx6Uw0KpXxrec9Gg6jFWQ60Q3+LmNGfZSxHRCZL7vXVZIWmuV50Ig==} + engines: {node: ^20.19 || ^22.12 || >=24} peerDependencies: - '@sveltejs/vite-plugin-svelte': ^3.0.0 - svelte: ^4.0.0 || ^5.0.0-next.0 - vite: ^5.0.0 + '@sveltejs/vite-plugin-svelte': ^6.0.0-next.0 + svelte: ^5.0.0 + vite: ^6.3.0 || ^7.0.0 - '@sveltejs/vite-plugin-svelte@3.1.2': - resolution: {integrity: sha512-Txsm1tJvtiYeLUVRNqxZGKR/mI+CzuIQuc2gn+YCs9rMTowpNZ2Nqt53JdL8KF9bLhAf2ruR/dr9eZCwdTriRA==} - engines: {node: ^18.0.0 || >=20} + '@sveltejs/vite-plugin-svelte@6.2.4': + resolution: {integrity: sha512-ou/d51QSdTyN26D7h6dSpusAKaZkAiGM55/AKYi+9AGZw7q85hElbjK3kEyzXHhLSnRISHOYzVge6x0jRZ7DXA==} + engines: {node: ^20.19 || ^22.12 || >=24} peerDependencies: - svelte: ^4.0.0 || ^5.0.0-next.0 - vite: ^5.0.0 + svelte: ^5.0.0 + vite: ^6.3.0 || ^7.0.0 '@swc/helpers@0.5.13': resolution: {integrity: sha512-UoKGxQ3r5kYI9dALKJapMmuK+1zWM/H17Z1+iwnNmzcJRnfFuevZs375TA5rW31pu4BS4NoSy1fRsexDXfWn5w==} - '@types/acorn@4.0.6': - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + '@tailwindcss/node@4.2.2': + resolution: {integrity: sha512-pXS+wJ2gZpVXqFaUEjojq7jzMpTGf8rU6ipJz5ovJV6PUGmlJ+jvIwGrzdHdQ80Sg+wmQxUFuoW1UAAwHNEdFA==} - '@types/babel__core@7.20.5': - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + '@tailwindcss/oxide-android-arm64@4.2.2': + resolution: {integrity: sha512-dXGR1n+P3B6748jZO/SvHZq7qBOqqzQ+yFrXpoOWWALWndF9MoSKAT3Q0fYgAzYzGhxNYOoysRvYlpixRBBoDg==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [android] - '@types/babel__generator@7.6.8': - resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + '@tailwindcss/oxide-darwin-arm64@4.2.2': + resolution: {integrity: sha512-iq9Qjr6knfMpZHj55/37ouZeykwbDqF21gPFtfnhCCKGDcPI/21FKC9XdMO/XyBM7qKORx6UIhGgg6jLl7BZlg==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [darwin] - '@types/babel__template@7.4.4': - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + '@tailwindcss/oxide-darwin-x64@4.2.2': + resolution: {integrity: sha512-BlR+2c3nzc8f2G639LpL89YY4bdcIdUmiOOkv2GQv4/4M0vJlpXEa0JXNHhCHU7VWOKWT/CjqHdTP8aUuDJkuw==} + engines: {node: '>= 20'} + cpu: [x64] + os: [darwin] - '@types/babel__traverse@7.20.6': - resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@tailwindcss/oxide-freebsd-x64@4.2.2': + resolution: {integrity: sha512-YUqUgrGMSu2CDO82hzlQ5qSb5xmx3RUrke/QgnoEx7KvmRJHQuZHZmZTLSuuHwFf0DJPybFMXMYf+WJdxHy/nQ==} + engines: {node: '>= 20'} + cpu: [x64] + os: [freebsd] - '@types/bun@1.1.14': - resolution: {integrity: sha512-opVYiFGtO2af0dnWBdZWlioLBoxSdDO5qokaazLhq8XQtGZbY4pY3/JxY8Zdf/hEwGubbp7ErZXoN1+h2yesxA==} + '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2': + resolution: {integrity: sha512-FPdhvsW6g06T9BWT0qTwiVZYE2WIFo2dY5aCSpjG/S/u1tby+wXoslXS0kl3/KXnULlLr1E3NPRRw0g7t2kgaQ==} + engines: {node: '>= 20'} + cpu: [arm] + os: [linux] - '@types/cookie@0.6.0': - resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} + '@tailwindcss/oxide-linux-arm64-gnu@4.2.2': + resolution: {integrity: sha512-4og1V+ftEPXGttOO7eCmW7VICmzzJWgMx+QXAJRAhjrSjumCwWqMfkDrNu1LXEQzNAwz28NCUpucgQPrR4S2yw==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [linux] + + '@tailwindcss/oxide-linux-arm64-musl@4.2.2': + resolution: {integrity: sha512-oCfG/mS+/+XRlwNjnsNLVwnMWYH7tn/kYPsNPh+JSOMlnt93mYNCKHYzylRhI51X+TbR+ufNhhKKzm6QkqX8ag==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [linux] + + '@tailwindcss/oxide-linux-x64-gnu@4.2.2': + resolution: {integrity: sha512-rTAGAkDgqbXHNp/xW0iugLVmX62wOp2PoE39BTCGKjv3Iocf6AFbRP/wZT/kuCxC9QBh9Pu8XPkv/zCZB2mcMg==} + engines: {node: '>= 20'} + cpu: [x64] + os: [linux] + + '@tailwindcss/oxide-linux-x64-musl@4.2.2': + resolution: {integrity: sha512-XW3t3qwbIwiSyRCggeO2zxe3KWaEbM0/kW9e8+0XpBgyKU4ATYzcVSMKteZJ1iukJ3HgHBjbg9P5YPRCVUxlnQ==} + engines: {node: '>= 20'} + cpu: [x64] + os: [linux] + + '@tailwindcss/oxide-wasm32-wasi@4.2.2': + resolution: {integrity: sha512-eKSztKsmEsn1O5lJ4ZAfyn41NfG7vzCg496YiGtMDV86jz1q/irhms5O0VrY6ZwTUkFy/EKG3RfWgxSI3VbZ8Q==} + engines: {node: '>=14.0.0'} + cpu: [wasm32] + bundledDependencies: + - '@napi-rs/wasm-runtime' + - '@emnapi/core' + - '@emnapi/runtime' + - '@tybys/wasm-util' + - '@emnapi/wasi-threads' + - tslib + + '@tailwindcss/oxide-win32-arm64-msvc@4.2.2': + resolution: {integrity: sha512-qPmaQM4iKu5mxpsrWZMOZRgZv1tOZpUm+zdhhQP0VhJfyGGO3aUKdbh3gDZc/dPLQwW4eSqWGrrcWNBZWUWaXQ==} + engines: {node: '>= 20'} + cpu: [arm64] + os: [win32] + + '@tailwindcss/oxide-win32-x64-msvc@4.2.2': + resolution: {integrity: sha512-1T/37VvI7WyH66b+vqHj/cLwnCxt7Qt3WFu5Q8hk65aOvlwAhs7rAp1VkulBJw/N4tMirXjVnylTR72uI0HGcA==} + engines: {node: '>= 20'} + cpu: [x64] + os: [win32] + + '@tailwindcss/oxide@4.2.2': + resolution: {integrity: sha512-qEUA07+E5kehxYp9BVMpq9E8vnJuBHfJEC0vPC5e7iL/hw7HR61aDKoVoKzrG+QKp56vhNZe4qwkRmMC0zDLvg==} + engines: {node: '>= 20'} + + '@tailwindcss/vite@4.2.2': + resolution: {integrity: sha512-mEiF5HO1QqCLXoNEfXVA1Tzo+cYsrqV7w9Juj2wdUFyW07JRenqMG225MvPwr3ZD9N1bFQj46X7r33iHxLUW0w==} + peerDependencies: + vite: ^5.2.0 || ^6 || ^7 || ^8 + + '@types/acorn@4.0.6': + resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} + + '@types/bun@1.3.11': + resolution: {integrity: sha512-5vPne5QvtpjGpsGYXiFyycfpDF2ECyPcTSsFBMa0fraoxiQyMJ3SmuQIGhzPg2WJuWxVBoxWJ2kClYTcw/4fAg==} '@types/debug@4.1.12': resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + '@types/esrecurse@4.3.1': + resolution: {integrity: sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==} + '@types/estree-jsx@1.0.5': resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==} '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/estree@1.0.8': + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} + '@types/hast@3.0.4': resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} @@ -848,11 +965,11 @@ packages: '@types/nlcst@2.0.3': resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} - '@types/node@20.12.14': - resolution: {integrity: sha512-scnD59RpYD91xngrQQLGkE+6UrHUPzeKZWhhjBSa3HSkwjbQc38+q3RoIVEwxQGRw3M+j5hpNAM+lgV3cVormg==} + '@types/node@25.5.0': + resolution: {integrity: sha512-jp2P3tQMSxWugkCUKLRPVUpGaL5MVFwF8RDuSRztfwgN1wmqJeMSbKlnEtQqU8UrhTmzEmZdu2I6v2dpp7XIxw==} - '@types/node@22.10.2': - resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} + '@types/trusted-types@2.0.7': + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} '@types/unist@2.0.11': resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==} @@ -860,77 +977,77 @@ packages: '@types/unist@3.0.3': resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} - '@types/ws@8.5.12': - resolution: {integrity: sha512-3tPRkv1EtkDpzlgyKyI8pGsGZAGPEaXeu0DOj5DI25Ja91bdAYddYHbADRYVrZMRbfW+1l5YwXVDKohDJNQxkQ==} - - '@typescript-eslint/parser@8.18.1': - resolution: {integrity: sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==} + '@typescript-eslint/parser@8.57.1': + resolution: {integrity: sha512-k4eNDan0EIMTT/dUKc/g+rsJ6wcHYhNPdY19VoX/EOtaAG8DLtKCykhrUnuHPYvinn5jhAPgD2Qw9hXBwrahsw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.8.0' + eslint: ^8.57.0 || ^9.0.0 || ^10.0.0 + typescript: '>=4.8.4 <6.0.0' - '@typescript-eslint/scope-manager@8.11.0': - resolution: {integrity: sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==} + '@typescript-eslint/project-service@8.57.1': + resolution: {integrity: sha512-vx1F37BRO1OftsYlmG9xay1TqnjNVlqALymwWVuYTdo18XuKxtBpCj1QlzNIEHlvlB27osvXFWptYiEWsVdYsg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' '@typescript-eslint/scope-manager@8.18.1': resolution: {integrity: sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/types@8.11.0': - resolution: {integrity: sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==} + '@typescript-eslint/scope-manager@8.57.1': + resolution: {integrity: sha512-hs/QcpCwlwT2L5S+3fT6gp0PabyGk4Q0Rv2doJXA0435/OpnSR3VRgvrp8Xdoc3UAYSg9cyUjTeFXZEPg/3OKg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/tsconfig-utils@8.57.1': + resolution: {integrity: sha512-0lgOZB8cl19fHO4eI46YUx2EceQqhgkPSuCGLlGi79L2jwYY1cxeYc1Nae8Aw1xjgW3PKVDLlr3YJ6Bxx8HkWg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <6.0.0' '@typescript-eslint/types@8.18.1': resolution: {integrity: sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.11.0': - resolution: {integrity: sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==} + '@typescript-eslint/types@8.57.1': + resolution: {integrity: sha512-S29BOBPJSFUiblEl6RzPPjJt6w25A6XsBqRVDt53tA/tlL8q7ceQNZHTjPeONt/3S7KRI4quk+yP9jK2WjBiPQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - '@typescript-eslint/typescript-estree@8.18.1': - resolution: {integrity: sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==} + '@typescript-eslint/typescript-estree@8.57.1': + resolution: {integrity: sha512-ybe2hS9G6pXpqGtPli9Gx9quNV0TWLOmh58ADlmZe9DguLq0tiAKVjirSbtM1szG6+QH6rVXyU6GTLQbWnMY+g==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '>=4.8.4 <5.8.0' - - '@typescript-eslint/visitor-keys@8.11.0': - resolution: {integrity: sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + typescript: '>=4.8.4 <6.0.0' '@typescript-eslint/visitor-keys@8.18.1': resolution: {integrity: sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/visitor-keys@8.57.1': + resolution: {integrity: sha512-YWnmJkXbofiz9KbnbbwuA2rpGkFPLbAIetcCNO6mJ8gdhdZ/v7WDXsoGFAJuM6ikUFKTlSQnjWnVO4ux+UzS6A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} - '@volar/kit@2.4.5': - resolution: {integrity: sha512-ZzyErW5UiDfiIuJ/lpqc2Kx5PHDGDZ/bPlPJYpRcxlrn8Z8aDhRlsLHkNKcNiH65TmNahk2kbLaiejiqu6BD3A==} + '@volar/kit@2.4.28': + resolution: {integrity: sha512-cKX4vK9dtZvDRaAzeoUdaAJEew6IdxHNCRrdp5Kvcl6zZOqb6jTOfk3kXkIkG3T7oTFXguEMt5+9ptyqYR84Pg==} peerDependencies: typescript: '*' - '@volar/language-core@2.4.5': - resolution: {integrity: sha512-F4tA0DCO5Q1F5mScHmca0umsi2ufKULAnMOVBfMsZdT4myhVl4WdKRwCaKcfOkIEuyrAVvtq1ESBdZ+rSyLVww==} + '@volar/language-core@2.4.28': + resolution: {integrity: sha512-w4qhIJ8ZSitgLAkVay6AbcnC7gP3glYM3fYwKV3srj8m494E3xtrCv6E+bWviiK/8hs6e6t1ij1s2Endql7vzQ==} - '@volar/language-server@2.4.5': - resolution: {integrity: sha512-l5PswE0JzCtstTlwBUpikeSa3lNUBJhTuWtj9KclZTGi2Uex4RcqGOhTiDsUUtvdv/hEuYCxGq1EdJJPlQsD/g==} + '@volar/language-server@2.4.28': + resolution: {integrity: sha512-NqcLnE5gERKuS4PUFwlhMxf6vqYo7hXtbMFbViXcbVkbZ905AIVWhnSo0ZNBC2V127H1/2zP7RvVOVnyITFfBw==} - '@volar/language-service@2.4.5': - resolution: {integrity: sha512-xiFlL0aViGg6JhwAXyohPrdlID13uom8WQg6DWYaV8ob8RRy+zoLlBUI8SpQctwlWEO9poyrYK01revijAwkcw==} + '@volar/language-service@2.4.28': + resolution: {integrity: sha512-Rh/wYCZJrI5vCwMk9xyw/Z+MsWxlJY1rmMZPsxUoJKfzIRjS/NF1NmnuEcrMbEVGja00aVpCsInJfixQTMdvLw==} - '@volar/source-map@2.4.5': - resolution: {integrity: sha512-varwD7RaKE2J/Z+Zu6j3mNNJbNT394qIxXwdvz/4ao/vxOfyClZpSDtLKkwWmecinkOVos5+PWkWraelfMLfpw==} + '@volar/source-map@2.4.28': + resolution: {integrity: sha512-yX2BDBqJkRXfKw8my8VarTyjv48QwxdJtvRgUpNE5erCsgEUdI2DsLbpa+rOQVAJYshY99szEcRDmyHbF10ggQ==} - '@volar/typescript@2.4.5': - resolution: {integrity: sha512-mcT1mHvLljAEtHviVcBuOyAwwMKz1ibXTi5uYtP/pf4XxoAzpdkQ+Br2IC0NPCvLCbjPZmbf3I0udndkfB1CDg==} + '@volar/typescript@2.4.28': + resolution: {integrity: sha512-Ja6yvWrbis2QtN4ClAKreeUZPVYMARDYZl9LMEv1iQ1QdepB6wn0jTRxA9MftYmYa4DQ4k/DaSZpFPUfxl8giw==} '@vscode/emmet-helper@2.9.3': resolution: {integrity: sha512-rB39LHWWPQYYlYfpv9qCoZOVioPCftKXXqrsyqN1mTWZM6dTnONT63Db+03vgrBbHzJN45IrgS/AGxw9iiqfEw==} @@ -943,66 +1060,49 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 - acorn@8.12.1: - resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} engines: {node: '>=0.4.0'} hasBin: true - acorn@8.13.0: - resolution: {integrity: sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==} + acorn@8.16.0: + resolution: {integrity: sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==} engines: {node: '>=0.4.0'} hasBin: true - acorn@8.14.0: - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} - engines: {node: '>=0.4.0'} - hasBin: true + ajv-draft-04@1.0.0: + resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} + peerDependencies: + ajv: ^8.5.0 + peerDependenciesMeta: + ajv: + optional: true - ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + ajv@6.14.0: + resolution: {integrity: sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==} ajv@8.17.1: resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} - ansi-align@3.0.1: - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} - ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} - ansi-regex@6.1.0: - resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} - engines: {node: '>=12'} - - ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} - ansi-styles@4.3.0: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} - ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} - - any-promise@1.3.0: - resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} - anymatch@3.1.3: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} - arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} - - argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} - argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + aria-query@5.3.1: + resolution: {integrity: sha512-Z/ZeOgVl7bcSYZ/u/rh0fOpvEpq//LZmdbkXyc7syVzjPAhfOa9ebsdTSjEBDU4vs5nC98Kfduj1uFo0qyET3g==} + engines: {node: '>= 0.4'} + aria-query@5.3.2: resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} engines: {node: '>= 0.4'} @@ -1018,10 +1118,6 @@ packages: array-iterate@2.0.1: resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} - array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} - array.prototype.flat@1.3.2: resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} @@ -1041,13 +1137,13 @@ packages: resolution: {integrity: sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==} hasBin: true - astro-eslint-parser@1.1.0: - resolution: {integrity: sha512-F6NW1RJo5pp2kPnnM97M5Ohw8zAGjv83MpxHqfAochH68n/kiXN57+hYaNUCA7XkScoVNr6yzvly3hsY34TGfQ==} + astro-eslint-parser@1.3.0: + resolution: {integrity: sha512-aOLc/aDR7lTWAHlytEefwn4Y6qs6uMr69DZvUx2A1AOAZsWhGB/paiRWPtVchh9wzMvLeqr+DkbENhVreVr9AQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - astro@4.16.7: - resolution: {integrity: sha512-nON+8MUEkWTFwXbS4zsQIq4t0Fs42eulM4x236AL+qNnWfqNAOOqAnFxO1dxfJ1q+XopIBbbT9Mtev+0zH47PQ==} - engines: {node: ^18.17.1 || ^20.3.0 || >=21.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} + astro@6.0.8: + resolution: {integrity: sha512-DCPeb8GKOoFWh+8whB7Qi/kKWD/6NcQ9nd1QVNzJFxgHkea3WYrNroQRq4whmBdjhkYPTLS/1gmUAl2iA2Es2g==} + engines: {node: '>=22.12.0', npm: '>=9.6.5', pnpm: '>=7.1.0'} hasBin: true astrojs-compiler-sync@1.0.0: @@ -1056,13 +1152,6 @@ packages: peerDependencies: '@astrojs/compiler': '>=0.27.0' - autoprefixer@10.4.20: - resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} - engines: {node: ^10 || ^12 || >=14} - hasBin: true - peerDependencies: - postcss: ^8.1.0 - available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -1081,74 +1170,41 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} - base-64@1.0.0: - resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} + balanced-match@4.0.4: + resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} + engines: {node: 18 || 20 || >=22} - binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} - - bits-ui@0.22.0: - resolution: {integrity: sha512-r7Fw1HNgA4YxZBRcozl7oP0bheQ8EHh+kfMBZJgyFISix8t4p/nqDcHLmBgIiJ3T5XjYnJRorYDjIWaCfhb5fw==} + bits-ui@2.16.3: + resolution: {integrity: sha512-5hJ5dEhf5yPzkRFcxzgQHScGodeo0gK0MUUXrdLlRHWaBOBGZiacWLG96j/wwFatKwZvouw7q+sn14i0fx3RIg==} + engines: {node: '>=20'} peerDependencies: - svelte: ^4.0.0 || ^5.0.0 + '@internationalized/date': ^3.8.1 + svelte: ^5.33.0 - boxen@8.0.1: - resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} - engines: {node: '>=18'} + boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} - brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + brace-expansion@5.0.4: + resolution: {integrity: sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==} + engines: {node: 18 || 20 || >=22} braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} - browserslist@4.24.0: - resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} - hasBin: true - - bun-types@1.1.37: - resolution: {integrity: sha512-C65lv6eBr3LPJWFZ2gswyrGZ82ljnH8flVE03xeXxKhi2ZGtFiO4isRKTKnitbSqtRAcaqYSR6djt1whI66AbA==} + bun-types@1.3.11: + resolution: {integrity: sha512-1KGPpoxQWl9f6wcZh57LvrPIInQMn2TQ7jsgxqpRzg+l0QPOFvJVH7HmvHo/AiPgwXy+/Thf6Ov3EdVn1vOabg==} call-bind@1.0.7: resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} engines: {node: '>= 0.4'} - callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} - - camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} - - camelcase@8.0.0: - resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} - engines: {node: '>=16'} - - caniuse-lite@1.0.30001664: - resolution: {integrity: sha512-AmE7k4dXiNKQipgn7a2xg558IRqPN3jMQY/rOsbxDhrd0tyChwbITBfiwtnqz8bi2M5mIWbxAYBvk7W7QBUS2g==} - ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} - chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} - - chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} - - chalk@5.3.0: - resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} - character-entities-html4@2.1.0: resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} @@ -1161,29 +1217,17 @@ packages: character-reference-invalid@2.0.1: resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==} - chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} - - chokidar@4.0.1: - resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==} + chokidar@4.0.3: + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} engines: {node: '>= 14.16.0'} - ci-info@4.0.0: - resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} - engines: {node: '>=8'} - - cli-boxes@3.0.0: - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} - engines: {node: '>=10'} - - cli-cursor@5.0.0: - resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} - engines: {node: '>=18'} + chokidar@5.0.0: + resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} + engines: {node: '>= 20.19.0'} - cli-spinners@2.9.2: - resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==} - engines: {node: '>=6'} + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} cliui@8.0.1: resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} @@ -1193,69 +1237,68 @@ packages: resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} engines: {node: '>=6'} - code-red@1.0.4: - resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} - collapse-white-space@2.1.0: resolution: {integrity: sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==} - color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} - color-convert@2.0.1: resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} engines: {node: '>=7.0.0'} - color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} - color-name@1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} - color-string@1.9.1: - resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} - - color@4.2.3: - resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==} - engines: {node: '>=12.5.0'} - comma-separated-tokens@2.0.3: resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} - commander@4.1.1: - resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} - engines: {node: '>= 6'} + commander@11.1.0: + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} - common-ancestor-path@1.0.1: - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} + common-ancestor-path@2.0.0: + resolution: {integrity: sha512-dnN3ibLeoRf2HNC+OlCiNc5d2zxbLJXOtiZUudNFSXZrNSydxcCsSpRzXwfu7BBWCIfHPw+xTayeBvJCP/D8Ng==} + engines: {node: '>= 18'} concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - convert-source-map@2.0.0: - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - - cookie@0.7.2: - resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} - engines: {node: '>= 0.6'} + cookie-es@1.2.2: + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} - cross-spawn@7.0.3: - resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} - engines: {node: '>= 8'} + cookie@1.1.1: + resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==} + engines: {node: '>=18'} cross-spawn@7.0.6: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - css-tree@2.3.1: - resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + crossws@0.3.5: + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} + + css-select@5.2.2: + resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==} + + css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + + css-tree@3.2.1: + resolution: {integrity: sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==} engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + css-what@6.2.2: + resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==} + engines: {node: '>= 6'} + cssesc@3.0.0: resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} engines: {node: '>=4'} hasBin: true + csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + damerau-levenshtein@1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} @@ -1271,8 +1314,8 @@ packages: resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} engines: {node: '>= 0.4'} - debug@4.3.7: - resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} + debug@4.4.3: + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -1301,64 +1344,71 @@ packages: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} + defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} - detect-libc@2.0.3: - resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==} - engines: {node: '>=8'} + destr@2.0.5: + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} - deterministic-object-hash@2.0.2: - resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} - engines: {node: '>=18'} + detect-libc@2.1.2: + resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} + engines: {node: '>=8'} - devalue@5.1.1: - resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} + devalue@5.6.4: + resolution: {integrity: sha512-Gp6rDldRsFh/7XuouDbxMH3Mx8GMCcgzIb1pDTvNyn8pZGQ22u+Wa+lGV9dQCltFQ7uVw0MhRyb8XDskNFOReA==} devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} - didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} - - diff@5.2.0: - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} + diff@8.0.3: + resolution: {integrity: sha512-qejHi7bcSD4hQAZE0tNAawRK1ZtafHDmMTMkrrIGgSLl7hTnQHmKCeB45xAcbfTqK2zowkM3j3bHt/4b/ARbYQ==} engines: {node: '>=0.3.1'} - dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} - dlv@1.1.3: resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + + domutils@3.2.2: + resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==} + dset@3.1.4: resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} engines: {node: '>=4'} - eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - - electron-to-chromium@1.5.29: - resolution: {integrity: sha512-PF8n2AlIhCKXQ+gTpiJi0VhcHDb69kYX4MtCiivctc2QD3XuNZ/XIOlbGzt7WAjjEev0TtaH6Cu3arZExm5DOw==} - emmet@2.4.11: resolution: {integrity: sha512-23QPJB3moh/U9sT4rQzGgeyyGIrcM+GH5uVYg2C6wZIxAIJq7Ng3QLT79tl8FUwDXhyq9SusfknOrofAKqvgyQ==} - emoji-regex@10.4.0: - resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} - emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + enhanced-resolve@5.20.1: + resolution: {integrity: sha512-Qohcme7V1inbAfvjItgw0EaxVX5q2rdVEZHRBrEQdRZTssLDGsL8Lwrznl8oQ/6kuTJONLaDcGjkNP247XEhcA==} + engines: {node: '>=10.13.0'} + entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} + entities@6.0.1: + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} + engines: {node: '>=0.12'} + es-abstract@1.23.3: resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} engines: {node: '>= 0.4'} @@ -1371,8 +1421,8 @@ packages: resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} engines: {node: '>= 0.4'} - es-module-lexer@1.5.4: - resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + es-module-lexer@2.0.0: + resolution: {integrity: sha512-5POEcUuZybH7IdmGsD8wlf0AI55wMecM9rVBTI/qEAy2c1kTOm3DjFYjrBdI2K3BaJjJYfYFeRtM0t9ssnRuxw==} es-object-atoms@1.0.0: resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} @@ -1395,19 +1445,15 @@ packages: esast-util-from-js@2.0.1: resolution: {integrity: sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==} - esbuild@0.21.5: - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} - engines: {node: '>=12'} + esbuild@0.27.4: + resolution: {integrity: sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==} + engines: {node: '>=18'} hasBin: true escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} - escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} - escape-string-regexp@4.0.0: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} @@ -1422,8 +1468,8 @@ packages: peerDependencies: eslint: '>=6.0.0' - eslint-plugin-astro@1.3.1: - resolution: {integrity: sha512-2XaLCMQm8htW1UvJvy1Zcmg8l0ziskitiUfJTn/w1Mk7r4Mxj0fZeNpN6UTNrm64XBIXSa5h8UCGrg8mdu47+g==} + eslint-plugin-astro@1.6.0: + resolution: {integrity: sha512-yGIbLHuj5MOUXa0s4sZ6cVhv6ehb+WLF80tsrGaxMk6VTUExruMzubQDzhOYt8fbR1c9vILCCRSCsKI7M1whig==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.57.0' @@ -1434,29 +1480,29 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 - eslint-scope@8.1.0: - resolution: {integrity: sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint-scope@8.2.0: resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-scope@9.1.2: + resolution: {integrity: sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + eslint-visitor-keys@3.4.3: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - eslint-visitor-keys@4.1.0: - resolution: {integrity: sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint-visitor-keys@4.2.0: resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - eslint@9.17.0: - resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-visitor-keys@5.0.1: + resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} + + eslint@10.1.0: + resolution: {integrity: sha512-S9jlY/ELKEUwwQnqWDO+f+m6sercqOPSqXM5Go94l7DOmxHVDgmSFGWEzeE/gwgTAr0W103BWt0QLe/7mabIvA==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} hasBin: true peerDependencies: jiti: '*' @@ -1464,23 +1510,24 @@ packages: jiti: optional: true - espree@10.2.0: - resolution: {integrity: sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + esm-env@1.2.2: + resolution: {integrity: sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==} espree@10.3.0: resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} - hasBin: true + espree@11.2.0: + resolution: {integrity: sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==} + engines: {node: ^20.19.0 || ^22.13.0 || >=24} - esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + esquery@1.7.0: + resolution: {integrity: sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==} engines: {node: '>=0.10'} + esrap@2.2.4: + resolution: {integrity: sha512-suICpxAmZ9A8bzJjEl/+rLJiDKC0X4gYWUxT6URAWBLvlXmtbZd5ySMu/N2ZGEtMCAmflUDPSehrP9BQcsGcSg==} + esrecurse@4.3.0: resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} engines: {node: '>=4.0'} @@ -1520,18 +1567,14 @@ packages: eventemitter3@5.0.1: resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} - extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} - extend@3.0.2: resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} - fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + fast-glob@3.3.3: + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} engines: {node: '>=8.6.0'} fast-json-stable-stringify@2.1.0: @@ -1546,6 +1589,15 @@ packages: fastq@1.17.1: resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + fdir@6.5.0: + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} + engines: {node: '>=12.0.0'} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + file-entry-cache@8.0.0: resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} engines: {node: '>=16.0.0'} @@ -1554,21 +1606,10 @@ packages: resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} engines: {node: '>=8'} - find-up-simple@1.0.0: - resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} - engines: {node: '>=18'} - - find-up@4.1.0: - resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} - engines: {node: '>=8'} - find-up@5.0.0: resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} engines: {node: '>=10'} - find-yarn-workspace-root2@1.2.16: - resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==} - flat-cache@4.0.1: resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} engines: {node: '>=16'} @@ -1580,19 +1621,16 @@ packages: resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} engines: {node: '>=8'} - focus-trap@7.6.0: - resolution: {integrity: sha512-1td0l3pMkWJLFipobUcGaf+5DTY4PLDDrcqoSaKP8ediO/CoWCCYk/fT/Y2A4e6TNB+Sh6clRJCjOPPnKoNHnQ==} + fontace@0.4.1: + resolution: {integrity: sha512-lDMvbAzSnHmbYMTEld5qdtvNH2/pWpICOqpean9IgC7vUbUJc3k+k5Dokp85CegamqQpFbXf0rAVkbzpyTA8aw==} + + fontkitten@1.0.3: + resolution: {integrity: sha512-Wp1zXWPVUPBmfoa3Cqc9ctaKuzKAV6uLstRqlR56kSjplf5uAce+qeyYym7F+PHbGTk+tCEdkCW6RD7DX/gBZw==} + engines: {node: '>=20'} for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} - foreground-child@3.3.0: - resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} - engines: {node: '>=14'} - - fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} - fsevents@2.3.2: resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1613,18 +1651,10 @@ packages: functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - gensync@1.0.0-beta.2: - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} - engines: {node: '>=6.9.0'} - get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - get-east-asian-width@1.2.0: - resolution: {integrity: sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==} - engines: {node: '>=18'} - get-intrinsic@1.2.4: resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} engines: {node: '>= 0.4'} @@ -1644,51 +1674,30 @@ packages: resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} engines: {node: '>=10.13.0'} - glob@10.4.5: - resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} - hasBin: true - globals@11.12.0: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - globals@14.0.0: - resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} - engines: {node: '>=18'} - - globals@15.9.0: - resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==} + globals@16.5.0: + resolution: {integrity: sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==} engines: {node: '>=18'} globalthis@1.0.4: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} - globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} - gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} - gray-matter@4.0.3: - resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==} - engines: {node: '>=6.0'} + h3@1.15.9: + resolution: {integrity: sha512-H7UPnyIupUOYUQu7f2x7ABVeMyF/IbJjqn20WSXpMdnQB260luADUkSgJU7QTWLutq8h3tUayMQ1DdbSYX5LkA==} has-bigints@1.0.2: resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} - has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} - - has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} - has-property-descriptors@1.0.2: resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} @@ -1726,8 +1735,8 @@ packages: hast-util-to-estree@3.1.0: resolution: {integrity: sha512-lfX5g6hqVh9kjS/B9E2gSkvHH4SZNiQFiqWS0x9fENzEl+8W12RqdRxX6d/Cwxi30tPQs3bIO+aolQJNp1bIyw==} - hast-util-to-html@9.0.3: - resolution: {integrity: sha512-M17uBDzMJ9RPCqLMO92gNNUDuBSq10a25SDBI08iCCxmorf4Yy6sYHK57n9WAbRAAaU+DuR4W6GN9K4DFZesYg==} + hast-util-to-html@9.0.5: + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} hast-util-to-jsx-runtime@2.3.2: resolution: {integrity: sha512-1ngXYb+V9UT5h+PxNRa1O1FYguZK/XL+gkeqvp7EdHlB9oHUG0eYRo/vY5inBdcqo3RkPMC58/H94HvkbfGdyg==} @@ -1750,20 +1759,13 @@ packages: html-void-elements@3.0.0: resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} - http-cache-semantics@4.1.1: - resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} + http-cache-semantics@4.2.0: + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} - import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} - - import-meta-resolve@4.1.0: - resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} - imurmurhash@0.1.4: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} @@ -1778,6 +1780,9 @@ packages: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} + iron-webcrypto@1.2.1: + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} + is-alphabetical@2.0.1: resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==} @@ -1788,16 +1793,9 @@ packages: resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} engines: {node: '>= 0.4'} - is-arrayish@0.3.2: - resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} - is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} - is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} - is-boolean-object@1.1.2: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} @@ -1806,10 +1804,6 @@ packages: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} engines: {node: '>= 0.4'} - is-core-module@2.15.1: - resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} - engines: {node: '>= 0.4'} - is-data-view@1.0.1: resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} engines: {node: '>= 0.4'} @@ -1826,10 +1820,6 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true - is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} - is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -1850,10 +1840,6 @@ packages: engines: {node: '>=14.16'} hasBin: true - is-interactive@2.0.0: - resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==} - engines: {node: '>=12'} - is-negative-zero@2.0.3: resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} engines: {node: '>= 0.4'} @@ -1870,8 +1856,8 @@ packages: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} - is-reference@3.0.2: - resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + is-reference@3.0.3: + resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} @@ -1893,14 +1879,6 @@ packages: resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} engines: {node: '>= 0.4'} - is-unicode-supported@1.3.0: - resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==} - engines: {node: '>=12'} - - is-unicode-supported@2.1.0: - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} - engines: {node: '>=18'} - is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} @@ -1914,22 +1892,15 @@ packages: isexe@2.0.0: resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} - jackspeak@3.4.3: - resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} - - jiti@1.21.6: - resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==} + jiti@2.6.1: + resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==} hasBin: true js-tokens@4.0.0: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} - js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} - hasBin: true - - js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + js-yaml@4.1.1: + resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==} hasBin: true jsesc@3.0.2: @@ -1949,11 +1920,6 @@ packages: json-stable-stringify-without-jsonify@1.0.1: resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} - json5@2.2.3: - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} - engines: {node: '>=6'} - hasBin: true - jsonc-parser@2.3.1: resolution: {integrity: sha512-H8jvkz1O50L3dMZCsLqiuB2tA7muqbSg1AtGEkN0leAqGjsUzDJir3Zwr02BhqdcITPg3ei3mZ+HjMocAknhhg==} @@ -1967,14 +1933,6 @@ packages: keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} - kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} - - kleur@3.0.3: - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} - engines: {node: '>=6'} - kleur@4.1.5: resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} engines: {node: '>=6'} @@ -1990,67 +1948,102 @@ packages: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} engines: {node: '>= 0.8.0'} - lilconfig@3.1.2: - resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==} - engines: {node: '>=14'} + lightningcss-android-arm64@1.32.0: + resolution: {integrity: sha512-YK7/ClTt4kAK0vo6w3X+Pnm0D2cf2vPHbhOXdoNti1Ga0al1P4TBZhwjATvjNwLEBCnKvjJc2jQgHXH0NEwlAg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [android] - lilconfig@3.1.3: - resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} - engines: {node: '>=14'} + lightningcss-darwin-arm64@1.32.0: + resolution: {integrity: sha512-RzeG9Ju5bag2Bv1/lwlVJvBE3q6TtXskdZLLCyfg5pt+HLz9BqlICO7LZM7VHNTTn/5PRhHFBSjk5lc4cmscPQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [darwin] - lines-and-columns@1.2.4: - resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + lightningcss-darwin-x64@1.32.0: + resolution: {integrity: sha512-U+QsBp2m/s2wqpUYT/6wnlagdZbtZdndSmut/NJqlCcMLTWp5muCrID+K5UJ6jqD2BFshejCYXniPDbNh73V8w==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [darwin] - load-yaml-file@0.2.0: - resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} - engines: {node: '>=6'} + lightningcss-freebsd-x64@1.32.0: + resolution: {integrity: sha512-JCTigedEksZk3tHTTthnMdVfGf61Fky8Ji2E4YjUTEQX14xiy/lTzXnu1vwiZe3bYe0q+SpsSH/CTeDXK6WHig==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [freebsd] - locate-character@3.0.0: - resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + lightningcss-linux-arm-gnueabihf@1.32.0: + resolution: {integrity: sha512-x6rnnpRa2GL0zQOkt6rts3YDPzduLpWvwAF6EMhXFVZXD4tPrBkEFqzGowzCsIWsPjqSK+tyNEODUBXeeVHSkw==} + engines: {node: '>= 12.0.0'} + cpu: [arm] + os: [linux] - locate-path@5.0.0: - resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} - engines: {node: '>=8'} + lightningcss-linux-arm64-gnu@1.32.0: + resolution: {integrity: sha512-0nnMyoyOLRJXfbMOilaSRcLH3Jw5z9HDNGfT/gwCPgaDjnx0i8w7vBzFLFR1f6CMLKF8gVbebmkUN3fa/kQJpQ==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] - locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + lightningcss-linux-arm64-musl@1.32.0: + resolution: {integrity: sha512-UpQkoenr4UJEzgVIYpI80lDFvRmPVg6oqboNHfoH4CQIfNA+HOrZ7Mo7KZP02dC6LjghPQJeBsvXhJod/wnIBg==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [linux] - lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + lightningcss-linux-x64-gnu@1.32.0: + resolution: {integrity: sha512-V7Qr52IhZmdKPVr+Vtw8o+WLsQJYCTd8loIfpDaMRWGUZfBOYEJeyJIkqGIDMZPwPx24pUMfwSxxI8phr/MbOA==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] - lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + lightningcss-linux-x64-musl@1.32.0: + resolution: {integrity: sha512-bYcLp+Vb0awsiXg/80uCRezCYHNg1/l3mt0gzHnWV9XP1W5sKa5/TCdGWaR/zBM2PeF/HbsQv/j2URNOiVuxWg==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [linux] - log-symbols@6.0.0: - resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==} - engines: {node: '>=18'} + lightningcss-win32-arm64-msvc@1.32.0: + resolution: {integrity: sha512-8SbC8BR40pS6baCM8sbtYDSwEVQd4JlFTOlaD3gWGHfThTcABnNDBda6eTZeqbofalIJhFx0qKzgHJmcPTnGdw==} + engines: {node: '>= 12.0.0'} + cpu: [arm64] + os: [win32] - longest-streak@3.1.0: - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + lightningcss-win32-x64-msvc@1.32.0: + resolution: {integrity: sha512-Amq9B/SoZYdDi1kFrojnoqPLxYhQ4Wo5XiL8EVJrVsB8ARoC1PWW6VGtT0WKCemjy8aC+louJnjS7U18x3b06Q==} + engines: {node: '>= 12.0.0'} + cpu: [x64] + os: [win32] - lower-case@2.0.2: - resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} + lightningcss@1.32.0: + resolution: {integrity: sha512-NXYBzinNrblfraPGyrbPoD19C1h9lfI/1mzgWYvXUTe414Gz/X1FD2XBZSZM7rRTrMA8JL3OtAaGifrIKhQ5yQ==} + engines: {node: '>= 12.0.0'} - lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} - lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} - lucide-svelte@0.468.0: - resolution: {integrity: sha512-n0ecAFtCY5LEeL+PJ1Xj4n3c2gzj8tMpak0KMGnvoSJEjCsCnRB0mekBtJZAo7beyynW9Qj5Um1KfMBAeTNplw==} - peerDependencies: - svelte: ^3 || ^4 || ^5.0.0-next.42 + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + lru-cache@11.2.7: + resolution: {integrity: sha512-aY/R+aEsRelme17KGQa/1ZSIpLpNYYrhcrepKTZgE+W3WM16YMCaPwOHLHsmopZHELU0Ojin1lPVxKR0MihncA==} + engines: {node: 20 || >=22} - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true magic-string@0.30.12: resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} - magicast@0.3.5: - resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} + magic-string@0.30.21: + resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} + + magicast@0.5.2: + resolution: {integrity: sha512-E3ZJh4J3S9KfwdjZhe2afj6R9lGIN5Pher1pF39UGrXRqq/VDaGVIGN13BjHd2u8B61hArAGOnso7nBOouW3TQ==} markdown-extensions@2.0.0: resolution: {integrity: sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==} @@ -2110,8 +2103,11 @@ packages: mdast-util-to-string@4.0.0: resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} - mdn-data@2.0.30: - resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + + mdn-data@2.27.1: + resolution: {integrity: sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==} merge2@1.4.1: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} @@ -2226,23 +2222,15 @@ packages: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} - mimic-function@5.0.1: - resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} - engines: {node: '>=18'} + minimatch@10.2.4: + resolution: {integrity: sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==} + engines: {node: 18 || 20 || >=22} minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - - minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} - - mrmime@2.0.0: - resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + mrmime@2.0.1: + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} engines: {node: '>=10'} ms@2.1.3: @@ -2251,19 +2239,11 @@ packages: muggle-string@0.4.1: resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} - mz@2.7.0: - resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} - - nanoid@3.3.7: - resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + nanoid@3.3.11: + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true - nanoid@5.0.7: - resolution: {integrity: sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==} - engines: {node: ^18 || >=20} - hasBin: true - natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} @@ -2274,27 +2254,18 @@ packages: nlcst-to-string@4.0.0: resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} - no-case@3.0.4: - resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} + node-fetch-native@1.6.7: + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} - node-releases@2.0.18: - resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} + node-mock-http@1.0.4: + resolution: {integrity: sha512-8DY+kFsDkNXy1sJglUfuODx1/opAGJGyrTuFqEoN90oRc2Vk0ZbD4K2qmKXBBEhZQzdKHIVfEJpDU8Ak2NJEvQ==} normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} - normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} - - object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} - - object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} object-inspect@1.13.2: resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} @@ -2316,59 +2287,47 @@ packages: resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} engines: {node: '>= 0.4'} - onetime@7.0.0: - resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} - engines: {node: '>=18'} + obug@2.1.1: + resolution: {integrity: sha512-uTqF9MuPraAQ+IsnPf366RG4cP9RtUi7MLO1N3KEc+wb0a6yKpeL0lmk2IB1jY5KHPAlTc6T/JRdC/YqxHNwkQ==} - oniguruma-to-js@0.4.3: - resolution: {integrity: sha512-X0jWUcAlxORhOqqBREgPMgnshB7ZGYszBNspP+tS9hPD3l13CdaXcHbgImoHUHlrvGx/7AvFEkTRhAGYh+jzjQ==} + ofetch@1.5.1: + resolution: {integrity: sha512-2W4oUZlVaqAPAil6FUg/difl6YhqhUR7x2eZY4bQCko22UXg3hptq9KLQdqFClV+Wu85UX7hNtdGTngi/1BxcA==} + + ohash@2.0.11: + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} + + oniguruma-parser@0.12.1: + resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} + + oniguruma-to-es@4.3.5: + resolution: {integrity: sha512-Zjygswjpsewa0NLTsiizVuMQZbp0MDyM6lIt66OxsF21npUDlzpHi1Mgb/qhQdkb+dWFTzJmFbEWdvZgRho8eQ==} optionator@0.9.4: resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} engines: {node: '>= 0.8.0'} - ora@8.1.0: - resolution: {integrity: sha512-GQEkNkH/GHOhPFXcqZs3IDahXEQcQxsSjEkK4KvEEST4t7eNzoMjxTzef+EZ+JluDEV+Raoi3WQ2CflnRdSVnQ==} - engines: {node: '>=18'} - - p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} - p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} - p-limit@6.1.0: - resolution: {integrity: sha512-H0jc0q1vOzlEk0TqAKXKZxdl7kX3OFUzCnNVUnq5Pc3DGo0kpeaMuPqxQn235HibwBEb0/pm9dgKTjXy66fBkg==} - engines: {node: '>=18'} - - p-locate@4.1.0: - resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} - engines: {node: '>=8'} + p-limit@7.3.0: + resolution: {integrity: sha512-7cIXg/Z0M5WZRblrsOla88S4wAK+zOQQWeBYfV3qJuJXMr+LnbYjaadrFaS0JILfEDPVqHyKnZ1Z/1d6J9VVUw==} + engines: {node: '>=20'} p-locate@5.0.0: resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} engines: {node: '>=10'} - p-queue@8.0.1: - resolution: {integrity: sha512-NXzu9aQJTAzbBqOt2hwsR63ea7yvxJc0PwN/zobNAudYfb1B7R08SzB4TsLeSbUCuG467NhnoT0oO6w1qRO+BA==} - engines: {node: '>=18'} - - p-timeout@6.1.2: - resolution: {integrity: sha512-UbD77BuZ9Bc9aABo74gfXhNvzC9Tx7SxtHSh1fxvx3jTLLYvmVhiQZZrJzqqU0jKbN32kb5VOKiLEQI/3bIjgQ==} - engines: {node: '>=14.16'} - - p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + p-queue@9.1.0: + resolution: {integrity: sha512-O/ZPaXuQV29uSLbxWBGGZO1mCQXV2BLIwUr59JUU9SoH76mnYvtms7aafH/isNSNGwuEfP6W/4xD0/TJXxrizw==} + engines: {node: '>=20'} - package-json-from-dist@1.0.1: - resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + p-timeout@7.0.1: + resolution: {integrity: sha512-AxTM2wDGORHGEkPCt8yqxOTMgpfbEHqF51f/5fJCmwFC3C/zNcGT63SymH2ttOAaiIws2zVg4+izQCjrakcwHg==} + engines: {node: '>=20'} - parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + package-manager-detector@1.6.0: + resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} @@ -2379,9 +2338,6 @@ packages: parse5@7.1.2: resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} - pascal-case@3.1.2: - resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} - path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -2393,53 +2349,27 @@ packages: resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} engines: {node: '>=8'} - path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - - path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} - - path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} - - periscopic@3.1.0: - resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} - - picocolors@1.1.0: - resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} + piccolore@0.1.3: + resolution: {integrity: sha512-o8bTeDWjE086iwKrROaDf31K0qC/BENdm15/uH9usSC/uZjJOKb2YGiVHfLY4GhwsERiPI1jmwI2XrA7ACOxVw==} picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} - picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} - - pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} - - pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} - - pirates@4.0.6: - resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} - engines: {node: '>= 6'} + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} - pkg-dir@4.2.0: - resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==} - engines: {node: '>=8'} + picomatch@4.0.3: + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} + engines: {node: '>=12'} - playwright-core@1.49.1: - resolution: {integrity: sha512-BzmpVcs4kE2CH15rWfzpjzVGhWERJfmnXmniSyKeRZUs9Ws65m+RGIi7mjJK/euCegfn3i7jvqWeWyHe9y3Vgg==} + playwright-core@1.58.2: + resolution: {integrity: sha512-yZkEtftgwS8CsfYo7nm0KE8jsvm6i/PTgVtB8DL726wNf6H2IMsDuxCpJj59KDaxCtSnrWan2AeDqM7JBaultg==} engines: {node: '>=18'} hasBin: true - playwright@1.49.1: - resolution: {integrity: sha512-VYL8zLoNTBxVOrJBbDuRgDWa3i+mfQgDTrL8Ah9QXZ7ax4Dsj0MSq5bYgytRnDVVe+njoKnfsYkH3HzqVj5UZA==} + playwright@1.58.2: + resolution: {integrity: sha512-vA30H8Nvkq/cPBnNw4Q8TWz1EJyqgpuinBcHET0YVJVFldr8JDNiU9LaWAE1KqSkRYazuaBhTpB5ZzShOezQ6A==} engines: {node: '>=18'} hasBin: true @@ -2447,59 +2377,14 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} - postcss-import@15.1.0: - resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} - engines: {node: '>=14.0.0'} - peerDependencies: - postcss: ^8.0.0 - - postcss-js@4.0.1: - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} - peerDependencies: - postcss: ^8.4.21 - - postcss-load-config@4.0.2: - resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} - engines: {node: '>= 14'} - peerDependencies: - postcss: '>=8.0.9' - ts-node: '>=9.0.0' - peerDependenciesMeta: - postcss: - optional: true - ts-node: - optional: true - - postcss-nested@6.2.0: - resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==} - engines: {node: '>=12.0'} - peerDependencies: - postcss: ^8.2.14 - - postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} - engines: {node: '>=4'} - postcss-selector-parser@7.0.0: resolution: {integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==} engines: {node: '>=4'} - postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - - postcss@8.4.47: - resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==} - engines: {node: ^10 || ^12 || >=14} - - postcss@8.4.49: - resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + postcss@8.5.8: + resolution: {integrity: sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==} engines: {node: ^10 || ^12 || >=14} - preferred-pm@4.0.0: - resolution: {integrity: sha512-gYBeFTZLu055D8Vv3cSPox/0iTPtkzxpLroSYYA7WXgRi31WCJ51Uyl8ZiPeUUjyvs2MBzK+S8v9JVUgHU/Sqw==} - engines: {node: '>=18.12'} - prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -2508,44 +2393,46 @@ packages: resolution: {integrity: sha512-RiBETaaP9veVstE4vUwSIcdATj6dKmXljouXc/DDNwBSPTp8FRkLGDSGFClKsAFeeg+13SB0Z1JZvbD76bigJw==} engines: {node: ^14.15.0 || >=16.0.0} - prettier-plugin-tailwindcss@0.6.9: - resolution: {integrity: sha512-r0i3uhaZAXYP0At5xGfJH876W3HHGHDp+LCRUJrs57PBeQ6mYHMwr25KH8NPX44F2yGTvdnH7OqCshlQx183Eg==} - engines: {node: '>=14.21.3'} + prettier-plugin-tailwindcss@0.7.2: + resolution: {integrity: sha512-LkphyK3Fw+q2HdMOoiEHWf93fNtYJwfamoKPl7UwtjFQdei/iIBoX11G6j706FzN3ymX9mPVi97qIY8328vdnA==} + engines: {node: '>=20.19'} peerDependencies: '@ianvs/prettier-plugin-sort-imports': '*' + '@prettier/plugin-hermes': '*' + '@prettier/plugin-oxc': '*' '@prettier/plugin-pug': '*' '@shopify/prettier-plugin-liquid': '*' '@trivago/prettier-plugin-sort-imports': '*' - '@zackad/prettier-plugin-twig-melody': '*' + '@zackad/prettier-plugin-twig': '*' prettier: ^3.0 prettier-plugin-astro: '*' prettier-plugin-css-order: '*' - prettier-plugin-import-sort: '*' prettier-plugin-jsdoc: '*' prettier-plugin-marko: '*' prettier-plugin-multiline-arrays: '*' prettier-plugin-organize-attributes: '*' prettier-plugin-organize-imports: '*' prettier-plugin-sort-imports: '*' - prettier-plugin-style-order: '*' prettier-plugin-svelte: '*' peerDependenciesMeta: '@ianvs/prettier-plugin-sort-imports': optional: true + '@prettier/plugin-hermes': + optional: true + '@prettier/plugin-oxc': + optional: true '@prettier/plugin-pug': optional: true '@shopify/prettier-plugin-liquid': optional: true '@trivago/prettier-plugin-sort-imports': optional: true - '@zackad/prettier-plugin-twig-melody': + '@zackad/prettier-plugin-twig': optional: true prettier-plugin-astro: optional: true prettier-plugin-css-order: optional: true - prettier-plugin-import-sort: - optional: true prettier-plugin-jsdoc: optional: true prettier-plugin-marko: @@ -2558,32 +2445,24 @@ packages: optional: true prettier-plugin-sort-imports: optional: true - prettier-plugin-style-order: - optional: true prettier-plugin-svelte: optional: true - prettier@2.8.7: - resolution: {integrity: sha512-yPngTo3aXUUmyuTjeTUT75txrf+aMh9FiD7q9ZE/i6r0bPb22g4FsE6Y338PQX1bmfy08i9QQCB7/rcUAVntfw==} - engines: {node: '>=10.13.0'} - hasBin: true - - prettier@3.4.2: - resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} + prettier@3.8.1: + resolution: {integrity: sha512-UOnG6LftzbdaHZcKoPFtOcCKztrQ57WkHDeRD9t/PTQtmT0NHSeWWepj6pS0z/N7+08BHFDQVUrfmfMRcZwbMg==} engines: {node: '>=14'} hasBin: true - prismjs@1.29.0: - resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} + prismjs@1.30.0: + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} engines: {node: '>=6'} - prompts@2.4.2: - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} - engines: {node: '>= 6'} - property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + property-information@7.1.0: + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} + punycode@2.3.1: resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} engines: {node: '>=6'} @@ -2591,17 +2470,17 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} - read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} - - readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + radix3@1.1.2: + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} readdirp@4.0.2: resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==} engines: {node: '>= 14.16.0'} + readdirp@5.0.0: + resolution: {integrity: sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==} + engines: {node: '>= 20.19.0'} + recma-build-jsx@1.0.0: resolution: {integrity: sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==} @@ -2614,8 +2493,14 @@ packages: recma-stringify@1.0.0: resolution: {integrity: sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==} - regex@4.3.2: - resolution: {integrity: sha512-kK/AA3A9K6q2js89+VMymcboLOlF5lZRCYJv3gzszXFHBr6kO6qLGzbm+UIugBEV8SMMKCTR59txoY6ctRHYVw==} + regex-recursion@6.0.2: + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} + + regex-utilities@2.3.0: + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} + + regex@6.1.0: + resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==} regexp.prototype.flags@1.5.2: resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} @@ -2636,8 +2521,8 @@ packages: rehype@13.0.2: resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} - remark-gfm@4.0.0: - resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==} + remark-gfm@4.0.1: + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} remark-mdx@3.1.0: resolution: {integrity: sha512-Ngl/H3YXyBV9RcRNdlYsZujAmhsxwzxpDzpDEhFBVAGthS4GDgnctpDjgFl/ULx5UEDzqtW1cyBSNKqYYrqLBA==} @@ -2645,8 +2530,8 @@ packages: remark-parse@11.0.0: resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} - remark-rehype@11.1.1: - resolution: {integrity: sha512-g/osARvjkBXb6Wo0XvAeXQohVta8i84ACbenPpoSsxTOQH/Ae0/RGP4WZgnMH5pMLpsj4FG7OHmcIcXxpza8eQ==} + remark-rehype@11.1.2: + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} remark-smartypants@3.0.2: resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} @@ -2669,18 +2554,6 @@ packages: resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} engines: {node: '>=0.10.0'} - resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} - - resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} - hasBin: true - - restore-cursor@5.1.0: - resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} - engines: {node: '>=18'} - retext-latin@4.0.0: resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} @@ -2697,14 +2570,23 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rollup@4.22.5: - resolution: {integrity: sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==} + rollup@4.59.0: + resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + runed@0.35.1: + resolution: {integrity: sha512-2F4Q/FZzbeJTFdIS/PuOoPRSm92sA2LhzTnv6FXhCoENb3huf5+fDuNOg1LNvGOouy3u/225qxmuJvcV3IZK5Q==} + peerDependencies: + '@sveltejs/kit': ^2.21.0 + svelte: ^5.7.0 + peerDependenciesMeta: + '@sveltejs/kit': + optional: true + s.color@0.0.15: resolution: {integrity: sha512-AUNrbEUHeKY8XsYr/DYpl+qk5+aM+DChopnWOPEzn8YKzOhv4l2zH6LzZms3tOZP3wwdOyc0RmTciyi46HLIuA==} @@ -2719,16 +2601,15 @@ packages: sass-formatter@0.7.9: resolution: {integrity: sha512-CWZ8XiSim+fJVG0cFLStwDvft1VI7uvXdCNJYXhDvowiv+DsbD1nXLiQ4zrE5UBvj5DWZJ93cwN0NX5PMsr1Pw==} - section-matter@1.0.0: - resolution: {integrity: sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==} - engines: {node: '>=4'} + sax@1.6.0: + resolution: {integrity: sha512-6R3J5M4AcbtLUdZmRv2SygeVaM7IhrLXu9BmnOGmmACak8fiUtOsYNWUS4uK7upbmHIBbLBeFeI//477BKLBzA==} + engines: {node: '>=11.0.0'} - semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} - hasBin: true + scule@1.3.0: + resolution: {integrity: sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==} - semver@7.6.3: - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + semver@7.7.4: + resolution: {integrity: sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==} engines: {node: '>=10'} hasBin: true @@ -2740,8 +2621,8 @@ packages: resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} engines: {node: '>= 0.4'} - sharp@0.33.5: - resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==} + sharp@0.34.5: + resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==} engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} shebang-command@2.0.0: @@ -2752,57 +2633,36 @@ packages: resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} engines: {node: '>=8'} - shiki@1.22.0: - resolution: {integrity: sha512-/t5LlhNs+UOKQCYBtl5ZsH/Vclz73GIqT2yQsCBygr8L/ppTdmpL4w3kPLoZJbMKVWtoG77Ue1feOjZfDxvMkw==} + shiki@4.0.2: + resolution: {integrity: sha512-eAVKTMedR5ckPo4xne/PjYQYrU3qx78gtJZ+sHlXEg5IHhhoQhMfZVzetTYuaJS0L2Ef3AcCRzCHV8T0WI6nIQ==} + engines: {node: '>=20'} side-channel@1.0.6: resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} engines: {node: '>= 0.4'} - signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} - - simple-swizzle@0.2.2: - resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} - sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} - slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + smol-toml@1.6.0: + resolution: {integrity: sha512-4zemZi0HvTnYwLfrpk/CF9LOd9Lt87kAt50GnqhMpyF9U3poDAP2+iukq2bZsO/ufegbYehBkqINbsWxj4l4cw==} + engines: {node: '>= 18'} source-map-js@1.2.1: resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} engines: {node: '>=0.10.0'} - source-map@0.7.4: - resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} - engines: {node: '>= 8'} + source-map@0.7.6: + resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==} + engines: {node: '>= 12'} space-separated-tokens@2.0.2: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} - sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - - stdin-discarder@0.2.2: - resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==} - engines: {node: '>=18'} - string-width@4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} - string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} - - string-width@7.2.0: - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} - engines: {node: '>=18'} - string.prototype.includes@2.0.1: resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} engines: {node: '>= 0.4'} @@ -2825,63 +2685,35 @@ packages: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} - strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} - - strip-bom-string@1.0.0: - resolution: {integrity: sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==} - engines: {node: '>=0.10.0'} - - strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} - - strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} - style-to-object@0.4.4: resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} style-to-object@1.0.8: resolution: {integrity: sha512-xT47I/Eo0rwJmaXC4oilDGDWLohVhR6o/xAQcPQN8q6QBuZVL8qMYL85kLmST5cPjAorwvqIA4qXTRQoYHaL6g==} - sucrase@3.35.0: - resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} - engines: {node: '>=16 || 14 >=14.17'} - hasBin: true - suf-log@2.5.3: resolution: {integrity: sha512-KvC8OPjzdNOe+xQ4XWJV2whQA0aM1kGVczMQ8+dStAO6KfEB140JEVQ9dE76ONZ0/Ylf67ni4tILPJB41U0eow==} - supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} - - supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} - - supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} - - svelte-hmr@0.16.0: - resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==} - engines: {node: ^12.20 || ^14.13.1 || >= 16} + svelte-toolbelt@0.10.6: + resolution: {integrity: sha512-YWuX+RE+CnWYx09yseAe4ZVMM7e7GRFZM6OYWpBKOb++s+SQ8RBIMMe+Bs/CznBMc0QPLjr+vDBxTAkozXsFXQ==} + engines: {node: '>=18', pnpm: '>=8.7.0'} peerDependencies: - svelte: ^3.19.0 || ^4.0.0 + svelte: ^5.30.2 - svelte2tsx@0.7.21: - resolution: {integrity: sha512-cdYR5gYBK0Ys3/jzGu9yfW9oxGLtLAnxcKtS7oJy2pjLhLLYSZcWeeeuaY9SMULwlqMZ1HfngGH3n5VdquRC3Q==} + svelte2tsx@0.7.52: + resolution: {integrity: sha512-svdT1FTrCLpvlU62evO5YdJt/kQ7nxgQxII/9BpQUvKr+GJRVdAXNVw8UWOt0fhoe5uWKyU0WsUTMRVAtRbMQg==} peerDependencies: svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 typescript: ^4.9.4 || ^5.0.0 - svelte@4.2.19: - resolution: {integrity: sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==} + svelte@5.54.0: + resolution: {integrity: sha512-TTDxwYnHkova6Wsyj1PGt9TByuWqvMoeY1bQiuAf2DM/JeDSMw7FjRKzk8K/5mJ99vGOKhbCqTDpyAKwjp4igg==} + engines: {node: '>=18'} + + svgo@4.0.1: + resolution: {integrity: sha512-XDpWUOPC6FEibaLzjfe0ucaV0YrOjYotGJO1WpF0Zd+n6ZGEQUsSugaoLq9QkEZtAfQIxT42UChcssDVPP3+/w==} engines: {node: '>=16'} + hasBin: true synckit@0.9.1: resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==} @@ -2890,33 +2722,40 @@ packages: tabbable@6.2.0: resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} - tailwind-merge@2.5.5: - resolution: {integrity: sha512-0LXunzzAZzo0tEPxV3I297ffKZPlKDrjj7NXphC8V5ak9yHC5zRmxnOe2m/Rd/7ivsOMJe3JZ2JVocoDdQTRBA==} + tailwind-merge@3.5.0: + resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==} - tailwind-variants@0.3.0: - resolution: {integrity: sha512-ho2k5kn+LB1fT5XdNS3Clb96zieWxbStE9wNLK7D0AV64kdZMaYzAKo0fWl6fXLPY99ffF9oBJnIj5escEl/8A==} + tailwind-variants@3.2.2: + resolution: {integrity: sha512-Mi4kHeMTLvKlM98XPnK+7HoBPmf4gygdFmqQPaDivc3DpYS6aIY6KiG/PgThrGvii5YZJqRsPz0aPyhoFzmZgg==} engines: {node: '>=16.x', pnpm: '>=7.x'} peerDependencies: + tailwind-merge: '>=3.0.0' tailwindcss: '*' + peerDependenciesMeta: + tailwind-merge: + optional: true - tailwindcss@3.4.17: - resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} - engines: {node: '>=14.0.0'} - hasBin: true + tailwindcss@4.2.2: + resolution: {integrity: sha512-KWBIxs1Xb6NoLdMVqhbhgwZf2PGBpPEiwOqgI4pFIYbNTfBXiKYyWoTsXgBQ9WFg/OlhnvHaY+AEpW7wSmFo2Q==} - thenify-all@1.6.0: - resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} - engines: {node: '>=0.8'} + tapable@2.3.0: + resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==} + engines: {node: '>=6'} - thenify@3.3.1: - resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + tiny-inflate@1.0.3: + resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} - tinyexec@0.3.1: - resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + tinyclip@0.1.12: + resolution: {integrity: sha512-Ae3OVUqifDw0wBriIBS7yVaW44Dp6eSHQcyq4Igc7eN2TJH/2YsicswaW+J/OuMvhpDPOKEgpAZCjkb4hpoyeA==} + engines: {node: ^16.14.0 || >= 17.3.0} - to-fast-properties@2.0.0: - resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} - engines: {node: '>=4'} + tinyexec@1.0.4: + resolution: {integrity: sha512-u9r3uZC0bdpGOXtlxUIdwf9pkmvhqJdrVCH9fapQtgy/OeTTMZ1nqH7agtvEfmGui6e1XxjcdrlxvxJvc3sMqw==} + engines: {node: '>=18'} + + tinyglobby@0.2.15: + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} + engines: {node: '>=12.0.0'} to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} @@ -2928,17 +2767,14 @@ packages: trough@2.2.0: resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} - ts-api-utils@1.3.0: - resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==} - engines: {node: '>=16'} + ts-api-utils@2.5.0: + resolution: {integrity: sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==} + engines: {node: '>=18.12'} peerDependencies: - typescript: '>=4.2.0' + typescript: '>=4.8.4' - ts-interface-checker@0.1.13: - resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} - - tsconfck@3.1.4: - resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} + tsconfck@3.1.6: + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} engines: {node: ^18 || >=20} hasBin: true peerDependencies: @@ -2954,10 +2790,6 @@ packages: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} engines: {node: '>= 0.8.0'} - type-fest@4.26.1: - resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} - engines: {node: '>=16'} - typed-array-buffer@1.0.2: resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} engines: {node: '>= 0.4'} @@ -2977,26 +2809,35 @@ packages: typesafe-path@0.2.2: resolution: {integrity: sha512-OJabfkAg1WLZSqJAJ0Z6Sdt3utnbzr/jh+NAHoyWHJe8CMSy79Gm085094M9nvTPy22KzTVn5Zq5mbapCI/hPA==} - typescript-auto-import-cache@0.3.3: - resolution: {integrity: sha512-ojEC7+Ci1ij9eE6hp8Jl9VUNnsEKzztktP5gtYNRMrTmfXVwA1PITYYAkpxCvvupdSYa/Re51B6KMcv1CTZEUA==} + typescript-auto-import-cache@0.3.6: + resolution: {integrity: sha512-RpuHXrknHdVdK7wv/8ug3Fr0WNsNi5l5aB8MYYuXhq2UH5lnEB1htJ1smhtD5VeCsGr2p8mUDtd83LCQDFVgjQ==} - typescript@5.6.2: - resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} + typescript@5.9.3: + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} engines: {node: '>=14.17'} hasBin: true + ufo@1.6.3: + resolution: {integrity: sha512-yDJTmhydvl5lJzBmy/hyOAA0d+aqCBuwl818haVdYCRrWV84o7YyeVm4QlVHStqNrrJSTb6jKuFAVqAFsr+K3Q==} + + ultrahtml@1.6.0: + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} + unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} - undici-types@5.26.5: - resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + uncrypto@0.1.3: + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} - undici-types@6.20.0: - resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + undici-types@7.18.2: + resolution: {integrity: sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==} unified@11.0.5: resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} + unifont@0.7.4: + resolution: {integrity: sha512-oHeis4/xl42HUIeHuNZRGEvxj5AaIKR+bHPNegRq5LV1gdc3jundpONbjglKpihmJf+dswygdMJn3eftGIMemg==} + unist-util-find-after@5.0.0: resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} @@ -3021,17 +2862,73 @@ packages: unist-util-visit-children@3.0.0: resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} - unist-util-visit-parents@6.0.1: - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + unist-util-visit-parents@6.0.2: + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} - unist-util-visit@5.0.0: - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + unist-util-visit@5.1.0: + resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==} - update-browserslist-db@1.1.1: - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} - hasBin: true + unstorage@1.17.4: + resolution: {integrity: sha512-fHK0yNg38tBiJKp/Vgsq4j0JEsCmgqH58HAn707S7zGkArbZsVr/CwINoi+nh3h98BRCwKvx1K3Xg9u3VV83sw==} peerDependencies: - browserslist: '>= 4.21.0' + '@azure/app-configuration': ^1.8.0 + '@azure/cosmos': ^4.2.0 + '@azure/data-tables': ^13.3.0 + '@azure/identity': ^4.6.0 + '@azure/keyvault-secrets': ^4.9.0 + '@azure/storage-blob': ^12.26.0 + '@capacitor/preferences': ^6 || ^7 || ^8 + '@deno/kv': '>=0.9.0' + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 + '@planetscale/database': ^1.19.0 + '@upstash/redis': ^1.34.3 + '@vercel/blob': '>=0.27.1' + '@vercel/functions': ^2.2.12 || ^3.0.0 + '@vercel/kv': ^1 || ^2 || ^3 + aws4fetch: ^1.0.20 + db0: '>=0.2.1' + idb-keyval: ^6.2.1 + ioredis: ^5.4.2 + uploadthing: ^7.4.4 + peerDependenciesMeta: + '@azure/app-configuration': + optional: true + '@azure/cosmos': + optional: true + '@azure/data-tables': + optional: true + '@azure/identity': + optional: true + '@azure/keyvault-secrets': + optional: true + '@azure/storage-blob': + optional: true + '@capacitor/preferences': + optional: true + '@deno/kv': + optional: true + '@netlify/blobs': + optional: true + '@planetscale/database': + optional: true + '@upstash/redis': + optional: true + '@vercel/blob': + optional: true + '@vercel/functions': + optional: true + '@vercel/kv': + optional: true + aws4fetch: + optional: true + db0: + optional: true + idb-keyval: + optional: true + ioredis: + optional: true + uploadthing: + optional: true uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -3048,22 +2945,27 @@ packages: vfile@6.0.3: resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} - vite@5.4.9: - resolution: {integrity: sha512-20OVpJHh0PAM0oSOELa5GaZNWeDjcAvQjGXy2Uyr+Tp+/D2/Hdz6NLgpJLsarPTA2QJ6v8mX2P1ZfbsSKvdMkg==} - engines: {node: ^18.0.0 || >=20.0.0} + vite@7.3.1: + resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==} + engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: - '@types/node': ^18.0.0 || >=20.0.0 - less: '*' + '@types/node': ^20.19.0 || >=22.12.0 + jiti: '>=1.21.0' + less: ^4.0.0 lightningcss: ^1.21.0 - sass: '*' - sass-embedded: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: '>=0.54.8' + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 peerDependenciesMeta: '@types/node': optional: true + jiti: + optional: true less: optional: true lightningcss: @@ -3078,49 +2980,45 @@ packages: optional: true terser: optional: true - - vitefu@0.2.5: - resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} - peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 - peerDependenciesMeta: - vite: + tsx: + optional: true + yaml: optional: true - vitefu@1.0.3: - resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==} + vitefu@1.1.2: + resolution: {integrity: sha512-zpKATdUbzbsycPFBN71nS2uzBUQiVnFoOrr2rvqv34S1lcAgMKKkjWleLGeiJlZ8lwCXvtWaRn7R3ZC16SYRuw==} peerDependencies: - vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-beta.0 peerDependenciesMeta: vite: optional: true - volar-service-css@0.0.61: - resolution: {integrity: sha512-Ct9L/w+IB1JU8F4jofcNCGoHy6TF83aiapfZq9A0qYYpq+Kk5dH+ONS+rVZSsuhsunq8UvAuF8Gk6B8IFLfniw==} + volar-service-css@0.0.70: + resolution: {integrity: sha512-K1qyOvBpE3rzdAv3e4/6Rv5yizrYPy5R/ne3IWCAzLBuMO4qBMV3kSqWzj6KUVe6S0AnN6wxF7cRkiaKfYMYJw==} peerDependencies: '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-emmet@0.0.61: - resolution: {integrity: sha512-iiYqBxjjcekqrRruw4COQHZME6EZYWVbkHjHDbULpml3g8HGJHzpAMkj9tXNCPxf36A+f1oUYjsvZt36qPg4cg==} + volar-service-emmet@0.0.70: + resolution: {integrity: sha512-xi5bC4m/VyE3zy/n2CXspKeDZs3qA41tHLTw275/7dNWM/RqE2z3BnDICQybHIVp/6G1iOQj5c1qXMgQC08TNg==} peerDependencies: '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-html@0.0.61: - resolution: {integrity: sha512-yFE+YmmgqIL5HI4ORqP++IYb1QaGcv+xBboI0WkCxJJ/M35HZj7f5rbT3eQ24ECLXFbFCFanckwyWJVz5KmN3Q==} + volar-service-html@0.0.70: + resolution: {integrity: sha512-eR6vCgMdmYAo4n+gcT7DSyBQbwB8S3HZZvSagTf0sxNaD4WppMCFfpqWnkrlGStPKMZvMiejRRVmqsX9dYcTvQ==} peerDependencies: '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-prettier@0.0.61: - resolution: {integrity: sha512-F612nql5I0IS8HxXemCGvOR2Uxd4XooIwqYVUvk7WSBxP/+xu1jYvE3QJ7EVpl8Ty3S4SxPXYiYTsG3bi+gzIQ==} + volar-service-prettier@0.0.70: + resolution: {integrity: sha512-Z6BCFSpGVCd8BPAsZ785Kce1BGlWd5ODqmqZGVuB14MJvrR4+CYz6cDy4F+igmE1gMifqfvMhdgT8Aud4M5ngg==} peerDependencies: '@volar/language-service': ~2.4.0 prettier: ^2.2 || ^3.0 @@ -3130,24 +3028,24 @@ packages: prettier: optional: true - volar-service-typescript-twoslash-queries@0.0.61: - resolution: {integrity: sha512-99FICGrEF0r1E2tV+SvprHPw9Knyg7BdW2fUch0tf59kG+KG+Tj4tL6tUg+cy8f23O/VXlmsWFMIE+bx1dXPnQ==} + volar-service-typescript-twoslash-queries@0.0.70: + resolution: {integrity: sha512-IdD13Z9N2Bu8EM6CM0fDV1E69olEYGHDU25X51YXmq8Y0CmJ2LNj6gOiBJgpS5JGUqFzECVhMNBW7R0sPdRTMQ==} peerDependencies: '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-typescript@0.0.61: - resolution: {integrity: sha512-4kRHxVbW7wFBHZWRU6yWxTgiKETBDIJNwmJUAWeP0mHaKpnDGj/astdRFKqGFRYVeEYl45lcUPhdJyrzanjsdQ==} + volar-service-typescript@0.0.70: + resolution: {integrity: sha512-l46Bx4cokkUedTd74ojO5H/zqHZJ8SUuyZ0IB8JN4jfRqUM3bQFBHoOwlZCyZmOeO0A3RQNkMnFclxO4c++gsg==} peerDependencies: '@volar/language-service': ~2.4.0 peerDependenciesMeta: '@volar/language-service': optional: true - volar-service-yaml@0.0.61: - resolution: {integrity: sha512-L+gbDiLDQQ1rZUbJ3mf3doDsoQUa8OZM/xdpk/unMg1Vz24Zmi2Ign8GrZyBD7bRoIQDwOH9gdktGDKzRPpUNw==} + volar-service-yaml@0.0.70: + resolution: {integrity: sha512-0c8bXDBeoATF9F6iPIlOuYTuZAC4c+yi0siQo920u7eiBJk8oQmUmg9cDUbR4+Gl++bvGP4plj3fErbJuPqdcQ==} peerDependencies: '@volar/language-service': ~2.4.0 peerDependenciesMeta: @@ -3157,40 +3055,26 @@ packages: vscode-css-languageservice@6.3.1: resolution: {integrity: sha512-1BzTBuJfwMc3A0uX4JBdJgoxp74cjj4q2mDJdp49yD/GuAq4X0k5WtK6fNcMYr+FfJ9nqgR6lpfCSZDkARJ5qQ==} - vscode-html-languageservice@5.3.1: - resolution: {integrity: sha512-ysUh4hFeW/WOWz/TO9gm08xigiSsV/FOAZ+DolgJfeLftna54YdmZ4A+lIn46RbdO3/Qv5QHTn1ZGqmrXQhZyA==} + vscode-html-languageservice@5.6.2: + resolution: {integrity: sha512-ulCrSnFnfQ16YzvwnYUgEbUEl/ZG7u2eV27YhvLObSHKkb8fw1Z9cgsnUwjTEeDIdJDoTDTDpxuhQwoenoLNMg==} vscode-json-languageservice@4.1.8: resolution: {integrity: sha512-0vSpg6Xd9hfV+eZAaYN63xVVMOTmJ4GgHxXnkLCh+9RsQBkWKIghzLhW2B9ebfG+LQQg8uLtsQ2aUKjTgE+QOg==} engines: {npm: '>=7.0.0'} - vscode-jsonrpc@6.0.0: - resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==} - engines: {node: '>=8.0.0 || >=10.0.0'} - vscode-jsonrpc@8.2.0: resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} engines: {node: '>=14.0.0'} - vscode-languageserver-protocol@3.16.0: - resolution: {integrity: sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==} - vscode-languageserver-protocol@3.17.5: resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} vscode-languageserver-textdocument@1.0.12: resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} - vscode-languageserver-types@3.16.0: - resolution: {integrity: sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==} - vscode-languageserver-types@3.17.5: resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} - vscode-languageserver@7.0.0: - resolution: {integrity: sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==} - hasBin: true - vscode-languageserver@9.0.1: resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} hasBin: true @@ -3201,8 +3085,8 @@ packages: vscode-uri@2.1.2: resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==} - vscode-uri@3.0.8: - resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + vscode-uri@3.1.0: + resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==} web-namespaces@2.0.1: resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} @@ -3214,10 +3098,6 @@ packages: resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} engines: {node: '>=4'} - which-pm@3.0.0: - resolution: {integrity: sha512-ysVYmw6+ZBhx3+ZkcPwRuJi38ZOTLJJ33PSHaitLxSKUMsh0LkKd0nC69zZCwt5D+AYUcMK2hhw4yWny20vSGg==} - engines: {node: '>=18.12'} - which-typed-array@1.1.15: resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} engines: {node: '>= 0.4'} @@ -3227,10 +3107,6 @@ packages: engines: {node: '>= 8'} hasBin: true - widest-line@5.0.0: - resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} - engines: {node: '>=18'} - word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} @@ -3239,41 +3115,35 @@ packages: resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} engines: {node: '>=10'} - wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} - - wrap-ansi@9.0.0: - resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} - engines: {node: '>=18'} - - xxhash-wasm@1.0.2: - resolution: {integrity: sha512-ibF0Or+FivM9lNrg+HGJfVX8WJqgo+kCLDc4vx6xMeTce7Aj+DLttKbxxRR/gNLSAelRc1omAPlJ77N/Jem07A==} + xxhash-wasm@1.1.0: + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} - yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} - - yaml-language-server@1.15.0: - resolution: {integrity: sha512-N47AqBDCMQmh6mBLmI6oqxryHRzi33aPFPsJhYy3VTUGCdLHYjGh4FZzpUjRlphaADBBkDmnkM/++KNIOHi5Rw==} + yaml-language-server@1.20.0: + resolution: {integrity: sha512-qhjK/bzSRZ6HtTvgeFvjNPJGWdZ0+x5NREV/9XZWFjIGezew2b4r5JPy66IfOhd5OA7KeFwk1JfmEbnTvev0cA==} hasBin: true - yaml@2.2.2: - resolution: {integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==} + yaml@2.7.1: + resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} engines: {node: '>= 14'} + hasBin: true - yaml@2.5.1: - resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==} - engines: {node: '>= 14'} + yaml@2.8.2: + resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==} + engines: {node: '>= 14.6'} hasBin: true yargs-parser@21.1.1: resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} engines: {node: '>=12'} + yargs-parser@22.0.0: + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} + engines: {node: ^20.19.0 || ^22.12.0 || >=23} + yargs@17.7.2: resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} engines: {node: '>=12'} @@ -3282,42 +3152,27 @@ packages: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} - yocto-queue@1.1.1: - resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + yocto-queue@1.2.2: + resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==} engines: {node: '>=12.20'} - zod-to-json-schema@3.23.3: - resolution: {integrity: sha512-TYWChTxKQbRJp5ST22o/Irt9KC5nj7CdBKYB/AosCRdj/wxEMvv4NNaj9XVUHDOIp53ZxArGhnw5HMZziPFjog==} - peerDependencies: - zod: ^3.23.3 - - zod-to-ts@1.2.0: - resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} - peerDependencies: - typescript: ^4.9.4 || ^5.0.2 - zod: ^3 + zimmerframe@1.1.4: + resolution: {integrity: sha512-B58NGBEoc8Y9MWWCQGl/gq9xBCe4IiKM0a2x7GZdQKOW5Exr8S1W24J6OgM1njK8xCRGvAJIL/MxXHf6SkmQKQ==} - zod@3.23.8: - resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + zod@4.3.6: + resolution: {integrity: sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==} zwitch@2.0.4: resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} snapshots: - '@alloc/quick-lru@5.2.0': {} - - '@ampproject/remapping@2.3.0': - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - - '@astrojs/check@0.9.4(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.6.2)': + '@astrojs/check@0.9.8(prettier-plugin-astro@0.14.1)(prettier@3.8.1)(typescript@5.9.3)': dependencies: - '@astrojs/language-server': 2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.6.2) - chokidar: 4.0.1 + '@astrojs/language-server': 2.16.6(prettier-plugin-astro@0.14.1)(prettier@3.8.1)(typescript@5.9.3) + chokidar: 4.0.3 kleur: 4.1.5 - typescript: 5.6.2 + typescript: 5.9.3 yargs: 17.7.2 transitivePeerDependencies: - prettier @@ -3325,106 +3180,113 @@ snapshots: '@astrojs/compiler@2.10.3': {} - '@astrojs/internal-helpers@0.4.1': {} + '@astrojs/compiler@2.13.1': {} + + '@astrojs/compiler@3.0.1': {} - '@astrojs/language-server@2.15.0(prettier-plugin-astro@0.14.1)(prettier@3.4.2)(typescript@5.6.2)': + '@astrojs/internal-helpers@0.8.0': dependencies: - '@astrojs/compiler': 2.10.3 - '@astrojs/yaml2ts': 0.2.1 - '@jridgewell/sourcemap-codec': 1.5.0 - '@volar/kit': 2.4.5(typescript@5.6.2) - '@volar/language-core': 2.4.5 - '@volar/language-server': 2.4.5 - '@volar/language-service': 2.4.5 - fast-glob: 3.3.2 + picomatch: 4.0.3 + + '@astrojs/language-server@2.16.6(prettier-plugin-astro@0.14.1)(prettier@3.8.1)(typescript@5.9.3)': + dependencies: + '@astrojs/compiler': 2.13.1 + '@astrojs/yaml2ts': 0.2.3 + '@jridgewell/sourcemap-codec': 1.5.5 + '@volar/kit': 2.4.28(typescript@5.9.3) + '@volar/language-core': 2.4.28 + '@volar/language-server': 2.4.28 + '@volar/language-service': 2.4.28 muggle-string: 0.4.1 - volar-service-css: 0.0.61(@volar/language-service@2.4.5) - volar-service-emmet: 0.0.61(@volar/language-service@2.4.5) - volar-service-html: 0.0.61(@volar/language-service@2.4.5) - volar-service-prettier: 0.0.61(@volar/language-service@2.4.5)(prettier@3.4.2) - volar-service-typescript: 0.0.61(@volar/language-service@2.4.5) - volar-service-typescript-twoslash-queries: 0.0.61(@volar/language-service@2.4.5) - volar-service-yaml: 0.0.61(@volar/language-service@2.4.5) - vscode-html-languageservice: 5.3.1 - vscode-uri: 3.0.8 + tinyglobby: 0.2.15 + volar-service-css: 0.0.70(@volar/language-service@2.4.28) + volar-service-emmet: 0.0.70(@volar/language-service@2.4.28) + volar-service-html: 0.0.70(@volar/language-service@2.4.28) + volar-service-prettier: 0.0.70(@volar/language-service@2.4.28)(prettier@3.8.1) + volar-service-typescript: 0.0.70(@volar/language-service@2.4.28) + volar-service-typescript-twoslash-queries: 0.0.70(@volar/language-service@2.4.28) + volar-service-yaml: 0.0.70(@volar/language-service@2.4.28) + vscode-html-languageservice: 5.6.2 + vscode-uri: 3.1.0 optionalDependencies: - prettier: 3.4.2 + prettier: 3.8.1 prettier-plugin-astro: 0.14.1 transitivePeerDependencies: - typescript - '@astrojs/markdown-remark@5.3.0': + '@astrojs/markdown-remark@7.0.1': dependencies: - '@astrojs/prism': 3.1.0 + '@astrojs/internal-helpers': 0.8.0 + '@astrojs/prism': 4.0.1 github-slugger: 2.0.0 hast-util-from-html: 2.0.3 hast-util-to-text: 4.0.2 - import-meta-resolve: 4.1.0 + js-yaml: 4.1.1 mdast-util-definitions: 6.0.0 rehype-raw: 7.0.0 rehype-stringify: 10.0.1 - remark-gfm: 4.0.0 + remark-gfm: 4.0.1 remark-parse: 11.0.0 - remark-rehype: 11.1.1 + remark-rehype: 11.1.2 remark-smartypants: 3.0.2 - shiki: 1.22.0 + shiki: 4.0.2 + smol-toml: 1.6.0 unified: 11.0.5 unist-util-remove-position: 5.0.0 - unist-util-visit: 5.0.0 - unist-util-visit-parents: 6.0.1 + unist-util-visit: 5.1.0 + unist-util-visit-parents: 6.0.2 vfile: 6.0.3 transitivePeerDependencies: - supports-color - '@astrojs/mdx@3.1.8(astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2))': + '@astrojs/mdx@5.0.2(astro@6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2))': dependencies: - '@astrojs/markdown-remark': 5.3.0 - '@mdx-js/mdx': 3.1.0(acorn@8.12.1) - acorn: 8.12.1 - astro: 4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2) - es-module-lexer: 1.5.4 + '@astrojs/markdown-remark': 7.0.1 + '@mdx-js/mdx': 3.1.1 + acorn: 8.16.0 + astro: 6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2) + es-module-lexer: 2.0.0 estree-util-visit: 2.0.0 - gray-matter: 4.0.3 - hast-util-to-html: 9.0.3 - kleur: 4.1.5 + hast-util-to-html: 9.0.5 + piccolore: 0.1.3 rehype-raw: 7.0.0 - remark-gfm: 4.0.0 + remark-gfm: 4.0.1 remark-smartypants: 3.0.2 - source-map: 0.7.4 - unist-util-visit: 5.0.0 + source-map: 0.7.6 + unist-util-visit: 5.1.0 vfile: 6.0.3 transitivePeerDependencies: - supports-color - '@astrojs/prism@3.1.0': - dependencies: - prismjs: 1.29.0 - - '@astrojs/svelte@5.7.2(astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2))(svelte@4.2.19)(typescript@5.6.2)(vite@5.4.9(@types/node@22.10.2))': + '@astrojs/prism@4.0.1': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2)) - astro: 4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2) - svelte: 4.2.19 - svelte2tsx: 0.7.21(svelte@4.2.19)(typescript@5.6.2) - typescript: 5.6.2 - transitivePeerDependencies: - - supports-color - - vite + prismjs: 1.30.0 - '@astrojs/tailwind@5.1.3(astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2))(tailwindcss@3.4.17)': + '@astrojs/svelte@8.0.3(@types/node@25.5.0)(astro@6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2))(jiti@2.6.1)(lightningcss@1.32.0)(svelte@5.54.0)(typescript@5.9.3)(yaml@2.8.2)': dependencies: - astro: 4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2) - autoprefixer: 10.4.20(postcss@8.4.49) - postcss: 8.4.49 - postcss-load-config: 4.0.2(postcss@8.4.49) - tailwindcss: 3.4.17 + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)) + astro: 6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2) + svelte: 5.54.0 + svelte2tsx: 0.7.52(svelte@5.54.0)(typescript@5.9.3) + typescript: 5.9.3 + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2) transitivePeerDependencies: - - ts-node + - '@types/node' + - jiti + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - terser + - tsx + - yaml - '@astrojs/telemetry@3.1.0': + '@astrojs/telemetry@3.3.0': dependencies: - ci-info: 4.0.0 - debug: 4.3.7 + ci-info: 4.4.0 + debug: 4.4.3 dlv: 1.1.3 dset: 3.1.4 is-docker: 3.0.0 @@ -3433,188 +3295,67 @@ snapshots: transitivePeerDependencies: - supports-color - '@astrojs/yaml2ts@0.2.1': - dependencies: - yaml: 2.5.1 - - '@babel/code-frame@7.25.7': + '@astrojs/yaml2ts@0.2.3': dependencies: - '@babel/highlight': 7.25.7 - picocolors: 1.1.0 + yaml: 2.8.2 '@babel/code-frame@7.26.2': dependencies: - '@babel/helper-validator-identifier': 7.25.9 + '@babel/helper-validator-identifier': 7.28.5 js-tokens: 4.0.0 - picocolors: 1.1.0 - - '@babel/compat-data@7.25.8': {} - - '@babel/core@7.25.8': - dependencies: - '@ampproject/remapping': 2.3.0 - '@babel/code-frame': 7.25.7 - '@babel/generator': 7.25.7 - '@babel/helper-compilation-targets': 7.25.7 - '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8) - '@babel/helpers': 7.25.7 - '@babel/parser': 7.25.8 - '@babel/template': 7.25.7 - '@babel/traverse': 7.25.7 - '@babel/types': 7.25.8 - convert-source-map: 2.0.0 - debug: 4.3.7 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - - '@babel/generator@7.25.7': - dependencies: - '@babel/types': 7.25.8 - '@jridgewell/gen-mapping': 0.3.5 - '@jridgewell/trace-mapping': 0.3.25 - jsesc: 3.0.2 + picocolors: 1.1.1 '@babel/generator@7.26.3': dependencies: - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 + '@babel/parser': 7.29.2 + '@babel/types': 7.29.0 '@jridgewell/gen-mapping': 0.3.5 '@jridgewell/trace-mapping': 0.3.25 jsesc: 3.0.2 - '@babel/helper-annotate-as-pure@7.25.7': - dependencies: - '@babel/types': 7.25.8 - - '@babel/helper-compilation-targets@7.25.7': - dependencies: - '@babel/compat-data': 7.25.8 - '@babel/helper-validator-option': 7.25.7 - browserslist: 4.24.0 - lru-cache: 5.1.1 - semver: 6.3.1 - - '@babel/helper-module-imports@7.25.7': - dependencies: - '@babel/traverse': 7.25.7 - '@babel/types': 7.25.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)': - dependencies: - '@babel/core': 7.25.8 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-simple-access': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - '@babel/traverse': 7.25.7 - transitivePeerDependencies: - - supports-color - - '@babel/helper-plugin-utils@7.25.7': {} - - '@babel/helper-simple-access@7.25.7': - dependencies: - '@babel/traverse': 7.25.7 - '@babel/types': 7.25.8 - transitivePeerDependencies: - - supports-color - - '@babel/helper-string-parser@7.25.7': {} - - '@babel/helper-string-parser@7.25.9': {} - - '@babel/helper-validator-identifier@7.25.7': {} - - '@babel/helper-validator-identifier@7.25.9': {} - - '@babel/helper-validator-option@7.25.7': {} - - '@babel/helpers@7.25.7': - dependencies: - '@babel/template': 7.25.7 - '@babel/types': 7.25.8 - - '@babel/highlight@7.25.7': - dependencies: - '@babel/helper-validator-identifier': 7.25.7 - chalk: 2.4.2 - js-tokens: 4.0.0 - picocolors: 1.1.0 - - '@babel/parser@7.25.8': - dependencies: - '@babel/types': 7.25.8 - - '@babel/parser@7.26.3': - dependencies: - '@babel/types': 7.26.3 - - '@babel/plugin-syntax-jsx@7.25.7(@babel/core@7.25.8)': - dependencies: - '@babel/core': 7.25.8 - '@babel/helper-plugin-utils': 7.25.7 + '@babel/helper-string-parser@7.27.1': {} - '@babel/plugin-transform-react-jsx@7.25.7(@babel/core@7.25.8)': - dependencies: - '@babel/core': 7.25.8 - '@babel/helper-annotate-as-pure': 7.25.7 - '@babel/helper-module-imports': 7.25.7 - '@babel/helper-plugin-utils': 7.25.7 - '@babel/plugin-syntax-jsx': 7.25.7(@babel/core@7.25.8) - '@babel/types': 7.25.8 - transitivePeerDependencies: - - supports-color + '@babel/helper-validator-identifier@7.28.5': {} - '@babel/template@7.25.7': + '@babel/parser@7.29.2': dependencies: - '@babel/code-frame': 7.25.7 - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 + '@babel/types': 7.29.0 '@babel/template@7.25.9': dependencies: '@babel/code-frame': 7.26.2 - '@babel/parser': 7.26.3 - '@babel/types': 7.26.3 - - '@babel/traverse@7.25.7': - dependencies: - '@babel/code-frame': 7.25.7 - '@babel/generator': 7.25.7 - '@babel/parser': 7.25.8 - '@babel/template': 7.25.7 - '@babel/types': 7.25.8 - debug: 4.3.7 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + '@babel/parser': 7.29.2 + '@babel/types': 7.29.0 '@babel/traverse@7.26.4': dependencies: '@babel/code-frame': 7.26.2 '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 + '@babel/parser': 7.29.2 '@babel/template': 7.25.9 - '@babel/types': 7.26.3 - debug: 4.3.7 + '@babel/types': 7.29.0 + debug: 4.4.3 globals: 11.12.0 transitivePeerDependencies: - supports-color - '@babel/types@7.25.8': + '@babel/types@7.29.0': + dependencies: + '@babel/helper-string-parser': 7.27.1 + '@babel/helper-validator-identifier': 7.28.5 + + '@capsizecss/unpack@4.0.0': + dependencies: + fontkitten: 1.0.3 + + '@clack/core@1.1.0': dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 - to-fast-properties: 2.0.0 + sisteransi: 1.0.5 - '@babel/types@7.26.3': + '@clack/prompts@1.1.0': dependencies: - '@babel/helper-string-parser': 7.25.9 - '@babel/helper-validator-identifier': 7.25.9 + '@clack/core': 1.1.0 + sisteransi: 1.0.5 '@emmetio/abbreviation@2.3.3': dependencies: @@ -3624,7 +3365,7 @@ snapshots: dependencies: '@emmetio/scanner': 1.0.4 - '@emmetio/css-parser@0.4.0': + '@emmetio/css-parser@0.4.1': dependencies: '@emmetio/stream-reader': 2.2.0 '@emmetio/stream-reader-utils': 0.1.0 @@ -3639,131 +3380,134 @@ snapshots: '@emmetio/stream-reader@2.2.0': {} - '@emnapi/runtime@1.2.0': + '@emnapi/runtime@1.9.1': dependencies: tslib: 2.7.0 optional: true - '@esbuild/aix-ppc64@0.21.5': + '@esbuild/aix-ppc64@0.27.4': + optional: true + + '@esbuild/android-arm64@0.27.4': + optional: true + + '@esbuild/android-arm@0.27.4': + optional: true + + '@esbuild/android-x64@0.27.4': optional: true - '@esbuild/android-arm64@0.21.5': + '@esbuild/darwin-arm64@0.27.4': optional: true - '@esbuild/android-arm@0.21.5': + '@esbuild/darwin-x64@0.27.4': optional: true - '@esbuild/android-x64@0.21.5': + '@esbuild/freebsd-arm64@0.27.4': optional: true - '@esbuild/darwin-arm64@0.21.5': + '@esbuild/freebsd-x64@0.27.4': optional: true - '@esbuild/darwin-x64@0.21.5': + '@esbuild/linux-arm64@0.27.4': optional: true - '@esbuild/freebsd-arm64@0.21.5': + '@esbuild/linux-arm@0.27.4': optional: true - '@esbuild/freebsd-x64@0.21.5': + '@esbuild/linux-ia32@0.27.4': optional: true - '@esbuild/linux-arm64@0.21.5': + '@esbuild/linux-loong64@0.27.4': optional: true - '@esbuild/linux-arm@0.21.5': + '@esbuild/linux-mips64el@0.27.4': optional: true - '@esbuild/linux-ia32@0.21.5': + '@esbuild/linux-ppc64@0.27.4': optional: true - '@esbuild/linux-loong64@0.21.5': + '@esbuild/linux-riscv64@0.27.4': optional: true - '@esbuild/linux-mips64el@0.21.5': + '@esbuild/linux-s390x@0.27.4': optional: true - '@esbuild/linux-ppc64@0.21.5': + '@esbuild/linux-x64@0.27.4': optional: true - '@esbuild/linux-riscv64@0.21.5': + '@esbuild/netbsd-arm64@0.27.4': optional: true - '@esbuild/linux-s390x@0.21.5': + '@esbuild/netbsd-x64@0.27.4': optional: true - '@esbuild/linux-x64@0.21.5': + '@esbuild/openbsd-arm64@0.27.4': optional: true - '@esbuild/netbsd-x64@0.21.5': + '@esbuild/openbsd-x64@0.27.4': optional: true - '@esbuild/openbsd-x64@0.21.5': + '@esbuild/openharmony-arm64@0.27.4': optional: true - '@esbuild/sunos-x64@0.21.5': + '@esbuild/sunos-x64@0.27.4': optional: true - '@esbuild/win32-arm64@0.21.5': + '@esbuild/win32-arm64@0.27.4': optional: true - '@esbuild/win32-ia32@0.21.5': + '@esbuild/win32-ia32@0.27.4': optional: true - '@esbuild/win32-x64@0.21.5': + '@esbuild/win32-x64@0.27.4': optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@9.17.0(jiti@1.21.6))': + '@eslint-community/eslint-utils@4.4.0(eslint@10.1.0(jiti@2.6.1))': + dependencies: + eslint: 10.1.0(jiti@2.6.1) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/eslint-utils@4.9.1(eslint@10.1.0(jiti@2.6.1))': dependencies: - eslint: 9.17.0(jiti@1.21.6) + eslint: 10.1.0(jiti@2.6.1) eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.1': {} + '@eslint-community/regexpp@4.12.2': {} - '@eslint/config-array@0.19.1': + '@eslint/config-array@0.23.3': dependencies: - '@eslint/object-schema': 2.1.5 - debug: 4.3.7 - minimatch: 3.1.2 + '@eslint/object-schema': 3.0.3 + debug: 4.4.3 + minimatch: 10.2.4 transitivePeerDependencies: - supports-color - '@eslint/core@0.9.1': + '@eslint/config-helpers@0.5.3': dependencies: - '@types/json-schema': 7.0.15 + '@eslint/core': 1.1.1 - '@eslint/eslintrc@3.2.0': + '@eslint/core@1.1.1': dependencies: - ajv: 6.12.6 - debug: 4.3.7 - espree: 10.3.0 - globals: 14.0.0 - ignore: 5.3.2 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - - '@eslint/js@9.17.0': {} + '@types/json-schema': 7.0.15 - '@eslint/object-schema@2.1.5': {} + '@eslint/object-schema@3.0.3': {} - '@eslint/plugin-kit@0.2.4': + '@eslint/plugin-kit@0.6.1': dependencies: + '@eslint/core': 1.1.1 levn: 0.4.1 - '@floating-ui/core@1.6.8': + '@floating-ui/core@1.7.5': dependencies: - '@floating-ui/utils': 0.2.8 + '@floating-ui/utils': 0.2.11 - '@floating-ui/dom@1.6.11': + '@floating-ui/dom@1.7.6': dependencies: - '@floating-ui/core': 1.6.8 - '@floating-ui/utils': 0.2.8 + '@floating-ui/core': 1.7.5 + '@floating-ui/utils': 0.2.11 - '@floating-ui/utils@0.2.8': {} + '@floating-ui/utils@0.2.11': {} '@humanfs/core@0.19.1': {} @@ -3776,106 +3520,118 @@ snapshots: '@humanwhocodes/retry@0.3.1': {} - '@humanwhocodes/retry@0.4.1': {} + '@humanwhocodes/retry@0.4.3': {} - '@ianvs/prettier-plugin-sort-imports@4.4.0(prettier@3.4.2)': + '@ianvs/prettier-plugin-sort-imports@4.7.1(prettier@3.8.1)': dependencies: '@babel/generator': 7.26.3 - '@babel/parser': 7.26.3 + '@babel/parser': 7.29.2 '@babel/traverse': 7.26.4 - '@babel/types': 7.26.3 - prettier: 3.4.2 - semver: 7.6.3 + '@babel/types': 7.29.0 + prettier: 3.8.1 + semver: 7.7.4 transitivePeerDependencies: - supports-color - '@img/sharp-darwin-arm64@0.33.5': - optionalDependencies: - '@img/sharp-libvips-darwin-arm64': 1.0.4 + '@img/colour@1.1.0': {} + + '@img/sharp-darwin-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-arm64': 1.2.4 + optional: true + + '@img/sharp-darwin-x64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-darwin-x64': 1.2.4 + optional: true + + '@img/sharp-libvips-darwin-arm64@1.2.4': + optional: true + + '@img/sharp-libvips-darwin-x64@1.2.4': + optional: true + + '@img/sharp-libvips-linux-arm64@1.2.4': optional: true - '@img/sharp-darwin-x64@0.33.5': - optionalDependencies: - '@img/sharp-libvips-darwin-x64': 1.0.4 + '@img/sharp-libvips-linux-arm@1.2.4': optional: true - '@img/sharp-libvips-darwin-arm64@1.0.4': + '@img/sharp-libvips-linux-ppc64@1.2.4': optional: true - '@img/sharp-libvips-darwin-x64@1.0.4': + '@img/sharp-libvips-linux-riscv64@1.2.4': optional: true - '@img/sharp-libvips-linux-arm64@1.0.4': + '@img/sharp-libvips-linux-s390x@1.2.4': optional: true - '@img/sharp-libvips-linux-arm@1.0.5': + '@img/sharp-libvips-linux-x64@1.2.4': optional: true - '@img/sharp-libvips-linux-s390x@1.0.4': + '@img/sharp-libvips-linuxmusl-arm64@1.2.4': optional: true - '@img/sharp-libvips-linux-x64@1.0.4': + '@img/sharp-libvips-linuxmusl-x64@1.2.4': optional: true - '@img/sharp-libvips-linuxmusl-arm64@1.0.4': + '@img/sharp-linux-arm64@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm64': 1.2.4 optional: true - '@img/sharp-libvips-linuxmusl-x64@1.0.4': + '@img/sharp-linux-arm@0.34.5': + optionalDependencies: + '@img/sharp-libvips-linux-arm': 1.2.4 optional: true - '@img/sharp-linux-arm64@0.33.5': + '@img/sharp-linux-ppc64@0.34.5': optionalDependencies: - '@img/sharp-libvips-linux-arm64': 1.0.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 optional: true - '@img/sharp-linux-arm@0.33.5': + '@img/sharp-linux-riscv64@0.34.5': optionalDependencies: - '@img/sharp-libvips-linux-arm': 1.0.5 + '@img/sharp-libvips-linux-riscv64': 1.2.4 optional: true - '@img/sharp-linux-s390x@0.33.5': + '@img/sharp-linux-s390x@0.34.5': optionalDependencies: - '@img/sharp-libvips-linux-s390x': 1.0.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 optional: true - '@img/sharp-linux-x64@0.33.5': + '@img/sharp-linux-x64@0.34.5': optionalDependencies: - '@img/sharp-libvips-linux-x64': 1.0.4 + '@img/sharp-libvips-linux-x64': 1.2.4 optional: true - '@img/sharp-linuxmusl-arm64@0.33.5': + '@img/sharp-linuxmusl-arm64@0.34.5': optionalDependencies: - '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 optional: true - '@img/sharp-linuxmusl-x64@0.33.5': + '@img/sharp-linuxmusl-x64@0.34.5': optionalDependencies: - '@img/sharp-libvips-linuxmusl-x64': 1.0.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 optional: true - '@img/sharp-wasm32@0.33.5': + '@img/sharp-wasm32@0.34.5': dependencies: - '@emnapi/runtime': 1.2.0 + '@emnapi/runtime': 1.9.1 optional: true - '@img/sharp-win32-ia32@0.33.5': + '@img/sharp-win32-arm64@0.34.5': optional: true - '@img/sharp-win32-x64@0.33.5': + '@img/sharp-win32-ia32@0.34.5': optional: true - '@internationalized/date@3.6.0': - dependencies: - '@swc/helpers': 0.5.13 + '@img/sharp-win32-x64@0.34.5': + optional: true - '@isaacs/cliui@8.0.2': + '@internationalized/date@3.12.0': dependencies: - string-width: 5.1.2 - string-width-cjs: string-width@4.2.3 - strip-ansi: 7.1.0 - strip-ansi-cjs: strip-ansi@6.0.1 - wrap-ansi: 8.1.0 - wrap-ansi-cjs: wrap-ansi@7.0.0 + '@swc/helpers': 0.5.13 '@jridgewell/gen-mapping@0.3.5': dependencies: @@ -3883,23 +3639,35 @@ snapshots: '@jridgewell/sourcemap-codec': 1.5.0 '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/remapping@2.3.5': + dependencies: + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/resolve-uri@3.1.2': {} '@jridgewell/set-array@1.2.1': {} '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/sourcemap-codec@1.5.5': {} + '@jridgewell/trace-mapping@0.3.25': dependencies: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 - '@mdx-js/mdx@3.1.0(acorn@8.12.1)': + '@lucide/svelte@0.577.0(svelte@5.54.0)': dependencies: - '@types/estree': 1.0.6 + svelte: 5.54.0 + + '@mdx-js/mdx@3.1.1': + dependencies: + '@types/estree': 1.0.8 '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 '@types/mdx': 2.0.13 + acorn: 8.16.0 collapse-white-space: 2.1.0 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 @@ -3908,32 +3676,21 @@ snapshots: hast-util-to-jsx-runtime: 2.3.2 markdown-extensions: 2.0.0 recma-build-jsx: 1.0.0 - recma-jsx: 1.0.0(acorn@8.12.1) + recma-jsx: 1.0.0(acorn@8.16.0) recma-stringify: 1.0.0 rehype-recma: 1.0.0 remark-mdx: 3.1.0 remark-parse: 11.0.0 - remark-rehype: 11.1.1 - source-map: 0.7.4 + remark-rehype: 11.1.2 + source-map: 0.7.6 unified: 11.0.5 unist-util-position-from-estree: 2.0.0 unist-util-stringify-position: 4.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 vfile: 6.0.3 transitivePeerDependencies: - - acorn - supports-color - '@melt-ui/svelte@0.76.2(svelte@4.2.19)': - dependencies: - '@floating-ui/core': 1.6.8 - '@floating-ui/dom': 1.6.11 - '@internationalized/date': 3.6.0 - dequal: 2.0.3 - focus-trap: 7.6.0 - nanoid: 5.0.7 - svelte: 4.2.19 - '@nodelib/fs.scandir@2.1.5': dependencies: '@nodelib/fs.stat': 2.0.5 @@ -3948,162 +3705,246 @@ snapshots: '@oslojs/encoding@1.1.0': {} - '@pkgjs/parseargs@0.11.0': - optional: true - '@pkgr/core@0.1.1': {} - '@rollup/pluginutils@5.1.2(rollup@4.22.5)': + '@rollup/pluginutils@5.3.0(rollup@4.59.0)': dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 estree-walker: 2.0.2 - picomatch: 2.3.1 + picomatch: 4.0.3 optionalDependencies: - rollup: 4.22.5 + rollup: 4.59.0 + + '@rollup/rollup-android-arm-eabi@4.59.0': + optional: true + + '@rollup/rollup-android-arm64@4.59.0': + optional: true + + '@rollup/rollup-darwin-arm64@4.59.0': + optional: true + + '@rollup/rollup-darwin-x64@4.59.0': + optional: true - '@rollup/rollup-android-arm-eabi@4.22.5': + '@rollup/rollup-freebsd-arm64@4.59.0': optional: true - '@rollup/rollup-android-arm64@4.22.5': + '@rollup/rollup-freebsd-x64@4.59.0': optional: true - '@rollup/rollup-darwin-arm64@4.22.5': + '@rollup/rollup-linux-arm-gnueabihf@4.59.0': optional: true - '@rollup/rollup-darwin-x64@4.22.5': + '@rollup/rollup-linux-arm-musleabihf@4.59.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.22.5': + '@rollup/rollup-linux-arm64-gnu@4.59.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.22.5': + '@rollup/rollup-linux-arm64-musl@4.59.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.22.5': + '@rollup/rollup-linux-loong64-gnu@4.59.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.22.5': + '@rollup/rollup-linux-loong64-musl@4.59.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.22.5': + '@rollup/rollup-linux-ppc64-gnu@4.59.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.22.5': + '@rollup/rollup-linux-ppc64-musl@4.59.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.22.5': + '@rollup/rollup-linux-riscv64-gnu@4.59.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.22.5': + '@rollup/rollup-linux-riscv64-musl@4.59.0': optional: true - '@rollup/rollup-linux-x64-musl@4.22.5': + '@rollup/rollup-linux-s390x-gnu@4.59.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.22.5': + '@rollup/rollup-linux-x64-gnu@4.59.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.22.5': + '@rollup/rollup-linux-x64-musl@4.59.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.22.5': + '@rollup/rollup-openbsd-x64@4.59.0': optional: true - '@shikijs/core@1.22.0': + '@rollup/rollup-openharmony-arm64@4.59.0': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.59.0': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.59.0': + optional: true + + '@rollup/rollup-win32-x64-gnu@4.59.0': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.59.0': + optional: true + + '@shikijs/core@4.0.2': dependencies: - '@shikijs/engine-javascript': 1.22.0 - '@shikijs/engine-oniguruma': 1.22.0 - '@shikijs/types': 1.22.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/primitive': 4.0.2 + '@shikijs/types': 4.0.2 + '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.5 + + '@shikijs/engine-javascript@4.0.2': + dependencies: + '@shikijs/types': 4.0.2 + '@shikijs/vscode-textmate': 10.0.2 + oniguruma-to-es: 4.3.5 - '@shikijs/engine-javascript@1.22.0': + '@shikijs/engine-oniguruma@4.0.2': dependencies: - '@shikijs/types': 1.22.0 - '@shikijs/vscode-textmate': 9.3.0 - oniguruma-to-js: 0.4.3 + '@shikijs/types': 4.0.2 + '@shikijs/vscode-textmate': 10.0.2 - '@shikijs/engine-oniguruma@1.22.0': + '@shikijs/langs@4.0.2': dependencies: - '@shikijs/types': 1.22.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 4.0.2 - '@shikijs/types@1.22.0': + '@shikijs/primitive@4.0.2': dependencies: - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/types': 4.0.2 + '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 - '@shikijs/vscode-textmate@9.3.0': {} + '@shikijs/themes@4.0.2': + dependencies: + '@shikijs/types': 4.0.2 - '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2)))(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2))': + '@shikijs/types@4.0.2': dependencies: - '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2)) - debug: 4.3.7 - svelte: 4.2.19 - vite: 5.4.9(@types/node@22.10.2) - transitivePeerDependencies: - - supports-color + '@shikijs/vscode-textmate': 10.0.2 + '@types/hast': 3.0.4 - '@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2))': + '@shikijs/vscode-textmate@10.0.2': {} + + '@sveltejs/acorn-typescript@1.0.9(acorn@8.14.0)': + dependencies: + acorn: 8.14.0 + + '@sveltejs/vite-plugin-svelte-inspector@5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)))(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2))': dependencies: - '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2)))(svelte@4.2.19)(vite@5.4.9(@types/node@22.10.2)) - debug: 4.3.7 + '@sveltejs/vite-plugin-svelte': 6.2.4(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)) + obug: 2.1.1 + svelte: 5.54.0 + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2) + + '@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2))': + dependencies: + '@sveltejs/vite-plugin-svelte-inspector': 5.0.2(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)))(svelte@5.54.0)(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)) deepmerge: 4.3.1 - kleur: 4.1.5 - magic-string: 0.30.11 - svelte: 4.2.19 - svelte-hmr: 0.16.0(svelte@4.2.19) - vite: 5.4.9(@types/node@22.10.2) - vitefu: 0.2.5(vite@5.4.9(@types/node@22.10.2)) - transitivePeerDependencies: - - supports-color + magic-string: 0.30.21 + obug: 2.1.1 + svelte: 5.54.0 + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2) + vitefu: 1.1.2(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)) '@swc/helpers@0.5.13': dependencies: tslib: 2.7.0 - '@types/acorn@4.0.6': + '@tailwindcss/node@4.2.2': dependencies: - '@types/estree': 1.0.6 + '@jridgewell/remapping': 2.3.5 + enhanced-resolve: 5.20.1 + jiti: 2.6.1 + lightningcss: 1.32.0 + magic-string: 0.30.21 + source-map-js: 1.2.1 + tailwindcss: 4.2.2 - '@types/babel__core@7.20.5': - dependencies: - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 - '@types/babel__generator': 7.6.8 - '@types/babel__template': 7.4.4 - '@types/babel__traverse': 7.20.6 + '@tailwindcss/oxide-android-arm64@4.2.2': + optional: true - '@types/babel__generator@7.6.8': - dependencies: - '@babel/types': 7.25.8 + '@tailwindcss/oxide-darwin-arm64@4.2.2': + optional: true - '@types/babel__template@7.4.4': - dependencies: - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 + '@tailwindcss/oxide-darwin-x64@4.2.2': + optional: true - '@types/babel__traverse@7.20.6': - dependencies: - '@babel/types': 7.25.8 + '@tailwindcss/oxide-freebsd-x64@4.2.2': + optional: true + + '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.2': + optional: true + + '@tailwindcss/oxide-linux-arm64-gnu@4.2.2': + optional: true + + '@tailwindcss/oxide-linux-arm64-musl@4.2.2': + optional: true + + '@tailwindcss/oxide-linux-x64-gnu@4.2.2': + optional: true + + '@tailwindcss/oxide-linux-x64-musl@4.2.2': + optional: true + + '@tailwindcss/oxide-wasm32-wasi@4.2.2': + optional: true - '@types/bun@1.1.14': + '@tailwindcss/oxide-win32-arm64-msvc@4.2.2': + optional: true + + '@tailwindcss/oxide-win32-x64-msvc@4.2.2': + optional: true + + '@tailwindcss/oxide@4.2.2': + optionalDependencies: + '@tailwindcss/oxide-android-arm64': 4.2.2 + '@tailwindcss/oxide-darwin-arm64': 4.2.2 + '@tailwindcss/oxide-darwin-x64': 4.2.2 + '@tailwindcss/oxide-freebsd-x64': 4.2.2 + '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.2 + '@tailwindcss/oxide-linux-arm64-gnu': 4.2.2 + '@tailwindcss/oxide-linux-arm64-musl': 4.2.2 + '@tailwindcss/oxide-linux-x64-gnu': 4.2.2 + '@tailwindcss/oxide-linux-x64-musl': 4.2.2 + '@tailwindcss/oxide-wasm32-wasi': 4.2.2 + '@tailwindcss/oxide-win32-arm64-msvc': 4.2.2 + '@tailwindcss/oxide-win32-x64-msvc': 4.2.2 + + '@tailwindcss/vite@4.2.2(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2))': + dependencies: + '@tailwindcss/node': 4.2.2 + '@tailwindcss/oxide': 4.2.2 + tailwindcss: 4.2.2 + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2) + + '@types/acorn@4.0.6': dependencies: - bun-types: 1.1.37 + '@types/estree': 1.0.8 - '@types/cookie@0.6.0': {} + '@types/bun@1.3.11': + dependencies: + bun-types: 1.3.11 '@types/debug@4.1.12': dependencies: '@types/ms': 0.7.34 + '@types/esrecurse@4.3.1': {} + '@types/estree-jsx@1.0.5': dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 '@types/estree@1.0.6': {} + '@types/estree@1.0.8': {} + '@types/hast@3.0.4': dependencies: '@types/unist': 3.0.3 @@ -4122,128 +3963,121 @@ snapshots: dependencies: '@types/unist': 3.0.3 - '@types/node@20.12.14': + '@types/node@25.5.0': dependencies: - undici-types: 5.26.5 + undici-types: 7.18.2 - '@types/node@22.10.2': - dependencies: - undici-types: 6.20.0 + '@types/trusted-types@2.0.7': {} '@types/unist@2.0.11': {} '@types/unist@3.0.3': {} - '@types/ws@8.5.12': + '@typescript-eslint/parser@8.57.1(eslint@10.1.0(jiti@2.6.1))(typescript@5.9.3)': dependencies: - '@types/node': 22.10.2 - - '@typescript-eslint/parser@8.18.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.2)': - dependencies: - '@typescript-eslint/scope-manager': 8.18.1 - '@typescript-eslint/types': 8.18.1 - '@typescript-eslint/typescript-estree': 8.18.1(typescript@5.6.2) - '@typescript-eslint/visitor-keys': 8.18.1 - debug: 4.3.7 - eslint: 9.17.0(jiti@1.21.6) - typescript: 5.6.2 + '@typescript-eslint/scope-manager': 8.57.1 + '@typescript-eslint/types': 8.57.1 + '@typescript-eslint/typescript-estree': 8.57.1(typescript@5.9.3) + '@typescript-eslint/visitor-keys': 8.57.1 + debug: 4.4.3 + eslint: 10.1.0(jiti@2.6.1) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.11.0': + '@typescript-eslint/project-service@8.57.1(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 + '@typescript-eslint/tsconfig-utils': 8.57.1(typescript@5.9.3) + '@typescript-eslint/types': 8.57.1 + debug: 4.4.3 + typescript: 5.9.3 + transitivePeerDependencies: + - supports-color '@typescript-eslint/scope-manager@8.18.1': dependencies: '@typescript-eslint/types': 8.18.1 '@typescript-eslint/visitor-keys': 8.18.1 - '@typescript-eslint/types@8.11.0': {} + '@typescript-eslint/scope-manager@8.57.1': + dependencies: + '@typescript-eslint/types': 8.57.1 + '@typescript-eslint/visitor-keys': 8.57.1 + + '@typescript-eslint/tsconfig-utils@8.57.1(typescript@5.9.3)': + dependencies: + typescript: 5.9.3 '@typescript-eslint/types@8.18.1': {} - '@typescript-eslint/typescript-estree@8.11.0(typescript@5.6.2)': - dependencies: - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/visitor-keys': 8.11.0 - debug: 4.3.7 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) - optionalDependencies: - typescript: 5.6.2 - transitivePeerDependencies: - - supports-color + '@typescript-eslint/types@8.57.1': {} - '@typescript-eslint/typescript-estree@8.18.1(typescript@5.6.2)': + '@typescript-eslint/typescript-estree@8.57.1(typescript@5.9.3)': dependencies: - '@typescript-eslint/types': 8.18.1 - '@typescript-eslint/visitor-keys': 8.18.1 - debug: 4.3.7 - fast-glob: 3.3.2 - is-glob: 4.0.3 - minimatch: 9.0.5 - semver: 7.6.3 - ts-api-utils: 1.3.0(typescript@5.6.2) - typescript: 5.6.2 + '@typescript-eslint/project-service': 8.57.1(typescript@5.9.3) + '@typescript-eslint/tsconfig-utils': 8.57.1(typescript@5.9.3) + '@typescript-eslint/types': 8.57.1 + '@typescript-eslint/visitor-keys': 8.57.1 + debug: 4.4.3 + minimatch: 10.2.4 + semver: 7.7.4 + tinyglobby: 0.2.15 + ts-api-utils: 2.5.0(typescript@5.9.3) + typescript: 5.9.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.11.0': - dependencies: - '@typescript-eslint/types': 8.11.0 - eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@8.18.1': dependencies: '@typescript-eslint/types': 8.18.1 eslint-visitor-keys: 4.2.0 + '@typescript-eslint/visitor-keys@8.57.1': + dependencies: + '@typescript-eslint/types': 8.57.1 + eslint-visitor-keys: 5.0.1 + '@ungap/structured-clone@1.2.0': {} - '@volar/kit@2.4.5(typescript@5.6.2)': + '@volar/kit@2.4.28(typescript@5.9.3)': dependencies: - '@volar/language-service': 2.4.5 - '@volar/typescript': 2.4.5 + '@volar/language-service': 2.4.28 + '@volar/typescript': 2.4.28 typesafe-path: 0.2.2 - typescript: 5.6.2 + typescript: 5.9.3 vscode-languageserver-textdocument: 1.0.12 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 - '@volar/language-core@2.4.5': + '@volar/language-core@2.4.28': dependencies: - '@volar/source-map': 2.4.5 + '@volar/source-map': 2.4.28 - '@volar/language-server@2.4.5': + '@volar/language-server@2.4.28': dependencies: - '@volar/language-core': 2.4.5 - '@volar/language-service': 2.4.5 - '@volar/typescript': 2.4.5 + '@volar/language-core': 2.4.28 + '@volar/language-service': 2.4.28 + '@volar/typescript': 2.4.28 path-browserify: 1.0.1 request-light: 0.7.0 vscode-languageserver: 9.0.1 vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.12 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 - '@volar/language-service@2.4.5': + '@volar/language-service@2.4.28': dependencies: - '@volar/language-core': 2.4.5 + '@volar/language-core': 2.4.28 vscode-languageserver-protocol: 3.17.5 vscode-languageserver-textdocument: 1.0.12 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 - '@volar/source-map@2.4.5': {} + '@volar/source-map@2.4.28': {} - '@volar/typescript@2.4.5': + '@volar/typescript@2.4.28': dependencies: - '@volar/language-core': 2.4.5 + '@volar/language-core': 2.4.28 path-browserify: 1.0.1 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 '@vscode/emmet-helper@2.9.3': dependencies: @@ -4255,25 +4089,19 @@ snapshots: '@vscode/l10n@0.0.18': {} - acorn-jsx@5.3.2(acorn@8.12.1): - dependencies: - acorn: 8.12.1 - - acorn-jsx@5.3.2(acorn@8.13.0): - dependencies: - acorn: 8.13.0 - - acorn-jsx@5.3.2(acorn@8.14.0): + acorn-jsx@5.3.2(acorn@8.16.0): dependencies: - acorn: 8.14.0 + acorn: 8.16.0 - acorn@8.12.1: {} + acorn@8.14.0: {} - acorn@8.13.0: {} + acorn@8.16.0: {} - acorn@8.14.0: {} + ajv-draft-04@1.0.0(ajv@8.17.1): + optionalDependencies: + ajv: 8.17.1 - ajv@6.12.6: + ajv@6.14.0: dependencies: fast-deep-equal: 3.1.3 fast-json-stable-stringify: 2.1.0 @@ -4287,39 +4115,21 @@ snapshots: json-schema-traverse: 1.0.0 require-from-string: 2.0.2 - ansi-align@3.0.1: - dependencies: - string-width: 4.2.3 - ansi-regex@5.0.1: {} - ansi-regex@6.1.0: {} - - ansi-styles@3.2.1: - dependencies: - color-convert: 1.9.3 - ansi-styles@4.3.0: dependencies: color-convert: 2.0.1 - ansi-styles@6.2.1: {} - - any-promise@1.3.0: {} - anymatch@3.1.3: dependencies: normalize-path: 3.0.0 picomatch: 2.3.1 - arg@5.0.2: {} - - argparse@1.0.10: - dependencies: - sprintf-js: 1.0.3 - argparse@2.0.1: {} + aria-query@5.3.1: {} + aria-query@5.3.2: {} array-buffer-byte-length@1.0.1: @@ -4338,8 +4148,6 @@ snapshots: array-iterate@2.0.1: {} - array-union@2.1.0: {} - array.prototype.flat@1.3.2: dependencies: call-bind: 1.0.7 @@ -4369,93 +4177,103 @@ snapshots: astring@1.9.0: {} - astro-eslint-parser@1.1.0(typescript@5.6.2): + astro-eslint-parser@1.3.0: dependencies: - '@astrojs/compiler': 2.10.3 - '@typescript-eslint/scope-manager': 8.11.0 - '@typescript-eslint/types': 8.11.0 - '@typescript-eslint/typescript-estree': 8.11.0(typescript@5.6.2) - astrojs-compiler-sync: 1.0.0(@astrojs/compiler@2.10.3) - debug: 4.3.7 - entities: 4.5.0 - eslint-scope: 8.1.0 - eslint-visitor-keys: 4.1.0 - espree: 10.2.0 - globby: 11.1.0 + '@astrojs/compiler': 2.13.1 + '@typescript-eslint/scope-manager': 8.18.1 + '@typescript-eslint/types': 8.18.1 + astrojs-compiler-sync: 1.0.0(@astrojs/compiler@2.13.1) + debug: 4.4.3 + entities: 6.0.1 + eslint-scope: 8.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + fast-glob: 3.3.3 is-glob: 4.0.3 - semver: 7.6.3 + semver: 7.7.4 transitivePeerDependencies: - supports-color - - typescript - astro@4.16.7(@types/node@22.10.2)(rollup@4.22.5)(typescript@5.6.2): + astro@6.0.8(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(rollup@4.59.0)(typescript@5.9.3)(yaml@2.8.2): dependencies: - '@astrojs/compiler': 2.10.3 - '@astrojs/internal-helpers': 0.4.1 - '@astrojs/markdown-remark': 5.3.0 - '@astrojs/telemetry': 3.1.0 - '@babel/core': 7.25.8 - '@babel/plugin-transform-react-jsx': 7.25.7(@babel/core@7.25.8) - '@babel/types': 7.25.8 + '@astrojs/compiler': 3.0.1 + '@astrojs/internal-helpers': 0.8.0 + '@astrojs/markdown-remark': 7.0.1 + '@astrojs/telemetry': 3.3.0 + '@capsizecss/unpack': 4.0.0 + '@clack/prompts': 1.1.0 '@oslojs/encoding': 1.1.0 - '@rollup/pluginutils': 5.1.2(rollup@4.22.5) - '@types/babel__core': 7.20.5 - '@types/cookie': 0.6.0 - acorn: 8.13.0 + '@rollup/pluginutils': 5.3.0(rollup@4.59.0) aria-query: 5.3.2 axobject-query: 4.1.0 - boxen: 8.0.1 - ci-info: 4.0.0 + ci-info: 4.4.0 clsx: 2.1.1 - common-ancestor-path: 1.0.1 - cookie: 0.7.2 - cssesc: 3.0.0 - debug: 4.3.7 - deterministic-object-hash: 2.0.2 - devalue: 5.1.1 - diff: 5.2.0 + common-ancestor-path: 2.0.0 + cookie: 1.1.1 + devalue: 5.6.4 + diff: 8.0.3 dlv: 1.1.3 dset: 3.1.4 - es-module-lexer: 1.5.4 - esbuild: 0.21.5 - estree-walker: 3.0.3 - fast-glob: 3.3.2 + es-module-lexer: 2.0.0 + esbuild: 0.27.4 flattie: 1.1.1 + fontace: 0.4.1 github-slugger: 2.0.0 - gray-matter: 4.0.3 html-escaper: 3.0.3 - http-cache-semantics: 4.1.1 - js-yaml: 4.1.0 - kleur: 4.1.5 - magic-string: 0.30.12 - magicast: 0.3.5 - micromatch: 4.0.8 - mrmime: 2.0.0 + http-cache-semantics: 4.2.0 + js-yaml: 4.1.1 + magic-string: 0.30.21 + magicast: 0.5.2 + mrmime: 2.0.1 neotraverse: 0.6.18 - ora: 8.1.0 - p-limit: 6.1.0 - p-queue: 8.0.1 - preferred-pm: 4.0.0 - prompts: 2.4.2 + obug: 2.1.1 + p-limit: 7.3.0 + p-queue: 9.1.0 + package-manager-detector: 1.6.0 + piccolore: 0.1.3 + picomatch: 4.0.3 rehype: 13.0.2 - semver: 7.6.3 - shiki: 1.22.0 - tinyexec: 0.3.1 - tsconfck: 3.1.4(typescript@5.6.2) - unist-util-visit: 5.0.0 + semver: 7.7.4 + shiki: 4.0.2 + smol-toml: 1.6.0 + svgo: 4.0.1 + tinyclip: 0.1.12 + tinyexec: 1.0.4 + tinyglobby: 0.2.15 + tsconfck: 3.1.6(typescript@5.9.3) + ultrahtml: 1.6.0 + unifont: 0.7.4 + unist-util-visit: 5.1.0 + unstorage: 1.17.4 vfile: 6.0.3 - vite: 5.4.9(@types/node@22.10.2) - vitefu: 1.0.3(vite@5.4.9(@types/node@22.10.2)) - which-pm: 3.0.0 - xxhash-wasm: 1.0.2 - yargs-parser: 21.1.1 - zod: 3.23.8 - zod-to-json-schema: 3.23.3(zod@3.23.8) - zod-to-ts: 1.2.0(typescript@5.6.2)(zod@3.23.8) + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2) + vitefu: 1.1.2(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)) + xxhash-wasm: 1.1.0 + yargs-parser: 22.0.0 + zod: 4.3.6 optionalDependencies: - sharp: 0.33.5 + sharp: 0.34.5 transitivePeerDependencies: + - '@azure/app-configuration' + - '@azure/cosmos' + - '@azure/data-tables' + - '@azure/identity' + - '@azure/keyvault-secrets' + - '@azure/storage-blob' + - '@capacitor/preferences' + - '@deno/kv' + - '@netlify/blobs' + - '@planetscale/database' - '@types/node' + - '@upstash/redis' + - '@vercel/blob' + - '@vercel/functions' + - '@vercel/kv' + - aws4fetch + - db0 + - idb-keyval + - ioredis + - jiti - less - lightningcss - rollup @@ -4465,23 +4283,16 @@ snapshots: - sugarss - supports-color - terser + - tsx - typescript + - uploadthing + - yaml - astrojs-compiler-sync@1.0.0(@astrojs/compiler@2.10.3): + astrojs-compiler-sync@1.0.0(@astrojs/compiler@2.13.1): dependencies: - '@astrojs/compiler': 2.10.3 + '@astrojs/compiler': 2.13.1 synckit: 0.9.1 - autoprefixer@10.4.20(postcss@8.4.49): - dependencies: - browserslist: 4.24.0 - caniuse-lite: 1.0.30001664 - fraction.js: 4.3.7 - normalize-range: 0.1.2 - picocolors: 1.1.0 - postcss: 8.4.49 - postcss-value-parser: 4.2.0 - available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 @@ -4494,52 +4305,39 @@ snapshots: balanced-match@1.0.2: {} - base-64@1.0.0: {} - - binary-extensions@2.3.0: {} + balanced-match@4.0.4: {} - bits-ui@0.22.0(svelte@4.2.19): + bits-ui@2.16.3(@internationalized/date@3.12.0)(svelte@5.54.0): dependencies: - '@internationalized/date': 3.6.0 - '@melt-ui/svelte': 0.76.2(svelte@4.2.19) - nanoid: 5.0.7 - svelte: 4.2.19 + '@floating-ui/core': 1.7.5 + '@floating-ui/dom': 1.7.6 + '@internationalized/date': 3.12.0 + esm-env: 1.2.2 + runed: 0.35.1(svelte@5.54.0) + svelte: 5.54.0 + svelte-toolbelt: 0.10.6(svelte@5.54.0) + tabbable: 6.2.0 + transitivePeerDependencies: + - '@sveltejs/kit' - boxen@8.0.1: - dependencies: - ansi-align: 3.0.1 - camelcase: 8.0.0 - chalk: 5.3.0 - cli-boxes: 3.0.0 - string-width: 7.2.0 - type-fest: 4.26.1 - widest-line: 5.0.0 - wrap-ansi: 9.0.0 + boolbase@1.0.0: {} brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 concat-map: 0.0.1 - brace-expansion@2.0.1: + brace-expansion@5.0.4: dependencies: - balanced-match: 1.0.2 + balanced-match: 4.0.4 braces@3.0.3: dependencies: fill-range: 7.1.1 - browserslist@4.24.0: + bun-types@1.3.11: dependencies: - caniuse-lite: 1.0.30001664 - electron-to-chromium: 1.5.29 - node-releases: 2.0.18 - update-browserslist-db: 1.1.1(browserslist@4.24.0) - - bun-types@1.1.37: - dependencies: - '@types/node': 20.12.14 - '@types/ws': 8.5.12 + '@types/node': 25.5.0 call-bind@1.0.7: dependencies: @@ -4549,29 +4347,8 @@ snapshots: get-intrinsic: 1.2.4 set-function-length: 1.2.2 - callsites@3.1.0: {} - - camelcase-css@2.0.1: {} - - camelcase@8.0.0: {} - - caniuse-lite@1.0.30001664: {} - ccount@2.0.1: {} - chalk@2.4.2: - dependencies: - ansi-styles: 3.2.1 - escape-string-regexp: 1.0.5 - supports-color: 5.5.0 - - chalk@4.1.2: - dependencies: - ansi-styles: 4.3.0 - supports-color: 7.2.0 - - chalk@5.3.0: {} - character-entities-html4@2.1.0: {} character-entities-legacy@3.0.0: {} @@ -4580,31 +4357,15 @@ snapshots: character-reference-invalid@2.0.1: {} - chokidar@3.6.0: - dependencies: - anymatch: 3.1.3 - braces: 3.0.3 - glob-parent: 5.1.2 - is-binary-path: 2.1.0 - is-glob: 4.0.3 - normalize-path: 3.0.0 - readdirp: 3.6.0 - optionalDependencies: - fsevents: 2.3.3 - - chokidar@4.0.1: + chokidar@4.0.3: dependencies: readdirp: 4.0.2 - ci-info@4.0.0: {} - - cli-boxes@3.0.0: {} - - cli-cursor@5.0.0: + chokidar@5.0.0: dependencies: - restore-cursor: 5.1.0 + readdirp: 5.0.0 - cli-spinners@2.9.2: {} + ci-info@4.4.0: {} cliui@8.0.1: dependencies: @@ -4614,69 +4375,62 @@ snapshots: clsx@2.1.1: {} - code-red@1.0.4: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 - '@types/estree': 1.0.6 - acorn: 8.12.1 - estree-walker: 3.0.3 - periscopic: 3.1.0 - collapse-white-space@2.1.0: {} - color-convert@1.9.3: - dependencies: - color-name: 1.1.3 - color-convert@2.0.1: dependencies: color-name: 1.1.4 - color-name@1.1.3: {} - color-name@1.1.4: {} - color-string@1.9.1: - dependencies: - color-name: 1.1.4 - simple-swizzle: 0.2.2 - - color@4.2.3: - dependencies: - color-convert: 2.0.1 - color-string: 1.9.1 - comma-separated-tokens@2.0.3: {} - commander@4.1.1: {} + commander@11.1.0: {} - common-ancestor-path@1.0.1: {} + common-ancestor-path@2.0.0: {} concat-map@0.0.1: {} - convert-source-map@2.0.0: {} + cookie-es@1.2.2: {} - cookie@0.7.2: {} + cookie@1.1.1: {} - cross-spawn@7.0.3: + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 shebang-command: 2.0.0 which: 2.0.2 - cross-spawn@7.0.6: + crossws@0.3.5: dependencies: - path-key: 3.1.1 - shebang-command: 2.0.0 - which: 2.0.2 + uncrypto: 0.1.3 + + css-select@5.2.2: + dependencies: + boolbase: 1.0.0 + css-what: 6.2.2 + domhandler: 5.0.3 + domutils: 3.2.2 + nth-check: 2.1.1 - css-tree@2.3.1: + css-tree@2.2.1: dependencies: - mdn-data: 2.0.30 + mdn-data: 2.0.28 source-map-js: 1.2.1 + css-tree@3.2.1: + dependencies: + mdn-data: 2.27.1 + source-map-js: 1.2.1 + + css-what@6.2.2: {} + cssesc@3.0.0: {} + csso@5.0.5: + dependencies: + css-tree: 2.2.1 + damerau-levenshtein@1.0.8: {} data-view-buffer@1.0.1: @@ -4697,7 +4451,7 @@ snapshots: es-errors: 1.3.0 is-data-view: 1.0.1 - debug@4.3.7: + debug@4.4.3: dependencies: ms: 2.1.3 @@ -4723,49 +4477,62 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 + defu@6.1.4: {} + dequal@2.0.3: {} - detect-libc@2.0.3: {} + destr@2.0.5: {} - deterministic-object-hash@2.0.2: - dependencies: - base-64: 1.0.0 + detect-libc@2.1.2: {} - devalue@5.1.1: {} + devalue@5.6.4: {} devlop@1.1.0: dependencies: dequal: 2.0.3 - didyoumean@1.2.2: {} + diff@8.0.3: {} - diff@5.2.0: {} + dlv@1.1.3: {} - dir-glob@3.0.1: + dom-serializer@2.0.0: dependencies: - path-type: 4.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 - dlv@1.1.3: {} + domelementtype@2.3.0: {} - dset@3.1.4: {} + domhandler@5.0.3: + dependencies: + domelementtype: 2.3.0 - eastasianwidth@0.2.0: {} + domutils@3.2.2: + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 - electron-to-chromium@1.5.29: {} + dset@3.1.4: {} emmet@2.4.11: dependencies: '@emmetio/abbreviation': 2.3.3 '@emmetio/css-abbreviation': 2.1.8 - emoji-regex@10.4.0: {} - emoji-regex@8.0.0: {} emoji-regex@9.2.2: {} + enhanced-resolve@5.20.1: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.3.0 + entities@4.5.0: {} + entities@6.0.1: {} + es-abstract@1.23.3: dependencies: array-buffer-byte-length: 1.0.1 @@ -4821,7 +4588,7 @@ snapshots: es-errors@1.3.0: {} - es-module-lexer@1.5.4: {} + es-module-lexer@2.0.0: {} es-object-atoms@1.0.0: dependencies: @@ -4853,65 +4620,65 @@ snapshots: esast-util-from-js@2.0.1: dependencies: '@types/estree-jsx': 1.0.5 - acorn: 8.13.0 + acorn: 8.16.0 esast-util-from-estree: 2.0.0 vfile-message: 4.0.2 - esbuild@0.21.5: + esbuild@0.27.4: optionalDependencies: - '@esbuild/aix-ppc64': 0.21.5 - '@esbuild/android-arm': 0.21.5 - '@esbuild/android-arm64': 0.21.5 - '@esbuild/android-x64': 0.21.5 - '@esbuild/darwin-arm64': 0.21.5 - '@esbuild/darwin-x64': 0.21.5 - '@esbuild/freebsd-arm64': 0.21.5 - '@esbuild/freebsd-x64': 0.21.5 - '@esbuild/linux-arm': 0.21.5 - '@esbuild/linux-arm64': 0.21.5 - '@esbuild/linux-ia32': 0.21.5 - '@esbuild/linux-loong64': 0.21.5 - '@esbuild/linux-mips64el': 0.21.5 - '@esbuild/linux-ppc64': 0.21.5 - '@esbuild/linux-riscv64': 0.21.5 - '@esbuild/linux-s390x': 0.21.5 - '@esbuild/linux-x64': 0.21.5 - '@esbuild/netbsd-x64': 0.21.5 - '@esbuild/openbsd-x64': 0.21.5 - '@esbuild/sunos-x64': 0.21.5 - '@esbuild/win32-arm64': 0.21.5 - '@esbuild/win32-ia32': 0.21.5 - '@esbuild/win32-x64': 0.21.5 + '@esbuild/aix-ppc64': 0.27.4 + '@esbuild/android-arm': 0.27.4 + '@esbuild/android-arm64': 0.27.4 + '@esbuild/android-x64': 0.27.4 + '@esbuild/darwin-arm64': 0.27.4 + '@esbuild/darwin-x64': 0.27.4 + '@esbuild/freebsd-arm64': 0.27.4 + '@esbuild/freebsd-x64': 0.27.4 + '@esbuild/linux-arm': 0.27.4 + '@esbuild/linux-arm64': 0.27.4 + '@esbuild/linux-ia32': 0.27.4 + '@esbuild/linux-loong64': 0.27.4 + '@esbuild/linux-mips64el': 0.27.4 + '@esbuild/linux-ppc64': 0.27.4 + '@esbuild/linux-riscv64': 0.27.4 + '@esbuild/linux-s390x': 0.27.4 + '@esbuild/linux-x64': 0.27.4 + '@esbuild/netbsd-arm64': 0.27.4 + '@esbuild/netbsd-x64': 0.27.4 + '@esbuild/openbsd-arm64': 0.27.4 + '@esbuild/openbsd-x64': 0.27.4 + '@esbuild/openharmony-arm64': 0.27.4 + '@esbuild/sunos-x64': 0.27.4 + '@esbuild/win32-arm64': 0.27.4 + '@esbuild/win32-ia32': 0.27.4 + '@esbuild/win32-x64': 0.27.4 escalade@3.2.0: {} - escape-string-regexp@1.0.5: {} - escape-string-regexp@4.0.0: {} escape-string-regexp@5.0.0: {} - eslint-compat-utils@0.6.4(eslint@9.17.0(jiti@1.21.6)): + eslint-compat-utils@0.6.4(eslint@10.1.0(jiti@2.6.1)): dependencies: - eslint: 9.17.0(jiti@1.21.6) - semver: 7.6.3 + eslint: 10.1.0(jiti@2.6.1) + semver: 7.7.4 - eslint-plugin-astro@1.3.1(eslint@9.17.0(jiti@1.21.6))(typescript@5.6.2): + eslint-plugin-astro@1.6.0(eslint@10.1.0(jiti@2.6.1)): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0(jiti@1.21.6)) - '@jridgewell/sourcemap-codec': 1.5.0 - '@typescript-eslint/types': 8.11.0 - astro-eslint-parser: 1.1.0(typescript@5.6.2) - eslint: 9.17.0(jiti@1.21.6) - eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@1.21.6)) - globals: 15.9.0 - postcss: 8.4.47 + '@eslint-community/eslint-utils': 4.4.0(eslint@10.1.0(jiti@2.6.1)) + '@jridgewell/sourcemap-codec': 1.5.5 + '@typescript-eslint/types': 8.18.1 + astro-eslint-parser: 1.3.0 + eslint: 10.1.0(jiti@2.6.1) + eslint-compat-utils: 0.6.4(eslint@10.1.0(jiti@2.6.1)) + globals: 16.5.0 + postcss: 8.5.8 postcss-selector-parser: 7.0.0 transitivePeerDependencies: - supports-color - - typescript - eslint-plugin-jsx-a11y@6.10.2(eslint@9.17.0(jiti@1.21.6)): + eslint-plugin-jsx-a11y@6.10.2(eslint@10.1.0(jiti@2.6.1)): dependencies: aria-query: 5.3.2 array-includes: 3.1.8 @@ -4921,7 +4688,7 @@ snapshots: axobject-query: 4.1.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 9.17.0(jiti@1.21.6) + eslint: 10.1.0(jiti@2.6.1) hasown: 2.0.2 jsx-ast-utils: 3.3.5 language-tags: 1.0.9 @@ -4930,45 +4697,44 @@ snapshots: safe-regex-test: 1.0.3 string.prototype.includes: 2.0.1 - eslint-scope@8.1.0: + eslint-scope@8.2.0: dependencies: esrecurse: 4.3.0 estraverse: 5.3.0 - eslint-scope@8.2.0: + eslint-scope@9.1.2: dependencies: + '@types/esrecurse': 4.3.1 + '@types/estree': 1.0.8 esrecurse: 4.3.0 estraverse: 5.3.0 eslint-visitor-keys@3.4.3: {} - eslint-visitor-keys@4.1.0: {} - eslint-visitor-keys@4.2.0: {} - eslint@9.17.0(jiti@1.21.6): + eslint-visitor-keys@5.0.1: {} + + eslint@10.1.0(jiti@2.6.1): dependencies: - '@eslint-community/eslint-utils': 4.4.0(eslint@9.17.0(jiti@1.21.6)) - '@eslint-community/regexpp': 4.12.1 - '@eslint/config-array': 0.19.1 - '@eslint/core': 0.9.1 - '@eslint/eslintrc': 3.2.0 - '@eslint/js': 9.17.0 - '@eslint/plugin-kit': 0.2.4 + '@eslint-community/eslint-utils': 4.9.1(eslint@10.1.0(jiti@2.6.1)) + '@eslint-community/regexpp': 4.12.2 + '@eslint/config-array': 0.23.3 + '@eslint/config-helpers': 0.5.3 + '@eslint/core': 1.1.1 + '@eslint/plugin-kit': 0.6.1 '@humanfs/node': 0.16.6 '@humanwhocodes/module-importer': 1.0.1 - '@humanwhocodes/retry': 0.4.1 - '@types/estree': 1.0.6 - '@types/json-schema': 7.0.15 - ajv: 6.12.6 - chalk: 4.1.2 + '@humanwhocodes/retry': 0.4.3 + '@types/estree': 1.0.8 + ajv: 6.14.0 cross-spawn: 7.0.6 - debug: 4.3.7 + debug: 4.4.3 escape-string-regexp: 4.0.0 - eslint-scope: 8.2.0 - eslint-visitor-keys: 4.2.0 - espree: 10.3.0 - esquery: 1.6.0 + eslint-scope: 9.1.2 + eslint-visitor-keys: 5.0.1 + espree: 11.2.0 + esquery: 1.7.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 8.0.0 @@ -4978,33 +4744,37 @@ snapshots: imurmurhash: 0.1.4 is-glob: 4.0.3 json-stable-stringify-without-jsonify: 1.0.1 - lodash.merge: 4.6.2 - minimatch: 3.1.2 + minimatch: 10.2.4 natural-compare: 1.4.0 optionator: 0.9.4 optionalDependencies: - jiti: 1.21.6 + jiti: 2.6.1 transitivePeerDependencies: - supports-color - espree@10.2.0: - dependencies: - acorn: 8.13.0 - acorn-jsx: 5.3.2(acorn@8.13.0) - eslint-visitor-keys: 4.1.0 + esm-env@1.2.2: {} espree@10.3.0: dependencies: - acorn: 8.14.0 - acorn-jsx: 5.3.2(acorn@8.14.0) + acorn: 8.16.0 + acorn-jsx: 5.3.2(acorn@8.16.0) eslint-visitor-keys: 4.2.0 - esprima@4.0.1: {} + espree@11.2.0: + dependencies: + acorn: 8.16.0 + acorn-jsx: 5.3.2(acorn@8.16.0) + eslint-visitor-keys: 5.0.1 - esquery@1.6.0: + esquery@1.7.0: dependencies: estraverse: 5.3.0 + esrap@2.2.4: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + '@typescript-eslint/types': 8.18.1 + esrecurse@4.3.0: dependencies: estraverse: 5.3.0 @@ -5013,7 +4783,7 @@ snapshots: estree-util-attach-comments@3.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 estree-util-build-jsx@3.0.1: dependencies: @@ -5026,14 +4796,14 @@ snapshots: estree-util-scope@1.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 devlop: 1.1.0 estree-util-to-js@2.0.0: dependencies: '@types/estree-jsx': 1.0.5 astring: 1.9.0 - source-map: 0.7.4 + source-map: 0.7.6 estree-util-visit@2.0.0: dependencies: @@ -5044,21 +4814,17 @@ snapshots: estree-walker@3.0.3: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 esutils@2.0.3: {} eventemitter3@5.0.1: {} - extend-shallow@2.0.1: - dependencies: - is-extendable: 0.1.1 - extend@3.0.2: {} fast-deep-equal@3.1.3: {} - fast-glob@3.3.2: + fast-glob@3.3.3: dependencies: '@nodelib/fs.stat': 2.0.5 '@nodelib/fs.walk': 1.2.8 @@ -5076,31 +4842,23 @@ snapshots: dependencies: reusify: 1.0.4 + fdir@6.5.0(picomatch@4.0.3): + optionalDependencies: + picomatch: 4.0.3 + file-entry-cache@8.0.0: dependencies: flat-cache: 4.0.1 fill-range@7.1.1: dependencies: - to-regex-range: 5.0.1 - - find-up-simple@1.0.0: {} - - find-up@4.1.0: - dependencies: - locate-path: 5.0.0 - path-exists: 4.0.0 + to-regex-range: 5.0.1 find-up@5.0.0: dependencies: locate-path: 6.0.0 path-exists: 4.0.0 - find-yarn-workspace-root2@1.2.16: - dependencies: - micromatch: 4.0.8 - pkg-dir: 4.2.0 - flat-cache@4.0.1: dependencies: flatted: 3.3.1 @@ -5110,20 +4868,17 @@ snapshots: flattie@1.1.1: {} - focus-trap@7.6.0: + fontace@0.4.1: dependencies: - tabbable: 6.2.0 + fontkitten: 1.0.3 - for-each@0.3.3: + fontkitten@1.0.3: dependencies: - is-callable: 1.2.7 + tiny-inflate: 1.0.3 - foreground-child@3.3.0: + for-each@0.3.3: dependencies: - cross-spawn: 7.0.3 - signal-exit: 4.1.0 - - fraction.js@4.3.7: {} + is-callable: 1.2.7 fsevents@2.3.2: optional: true @@ -5142,12 +4897,8 @@ snapshots: functions-have-names@1.2.3: {} - gensync@1.0.0-beta.2: {} - get-caller-file@2.0.5: {} - get-east-asian-width@1.2.0: {} - get-intrinsic@1.2.4: dependencies: es-errors: 1.3.0 @@ -5172,54 +4923,35 @@ snapshots: dependencies: is-glob: 4.0.3 - glob@10.4.5: - dependencies: - foreground-child: 3.3.0 - jackspeak: 3.4.3 - minimatch: 9.0.5 - minipass: 7.1.2 - package-json-from-dist: 1.0.1 - path-scurry: 1.11.1 - globals@11.12.0: {} - globals@14.0.0: {} - - globals@15.9.0: {} + globals@16.5.0: {} globalthis@1.0.4: dependencies: define-properties: 1.2.1 gopd: 1.0.1 - globby@11.1.0: - dependencies: - array-union: 2.1.0 - dir-glob: 3.0.1 - fast-glob: 3.3.2 - ignore: 5.3.2 - merge2: 1.4.1 - slash: 3.0.0 - gopd@1.0.1: dependencies: get-intrinsic: 1.2.4 graceful-fs@4.2.11: {} - gray-matter@4.0.3: + h3@1.15.9: dependencies: - js-yaml: 3.14.1 - kind-of: 6.0.3 - section-matter: 1.0.0 - strip-bom-string: 1.0.0 + cookie-es: 1.2.2 + crossws: 0.3.5 + defu: 6.1.4 + destr: 2.0.5 + iron-webcrypto: 1.2.1 + node-mock-http: 1.0.4 + radix3: 1.1.2 + ufo: 1.6.3 + uncrypto: 0.1.3 has-bigints@1.0.2: {} - has-flag@3.0.0: {} - - has-flag@4.0.0: {} - has-property-descriptors@1.0.2: dependencies: es-define-property: 1.0.0 @@ -5275,14 +5007,14 @@ snapshots: mdast-util-to-hast: 13.2.0 parse5: 7.1.2 unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 vfile: 6.0.3 web-namespaces: 2.0.1 zwitch: 2.0.4 hast-util-to-estree@3.1.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 '@types/estree-jsx': 1.0.5 '@types/hast': 3.0.4 comma-separated-tokens: 2.0.3 @@ -5301,7 +5033,7 @@ snapshots: transitivePeerDependencies: - supports-color - hast-util-to-html@9.0.3: + hast-util-to-html@9.0.5: dependencies: '@types/hast': 3.0.4 '@types/unist': 3.0.3 @@ -5310,14 +5042,14 @@ snapshots: hast-util-whitespace: 3.0.0 html-void-elements: 3.0.0 mdast-util-to-hast: 13.2.0 - property-information: 6.5.0 + property-information: 7.1.0 space-separated-tokens: 2.0.2 stringify-entities: 4.0.4 zwitch: 2.0.4 hast-util-to-jsx-runtime@2.3.2: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 '@types/hast': 3.0.4 '@types/unist': 3.0.3 comma-separated-tokens: 2.0.3 @@ -5368,17 +5100,10 @@ snapshots: html-void-elements@3.0.0: {} - http-cache-semantics@4.1.1: {} + http-cache-semantics@4.2.0: {} ignore@5.3.2: {} - import-fresh@3.3.0: - dependencies: - parent-module: 1.0.1 - resolve-from: 4.0.0 - - import-meta-resolve@4.1.0: {} - imurmurhash@0.1.4: {} inline-style-parser@0.1.1: {} @@ -5391,6 +5116,8 @@ snapshots: hasown: 2.0.2 side-channel: 1.0.6 + iron-webcrypto@1.2.1: {} + is-alphabetical@2.0.1: {} is-alphanumerical@2.0.1: @@ -5403,16 +5130,10 @@ snapshots: call-bind: 1.0.7 get-intrinsic: 1.2.4 - is-arrayish@0.3.2: {} - is-bigint@1.0.4: dependencies: has-bigints: 1.0.2 - is-binary-path@2.1.0: - dependencies: - binary-extensions: 2.3.0 - is-boolean-object@1.1.2: dependencies: call-bind: 1.0.7 @@ -5420,10 +5141,6 @@ snapshots: is-callable@1.2.7: {} - is-core-module@2.15.1: - dependencies: - hasown: 2.0.2 - is-data-view@1.0.1: dependencies: is-typed-array: 1.1.13 @@ -5436,8 +5153,6 @@ snapshots: is-docker@3.0.0: {} - is-extendable@0.1.1: {} - is-extglob@2.1.1: {} is-fullwidth-code-point@3.0.0: {} @@ -5452,8 +5167,6 @@ snapshots: dependencies: is-docker: 3.0.0 - is-interactive@2.0.0: {} - is-negative-zero@2.0.3: {} is-number-object@1.0.7: @@ -5464,7 +5177,7 @@ snapshots: is-plain-obj@4.1.0: {} - is-reference@3.0.2: + is-reference@3.0.3: dependencies: '@types/estree': 1.0.6 @@ -5489,10 +5202,6 @@ snapshots: dependencies: which-typed-array: 1.1.15 - is-unicode-supported@1.3.0: {} - - is-unicode-supported@2.1.0: {} - is-weakref@1.0.2: dependencies: call-bind: 1.0.7 @@ -5505,22 +5214,11 @@ snapshots: isexe@2.0.0: {} - jackspeak@3.4.3: - dependencies: - '@isaacs/cliui': 8.0.2 - optionalDependencies: - '@pkgjs/parseargs': 0.11.0 - - jiti@1.21.6: {} + jiti@2.6.1: {} js-tokens@4.0.0: {} - js-yaml@3.14.1: - dependencies: - argparse: 1.0.10 - esprima: 4.0.1 - - js-yaml@4.1.0: + js-yaml@4.1.1: dependencies: argparse: 2.0.1 @@ -5534,8 +5232,6 @@ snapshots: json-stable-stringify-without-jsonify@1.0.1: {} - json5@2.2.3: {} - jsonc-parser@2.3.1: {} jsonc-parser@3.3.1: {} @@ -5551,10 +5247,6 @@ snapshots: dependencies: json-buffer: 3.0.1 - kind-of@6.0.3: {} - - kleur@3.0.3: {} - kleur@4.1.5: {} language-subtag-registry@0.3.23: {} @@ -5568,66 +5260,79 @@ snapshots: prelude-ls: 1.2.1 type-check: 0.4.0 - lilconfig@3.1.2: {} + lightningcss-android-arm64@1.32.0: + optional: true - lilconfig@3.1.3: {} + lightningcss-darwin-arm64@1.32.0: + optional: true - lines-and-columns@1.2.4: {} + lightningcss-darwin-x64@1.32.0: + optional: true - load-yaml-file@0.2.0: - dependencies: - graceful-fs: 4.2.11 - js-yaml: 3.14.1 - pify: 4.0.1 - strip-bom: 3.0.0 + lightningcss-freebsd-x64@1.32.0: + optional: true - locate-character@3.0.0: {} + lightningcss-linux-arm-gnueabihf@1.32.0: + optional: true - locate-path@5.0.0: - dependencies: - p-locate: 4.1.0 + lightningcss-linux-arm64-gnu@1.32.0: + optional: true - locate-path@6.0.0: - dependencies: - p-locate: 5.0.0 + lightningcss-linux-arm64-musl@1.32.0: + optional: true - lodash.merge@4.6.2: {} + lightningcss-linux-x64-gnu@1.32.0: + optional: true - lodash@4.17.21: {} + lightningcss-linux-x64-musl@1.32.0: + optional: true - log-symbols@6.0.0: - dependencies: - chalk: 5.3.0 - is-unicode-supported: 1.3.0 + lightningcss-win32-arm64-msvc@1.32.0: + optional: true - longest-streak@3.1.0: {} + lightningcss-win32-x64-msvc@1.32.0: + optional: true - lower-case@2.0.2: + lightningcss@1.32.0: dependencies: - tslib: 2.7.0 + detect-libc: 2.1.2 + optionalDependencies: + lightningcss-android-arm64: 1.32.0 + lightningcss-darwin-arm64: 1.32.0 + lightningcss-darwin-x64: 1.32.0 + lightningcss-freebsd-x64: 1.32.0 + lightningcss-linux-arm-gnueabihf: 1.32.0 + lightningcss-linux-arm64-gnu: 1.32.0 + lightningcss-linux-arm64-musl: 1.32.0 + lightningcss-linux-x64-gnu: 1.32.0 + lightningcss-linux-x64-musl: 1.32.0 + lightningcss-win32-arm64-msvc: 1.32.0 + lightningcss-win32-x64-msvc: 1.32.0 - lru-cache@10.4.3: {} + locate-character@3.0.0: {} - lru-cache@5.1.1: + locate-path@6.0.0: dependencies: - yallist: 3.1.1 + p-locate: 5.0.0 - lucide-svelte@0.468.0(svelte@4.2.19): - dependencies: - svelte: 4.2.19 + longest-streak@3.1.0: {} - magic-string@0.30.11: - dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + lru-cache@11.2.7: {} + + lz-string@1.5.0: {} magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 - magicast@0.3.5: + magic-string@0.30.21: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.5 + + magicast@0.5.2: dependencies: - '@babel/parser': 7.25.8 - '@babel/types': 7.25.8 + '@babel/parser': 7.29.2 + '@babel/types': 7.29.0 source-map-js: 1.2.1 markdown-extensions@2.0.0: {} @@ -5638,14 +5343,14 @@ snapshots: dependencies: '@types/mdast': 4.0.4 '@types/unist': 3.0.3 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 mdast-util-find-and-replace@3.0.1: dependencies: '@types/mdast': 4.0.4 escape-string-regexp: 5.0.0 unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 + unist-util-visit-parents: 6.0.2 mdast-util-from-markdown@2.0.1: dependencies: @@ -5784,7 +5489,7 @@ snapshots: micromark-util-sanitize-uri: 2.0.0 trim-lines: 3.0.1 unist-util-position: 5.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 vfile: 6.0.3 mdast-util-to-markdown@2.1.0: @@ -5795,14 +5500,16 @@ snapshots: mdast-util-phrasing: 4.1.0 mdast-util-to-string: 4.0.0 micromark-util-decode-string: 2.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 zwitch: 2.0.4 mdast-util-to-string@4.0.0: dependencies: '@types/mdast': 4.0.4 - mdn-data@2.0.30: {} + mdn-data@2.0.28: {} + + mdn-data@2.27.1: {} merge2@1.4.1: {} @@ -5885,7 +5592,7 @@ snapshots: micromark-extension-mdx-expression@3.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 devlop: 1.1.0 micromark-factory-mdx-expression: 2.0.2 micromark-factory-space: 2.0.0 @@ -5897,7 +5604,7 @@ snapshots: micromark-extension-mdx-jsx@3.0.1: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 devlop: 1.1.0 estree-util-is-identifier-name: 3.0.0 micromark-factory-mdx-expression: 2.0.2 @@ -5914,7 +5621,7 @@ snapshots: micromark-extension-mdxjs-esm@3.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 micromark-util-character: 2.1.0 @@ -5926,8 +5633,8 @@ snapshots: micromark-extension-mdxjs@3.0.0: dependencies: - acorn: 8.13.0 - acorn-jsx: 5.3.2(acorn@8.13.0) + acorn: 8.16.0 + acorn-jsx: 5.3.2(acorn@8.16.0) micromark-extension-mdx-expression: 3.0.0 micromark-extension-mdx-jsx: 3.0.1 micromark-extension-mdx-md: 2.0.0 @@ -5950,7 +5657,7 @@ snapshots: micromark-factory-mdx-expression@2.0.2: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 devlop: 1.1.0 micromark-factory-space: 2.0.0 micromark-util-character: 2.1.0 @@ -6015,7 +5722,7 @@ snapshots: micromark-util-events-to-acorn@2.0.2: dependencies: '@types/acorn': 4.0.6 - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 '@types/unist': 3.0.3 devlop: 1.1.0 estree-util-visit: 2.0.0 @@ -6053,7 +5760,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.7 + debug: 4.4.3 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -6077,33 +5784,21 @@ snapshots: braces: 3.0.3 picomatch: 2.3.1 - mimic-function@5.0.1: {} + minimatch@10.2.4: + dependencies: + brace-expansion: 5.0.4 minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 - minimatch@9.0.5: - dependencies: - brace-expansion: 2.0.1 - - minipass@7.1.2: {} - - mrmime@2.0.0: {} + mrmime@2.0.1: {} ms@2.1.3: {} muggle-string@0.4.1: {} - mz@2.7.0: - dependencies: - any-promise: 1.3.0 - object-assign: 4.1.1 - thenify-all: 1.6.0 - - nanoid@3.3.7: {} - - nanoid@5.0.7: {} + nanoid@3.3.11: {} natural-compare@1.4.0: {} @@ -6113,20 +5808,15 @@ snapshots: dependencies: '@types/nlcst': 2.0.3 - no-case@3.0.4: - dependencies: - lower-case: 2.0.2 - tslib: 2.7.0 + node-fetch-native@1.6.7: {} - node-releases@2.0.18: {} + node-mock-http@1.0.4: {} normalize-path@3.0.0: {} - normalize-range@0.1.2: {} - - object-assign@4.1.1: {} - - object-hash@3.0.0: {} + nth-check@2.1.1: + dependencies: + boolbase: 1.0.0 object-inspect@1.13.2: {} @@ -6152,13 +5842,23 @@ snapshots: define-properties: 1.2.1 es-object-atoms: 1.0.0 - onetime@7.0.0: + obug@2.1.1: {} + + ofetch@1.5.1: dependencies: - mimic-function: 5.0.1 + destr: 2.0.5 + node-fetch-native: 1.6.7 + ufo: 1.6.3 + + ohash@2.0.11: {} + + oniguruma-parser@0.12.1: {} - oniguruma-to-js@0.4.3: + oniguruma-to-es@4.3.5: dependencies: - regex: 4.3.2 + oniguruma-parser: 0.12.1 + regex: 6.1.0 + regex-recursion: 6.0.2 optionator@0.9.4: dependencies: @@ -6169,52 +5869,26 @@ snapshots: type-check: 0.4.0 word-wrap: 1.2.5 - ora@8.1.0: - dependencies: - chalk: 5.3.0 - cli-cursor: 5.0.0 - cli-spinners: 2.9.2 - is-interactive: 2.0.0 - is-unicode-supported: 2.1.0 - log-symbols: 6.0.0 - stdin-discarder: 0.2.2 - string-width: 7.2.0 - strip-ansi: 7.1.0 - - p-limit@2.3.0: - dependencies: - p-try: 2.2.0 - p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 - p-limit@6.1.0: + p-limit@7.3.0: dependencies: - yocto-queue: 1.1.1 - - p-locate@4.1.0: - dependencies: - p-limit: 2.3.0 + yocto-queue: 1.2.2 p-locate@5.0.0: dependencies: p-limit: 3.1.0 - p-queue@8.0.1: + p-queue@9.1.0: dependencies: eventemitter3: 5.0.1 - p-timeout: 6.1.2 - - p-timeout@6.1.2: {} - - p-try@2.2.0: {} + p-timeout: 7.0.1 - package-json-from-dist@1.0.1: {} + p-timeout@7.0.1: {} - parent-module@1.0.1: - dependencies: - callsites: 3.1.0 + package-manager-detector@1.6.0: {} parse-entities@4.0.1: dependencies: @@ -6240,171 +5914,83 @@ snapshots: dependencies: entities: 4.5.0 - pascal-case@3.1.2: - dependencies: - no-case: 3.0.4 - tslib: 2.7.0 - path-browserify@1.0.1: {} path-exists@4.0.0: {} path-key@3.1.1: {} - path-parse@1.0.7: {} - - path-scurry@1.11.1: - dependencies: - lru-cache: 10.4.3 - minipass: 7.1.2 - - path-type@4.0.0: {} - - periscopic@3.1.0: - dependencies: - '@types/estree': 1.0.6 - estree-walker: 3.0.3 - is-reference: 3.0.2 - - picocolors@1.1.0: {} + piccolore@0.1.3: {} picocolors@1.1.1: {} picomatch@2.3.1: {} - pify@2.3.0: {} + picomatch@4.0.3: {} - pify@4.0.1: {} + playwright-core@1.58.2: {} - pirates@4.0.6: {} - - pkg-dir@4.2.0: - dependencies: - find-up: 4.1.0 - - playwright-core@1.49.1: {} - - playwright@1.49.1: + playwright@1.58.2: dependencies: - playwright-core: 1.49.1 + playwright-core: 1.58.2 optionalDependencies: fsevents: 2.3.2 possible-typed-array-names@1.0.0: {} - postcss-import@15.1.0(postcss@8.4.47): - dependencies: - postcss: 8.4.47 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.8 - - postcss-js@4.0.1(postcss@8.4.47): - dependencies: - camelcase-css: 2.0.1 - postcss: 8.4.47 - - postcss-load-config@4.0.2(postcss@8.4.47): - dependencies: - lilconfig: 3.1.2 - yaml: 2.5.1 - optionalDependencies: - postcss: 8.4.47 - - postcss-load-config@4.0.2(postcss@8.4.49): - dependencies: - lilconfig: 3.1.2 - yaml: 2.5.1 - optionalDependencies: - postcss: 8.4.49 - - postcss-nested@6.2.0(postcss@8.4.47): - dependencies: - postcss: 8.4.47 - postcss-selector-parser: 6.1.2 - - postcss-selector-parser@6.1.2: - dependencies: - cssesc: 3.0.0 - util-deprecate: 1.0.2 - postcss-selector-parser@7.0.0: dependencies: cssesc: 3.0.0 util-deprecate: 1.0.2 - postcss-value-parser@4.2.0: {} - - postcss@8.4.47: - dependencies: - nanoid: 3.3.7 - picocolors: 1.1.0 - source-map-js: 1.2.1 - - postcss@8.4.49: + postcss@8.5.8: dependencies: - nanoid: 3.3.7 + nanoid: 3.3.11 picocolors: 1.1.1 source-map-js: 1.2.1 - preferred-pm@4.0.0: - dependencies: - find-up-simple: 1.0.0 - find-yarn-workspace-root2: 1.2.16 - which-pm: 3.0.0 - prelude-ls@1.2.1: {} prettier-plugin-astro@0.14.1: dependencies: '@astrojs/compiler': 2.10.3 - prettier: 3.4.2 + prettier: 3.8.1 sass-formatter: 0.7.9 - prettier-plugin-tailwindcss@0.6.9(@ianvs/prettier-plugin-sort-imports@4.4.0(prettier@3.4.2))(prettier-plugin-astro@0.14.1)(prettier@3.4.2): + prettier-plugin-tailwindcss@0.7.2(@ianvs/prettier-plugin-sort-imports@4.7.1(prettier@3.8.1))(prettier-plugin-astro@0.14.1)(prettier@3.8.1): dependencies: - prettier: 3.4.2 + prettier: 3.8.1 optionalDependencies: - '@ianvs/prettier-plugin-sort-imports': 4.4.0(prettier@3.4.2) + '@ianvs/prettier-plugin-sort-imports': 4.7.1(prettier@3.8.1) prettier-plugin-astro: 0.14.1 - prettier@2.8.7: - optional: true - - prettier@3.4.2: {} + prettier@3.8.1: {} - prismjs@1.29.0: {} - - prompts@2.4.2: - dependencies: - kleur: 3.0.3 - sisteransi: 1.0.5 + prismjs@1.30.0: {} property-information@6.5.0: {} + property-information@7.1.0: {} + punycode@2.3.1: {} queue-microtask@1.2.3: {} - read-cache@1.0.0: - dependencies: - pify: 2.3.0 - - readdirp@3.6.0: - dependencies: - picomatch: 2.3.1 + radix3@1.1.2: {} readdirp@4.0.2: {} + readdirp@5.0.0: {} + recma-build-jsx@1.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 estree-util-build-jsx: 3.0.1 vfile: 6.0.3 - recma-jsx@1.0.0(acorn@8.12.1): + recma-jsx@1.0.0(acorn@8.16.0): dependencies: - acorn-jsx: 5.3.2(acorn@8.12.1) + acorn-jsx: 5.3.2(acorn@8.16.0) estree-util-to-js: 2.0.0 recma-parse: 1.0.0 recma-stringify: 1.0.0 @@ -6414,19 +6000,27 @@ snapshots: recma-parse@1.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 esast-util-from-js: 2.0.1 unified: 11.0.5 vfile: 6.0.3 recma-stringify@1.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 estree-util-to-js: 2.0.0 unified: 11.0.5 vfile: 6.0.3 - regex@4.3.2: {} + regex-recursion@6.0.2: + dependencies: + regex-utilities: 2.3.0 + + regex-utilities@2.3.0: {} + + regex@6.1.0: + dependencies: + regex-utilities: 2.3.0 regexp.prototype.flags@1.5.2: dependencies: @@ -6449,7 +6043,7 @@ snapshots: rehype-recma@1.0.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 '@types/hast': 3.0.4 hast-util-to-estree: 3.1.0 transitivePeerDependencies: @@ -6458,7 +6052,7 @@ snapshots: rehype-stringify@10.0.1: dependencies: '@types/hast': 3.0.4 - hast-util-to-html: 9.0.3 + hast-util-to-html: 9.0.5 unified: 11.0.5 rehype@13.0.2: @@ -6468,7 +6062,7 @@ snapshots: rehype-stringify: 10.0.1 unified: 11.0.5 - remark-gfm@4.0.0: + remark-gfm@4.0.1: dependencies: '@types/mdast': 4.0.4 mdast-util-gfm: 3.0.0 @@ -6495,7 +6089,7 @@ snapshots: transitivePeerDependencies: - supports-color - remark-rehype@11.1.1: + remark-rehype@11.1.2: dependencies: '@types/hast': 3.0.4 '@types/mdast': 4.0.4 @@ -6508,7 +6102,7 @@ snapshots: retext: 9.0.0 retext-smartypants: 6.1.1 unified: 11.0.5 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 remark-stringify@11.0.0: dependencies: @@ -6524,19 +6118,6 @@ snapshots: require-from-string@2.0.2: {} - resolve-from@4.0.0: {} - - resolve@1.22.8: - dependencies: - is-core-module: 2.15.1 - path-parse: 1.0.7 - supports-preserve-symlinks-flag: 1.0.0 - - restore-cursor@5.1.0: - dependencies: - onetime: 7.0.0 - signal-exit: 4.1.0 - retext-latin@4.0.0: dependencies: '@types/nlcst': 2.0.3 @@ -6547,7 +6128,7 @@ snapshots: dependencies: '@types/nlcst': 2.0.3 nlcst-to-string: 4.0.0 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 retext-stringify@4.0.0: dependencies: @@ -6564,32 +6145,48 @@ snapshots: reusify@1.0.4: {} - rollup@4.22.5: + rollup@4.59.0: dependencies: - '@types/estree': 1.0.6 + '@types/estree': 1.0.8 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.22.5 - '@rollup/rollup-android-arm64': 4.22.5 - '@rollup/rollup-darwin-arm64': 4.22.5 - '@rollup/rollup-darwin-x64': 4.22.5 - '@rollup/rollup-linux-arm-gnueabihf': 4.22.5 - '@rollup/rollup-linux-arm-musleabihf': 4.22.5 - '@rollup/rollup-linux-arm64-gnu': 4.22.5 - '@rollup/rollup-linux-arm64-musl': 4.22.5 - '@rollup/rollup-linux-powerpc64le-gnu': 4.22.5 - '@rollup/rollup-linux-riscv64-gnu': 4.22.5 - '@rollup/rollup-linux-s390x-gnu': 4.22.5 - '@rollup/rollup-linux-x64-gnu': 4.22.5 - '@rollup/rollup-linux-x64-musl': 4.22.5 - '@rollup/rollup-win32-arm64-msvc': 4.22.5 - '@rollup/rollup-win32-ia32-msvc': 4.22.5 - '@rollup/rollup-win32-x64-msvc': 4.22.5 + '@rollup/rollup-android-arm-eabi': 4.59.0 + '@rollup/rollup-android-arm64': 4.59.0 + '@rollup/rollup-darwin-arm64': 4.59.0 + '@rollup/rollup-darwin-x64': 4.59.0 + '@rollup/rollup-freebsd-arm64': 4.59.0 + '@rollup/rollup-freebsd-x64': 4.59.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.59.0 + '@rollup/rollup-linux-arm-musleabihf': 4.59.0 + '@rollup/rollup-linux-arm64-gnu': 4.59.0 + '@rollup/rollup-linux-arm64-musl': 4.59.0 + '@rollup/rollup-linux-loong64-gnu': 4.59.0 + '@rollup/rollup-linux-loong64-musl': 4.59.0 + '@rollup/rollup-linux-ppc64-gnu': 4.59.0 + '@rollup/rollup-linux-ppc64-musl': 4.59.0 + '@rollup/rollup-linux-riscv64-gnu': 4.59.0 + '@rollup/rollup-linux-riscv64-musl': 4.59.0 + '@rollup/rollup-linux-s390x-gnu': 4.59.0 + '@rollup/rollup-linux-x64-gnu': 4.59.0 + '@rollup/rollup-linux-x64-musl': 4.59.0 + '@rollup/rollup-openbsd-x64': 4.59.0 + '@rollup/rollup-openharmony-arm64': 4.59.0 + '@rollup/rollup-win32-arm64-msvc': 4.59.0 + '@rollup/rollup-win32-ia32-msvc': 4.59.0 + '@rollup/rollup-win32-x64-gnu': 4.59.0 + '@rollup/rollup-win32-x64-msvc': 4.59.0 fsevents: 2.3.3 run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 + runed@0.35.1(svelte@5.54.0): + dependencies: + dequal: 2.0.3 + esm-env: 1.2.2 + lz-string: 1.5.0 + svelte: 5.54.0 + s.color@0.0.15: {} safe-array-concat@1.1.2: @@ -6609,14 +6206,11 @@ snapshots: dependencies: suf-log: 2.5.3 - section-matter@1.0.0: - dependencies: - extend-shallow: 2.0.1 - kind-of: 6.0.3 + sax@1.6.0: {} - semver@6.3.1: {} + scule@1.3.0: {} - semver@7.6.3: {} + semver@7.7.4: {} set-function-length@1.2.2: dependencies: @@ -6634,31 +6228,36 @@ snapshots: functions-have-names: 1.2.3 has-property-descriptors: 1.0.2 - sharp@0.33.5: + sharp@0.34.5: dependencies: - color: 4.2.3 - detect-libc: 2.0.3 - semver: 7.6.3 + '@img/colour': 1.1.0 + detect-libc: 2.1.2 + semver: 7.7.4 optionalDependencies: - '@img/sharp-darwin-arm64': 0.33.5 - '@img/sharp-darwin-x64': 0.33.5 - '@img/sharp-libvips-darwin-arm64': 1.0.4 - '@img/sharp-libvips-darwin-x64': 1.0.4 - '@img/sharp-libvips-linux-arm': 1.0.5 - '@img/sharp-libvips-linux-arm64': 1.0.4 - '@img/sharp-libvips-linux-s390x': 1.0.4 - '@img/sharp-libvips-linux-x64': 1.0.4 - '@img/sharp-libvips-linuxmusl-arm64': 1.0.4 - '@img/sharp-libvips-linuxmusl-x64': 1.0.4 - '@img/sharp-linux-arm': 0.33.5 - '@img/sharp-linux-arm64': 0.33.5 - '@img/sharp-linux-s390x': 0.33.5 - '@img/sharp-linux-x64': 0.33.5 - '@img/sharp-linuxmusl-arm64': 0.33.5 - '@img/sharp-linuxmusl-x64': 0.33.5 - '@img/sharp-wasm32': 0.33.5 - '@img/sharp-win32-ia32': 0.33.5 - '@img/sharp-win32-x64': 0.33.5 + '@img/sharp-darwin-arm64': 0.34.5 + '@img/sharp-darwin-x64': 0.34.5 + '@img/sharp-libvips-darwin-arm64': 1.2.4 + '@img/sharp-libvips-darwin-x64': 1.2.4 + '@img/sharp-libvips-linux-arm': 1.2.4 + '@img/sharp-libvips-linux-arm64': 1.2.4 + '@img/sharp-libvips-linux-ppc64': 1.2.4 + '@img/sharp-libvips-linux-riscv64': 1.2.4 + '@img/sharp-libvips-linux-s390x': 1.2.4 + '@img/sharp-libvips-linux-x64': 1.2.4 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.4 + '@img/sharp-libvips-linuxmusl-x64': 1.2.4 + '@img/sharp-linux-arm': 0.34.5 + '@img/sharp-linux-arm64': 0.34.5 + '@img/sharp-linux-ppc64': 0.34.5 + '@img/sharp-linux-riscv64': 0.34.5 + '@img/sharp-linux-s390x': 0.34.5 + '@img/sharp-linux-x64': 0.34.5 + '@img/sharp-linuxmusl-arm64': 0.34.5 + '@img/sharp-linuxmusl-x64': 0.34.5 + '@img/sharp-wasm32': 0.34.5 + '@img/sharp-win32-arm64': 0.34.5 + '@img/sharp-win32-ia32': 0.34.5 + '@img/sharp-win32-x64': 0.34.5 shebang-command@2.0.0: dependencies: @@ -6666,13 +6265,15 @@ snapshots: shebang-regex@3.0.0: {} - shiki@1.22.0: + shiki@4.0.2: dependencies: - '@shikijs/core': 1.22.0 - '@shikijs/engine-javascript': 1.22.0 - '@shikijs/engine-oniguruma': 1.22.0 - '@shikijs/types': 1.22.0 - '@shikijs/vscode-textmate': 9.3.0 + '@shikijs/core': 4.0.2 + '@shikijs/engine-javascript': 4.0.2 + '@shikijs/engine-oniguruma': 4.0.2 + '@shikijs/langs': 4.0.2 + '@shikijs/themes': 4.0.2 + '@shikijs/types': 4.0.2 + '@shikijs/vscode-textmate': 10.0.2 '@types/hast': 3.0.4 side-channel@1.0.6: @@ -6682,44 +6283,22 @@ snapshots: get-intrinsic: 1.2.4 object-inspect: 1.13.2 - signal-exit@4.1.0: {} - - simple-swizzle@0.2.2: - dependencies: - is-arrayish: 0.3.2 - sisteransi@1.0.5: {} - slash@3.0.0: {} + smol-toml@1.6.0: {} source-map-js@1.2.1: {} - source-map@0.7.4: {} + source-map@0.7.6: {} space-separated-tokens@2.0.2: {} - sprintf-js@1.0.3: {} - - stdin-discarder@0.2.2: {} - string-width@4.2.3: dependencies: emoji-regex: 8.0.0 is-fullwidth-code-point: 3.0.0 strip-ansi: 6.0.1 - string-width@5.1.2: - dependencies: - eastasianwidth: 0.2.0 - emoji-regex: 9.2.2 - strip-ansi: 7.1.0 - - string-width@7.2.0: - dependencies: - emoji-regex: 10.4.0 - get-east-asian-width: 1.2.0 - strip-ansi: 7.1.0 - string.prototype.includes@2.0.1: dependencies: call-bind: 1.0.7 @@ -6754,16 +6333,6 @@ snapshots: dependencies: ansi-regex: 5.0.1 - strip-ansi@7.1.0: - dependencies: - ansi-regex: 6.1.0 - - strip-bom-string@1.0.0: {} - - strip-bom@3.0.0: {} - - strip-json-comments@3.1.1: {} - style-to-object@0.4.4: dependencies: inline-style-parser: 0.1.1 @@ -6772,57 +6341,54 @@ snapshots: dependencies: inline-style-parser: 0.2.4 - sucrase@3.35.0: - dependencies: - '@jridgewell/gen-mapping': 0.3.5 - commander: 4.1.1 - glob: 10.4.5 - lines-and-columns: 1.2.4 - mz: 2.7.0 - pirates: 4.0.6 - ts-interface-checker: 0.1.13 - suf-log@2.5.3: dependencies: s.color: 0.0.15 - supports-color@5.5.0: - dependencies: - has-flag: 3.0.0 - - supports-color@7.2.0: - dependencies: - has-flag: 4.0.0 - - supports-preserve-symlinks-flag@1.0.0: {} - - svelte-hmr@0.16.0(svelte@4.2.19): + svelte-toolbelt@0.10.6(svelte@5.54.0): dependencies: - svelte: 4.2.19 + clsx: 2.1.1 + runed: 0.35.1(svelte@5.54.0) + style-to-object: 1.0.8 + svelte: 5.54.0 + transitivePeerDependencies: + - '@sveltejs/kit' - svelte2tsx@0.7.21(svelte@4.2.19)(typescript@5.6.2): + svelte2tsx@0.7.52(svelte@5.54.0)(typescript@5.9.3): dependencies: dedent-js: 1.0.1 - pascal-case: 3.1.2 - svelte: 4.2.19 - typescript: 5.6.2 + scule: 1.3.0 + svelte: 5.54.0 + typescript: 5.9.3 - svelte@4.2.19: + svelte@5.54.0: dependencies: - '@ampproject/remapping': 2.3.0 + '@jridgewell/remapping': 2.3.5 '@jridgewell/sourcemap-codec': 1.5.0 - '@jridgewell/trace-mapping': 0.3.25 + '@sveltejs/acorn-typescript': 1.0.9(acorn@8.14.0) '@types/estree': 1.0.6 - acorn: 8.12.1 - aria-query: 5.3.2 + '@types/trusted-types': 2.0.7 + acorn: 8.14.0 + aria-query: 5.3.1 axobject-query: 4.1.0 - code-red: 1.0.4 - css-tree: 2.3.1 - estree-walker: 3.0.3 - is-reference: 3.0.2 + clsx: 2.1.1 + devalue: 5.6.4 + esm-env: 1.2.2 + esrap: 2.2.4 + is-reference: 3.0.3 locate-character: 3.0.0 - magic-string: 0.30.11 - periscopic: 3.1.0 + magic-string: 0.30.12 + zimmerframe: 1.1.4 + + svgo@4.0.1: + dependencies: + commander: 11.1.0 + css-select: 5.2.2 + css-tree: 3.2.1 + css-what: 6.2.2 + csso: 5.0.5 + picocolors: 1.1.1 + sax: 1.6.0 synckit@0.9.1: dependencies: @@ -6831,51 +6397,28 @@ snapshots: tabbable@6.2.0: {} - tailwind-merge@2.5.5: {} + tailwind-merge@3.5.0: {} - tailwind-variants@0.3.0(tailwindcss@3.4.17): + tailwind-variants@3.2.2(tailwind-merge@3.5.0)(tailwindcss@4.2.2): dependencies: - tailwind-merge: 2.5.5 - tailwindcss: 3.4.17 + tailwindcss: 4.2.2 + optionalDependencies: + tailwind-merge: 3.5.0 - tailwindcss@3.4.17: - dependencies: - '@alloc/quick-lru': 5.2.0 - arg: 5.0.2 - chokidar: 3.6.0 - didyoumean: 1.2.2 - dlv: 1.1.3 - fast-glob: 3.3.2 - glob-parent: 6.0.2 - is-glob: 4.0.3 - jiti: 1.21.6 - lilconfig: 3.1.3 - micromatch: 4.0.8 - normalize-path: 3.0.0 - object-hash: 3.0.0 - picocolors: 1.1.1 - postcss: 8.4.47 - postcss-import: 15.1.0(postcss@8.4.47) - postcss-js: 4.0.1(postcss@8.4.47) - postcss-load-config: 4.0.2(postcss@8.4.47) - postcss-nested: 6.2.0(postcss@8.4.47) - postcss-selector-parser: 6.1.2 - resolve: 1.22.8 - sucrase: 3.35.0 - transitivePeerDependencies: - - ts-node + tailwindcss@4.2.2: {} - thenify-all@1.6.0: - dependencies: - thenify: 3.3.1 + tapable@2.3.0: {} - thenify@3.3.1: - dependencies: - any-promise: 1.3.0 + tiny-inflate@1.0.3: {} + + tinyclip@0.1.12: {} - tinyexec@0.3.1: {} + tinyexec@1.0.4: {} - to-fast-properties@2.0.0: {} + tinyglobby@0.2.15: + dependencies: + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 to-regex-range@5.0.1: dependencies: @@ -6885,15 +6428,13 @@ snapshots: trough@2.2.0: {} - ts-api-utils@1.3.0(typescript@5.6.2): + ts-api-utils@2.5.0(typescript@5.9.3): dependencies: - typescript: 5.6.2 - - ts-interface-checker@0.1.13: {} + typescript: 5.9.3 - tsconfck@3.1.4(typescript@5.6.2): + tsconfck@3.1.6(typescript@5.9.3): optionalDependencies: - typescript: 5.6.2 + typescript: 5.9.3 tslib@2.7.0: {} @@ -6901,8 +6442,6 @@ snapshots: dependencies: prelude-ls: 1.2.1 - type-fest@4.26.1: {} - typed-array-buffer@1.0.2: dependencies: call-bind: 1.0.7 @@ -6937,11 +6476,15 @@ snapshots: typesafe-path@0.2.2: {} - typescript-auto-import-cache@0.3.3: + typescript-auto-import-cache@0.3.6: dependencies: - semver: 7.6.3 + semver: 7.7.4 + + typescript@5.9.3: {} - typescript@5.6.2: {} + ufo@1.6.3: {} + + ultrahtml@1.6.0: {} unbox-primitive@1.0.2: dependencies: @@ -6950,9 +6493,9 @@ snapshots: has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 - undici-types@5.26.5: {} + uncrypto@0.1.3: {} - undici-types@6.20.0: {} + undici-types@7.18.2: {} unified@11.0.5: dependencies: @@ -6964,6 +6507,12 @@ snapshots: trough: 2.2.0 vfile: 6.0.3 + unifont@0.7.4: + dependencies: + css-tree: 3.2.1 + ofetch: 1.5.1 + ohash: 2.0.11 + unist-util-find-after@5.0.0: dependencies: '@types/unist': 3.0.3 @@ -6989,7 +6538,7 @@ snapshots: unist-util-remove-position@5.0.0: dependencies: '@types/unist': 3.0.3 - unist-util-visit: 5.0.0 + unist-util-visit: 5.1.0 unist-util-stringify-position@4.0.0: dependencies: @@ -6999,22 +6548,27 @@ snapshots: dependencies: '@types/unist': 3.0.3 - unist-util-visit-parents@6.0.1: + unist-util-visit-parents@6.0.2: dependencies: '@types/unist': 3.0.3 unist-util-is: 6.0.0 - unist-util-visit@5.0.0: + unist-util-visit@5.1.0: dependencies: '@types/unist': 3.0.3 unist-util-is: 6.0.0 - unist-util-visit-parents: 6.0.1 + unist-util-visit-parents: 6.0.2 - update-browserslist-db@1.1.1(browserslist@4.24.0): + unstorage@1.17.4: dependencies: - browserslist: 4.24.0 - escalade: 3.2.0 - picocolors: 1.1.0 + anymatch: 3.1.3 + chokidar: 5.0.0 + destr: 2.0.5 + h3: 1.15.9 + lru-cache: 11.2.7 + node-fetch-native: 1.6.7 + ofetch: 1.5.1 + ufo: 1.6.3 uri-js@4.4.1: dependencies: @@ -7037,92 +6591,94 @@ snapshots: '@types/unist': 3.0.3 vfile-message: 4.0.2 - vite@5.4.9(@types/node@22.10.2): + vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2): dependencies: - esbuild: 0.21.5 - postcss: 8.4.47 - rollup: 4.22.5 + esbuild: 0.27.4 + fdir: 6.5.0(picomatch@4.0.3) + picomatch: 4.0.3 + postcss: 8.5.8 + rollup: 4.59.0 + tinyglobby: 0.2.15 optionalDependencies: - '@types/node': 22.10.2 + '@types/node': 25.5.0 fsevents: 2.3.3 + jiti: 2.6.1 + lightningcss: 1.32.0 + yaml: 2.8.2 - vitefu@0.2.5(vite@5.4.9(@types/node@22.10.2)): - optionalDependencies: - vite: 5.4.9(@types/node@22.10.2) - - vitefu@1.0.3(vite@5.4.9(@types/node@22.10.2)): + vitefu@1.1.2(vite@7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2)): optionalDependencies: - vite: 5.4.9(@types/node@22.10.2) + vite: 7.3.1(@types/node@25.5.0)(jiti@2.6.1)(lightningcss@1.32.0)(yaml@2.8.2) - volar-service-css@0.0.61(@volar/language-service@2.4.5): + volar-service-css@0.0.70(@volar/language-service@2.4.28): dependencies: vscode-css-languageservice: 6.3.1 vscode-languageserver-textdocument: 1.0.12 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 optionalDependencies: - '@volar/language-service': 2.4.5 + '@volar/language-service': 2.4.28 - volar-service-emmet@0.0.61(@volar/language-service@2.4.5): + volar-service-emmet@0.0.70(@volar/language-service@2.4.28): dependencies: - '@emmetio/css-parser': 0.4.0 + '@emmetio/css-parser': 0.4.1 '@emmetio/html-matcher': 1.3.0 '@vscode/emmet-helper': 2.9.3 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 optionalDependencies: - '@volar/language-service': 2.4.5 + '@volar/language-service': 2.4.28 - volar-service-html@0.0.61(@volar/language-service@2.4.5): + volar-service-html@0.0.70(@volar/language-service@2.4.28): dependencies: - vscode-html-languageservice: 5.3.1 + vscode-html-languageservice: 5.6.2 vscode-languageserver-textdocument: 1.0.12 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 optionalDependencies: - '@volar/language-service': 2.4.5 + '@volar/language-service': 2.4.28 - volar-service-prettier@0.0.61(@volar/language-service@2.4.5)(prettier@3.4.2): + volar-service-prettier@0.0.70(@volar/language-service@2.4.28)(prettier@3.8.1): dependencies: - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 optionalDependencies: - '@volar/language-service': 2.4.5 - prettier: 3.4.2 + '@volar/language-service': 2.4.28 + prettier: 3.8.1 - volar-service-typescript-twoslash-queries@0.0.61(@volar/language-service@2.4.5): + volar-service-typescript-twoslash-queries@0.0.70(@volar/language-service@2.4.28): dependencies: - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 optionalDependencies: - '@volar/language-service': 2.4.5 + '@volar/language-service': 2.4.28 - volar-service-typescript@0.0.61(@volar/language-service@2.4.5): + volar-service-typescript@0.0.70(@volar/language-service@2.4.28): dependencies: path-browserify: 1.0.1 - semver: 7.6.3 - typescript-auto-import-cache: 0.3.3 + semver: 7.7.4 + typescript-auto-import-cache: 0.3.6 vscode-languageserver-textdocument: 1.0.12 vscode-nls: 5.2.0 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 optionalDependencies: - '@volar/language-service': 2.4.5 + '@volar/language-service': 2.4.28 - volar-service-yaml@0.0.61(@volar/language-service@2.4.5): + volar-service-yaml@0.0.70(@volar/language-service@2.4.28): dependencies: - vscode-uri: 3.0.8 - yaml-language-server: 1.15.0 + vscode-uri: 3.1.0 + yaml-language-server: 1.20.0 optionalDependencies: - '@volar/language-service': 2.4.5 + '@volar/language-service': 2.4.28 vscode-css-languageservice@6.3.1: dependencies: '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.17.5 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 - vscode-html-languageservice@5.3.1: + vscode-html-languageservice@5.6.2: dependencies: '@vscode/l10n': 0.0.18 vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.17.5 - vscode-uri: 3.0.8 + vscode-uri: 3.1.0 vscode-json-languageservice@4.1.8: dependencies: @@ -7130,17 +6686,10 @@ snapshots: vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.17.5 vscode-nls: 5.2.0 - vscode-uri: 3.0.8 - - vscode-jsonrpc@6.0.0: {} + vscode-uri: 3.1.0 vscode-jsonrpc@8.2.0: {} - vscode-languageserver-protocol@3.16.0: - dependencies: - vscode-jsonrpc: 6.0.0 - vscode-languageserver-types: 3.16.0 - vscode-languageserver-protocol@3.17.5: dependencies: vscode-jsonrpc: 8.2.0 @@ -7148,14 +6697,8 @@ snapshots: vscode-languageserver-textdocument@1.0.12: {} - vscode-languageserver-types@3.16.0: {} - vscode-languageserver-types@3.17.5: {} - vscode-languageserver@7.0.0: - dependencies: - vscode-languageserver-protocol: 3.16.0 - vscode-languageserver@9.0.1: dependencies: vscode-languageserver-protocol: 3.17.5 @@ -7164,7 +6707,7 @@ snapshots: vscode-uri@2.1.2: {} - vscode-uri@3.0.8: {} + vscode-uri@3.1.0: {} web-namespaces@2.0.1: {} @@ -7178,10 +6721,6 @@ snapshots: which-pm-runs@1.1.0: {} - which-pm@3.0.0: - dependencies: - load-yaml-file: 0.2.0 - which-typed-array@1.1.15: dependencies: available-typed-arrays: 1.0.7 @@ -7194,10 +6733,6 @@ snapshots: dependencies: isexe: 2.0.0 - widest-line@5.0.0: - dependencies: - string-width: 7.2.0 - word-wrap@1.2.5: {} wrap-ansi@7.0.0: @@ -7206,45 +6741,32 @@ snapshots: string-width: 4.2.3 strip-ansi: 6.0.1 - wrap-ansi@8.1.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 5.1.2 - strip-ansi: 7.1.0 - - wrap-ansi@9.0.0: - dependencies: - ansi-styles: 6.2.1 - string-width: 7.2.0 - strip-ansi: 7.1.0 - - xxhash-wasm@1.0.2: {} + xxhash-wasm@1.1.0: {} y18n@5.0.8: {} - yallist@3.1.1: {} - - yaml-language-server@1.15.0: + yaml-language-server@1.20.0: dependencies: + '@vscode/l10n': 0.0.18 ajv: 8.17.1 - lodash: 4.17.21 + ajv-draft-04: 1.0.0(ajv@8.17.1) + prettier: 3.8.1 request-light: 0.5.8 vscode-json-languageservice: 4.1.8 - vscode-languageserver: 7.0.0 + vscode-languageserver: 9.0.1 vscode-languageserver-textdocument: 1.0.12 vscode-languageserver-types: 3.17.5 - vscode-nls: 5.2.0 - vscode-uri: 3.0.8 - yaml: 2.2.2 - optionalDependencies: - prettier: 2.8.7 + vscode-uri: 3.1.0 + yaml: 2.7.1 - yaml@2.2.2: {} + yaml@2.7.1: {} - yaml@2.5.1: {} + yaml@2.8.2: {} yargs-parser@21.1.1: {} + yargs-parser@22.0.0: {} + yargs@17.7.2: dependencies: cliui: 8.0.1 @@ -7257,17 +6779,10 @@ snapshots: yocto-queue@0.1.0: {} - yocto-queue@1.1.1: {} - - zod-to-json-schema@3.23.3(zod@3.23.8): - dependencies: - zod: 3.23.8 + yocto-queue@1.2.2: {} - zod-to-ts@1.2.0(typescript@5.6.2)(zod@3.23.8): - dependencies: - typescript: 5.6.2 - zod: 3.23.8 + zimmerframe@1.1.4: {} - zod@3.23.8: {} + zod@4.3.6: {} zwitch@2.0.4: {} diff --git a/prettier.config.mjs b/prettier.config.mjs index 1374a31..b871b7e 100644 --- a/prettier.config.mjs +++ b/prettier.config.mjs @@ -24,10 +24,10 @@ const config = { }, ], astroAllowShorthand: false, - tailwindConfig: "./tailwind.config.ts", + tailwindStylesheet: "./src/styles/app.css", importOrder: ["", "", "^$lib/", "^[.][.]/", "^[.]/"], importOrderParserPlugins: ["typescript", "jsx", "decorators-legacy"], - importOrderTypeScriptVersion: "4.4.0", + importOrderTypeScriptVersion: "5.9.0", }; export default config; diff --git a/src/components/IssueListing.svelte b/src/components/IssueListing.svelte index 1ce94c7..a01e147 100644 --- a/src/components/IssueListing.svelte +++ b/src/components/IssueListing.svelte @@ -6,26 +6,30 @@ import { Label } from "$lib/components/ui/label"; import * as Select from "$lib/components/ui/select"; import type { CollectionEntry } from "astro:content"; - import { Search } from "lucide-svelte"; + import SearchIcon from "@lucide/svelte/icons/search"; - export let issues: CollectionEntry<"issues">[]; + let { issues }: { issues: CollectionEntry<"issues">[] } = $props(); - let searchQuery = ""; - let startDate = ""; - let endDate = ""; - let tagFilter = "all"; + let searchQuery = $state(""); + let startDate = $state(""); + let endDate = $state(""); + let tagFilter = $state(""); - const minDate = issues[issues.length - 1]?.data.date - .toISOString() - .split("T")[0]; - const maxDate = issues[0]?.data.date.toISOString().split("T")[0]; - - let filteredIssues = issues.filter((issue: CollectionEntry<"issues">) => - issue.data.title.toLowerCase().includes(searchQuery.toLowerCase()), + const minDate = $derived( + issues[issues.length - 1]?.data.date.toISOString().split("T")[0], + ); + const maxDate = $derived( + issues[0]?.data.date.toISOString().split("T")[0], ); - function handleSearch() { - filteredIssues = issues.filter((issue: CollectionEntry<"issues">) => { + const tagLabels: Record = { + all: "Tous", + lite: "Lite", + special: "Special", + }; + + let filteredIssues = $derived( + issues.filter((issue: CollectionEntry<"issues">) => { const titleMatch = issue.data.title .toLowerCase() .includes(searchQuery.toLowerCase()); @@ -37,26 +41,31 @@ : true; const tagMatch = - tagFilter === "all" ? true : issue.data.tags.includes(tagFilter); + !tagFilter || tagFilter === "all" + ? true + : issue.data.tags.includes(tagFilter); return titleMatch && startDateMatch && endDateMatch && tagMatch; - }); - } + }), + );

Derniers numéros

-
+ e.preventDefault()} + class="space-y-4" + >
@@ -87,22 +96,17 @@
- { - if (typeof v?.value === "string") { - tagFilter = v.value; - } - }} - > - - + + + {tagFilter ? tagLabels[tagFilter] ?? tagFilter : "Filtrer par tag"} - Tous + {#each ["lite", "special"] as tag (tag)} - {tag.charAt(0).toUpperCase() + tag.slice(1)} + {/each} @@ -141,7 +145,7 @@ /> - diff --git a/src/components/IssueViewer.svelte b/src/components/IssueViewer.svelte index bc4b0a0..90a23f6 100644 --- a/src/components/IssueViewer.svelte +++ b/src/components/IssueViewer.svelte @@ -1,14 +1,14 @@ - - -
- {`Page -
-
-
+ + + {`Page + +
Page {currentPage} sur {maxPage}
- +

Navigation rapide

{#each issue.data.images as image, index} +{/if} diff --git a/src/components/ui/button/index.ts b/src/components/ui/button/index.ts index af1e188..07e3bc9 100644 --- a/src/components/ui/button/index.ts +++ b/src/components/ui/button/index.ts @@ -1,49 +1,17 @@ -import { type VariantProps, tv } from "tailwind-variants"; -import type { Button as ButtonPrimitive } from "bits-ui"; -import Root from "./button.svelte"; - -const buttonVariants = tv({ - base: "ring-offset-background focus-visible:ring-ring inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50", - variants: { - variant: { - default: "bg-primary text-primary-foreground hover:bg-primary/90", - destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90", - outline: - "border-input bg-background hover:bg-accent hover:text-accent-foreground border", - secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/80", - ghost: "hover:bg-accent hover:text-accent-foreground", - link: "text-primary underline-offset-4 hover:underline", - }, - size: { - default: "h-10 px-4 py-2", - sm: "h-9 rounded-md px-3", - lg: "h-11 rounded-md px-8", - icon: "h-10 w-10", - }, - }, - defaultVariants: { - variant: "default", - size: "default", - }, -}); - -type Variant = VariantProps["variant"]; -type Size = VariantProps["size"]; - -type Props = ButtonPrimitive.Props & { - variant?: Variant; - size?: Size; -}; - -type Events = ButtonPrimitive.Events; +import Root, { + buttonVariants, + type ButtonProps, + type ButtonSize, + type ButtonVariant, +} from "./button.svelte"; export { - Root, - type Props, - type Events, - // - Root as Button, - type Props as ButtonProps, - type Events as ButtonEvents, - buttonVariants, + Root, + type ButtonProps as Props, + // + Root as Button, + buttonVariants, + type ButtonProps, + type ButtonSize, + type ButtonVariant, }; diff --git a/src/components/ui/card/card-action.svelte b/src/components/ui/card/card-action.svelte new file mode 100644 index 0000000..7c48844 --- /dev/null +++ b/src/components/ui/card/card-action.svelte @@ -0,0 +1,23 @@ + + +
+ {@render children?.()} +
diff --git a/src/components/ui/card/card-content.svelte b/src/components/ui/card/card-content.svelte index 748c644..4f60ee3 100644 --- a/src/components/ui/card/card-content.svelte +++ b/src/components/ui/card/card-content.svelte @@ -1,13 +1,20 @@ -
- +
+ {@render children?.()}
diff --git a/src/components/ui/card/card-description.svelte b/src/components/ui/card/card-description.svelte index f65821d..9b20ac7 100644 --- a/src/components/ui/card/card-description.svelte +++ b/src/components/ui/card/card-description.svelte @@ -1,13 +1,20 @@ -

- +

+ {@render children?.()}

diff --git a/src/components/ui/card/card-footer.svelte b/src/components/ui/card/card-footer.svelte index 32f90bb..1efff6d 100644 --- a/src/components/ui/card/card-footer.svelte +++ b/src/components/ui/card/card-footer.svelte @@ -1,13 +1,20 @@ -
- +
+ {@render children?.()}
diff --git a/src/components/ui/card/card-header.svelte b/src/components/ui/card/card-header.svelte index 9c65185..7eb69e1 100644 --- a/src/components/ui/card/card-header.svelte +++ b/src/components/ui/card/card-header.svelte @@ -1,13 +1,23 @@ -
- +
+ {@render children?.()}
diff --git a/src/components/ui/card/card-title.svelte b/src/components/ui/card/card-title.svelte index 719808e..3f5261e 100644 --- a/src/components/ui/card/card-title.svelte +++ b/src/components/ui/card/card-title.svelte @@ -1,21 +1,15 @@ - - - +
+ {@render children?.()} +
diff --git a/src/components/ui/card/card.svelte b/src/components/ui/card/card.svelte index b69c15c..2b4f81a 100644 --- a/src/components/ui/card/card.svelte +++ b/src/components/ui/card/card.svelte @@ -1,16 +1,22 @@
img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl group/card flex flex-col", className)} + {...restProps} > - + {@render children?.()}
diff --git a/src/components/ui/card/index.ts b/src/components/ui/card/index.ts index 141032a..9544059 100644 --- a/src/components/ui/card/index.ts +++ b/src/components/ui/card/index.ts @@ -1,3 +1,4 @@ +import Action from "./card-action.svelte"; import Content from "./card-content.svelte"; import Description from "./card-description.svelte"; import Footer from "./card-footer.svelte"; @@ -12,6 +13,7 @@ export { Footer, Header, Title, + Action, // Root as Card, Content as CardContent, @@ -19,6 +21,5 @@ export { Footer as CardFooter, Header as CardHeader, Title as CardTitle, + Action as CardAction, }; - -export type HeadingLevel = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; diff --git a/src/components/ui/dialog/dialog-content.svelte b/src/components/ui/dialog/dialog-content.svelte deleted file mode 100644 index a06ccb2..0000000 --- a/src/components/ui/dialog/dialog-content.svelte +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - Close - - - diff --git a/src/components/ui/dialog/dialog-description.svelte b/src/components/ui/dialog/dialog-description.svelte deleted file mode 100644 index 8bc70cc..0000000 --- a/src/components/ui/dialog/dialog-description.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - - - - diff --git a/src/components/ui/dialog/dialog-footer.svelte b/src/components/ui/dialog/dialog-footer.svelte deleted file mode 100644 index a235d1f..0000000 --- a/src/components/ui/dialog/dialog-footer.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - -
- -
diff --git a/src/components/ui/dialog/dialog-header.svelte b/src/components/ui/dialog/dialog-header.svelte deleted file mode 100644 index 6b4448c..0000000 --- a/src/components/ui/dialog/dialog-header.svelte +++ /dev/null @@ -1,13 +0,0 @@ - - -
- -
diff --git a/src/components/ui/dialog/dialog-overlay.svelte b/src/components/ui/dialog/dialog-overlay.svelte deleted file mode 100644 index 1d376e4..0000000 --- a/src/components/ui/dialog/dialog-overlay.svelte +++ /dev/null @@ -1,21 +0,0 @@ - - - diff --git a/src/components/ui/dialog/dialog-portal.svelte b/src/components/ui/dialog/dialog-portal.svelte deleted file mode 100644 index eb5d0a5..0000000 --- a/src/components/ui/dialog/dialog-portal.svelte +++ /dev/null @@ -1,8 +0,0 @@ - - - - - diff --git a/src/components/ui/dialog/dialog-title.svelte b/src/components/ui/dialog/dialog-title.svelte deleted file mode 100644 index 06574f3..0000000 --- a/src/components/ui/dialog/dialog-title.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - - - - diff --git a/src/components/ui/dialog/index.ts b/src/components/ui/dialog/index.ts deleted file mode 100644 index 59ef7b8..0000000 --- a/src/components/ui/dialog/index.ts +++ /dev/null @@ -1,37 +0,0 @@ -import { Dialog as DialogPrimitive } from "bits-ui"; - -import Content from "./dialog-content.svelte"; -import Description from "./dialog-description.svelte"; -import Footer from "./dialog-footer.svelte"; -import Header from "./dialog-header.svelte"; -import Overlay from "./dialog-overlay.svelte"; -import Portal from "./dialog-portal.svelte"; -import Title from "./dialog-title.svelte"; - -const Root = DialogPrimitive.Root; -const Trigger = DialogPrimitive.Trigger; -const Close = DialogPrimitive.Close; - -export { - Root, - Title, - Portal, - Footer, - Header, - Trigger, - Overlay, - Content, - Description, - Close, - // - Root as Dialog, - Title as DialogTitle, - Portal as DialogPortal, - Footer as DialogFooter, - Header as DialogHeader, - Trigger as DialogTrigger, - Overlay as DialogOverlay, - Content as DialogContent, - Description as DialogDescription, - Close as DialogClose, -}; diff --git a/src/components/ui/input/index.ts b/src/components/ui/input/index.ts index c717cfc..ceb4b16 100644 --- a/src/components/ui/input/index.ts +++ b/src/components/ui/input/index.ts @@ -1,27 +1,5 @@ import Root from "./input.svelte"; -export type FormInputEvent = T & { - currentTarget: EventTarget & HTMLInputElement; -}; -export type InputEvents = { - blur: FormInputEvent; - change: FormInputEvent; - click: FormInputEvent; - focus: FormInputEvent; - focusin: FormInputEvent; - focusout: FormInputEvent; - keydown: FormInputEvent; - keypress: FormInputEvent; - keyup: FormInputEvent; - mouseover: FormInputEvent; - mouseenter: FormInputEvent; - mouseleave: FormInputEvent; - mousemove: FormInputEvent; - paste: FormInputEvent; - input: FormInputEvent; - wheel: FormInputEvent; -}; - export { Root, // diff --git a/src/components/ui/input/input.svelte b/src/components/ui/input/input.svelte index cab1457..fe7db38 100644 --- a/src/components/ui/input/input.svelte +++ b/src/components/ui/input/input.svelte @@ -1,42 +1,48 @@ - +{#if type === "file"} + +{:else} + +{/if} diff --git a/src/components/ui/label/label.svelte b/src/components/ui/label/label.svelte index 2a7d479..d5e3086 100644 --- a/src/components/ui/label/label.svelte +++ b/src/components/ui/label/label.svelte @@ -2,20 +2,19 @@ import { Label as LabelPrimitive } from "bits-ui"; import { cn } from "$lib/utils.js"; - type $$Props = LabelPrimitive.Props; - type $$Events = LabelPrimitive.Events; - - let className: $$Props["class"] = undefined; - export { className as class }; + let { + ref = $bindable(null), + class: className, + ...restProps + }: LabelPrimitive.RootProps = $props(); - - + {...restProps} +/> diff --git a/src/components/ui/range-calendar/index.ts b/src/components/ui/range-calendar/index.ts deleted file mode 100644 index 43adb92..0000000 --- a/src/components/ui/range-calendar/index.ts +++ /dev/null @@ -1,30 +0,0 @@ -import Root from "./range-calendar.svelte"; -import Cell from "./range-calendar-cell.svelte"; -import Day from "./range-calendar-day.svelte"; -import Grid from "./range-calendar-grid.svelte"; -import Header from "./range-calendar-header.svelte"; -import Months from "./range-calendar-months.svelte"; -import GridRow from "./range-calendar-grid-row.svelte"; -import Heading from "./range-calendar-heading.svelte"; -import GridBody from "./range-calendar-grid-body.svelte"; -import GridHead from "./range-calendar-grid-head.svelte"; -import HeadCell from "./range-calendar-head-cell.svelte"; -import NextButton from "./range-calendar-next-button.svelte"; -import PrevButton from "./range-calendar-prev-button.svelte"; - -export { - Day, - Cell, - Grid, - Header, - Months, - GridRow, - Heading, - GridBody, - GridHead, - HeadCell, - NextButton, - PrevButton, - // - Root as RangeCalendar, -}; diff --git a/src/components/ui/range-calendar/range-calendar-cell.svelte b/src/components/ui/range-calendar/range-calendar-cell.svelte deleted file mode 100644 index 5e9d2dd..0000000 --- a/src/components/ui/range-calendar/range-calendar-cell.svelte +++ /dev/null @@ -1,21 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-day.svelte b/src/components/ui/range-calendar/range-calendar-day.svelte deleted file mode 100644 index 86db6dd..0000000 --- a/src/components/ui/range-calendar/range-calendar-day.svelte +++ /dev/null @@ -1,43 +0,0 @@ - - - - - {date.day} - - diff --git a/src/components/ui/range-calendar/range-calendar-grid-body.svelte b/src/components/ui/range-calendar/range-calendar-grid-body.svelte deleted file mode 100644 index 23a5dee..0000000 --- a/src/components/ui/range-calendar/range-calendar-grid-body.svelte +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-grid-head.svelte b/src/components/ui/range-calendar/range-calendar-grid-head.svelte deleted file mode 100644 index 23dbefe..0000000 --- a/src/components/ui/range-calendar/range-calendar-grid-head.svelte +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-grid-row.svelte b/src/components/ui/range-calendar/range-calendar-grid-row.svelte deleted file mode 100644 index 157c7ea..0000000 --- a/src/components/ui/range-calendar/range-calendar-grid-row.svelte +++ /dev/null @@ -1,13 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-grid.svelte b/src/components/ui/range-calendar/range-calendar-grid.svelte deleted file mode 100644 index c5050ba..0000000 --- a/src/components/ui/range-calendar/range-calendar-grid.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-head-cell.svelte b/src/components/ui/range-calendar/range-calendar-head-cell.svelte deleted file mode 100644 index 0806c60..0000000 --- a/src/components/ui/range-calendar/range-calendar-head-cell.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-header.svelte b/src/components/ui/range-calendar/range-calendar-header.svelte deleted file mode 100644 index 3949ecd..0000000 --- a/src/components/ui/range-calendar/range-calendar-header.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-heading.svelte b/src/components/ui/range-calendar/range-calendar-heading.svelte deleted file mode 100644 index f022eeb..0000000 --- a/src/components/ui/range-calendar/range-calendar-heading.svelte +++ /dev/null @@ -1,19 +0,0 @@ - - - - - {headingValue} - - diff --git a/src/components/ui/range-calendar/range-calendar-months.svelte b/src/components/ui/range-calendar/range-calendar-months.svelte deleted file mode 100644 index 4621c54..0000000 --- a/src/components/ui/range-calendar/range-calendar-months.svelte +++ /dev/null @@ -1,16 +0,0 @@ - - -
- -
diff --git a/src/components/ui/range-calendar/range-calendar-next-button.svelte b/src/components/ui/range-calendar/range-calendar-next-button.svelte deleted file mode 100644 index 661568b..0000000 --- a/src/components/ui/range-calendar/range-calendar-next-button.svelte +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - diff --git a/src/components/ui/range-calendar/range-calendar-prev-button.svelte b/src/components/ui/range-calendar/range-calendar-prev-button.svelte deleted file mode 100644 index f7c1383..0000000 --- a/src/components/ui/range-calendar/range-calendar-prev-button.svelte +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - diff --git a/src/components/ui/range-calendar/range-calendar.svelte b/src/components/ui/range-calendar/range-calendar.svelte deleted file mode 100644 index d20ba67..0000000 --- a/src/components/ui/range-calendar/range-calendar.svelte +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - {#each months as month} - - - - {#each weekdays as weekday} - - {weekday.slice(0, 2)} - - {/each} - - - - {#each month.weeks as weekDates} - - {#each weekDates as date} - - - - {/each} - - {/each} - - - {/each} - - diff --git a/src/components/ui/scroll-area/index.ts b/src/components/ui/scroll-area/index.ts deleted file mode 100644 index d8d115a..0000000 --- a/src/components/ui/scroll-area/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -import Scrollbar from "./scroll-area-scrollbar.svelte"; -import Root from "./scroll-area.svelte"; - -export { - Root, - Scrollbar, - //, - Root as ScrollArea, - Scrollbar as ScrollAreaScrollbar, -}; diff --git a/src/components/ui/scroll-area/scroll-area-scrollbar.svelte b/src/components/ui/scroll-area/scroll-area-scrollbar.svelte deleted file mode 100644 index 71b3328..0000000 --- a/src/components/ui/scroll-area/scroll-area-scrollbar.svelte +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - diff --git a/src/components/ui/scroll-area/scroll-area.svelte b/src/components/ui/scroll-area/scroll-area.svelte deleted file mode 100644 index e8e368c..0000000 --- a/src/components/ui/scroll-area/scroll-area.svelte +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - {#if orientation === "vertical" || orientation === "both"} - - {/if} - {#if orientation === "horizontal" || orientation === "both"} - - {/if} - - diff --git a/src/components/ui/select/index.ts b/src/components/ui/select/index.ts index 327541c..5a4d1b6 100644 --- a/src/components/ui/select/index.ts +++ b/src/components/ui/select/index.ts @@ -1,34 +1,37 @@ -import { Select as SelectPrimitive } from "bits-ui"; - -import Label from "./select-label.svelte"; -import Item from "./select-item.svelte"; import Content from "./select-content.svelte"; -import Trigger from "./select-trigger.svelte"; +import GroupHeading from "./select-group-heading.svelte"; +import Group from "./select-group.svelte"; +import Item from "./select-item.svelte"; +import Label from "./select-label.svelte"; +import Portal from "./select-portal.svelte"; +import ScrollDownButton from "./select-scroll-down-button.svelte"; +import ScrollUpButton from "./select-scroll-up-button.svelte"; import Separator from "./select-separator.svelte"; - -const Root = SelectPrimitive.Root; -const Group = SelectPrimitive.Group; -const Input = SelectPrimitive.Input; -const Value = SelectPrimitive.Value; +import Trigger from "./select-trigger.svelte"; +import Root from "./select.svelte"; export { - Root, - Group, - Input, - Label, - Item, - Value, - Content, - Trigger, - Separator, - // - Root as Select, - Group as SelectGroup, - Input as SelectInput, - Label as SelectLabel, - Item as SelectItem, - Value as SelectValue, - Content as SelectContent, - Trigger as SelectTrigger, - Separator as SelectSeparator, + Root, + Group, + Label, + Item, + Content, + Trigger, + Separator, + ScrollDownButton, + ScrollUpButton, + GroupHeading, + Portal, + // + Root as Select, + Group as SelectGroup, + Label as SelectLabel, + Item as SelectItem, + Content as SelectContent, + Trigger as SelectTrigger, + Separator as SelectSeparator, + ScrollDownButton as SelectScrollDownButton, + ScrollUpButton as SelectScrollUpButton, + GroupHeading as SelectGroupHeading, + Portal as SelectPortal, }; diff --git a/src/components/ui/select/select-content.svelte b/src/components/ui/select/select-content.svelte index 6d73ad3..bb1e2ac 100644 --- a/src/components/ui/select/select-content.svelte +++ b/src/components/ui/select/select-content.svelte @@ -1,39 +1,45 @@ - -
- -
-
+ + + + + {@render children?.()} + + + + diff --git a/src/components/ui/select/select-group-heading.svelte b/src/components/ui/select/select-group-heading.svelte index 7984bef..1fab5f0 100644 --- a/src/components/ui/select/select-group-heading.svelte +++ b/src/components/ui/select/select-group-heading.svelte @@ -1,16 +1,21 @@ +> + {@render children?.()} + diff --git a/src/components/ui/select/select-group.svelte b/src/components/ui/select/select-group.svelte new file mode 100644 index 0000000..f666cb2 --- /dev/null +++ b/src/components/ui/select/select-group.svelte @@ -0,0 +1,17 @@ + + + diff --git a/src/components/ui/select/select-item.svelte b/src/components/ui/select/select-item.svelte index 7c00c72..32fd5ce 100644 --- a/src/components/ui/select/select-item.svelte +++ b/src/components/ui/select/select-item.svelte @@ -1,40 +1,38 @@ - - - - - - - {label || value} - + {#snippet children({ selected, highlighted })} + + {#if selected} + + {/if} + + {#if childrenProp} + {@render childrenProp({ selected, highlighted })} + {:else} + {label || value} + {/if} + {/snippet} diff --git a/src/components/ui/select/select-label.svelte b/src/components/ui/select/select-label.svelte index d966450..69bcfdf 100644 --- a/src/components/ui/select/select-label.svelte +++ b/src/components/ui/select/select-label.svelte @@ -1,16 +1,20 @@ - - - + {@render children?.()} +
diff --git a/src/components/ui/select/select-portal.svelte b/src/components/ui/select/select-portal.svelte new file mode 100644 index 0000000..424bcdd --- /dev/null +++ b/src/components/ui/select/select-portal.svelte @@ -0,0 +1,7 @@ + + + diff --git a/src/components/ui/select/select-scroll-down-button.svelte b/src/components/ui/select/select-scroll-down-button.svelte index b927d62..94f41cd 100644 --- a/src/components/ui/select/select-scroll-down-button.svelte +++ b/src/components/ui/select/select-scroll-down-button.svelte @@ -1,7 +1,7 @@ - + diff --git a/src/components/ui/select/select-trigger.svelte b/src/components/ui/select/select-trigger.svelte index 8209dfb..03d06d0 100644 --- a/src/components/ui/select/select-trigger.svelte +++ b/src/components/ui/select/select-trigger.svelte @@ -1,27 +1,29 @@ span]:text-muted-foreground flex h-10 w-full items-center justify-between rounded-md border px-3 py-2 text-sm focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1", + "border-input data-placeholder:text-muted-foreground dark:bg-input/30 dark:hover:bg-input/50 focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:aria-invalid:border-destructive/50 gap-1.5 rounded-lg border bg-transparent py-2 pr-2 pl-2.5 text-sm transition-colors select-none focus-visible:ring-3 aria-invalid:ring-3 data-[size=default]:h-8 data-[size=sm]:h-7 data-[size=sm]:rounded-[min(var(--radius-md),10px)] *:data-[slot=select-value]:flex *:data-[slot=select-value]:gap-1.5 [&_svg:not([class*='size-'])]:size-4 flex w-fit items-center justify-between whitespace-nowrap outline-none disabled:cursor-not-allowed disabled:opacity-50 *:data-[slot=select-value]:line-clamp-1 *:data-[slot=select-value]:flex *:data-[slot=select-value]:items-center [&_svg]:pointer-events-none [&_svg]:shrink-0", className )} - {...$$restProps} - let:builder - on:click - on:keydown + {...restProps} > - -
- -
+ {@render children?.()} +
diff --git a/src/components/ui/select/select.svelte b/src/components/ui/select/select.svelte new file mode 100644 index 0000000..05eb663 --- /dev/null +++ b/src/components/ui/select/select.svelte @@ -0,0 +1,11 @@ + + + diff --git a/src/components/ui/separator/index.ts b/src/components/ui/separator/index.ts index 82442d2..d66644e 100644 --- a/src/components/ui/separator/index.ts +++ b/src/components/ui/separator/index.ts @@ -1,7 +1,7 @@ import Root from "./separator.svelte"; export { - Root, - // - Root as Separator, + Root, + // + Root as Separator, }; diff --git a/src/components/ui/separator/separator.svelte b/src/components/ui/separator/separator.svelte index 839494d..5fd8a42 100644 --- a/src/components/ui/separator/separator.svelte +++ b/src/components/ui/separator/separator.svelte @@ -5,18 +5,19 @@ let { ref = $bindable(null), class: className, - orientation = "horizontal", + "data-slot": dataSlot = "separator", ...restProps }: SeparatorPrimitive.RootProps = $props(); diff --git a/src/components/ui/tabs/index.ts b/src/components/ui/tabs/index.ts deleted file mode 100644 index ec477aa..0000000 --- a/src/components/ui/tabs/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Tabs as TabsPrimitive } from "bits-ui"; - -import Content from "./tabs-content.svelte"; -import List from "./tabs-list.svelte"; -import Trigger from "./tabs-trigger.svelte"; - -const Root = TabsPrimitive.Root; - -export { - Root, - Content, - List, - Trigger, - // - Root as Tabs, - Content as TabsContent, - List as TabsList, - Trigger as TabsTrigger, -}; diff --git a/src/components/ui/tabs/tabs-content.svelte b/src/components/ui/tabs/tabs-content.svelte deleted file mode 100644 index b611559..0000000 --- a/src/components/ui/tabs/tabs-content.svelte +++ /dev/null @@ -1,21 +0,0 @@ - - - - - diff --git a/src/components/ui/tabs/tabs-list.svelte b/src/components/ui/tabs/tabs-list.svelte deleted file mode 100644 index 773c754..0000000 --- a/src/components/ui/tabs/tabs-list.svelte +++ /dev/null @@ -1,19 +0,0 @@ - - - - - diff --git a/src/components/ui/tabs/tabs-trigger.svelte b/src/components/ui/tabs/tabs-trigger.svelte deleted file mode 100644 index b99358d..0000000 --- a/src/components/ui/tabs/tabs-trigger.svelte +++ /dev/null @@ -1,23 +0,0 @@ - - - - - diff --git a/src/config.content.ts b/src/config.content.ts deleted file mode 100644 index 33949f5..0000000 --- a/src/config.content.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { defineCollection, z } from "astro:content"; -import { glob } from "astro/loaders"; - -export const collections = { - issues: defineCollection({ - loader: glob({ pattern: "**/[^_]*.md", base: "./src/data/issues" }), - schema: z.object({ - title: z.string(), - date: z.string().datetime({ offset: true }).pipe(z.coerce.date()), - link: z.string().url(), - images: z.array(z.string().url()), - tags: z.array(z.string()), - }), - }), -}; diff --git a/src/content.config.ts b/src/content.config.ts new file mode 100644 index 0000000..d87140f --- /dev/null +++ b/src/content.config.ts @@ -0,0 +1,16 @@ +import { defineCollection } from "astro:content"; +import { glob } from "astro/loaders"; +import { z } from "astro/zod"; + +export const collections = { + issues: defineCollection({ + loader: glob({ pattern: "**/[^_]*.{md,mdx}", base: "./src/data/issues" }), + schema: z.object({ + title: z.string(), + date: z.coerce.date(), + link: z.url(), + images: z.array(z.url()), + tags: z.array(z.string()), + }), + }), +}; diff --git a/src/content/config.ts b/src/content/config.ts deleted file mode 100644 index 9fc5520..0000000 --- a/src/content/config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { defineCollection, z } from "astro:content"; - -export const collections = { - issues: defineCollection({ - type: "content", - schema: z.object({ - title: z.string(), - date: z.string().datetime({ offset: true }).pipe(z.coerce.date()), - link: z.string().url(), - images: z.array(z.string().url()), - tags: z.array(z.string()), - }), - }), -}; diff --git a/src/content/issues/holonews_fr_10.10._-_16.10..mdx b/src/content/issues/holonews_fr_10.10._-_16.10..mdx deleted file mode 100644 index 44d39b7..0000000 --- a/src/content/issues/holonews_fr_10.10._-_16.10..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR 10.10. - 16.10." -date: "2022-10-27T11:51:46.788000+0000" -link: "https://reddit.com/r/HoloNews/comments/yepx37/holonews_fr_1010_1610/" -images: ["https://preview.redd.it/3bzrie087cw91.png?width=640&crop=smart&auto=webp&s=7636c6c5f4dffb1065778d9a674b4e8642e2622c","https://i.redd.it/d01519587cw91.gif","https://i.redd.it/wjw5oud87cw91.gif","https://preview.redd.it/acfbjss87cw91.png?width=640&crop=smart&auto=webp&s=78f755b9410aba8cac5cef7e8c080db510a9ac33","https://preview.redd.it/sgvwf7w87cw91.png?width=640&crop=smart&auto=webp&s=53d4f9edfc5e699c96b1429a1c5bc78ece4c7144","https://preview.redd.it/w6wc6oz87cw91.png?width=640&crop=smart&auto=webp&s=26949b5b03b842fe9517c18dae1bf2360c7cd486","https://preview.redd.it/yroqjl397cw91.png?width=640&crop=smart&auto=webp&s=688d66be18c7dc75a4073d7c5291330e021dba24","https://preview.redd.it/dlkrhp697cw91.png?width=640&crop=smart&auto=webp&s=990a87f058209405adcc65d237712f7ae6c27189","https://preview.redd.it/y0sg1r997cw91.png?width=640&crop=smart&auto=webp&s=91958a0bd3733f54ff4f49ca3eb4b666081d8495","https://preview.redd.it/091s8zc97cw91.png?width=640&crop=smart&auto=webp&s=bc02366b3688ccb67359234536ad93d43cc79795","https://preview.redd.it/60w8k9g97cw91.png?width=640&crop=smart&auto=webp&s=f8f99c275252b55cafaa30090da9b254b31ccd08","https://preview.redd.it/45g7zek97cw91.png?width=640&crop=smart&auto=webp&s=b80bebc6543877d228e13c5b1f173be226d0d37d","https://preview.redd.it/oox2exn97cw91.png?width=640&crop=smart&auto=webp&s=dcc672ab0168170e0ff80a6a53a12918dd16dfb4"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_11.07._-_17.07..mdx b/src/content/issues/holonews_fr_11.07._-_17.07..mdx deleted file mode 100644 index 1b7f93f..0000000 --- a/src/content/issues/holonews_fr_11.07._-_17.07..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR 11.07. - 17.07." -date: "2022-07-25T16:37:32.029000+0000" -link: "https://reddit.com/r/HoloNews/comments/w7tkee/holonews_fr_1107_1707/" -images: ["https://preview.redd.it/inupyz55sqd91.png?width=640&crop=smart&auto=webp&s=a13f43b1822e58a7223fd5a279385a053ae8a98e","https://i.redd.it/8dnl82obsqd91.gif","https://preview.redd.it/5x04ir55sqd91.png?width=640&crop=smart&auto=webp&s=70538af4cfbb95b1767ce6af3b7240adb3a6e006","https://i.redd.it/3xglyy55sqd91.gif","https://preview.redd.it/zdrtoz55sqd91.png?width=640&crop=smart&auto=webp&s=5ee931aa25cc004c9ae71bcbdd0960d7dae7c708","https://preview.redd.it/3cqxn165sqd91.png?width=640&crop=smart&auto=webp&s=bc45e14ee76e4bf724d19ef246ed892289443c3c","https://preview.redd.it/iyzym265sqd91.png?width=640&crop=smart&auto=webp&s=3158f75f9144ed8fe8728f30b5185e6d65479249","https://preview.redd.it/9uzxv265sqd91.png?width=640&crop=smart&auto=webp&s=5e70e4684752a4ed05fbe48135131e133c9aff95","https://preview.redd.it/njk2ov55sqd91.png?width=640&crop=smart&auto=webp&s=7087d0cff466285ace1f9019297627b174c114b8","https://preview.redd.it/ordd9765sqd91.png?width=640&crop=smart&auto=webp&s=37f5c74cd18e1d49a0175af99a099d3044958238","https://preview.redd.it/17xdy565sqd91.png?width=640&crop=smart&auto=webp&s=9d55acff85a990e6c7b874987a5c48cb2270327e","https://preview.redd.it/m4x6l765sqd91.png?width=640&crop=smart&auto=webp&s=e91aa0ed1673d4a376f8b94e8741027d5f074609","https://preview.redd.it/dzym0t55sqd91.png?width=640&crop=smart&auto=webp&s=2f9edb65378036072489ec09300b5cdd016b6cf7","https://preview.redd.it/31jeru55sqd91.png?width=640&crop=smart&auto=webp&s=8e29ac52bee9af7487038e31d545a05484aa02cc","https://preview.redd.it/ovsazt55sqd91.png?width=640&crop=smart&auto=webp&s=b1eb27bc1d2a498877be1e50922b41b32ed33d0a","https://preview.redd.it/lcvmsu55sqd91.png?width=640&crop=smart&auto=webp&s=a9d9b43ff564ee302c34d05fd99fb07cf29c4d38","https://preview.redd.it/57633v55sqd91.png?width=640&crop=smart&auto=webp&s=c1684738dcc40506baa175126f3188de869d98bf","https://preview.redd.it/5fxqsw55sqd91.png?width=640&crop=smart&auto=webp&s=530a45e18edd134fcaaee8fe7b99da825abb1622"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_24.10_-_30.10.mdx b/src/content/issues/holonews_fr_24.10_-_30.10.mdx deleted file mode 100644 index 74c739c..0000000 --- a/src/content/issues/holonews_fr_24.10_-_30.10.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR 24.10 - 30.10" -date: "2022-11-25T10:13:41.430000+0000" -link: "https://reddit.com/r/HoloNews/comments/z49vh9/holonews_fr_2410_3010/" -images: ["https://preview.redd.it/sia4alx4o22a1.png?width=640&crop=smart&auto=webp&s=692efb5929e41f7cf44a2dad87e4777e2eb66c61","https://i.redd.it/4dgyri05o22a1.gif","https://preview.redd.it/q8w30uc5o22a1.png?width=640&crop=smart&auto=webp&s=03d913adca6f119832e2d7e5ebb1ecce95bcf8fd","https://i.redd.it/2opnzsf5o22a1.gif","https://i.redd.it/sonzn5m5o22a1.gif","https://i.redd.it/335o9ht5o22a1.gif","https://preview.redd.it/dgdc2u26o22a1.png?width=640&crop=smart&auto=webp&s=f96e59aec9df46ce309414d3ba472e48ad4b7f86","https://preview.redd.it/6yz6cz56o22a1.png?width=640&crop=smart&auto=webp&s=3d23e420677faf60ca75ad5f75a3b7bf4124a25a","https://preview.redd.it/3kvpg596o22a1.png?width=640&crop=smart&auto=webp&s=9f537feef364a7ac68ddd246ce15228d70b64a34","https://preview.redd.it/4grhzyb6o22a1.png?width=640&crop=smart&auto=webp&s=2e3984edda1e500125c4609509c09a60cec2bfa2","https://preview.redd.it/2kwkcgf6o22a1.png?width=640&crop=smart&auto=webp&s=69926c9f6e59a39c2168a69d72306abee75910d5","https://preview.redd.it/fcad0hi6o22a1.png?width=640&crop=smart&auto=webp&s=fad0c5401be1ff5a3863385cb0b8f93a57256d1b","https://preview.redd.it/lztz23l6o22a1.png?width=640&crop=smart&auto=webp&s=e806b27ea4cbc72e94dad670eba8b54c04808859","https://preview.redd.it/wi7in5p6o22a1.png?width=640&crop=smart&auto=webp&s=a844849e4432d4dedd5cd3b0ddce57c7ee611476","https://preview.redd.it/fosw4gs6o22a1.png?width=640&crop=smart&auto=webp&s=cbe0b64438958ae0d71d196bbb01e4f2c14a3675","https://preview.redd.it/488gfnv6o22a1.png?width=640&crop=smart&auto=webp&s=664e0c54baf43ea16fba07afe6a4df6a31bbf468","https://preview.redd.it/8e1wbcz6o22a1.png?width=640&crop=smart&auto=webp&s=d313a99b1f8c377125e56ec82ff28843807f9b25","https://preview.redd.it/lw5dm337o22a1.png?width=640&crop=smart&auto=webp&s=5089280089dee7ed86a8cd953f29459692571ab0","https://preview.redd.it/7f150h77o22a1.png?width=640&crop=smart&auto=webp&s=85f14d563c25de2e638d92fb53524d8a3c95fa3b","https://preview.redd.it/cbumokb7o22a1.png?width=640&crop=smart&auto=webp&s=cd0f5a38344afbe611b2acd672e309bfb3352a2e"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_30.05._-_05.06..mdx b/src/content/issues/holonews_fr_30.05._-_05.06..mdx deleted file mode 100644 index 36bbffc..0000000 --- a/src/content/issues/holonews_fr_30.05._-_05.06..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR 30.05. - 05.06." -date: "2022-06-15T16:37:48.038000+0000" -link: "https://reddit.com/r/HoloNews/comments/vcyot7/holonews_fr_3005_0506/" -images: ["https://preview.redd.it/ma0oy6gvbt591.png?width=640&crop=smart&auto=webp&s=65c5b90b9937a2edcc8784a15ce444829a09e441","https://i.redd.it/cl3aoohvbt591.gif","https://i.redd.it/ie5ynpgvbt591.gif","https://i.redd.it/jro1atgvbt591.gif","https://preview.redd.it/5pswx0gvbt591.png?width=640&crop=smart&auto=webp&s=34c06a35a31fa3949281dff88d148b1f96b36ed3","https://preview.redd.it/qejof3gvbt591.png?width=640&crop=smart&auto=webp&s=a810f26d05289dc70869c3008c5ede4d4e355504","https://preview.redd.it/ua3je7gvbt591.png?width=640&crop=smart&auto=webp&s=75970127e81f40b14cbdfc23cccb86e981ae8592","https://preview.redd.it/bnjt28gvbt591.png?width=640&crop=smart&auto=webp&s=754200ba89fe44e585ed415844045123b2caae06","https://preview.redd.it/ey9i7thvbt591.png?width=640&crop=smart&auto=webp&s=a2ad9adf90fb7e7135287ce120c3f3c24a71e8c0","https://preview.redd.it/i25rzagvbt591.png?width=640&crop=smart&auto=webp&s=9929922f65d796e2ba3c905789d5fc6e0ecb4640","https://preview.redd.it/wljo5agvbt591.png?width=640&crop=smart&auto=webp&s=a39cfeb6854c51a7d85268c9311a5ffad22160ab","https://preview.redd.it/lg1g5cgvbt591.png?width=640&crop=smart&auto=webp&s=b471c815fb738f013bb9b1382980f9d11502ff2e","https://preview.redd.it/v4p04cgvbt591.png?width=640&crop=smart&auto=webp&s=b43bfffa17abdcc264a63578dcf64fe5aa4b3486","https://preview.redd.it/1nlnedgvbt591.png?width=640&crop=smart&auto=webp&s=84e7070cf06ead6e9e4c540d8c8b4d05b93eb452","https://preview.redd.it/10mxlfgvbt591.png?width=640&crop=smart&auto=webp&s=307d61a9b41db45861e6c4c49a27118d307473a6","https://preview.redd.it/a9e19ggvbt591.png?width=640&crop=smart&auto=webp&s=57d4e9dc212ea8a71b0baace7bb34a8ef449e1aa","https://preview.redd.it/16re6jgvbt591.png?width=640&crop=smart&auto=webp&s=dadaa5141bda600e01893f55d28dff0256f854da","https://preview.redd.it/yx6dvdgvbt591.png?width=640&crop=smart&auto=webp&s=b3dbb6f881424e6bd4afca58de6485dfe10bf07d","https://preview.redd.it/yf6d8hgvbt591.png?width=640&crop=smart&auto=webp&s=7819ef03e5be090513bef47dbb2fc878a6c05e78"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_holostars_-tempus-_debut_special.mdx b/src/content/issues/holonews_fr_holostars_-tempus-_debut_special.mdx deleted file mode 100644 index 04ff9b4..0000000 --- a/src/content/issues/holonews_fr_holostars_-tempus-_debut_special.mdx +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: "HoloNews FR HOLOSTARS -TEMPUS- Debut Special" -date: "2022-07-29T16:48:19.098000+0000" -link: "https://reddit.com/r/HoloNews/comments/wb9p8l/holonews_fr_holostars_tempus_debut_special/" -images: - [ - "https://preview.redd.it/s3o8xm90eje91.png?width=640&crop=smart&auto=webp&s=5f815dfa385e0dc4ec9d2420c9b8797d4fa87912", - "https://preview.redd.it/dzfp4g90eje91.png?width=640&crop=smart&auto=webp&s=fa65ce7c399eabe49e812bcc3d6bb90e9c6a8d16", - "https://preview.redd.it/1l6aug90eje91.png?width=640&crop=smart&auto=webp&s=7c5090263bb163bf3020f29bab44ca74085165e2", - "https://preview.redd.it/fof8f890eje91.png?width=640&crop=smart&auto=webp&s=9ee443c7184986cfaf58b8d68f7347acc5853bcf", - "https://i.redd.it/9me7cj90eje91.gif", - "https://preview.redd.it/6q8s1b90eje91.png?width=640&crop=smart&auto=webp&s=7228c1761c79ebcdaa352127176cb3117ca67488", - "https://i.redd.it/wvug0k90eje91.gif", - "https://preview.redd.it/9667kj90eje91.png?width=640&crop=smart&auto=webp&s=19be89c4e53f73b9bb6f1d1024396c36772e896a", - "https://i.redd.it/qv6kyba0eje91.gif", - "https://preview.redd.it/51pm4l90eje91.png?width=640&crop=smart&auto=webp&s=1dd35c7dec15eefd454db979107adec415f8b81e", - "https://i.redd.it/tx0hgea0eje91.gif", - "https://preview.redd.it/9lxhek90eje91.png?width=640&crop=smart&auto=webp&s=1adc267edf7a1ae0e5f05675343b1a0955a9b5f8", - "https://preview.redd.it/fq3b1a90eje91.png?width=640&crop=smart&auto=webp&s=bdf99bae5fda3bf96e07dd7d0f6e3e41824bf82d", - "https://i.redd.it/ipc9kf90eje91.gif", - "https://preview.redd.it/0f6c7b90eje91.png?width=640&crop=smart&auto=webp&s=40206813ba65394ad97839d3c6c93aaa9ba24fdb", - "https://preview.redd.it/0elfze90eje91.png?width=640&crop=smart&auto=webp&s=faa0f4ab8e9190bfddba66825c238853e86649f2", - ] -tags: ["special"] ---- diff --git a/src/content/issues/holonews_fr_ver._01.08_-_07.08.mdx b/src/content/issues/holonews_fr_ver._01.08_-_07.08.mdx deleted file mode 100644 index 28360b4..0000000 --- a/src/content/issues/holonews_fr_ver._01.08_-_07.08.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 01.08 - 07.08" -date: "2022-08-15T16:23:36.864000+0000" -link: "https://reddit.com/r/HoloNews/comments/wp3utw/holonews_fr_ver_0108_0708/" -images: ["https://preview.redd.it/7cwhos56lwh91.png?width=640&crop=smart&auto=webp&s=8162f7e5c897d76e9c979386fdffceba45f3cb68","https://i.redd.it/eph6kg56lwh91.gif","https://i.redd.it/klv7w376lwh91.gif","https://i.redd.it/omqga176lwh91.gif","https://i.redd.it/1aqchi66lwh91.gif","https://i.redd.it/co8v6w66lwh91.gif","https://preview.redd.it/x9kqii56lwh91.png?width=640&crop=smart&auto=webp&s=1bec0820b57fe748c8dfc78ee8e42853fb46f9f9","https://preview.redd.it/xgl1ov56lwh91.png?width=640&crop=smart&auto=webp&s=97c56ffa8318049488ceb41fb697d8847f5b7b7a","https://preview.redd.it/4x4jwu56lwh91.png?width=640&crop=smart&auto=webp&s=a12389ceb4834976e6a9228c19a20745e6ac0242","https://preview.redd.it/0kjwhn56lwh91.png?width=640&crop=smart&auto=webp&s=5166bb27f299f9b151c4fe995610005fe78e09eb","https://preview.redd.it/yn90nl56lwh91.png?width=640&crop=smart&auto=webp&s=e5aa4d5853f93820386a10a3c3f6e48a19779045","https://preview.redd.it/mpcmzv56lwh91.png?width=640&crop=smart&auto=webp&s=d6ecfaa817a32fd3a39be026089208e7ee8f1ecc","https://preview.redd.it/ihfx3x56lwh91.png?width=640&crop=smart&auto=webp&s=b203d6a0c90906530714dc9c09eb7b46feda4bf9","https://preview.redd.it/v9k1kl56lwh91.png?width=640&crop=smart&auto=webp&s=b3cf3c7937b04ce0bc8903d76e16d02f8b2960f4","https://preview.redd.it/lp3qz866lwh91.png?width=640&crop=smart&auto=webp&s=e454dfbb090a515f1f35b79c0e4c00c7be1a730f","https://preview.redd.it/1pijhy56lwh91.png?width=640&crop=smart&auto=webp&s=5a0b2c7beba7b50a63f762ff0355409a0032e9bd","https://preview.redd.it/po7s6z56lwh91.png?width=640&crop=smart&auto=webp&s=1b4bc2ab623a7c1060eea13473a225bb9a0a09cc","https://preview.redd.it/xul38166lwh91.png?width=640&crop=smart&auto=webp&s=31b08298485128c0ad443e7d6dbf714a738e9f3f","https://preview.redd.it/rrk4n166lwh91.png?width=640&crop=smart&auto=webp&s=0ca7b7090a7bd12eb8449ea35c3ce23ff2ff6e67"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._02.05._-_08.05..mdx b/src/content/issues/holonews_fr_ver._02.05._-_08.05..mdx deleted file mode 100644 index d348e69..0000000 --- a/src/content/issues/holonews_fr_ver._02.05._-_08.05..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 02.05. - 08.05." -date: "2022-05-19T16:51:21.261000+0000" -link: "https://reddit.com/r/HoloNews/comments/ut7q1c/holonews_fr_ver_0205_0805/" -images: ["https://preview.redd.it/4bdt9fnspg091.png?width=640&crop=smart&auto=webp&s=36a264382dfa72475d093a1b4e4178449218b945","https://preview.redd.it/ha0268nspg091.png?width=640&crop=smart&auto=webp&s=33f222623ee5581ae85da9a6472846c157d55346","https://i.redd.it/sdzj9xnspg091.gif","https://preview.redd.it/yii65xmspg091.png?width=640&crop=smart&auto=webp&s=810b5bb5941b9067ec7b20a8d10fbccbadcff9a3","https://preview.redd.it/hwgnzxmspg091.png?width=640&crop=smart&auto=webp&s=a378d2c69c908e2df53dbbf03899abdf686e499a","https://preview.redd.it/3m9h2wmspg091.png?width=640&crop=smart&auto=webp&s=e5f92d38d316a09ece8af7f339e3854479da2c93","https://preview.redd.it/50v2twmspg091.png?width=640&crop=smart&auto=webp&s=a6702f21b72c37332dddccb9aa57c4d09c098132","https://preview.redd.it/tu86yymspg091.png?width=640&crop=smart&auto=webp&s=08e241575fe1b020ee8aade81d0af1aab72feec3","https://preview.redd.it/msp250nspg091.png?width=640&crop=smart&auto=webp&s=84a89fa6afeec50643b761daa62426a2e216d86d","https://preview.redd.it/bkozi1nspg091.png?width=640&crop=smart&auto=webp&s=4114262caefe5f7d738cbf5d9677f37b9dee80cc","https://preview.redd.it/rphaednspg091.png?width=640&crop=smart&auto=webp&s=c812a74dc54e32c377641547d843d4cc5fb2edbf","https://preview.redd.it/z9n8j2nspg091.png?width=640&crop=smart&auto=webp&s=432f436a8994d4f130b7760f1e46321f9c698bed","https://preview.redd.it/g0v222nspg091.png?width=640&crop=smart&auto=webp&s=59eb5c22cbb271f610169e0213fca4885408e1c4","https://preview.redd.it/tpgoqenspg091.png?width=640&crop=smart&auto=webp&s=df4eba2abbebb689027595cf2b2dab3125182194","https://preview.redd.it/v1b9q7nspg091.png?width=640&crop=smart&auto=webp&s=c20e79f7e1b33a5115e9bd89e7d0379aa395098b","https://preview.redd.it/jgm6u5nspg091.png?width=640&crop=smart&auto=webp&s=38be17fb48f3caa1d10e36d0cc3a12a50f0e91ae","https://preview.redd.it/60cho6nspg091.png?width=640&crop=smart&auto=webp&s=5f3723f70577ff3d85224f4e929cbe5d91071284"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._03.01_-_09.01.mdx b/src/content/issues/holonews_fr_ver._03.01_-_09.01.mdx deleted file mode 100644 index 4b99afd..0000000 --- a/src/content/issues/holonews_fr_ver._03.01_-_09.01.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 03.01 - 09.01" -date: "2022-01-20T16:36:02.893000+0000" -link: "https://reddit.com/r/HoloNews/comments/s8mzqp/holonews_fr_ver_0301_0901/" -images: ["https://preview.redd.it/e0dk876kevc81.png?width=640&crop=smart&auto=webp&s=b1a10b8c11dd5444432233ebad7dc85f19b37a6b","https://i.redd.it/hia0f17kevc81.gif","https://i.redd.it/n55qx67kevc81.gif","https://i.redd.it/ahkv077kevc81.gif","https://i.redd.it/5ape827kevc81.gif","https://preview.redd.it/abe6bx5kevc81.png?width=640&crop=smart&auto=webp&s=52aaddc7317c62cc23de1804ae9ea6e1d4d6b67f","https://preview.redd.it/i347xy5kevc81.png?width=640&crop=smart&auto=webp&s=e059be0277f5cbb6d3b5a49dd6b842dca6e28a5b","https://preview.redd.it/ixnr5z5kevc81.png?width=640&crop=smart&auto=webp&s=00296bebce0cf49ff2a60adf446b0001d94c4256","https://preview.redd.it/kktgi06kevc81.png?width=640&crop=smart&auto=webp&s=a279380f1c1c25e62fbcda2599952a4ac935aa63","https://preview.redd.it/4asej26kevc81.png?width=640&crop=smart&auto=webp&s=1da02be9928fec88553f343688ab2960062d8c54","https://preview.redd.it/2l6kq26kevc81.png?width=640&crop=smart&auto=webp&s=b3e0388325c217a42376d9fb2ef69ad64d695cf0","https://preview.redd.it/o3u8t16kevc81.png?width=640&crop=smart&auto=webp&s=81c5cf45cb2c8f077963d391af23bfbf1df040c5","https://preview.redd.it/tel1c36kevc81.png?width=640&crop=smart&auto=webp&s=0368541747da3a937db11e3bc008dd900543be7d","https://preview.redd.it/zugkx56kevc81.png?width=640&crop=smart&auto=webp&s=056846a9305b54458cc498ee463ae613c86f975c","https://preview.redd.it/evbxr56kevc81.png?width=640&crop=smart&auto=webp&s=c064699f9beef5a8c903e64d48889e866b7c9ca9","https://preview.redd.it/691e766kevc81.png?width=640&crop=smart&auto=webp&s=8473f4355a1bfcb01aabe183e71c71adbd824f8b","https://preview.redd.it/mc0gyv5kevc81.png?width=640&crop=smart&auto=webp&s=52fb16261be0fd121febc144ffd98ae44629ec3f","https://preview.redd.it/m4mlsr5kevc81.png?width=640&crop=smart&auto=webp&s=d1b6bc6fd846c2b101ba88fb12811394c6e484fd"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._04.04._-_10.04..mdx b/src/content/issues/holonews_fr_ver._04.04._-_10.04..mdx deleted file mode 100644 index c7f9f72..0000000 --- a/src/content/issues/holonews_fr_ver._04.04._-_10.04..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 04.04. - 10.04." -date: "2022-04-18T14:18:29.626000+0000" -link: "https://reddit.com/r/HoloNews/comments/u6e90i/holonews_fr_ver_0404_1004/" -images: ["https://preview.redd.it/447d9x59qau81.png?width=640&crop=smart&auto=webp&s=da1e72ad85758efd28cf305535e60e368ec906ab","https://i.redd.it/evaqgz69qau81.gif","https://i.redd.it/4cpyy569qau81.gif","https://i.redd.it/2lhpqm59qau81.gif","https://preview.redd.it/vqoemv59qau81.png?width=640&crop=smart&auto=webp&s=b577f973557b160e93c85dc2b50aebe53ae0cfcc","https://preview.redd.it/1p0w9x59qau81.png?width=640&crop=smart&auto=webp&s=eb24d7aed08ae47eb98c77548d486027886f3aef","https://preview.redd.it/8onp0069qau81.png?width=640&crop=smart&auto=webp&s=77c2052d6367e0672b2f9e574a1921b2f4f1535f","https://preview.redd.it/47q8zz59qau81.png?width=640&crop=smart&auto=webp&s=5b214222c0bf05bb30f184628729d134f4029a70","https://preview.redd.it/ng2jez59qau81.png?width=640&crop=smart&auto=webp&s=78a6f629b1d8d2347e487b340162b0cd02fcd30b","https://preview.redd.it/bvkxy169qau81.png?width=640&crop=smart&auto=webp&s=1954ff66b0b26e3e8ec5f1ab36dd544231decdd0","https://preview.redd.it/4isaim59qau81.png?width=640&crop=smart&auto=webp&s=2e2233b68a7665018531f331396e2d12d5982b20","https://preview.redd.it/tg33do59qau81.png?width=640&crop=smart&auto=webp&s=fe5c5e2398aae966f5a15220b53bd23994d842fe","https://preview.redd.it/k0xgzo59qau81.png?width=640&crop=smart&auto=webp&s=04894ea46f5cc6870c464c348b2b43220c05a620","https://preview.redd.it/f28i0069qau81.png?width=640&crop=smart&auto=webp&s=cfd9f432f4ca684c8741fa8a0de0757357fa5925","https://preview.redd.it/rpi8qr59qau81.png?width=640&crop=smart&auto=webp&s=e98e9e66e3150f9e0ca4b61ef491be956bcb1bd4","https://preview.redd.it/te1hcs59qau81.png?width=640&crop=smart&auto=webp&s=54067a4bbe0ce794e14ae015a4120d71e97c3f3c","https://preview.redd.it/jccgzt59qau81.png?width=640&crop=smart&auto=webp&s=c6f01e7fa0a3652ff04988062d8f9b317659f5af","https://preview.redd.it/zaqhfz59qau81.png?width=640&crop=smart&auto=webp&s=5d87fad3fb4ef7e073cd1546cc7bdd8172e18842","https://preview.redd.it/xr2di069qau81.png?width=640&crop=smart&auto=webp&s=6e8eada40e4418ca77867db22b2f2f2ec815bb3c","https://preview.redd.it/e9o8r269qau81.png?width=640&crop=smart&auto=webp&s=a0bbca7e0346cb52f6ac821b06ad9a3b15f05d31"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._06.12_-_12.12.mdx b/src/content/issues/holonews_fr_ver._06.12_-_12.12.mdx deleted file mode 100644 index 9f98780..0000000 --- a/src/content/issues/holonews_fr_ver._06.12_-_12.12.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 06.12 - 12.12" -date: "2021-12-22T16:46:40.026000+0000" -link: "https://reddit.com/r/HoloNews/comments/rm97dw/holonews_fr_ver_0612_1212/" -images: ["https://preview.redd.it/5m6u9vp5i4781.png?width=640&crop=smart&auto=webp&s=7e457b5c24559a4cb3729e0bca75fd436a4b7165","https://preview.redd.it/nxfdzpp5i4781.png?width=640&crop=smart&auto=webp&s=7eab2a23d433cc117eb4a12f319cc3a214d5ae20","https://i.redd.it/hzn54bq5i4781.gif","https://i.redd.it/84g75zp5i4781.gif","https://preview.redd.it/jzt074p5i4781.png?width=640&crop=smart&auto=webp&s=997f51f1b3d6470afd96392271d196610aba110c","https://preview.redd.it/xcgw2ro5i4781.png?width=640&crop=smart&auto=webp&s=85aff27ea989920d74b94ae79bc75ce0a4392708","https://preview.redd.it/5kftsfp5i4781.png?width=640&crop=smart&auto=webp&s=83e0568463842cd00b87c774eb0d1585f76d4cef","https://preview.redd.it/kplmeso5i4781.png?width=640&crop=smart&auto=webp&s=0ea90b4f544dae17840de1b754a844c428d356f0","https://preview.redd.it/3l7onpp5i4781.png?width=640&crop=smart&auto=webp&s=38d52e16a5c2e277921cf205ef3f1011c8ee1464","https://preview.redd.it/l819swo5i4781.png?width=640&crop=smart&auto=webp&s=c7bd7d92b3639dbbc69088ebfb49c6816ba8232a","https://preview.redd.it/hl8t1hp5i4781.png?width=640&crop=smart&auto=webp&s=05a87ee5c1f7493e5d32dce40bebd7abe2e024f9","https://preview.redd.it/spyjo0p5i4781.png?width=640&crop=smart&auto=webp&s=4a623d558b68c67ecb4547633c7226217f1c17ad","https://preview.redd.it/e4f2xbp5i4781.png?width=640&crop=smart&auto=webp&s=c79249d75260e4ca600f6da0372bed1234a92097","https://preview.redd.it/zybw02p5i4781.png?width=640&crop=smart&auto=webp&s=d41d4462503e963675c3d5362b89eb71f33b5389","https://preview.redd.it/j7pps8p5i4781.png?width=640&crop=smart&auto=webp&s=dcb9b082a98544a2e6a20a2e10a2ebaf4e8f6e5f","https://preview.redd.it/ufn3pso5i4781.png?width=640&crop=smart&auto=webp&s=140e213e675490db910653c1c37ed7259165f74c","https://preview.redd.it/2xyiqnp5i4781.png?width=640&crop=smart&auto=webp&s=ba9e8d7d8edcb7fc00143b7342f7e334abeb76da","https://preview.redd.it/l1ow7ap5i4781.png?width=640&crop=smart&auto=webp&s=c646d37f6d0ccd884044a772736a99aa0fd442e9","https://preview.redd.it/8ewqvso5i4781.png?width=640&crop=smart&auto=webp&s=b74795ad6432996d87370d219679c38b4ab0e903","https://preview.redd.it/0vvx7po5i4781.png?width=640&crop=smart&auto=webp&s=eaf33e2828b780aca5a67a53903ed3d5b7ebefa4"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._07.02._-_13.02..mdx b/src/content/issues/holonews_fr_ver._07.02._-_13.02..mdx deleted file mode 100644 index af5d198..0000000 --- a/src/content/issues/holonews_fr_ver._07.02._-_13.02..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 07.02. - 13.02." -date: "2022-02-21T14:09:17.542000+0000" -link: "https://reddit.com/r/HoloNews/comments/sxuedk/holonews_fr_ver_0702_1302/" -images: ["https://preview.redd.it/1xfzyfoe17j81.png?width=640&crop=smart&auto=webp&s=69ac8f5daa881a83eefe8f8190748dd9c30706d1","https://i.redd.it/vx10udpe17j81.gif","https://i.redd.it/6qdrdooe17j81.gif","https://preview.redd.it/y7orleoe17j81.png?width=640&crop=smart&auto=webp&s=74998876761e262deed684eb5b53a51396ded201","https://preview.redd.it/7qv70ioe17j81.png?width=640&crop=smart&auto=webp&s=aa3dbb48840f050b2f67f1fac8c38814fbd88136","https://preview.redd.it/aqfugaoe17j81.png?width=640&crop=smart&auto=webp&s=da06ce83b779cf147cc36b615492b4d0982ccd3f","https://preview.redd.it/8jlvjloe17j81.png?width=640&crop=smart&auto=webp&s=98053983677d9c8fc005ba981e28137f659c1923","https://preview.redd.it/vu96h6oe17j81.png?width=640&crop=smart&auto=webp&s=b20ac10643527831a5f66b34786e5e87a2a83d3a","https://preview.redd.it/ywb64loe17j81.png?width=640&crop=smart&auto=webp&s=60fce1043dcd8e04b3534965e30eca2b2ec8a98b","https://preview.redd.it/t75966pe17j81.png?width=640&crop=smart&auto=webp&s=72f77c7cd6fb78a2487dad6bdfccafc4fe8f4a9f","https://preview.redd.it/5wthh8oe17j81.png?width=640&crop=smart&auto=webp&s=1a86e660068db52e38573cff7742de79dafbf662","https://preview.redd.it/c09s25oe17j81.png?width=640&crop=smart&auto=webp&s=5cbe3680b6467f9da0b935546816dad8d499ff54","https://preview.redd.it/1v57uhoe17j81.png?width=640&crop=smart&auto=webp&s=41c54d02b72dec2d35bdd5b1b32c1b57530ffb69","https://preview.redd.it/qf0n8aoe17j81.png?width=640&crop=smart&auto=webp&s=74641f3cdf7bd1a6c419064576002a3b53604637","https://preview.redd.it/u7q04boe17j81.png?width=640&crop=smart&auto=webp&s=0bb8480b0715cca40ae48a67ad0888fbee201922","https://preview.redd.it/zyj0iloe17j81.png?width=640&crop=smart&auto=webp&s=efc19b82b99cee47e70142c7f682b8fd14f28f72","https://preview.redd.it/e6g9weoe17j81.png?width=640&crop=smart&auto=webp&s=66e538b401cdf2197feb68fb1342e76b75668534","https://preview.redd.it/v1qafhoe17j81.png?width=640&crop=smart&auto=webp&s=db1ea0aee1483346bf2eb62c7734f266af900473","https://preview.redd.it/z6e4h4oe17j81.png?width=640&crop=smart&auto=webp&s=6e5a8c47eb6c597fe2c44120585bd5a7b11d612a","https://preview.redd.it/o9evvcoe17j81.png?width=640&crop=smart&auto=webp&s=df331404b6d04ec3dbcd8a6fe34dd307e1dcda49"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._09.05_-_15.05.mdx b/src/content/issues/holonews_fr_ver._09.05_-_15.05.mdx deleted file mode 100644 index 3fda26a..0000000 --- a/src/content/issues/holonews_fr_ver._09.05_-_15.05.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 09.05 - 15.05" -date: "2022-05-25T16:19:11.481000+0000" -link: "https://reddit.com/r/HoloNews/comments/uxkygz/holonews_fr_ver_0905_1505/" -images: ["https://preview.redd.it/6d08rvbndn191.png?width=640&crop=smart&auto=webp&s=7e2fd1ef053ff2fe358a609eaabd9b285712c3d3","https://i.redd.it/st3x3ucndn191.gif","https://i.redd.it/hnb15qcndn191.gif","https://i.redd.it/fytcxvbndn191.gif","https://preview.redd.it/m2u0pjbndn191.png?width=640&crop=smart&auto=webp&s=cd79e6d50aaf007979553ea641edc9254ddf881e","https://preview.redd.it/deqm6xbndn191.png?width=640&crop=smart&auto=webp&s=0fad1eeeb31516731caa5ef2e129d754427a90e0","https://preview.redd.it/ha4s0lbndn191.png?width=640&crop=smart&auto=webp&s=a2fd10886fcfe15a0ba3993cd7ffb9251d23fcba","https://preview.redd.it/acwo6ybndn191.png?width=640&crop=smart&auto=webp&s=f8380c0618b174c4aaaed89a43d47c85528ac4de","https://preview.redd.it/cj6uylbndn191.png?width=640&crop=smart&auto=webp&s=1f9c69ec63ac1f124746a0384eed3da6be3a566b","https://preview.redd.it/mu6x71cndn191.png?width=640&crop=smart&auto=webp&s=cafbd9db5c001d5043d3886b0074c4d7cfa90f14","https://preview.redd.it/wu1g0qbndn191.png?width=640&crop=smart&auto=webp&s=a6e98f1011de70edf8b47cf7aab59c78a401d1e4","https://preview.redd.it/zv18f4cndn191.png?width=640&crop=smart&auto=webp&s=72c9183f4d0fb2bef328de562bda9e969f7dc066","https://preview.redd.it/0iwz07cndn191.png?width=640&crop=smart&auto=webp&s=70c364a93c727a7516950bd3963bed83a2f58ee1","https://preview.redd.it/4wc5t6cndn191.png?width=640&crop=smart&auto=webp&s=c85e5a0a8c62f4dbbeccfe9c3b281d499fb07f44","https://preview.redd.it/zf57hpbndn191.png?width=640&crop=smart&auto=webp&s=9fd1bb1fe3f7209bebf5fc0d77b7ae97701aaaa3","https://preview.redd.it/ph45p7cndn191.png?width=640&crop=smart&auto=webp&s=15ba7ecd4a015e61debac2ae2b2aadba6a65d425"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._10.01_-_16.01.mdx b/src/content/issues/holonews_fr_ver._10.01_-_16.01.mdx deleted file mode 100644 index 9e70c87..0000000 --- a/src/content/issues/holonews_fr_ver._10.01_-_16.01.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR Ver. 10.01 - 16.01" -date: "2022-01-27T14:20:51.083000+0000" -link: "https://reddit.com/r/HoloNews/comments/sdzh5w/holonews_fr_ver_1001_1601/" -images: ["https://preview.redd.it/a76xd4h6i8e81.png?width=640&crop=smart&auto=webp&s=2160e06d63719f7d76812b300423c06f6d658d7a","https://i.redd.it/ldw5o6h6i8e81.gif","https://i.redd.it/rtncihi6i8e81.gif","https://i.redd.it/c5gisfi6i8e81.gif","https://preview.redd.it/x5494bh6i8e81.png?width=640&crop=smart&auto=webp&s=7488bd4f327323ad0979a4b1183d0955b202fd11","https://preview.redd.it/5jy3qhh6i8e81.png?width=640&crop=smart&auto=webp&s=3a22eab335ce4698b6d6e299df4d2d3334351e25","https://preview.redd.it/f4nqihh6i8e81.png?width=640&crop=smart&auto=webp&s=433fd2b7bd2779f11b2006fdf57a099bc4c88df5","https://preview.redd.it/3fitkhh6i8e81.png?width=640&crop=smart&auto=webp&s=8cac1142ecb982d1c06121e1e2cd1e717c9cd4c1","https://preview.redd.it/e9p0ahh6i8e81.png?width=640&crop=smart&auto=webp&s=96c9984596982e0ce748641b6dffc378e49ffe6c","https://preview.redd.it/da0p0hh6i8e81.png?width=640&crop=smart&auto=webp&s=a575ed71198b5ef83fb6f1c942132ceefb828cdb","https://preview.redd.it/7gvwwhh6i8e81.png?width=640&crop=smart&auto=webp&s=1d83353fc0bc2dff157a9c9a88e38801c307981a","https://preview.redd.it/104s7ih6i8e81.png?width=640&crop=smart&auto=webp&s=477e2122148b4ef0757c5b7db6c010cb7f1cc075","https://preview.redd.it/th3koth6i8e81.png?width=640&crop=smart&auto=webp&s=a451fa59e863f049ba2da3db78a640c3cbe4adcc","https://preview.redd.it/iw24srh6i8e81.png?width=640&crop=smart&auto=webp&s=a09c329c87b17fa942d47934cd6a62f5636a9a34","https://preview.redd.it/2udkcmh6i8e81.png?width=640&crop=smart&auto=webp&s=7f02583e2a85bd24dccb0a5db084fb7a0f12d9fd","https://preview.redd.it/kc62oei6i8e81.png?width=640&crop=smart&auto=webp&s=cf86fe46ca2384b39099017b21768f6eb4ef675a","https://preview.redd.it/y1gnwei6i8e81.png?width=640&crop=smart&auto=webp&s=b3aaa1da19a3b37c390ad1679968a4993d21ea79","https://preview.redd.it/djp3zei6i8e81.png?width=640&crop=smart&auto=webp&s=a4080bdfe2c04dff85e166cf9ed334d39b59ec80","https://preview.redd.it/obuq7mi6i8e81.png?width=640&crop=smart&auto=webp&s=240389696801ca970648cd9143523facede88b6b","https://preview.redd.it/sk6ss9h6i8e81.png?width=640&crop=smart&auto=webp&s=59e36b78eaaa448846caaedbd330253ac1d42533"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._13.06_-_19.06.mdx b/src/content/issues/holonews_fr_ver._13.06_-_19.06.mdx deleted file mode 100644 index 534fbca..0000000 --- a/src/content/issues/holonews_fr_ver._13.06_-_19.06.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 13.06 - 19.06" -date: "2022-06-27T16:43:05.423000+0000" -link: "https://reddit.com/r/HoloNews/comments/vlzuj2/holonews_fr_ver_1306_1906/" -images: ["https://preview.redd.it/4gafg71007891.png?width=640&crop=smart&auto=webp&s=55e9dec36ffe6e76e1f8dbe0ede59d01f38a868e","https://i.redd.it/q8n0df2007891.gif","https://preview.redd.it/afwo4y0007891.png?width=640&crop=smart&auto=webp&s=70baf8b329ba1861153f4483cd02d7a529a2aaef","https://i.redd.it/s4x3x42007891.gif","https://i.redd.it/d18nbs2007891.gif","https://i.redd.it/c3krlc2007891.gif","https://preview.redd.it/vsc0491007891.png?width=640&crop=smart&auto=webp&s=ed4896f76dd308bb5406c63d0a4a76b9a8ba5582","https://preview.redd.it/s8i86e1007891.png?width=640&crop=smart&auto=webp&s=69851b3f717262b0ab3beac099832d0ac873d4e6","https://preview.redd.it/mfyk4z0007891.png?width=640&crop=smart&auto=webp&s=43c15344c536d74655db9e4b5812d310dd4ee253","https://preview.redd.it/elcvud1007891.png?width=640&crop=smart&auto=webp&s=be9e361ccb0357ed50d812a9450b7fd4d614d321","https://preview.redd.it/yapvr21007891.png?width=640&crop=smart&auto=webp&s=b50b4276bfd0a7957100d638dc8c47cae2a92ebb","https://preview.redd.it/jc8e6e1007891.png?width=640&crop=smart&auto=webp&s=b0dfadcd41e7aa11d6d6cde874950fa0ff7f88b2","https://preview.redd.it/2aotee1007891.png?width=640&crop=smart&auto=webp&s=51e3bf1f1f43d395bbf5ea8ae0bf81809b0def2e","https://preview.redd.it/y13tq21007891.png?width=640&crop=smart&auto=webp&s=4296a60300dbd1f1fae2c7ceb1a474ebaf82abaa","https://preview.redd.it/5b7awf1007891.png?width=640&crop=smart&auto=webp&s=5fd9bc247acc09895c2b0d3af40f6a11eb514596","https://preview.redd.it/8bwjx61007891.png?width=640&crop=smart&auto=webp&s=8fc31732846bf8b7e14f7977536776d8e6b4a737","https://preview.redd.it/yt54hs1007891.png?width=640&crop=smart&auto=webp&s=2939f79cea455088f292bab53cd073bdf23e8fb2","https://preview.redd.it/urmq5h1007891.png?width=640&crop=smart&auto=webp&s=27d2ed6ecd4f0a7f3ace23ae4ae024317fa13950","https://preview.redd.it/x7r5pk1007891.png?width=640&crop=smart&auto=webp&s=57895970b13ba7336aa91b0b9dba9b177f8c2ec3","https://preview.redd.it/5jtaoj1007891.png?width=640&crop=smart&auto=webp&s=5b1f8f69573a4bbe81a6157c8ec9de18abb7f00a"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._13.12_-_19.12.mdx b/src/content/issues/holonews_fr_ver._13.12_-_19.12.mdx deleted file mode 100644 index f0ce445..0000000 --- a/src/content/issues/holonews_fr_ver._13.12_-_19.12.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Holonews FR ver. 13.12 - 19.12" -date: "2021-12-30T17:03:40.473000+0000" -link: "https://reddit.com/r/HoloNews/comments/rs6inc/holonews_fr_ver_1312_1912/" -images: ["https://i.redd.it/mdbr8fr7op881.gif","https://i.redd.it/2gkvmbr7op881.gif","https://i.redd.it/cfgs5fr7op881.gif","https://preview.redd.it/yoztz9r7op881.png?width=640&crop=smart&auto=webp&s=faf4b4ff1d037d972b11359332d21340e67b2c6e","https://preview.redd.it/6hzku9r7op881.png?width=640&crop=smart&auto=webp&s=f611a3956a9a7cd55f7bca2cd03adb150b719f29","https://preview.redd.it/4ans4cr7op881.png?width=640&crop=smart&auto=webp&s=aa4c3e5e272c4343ed4c2d5a8cff19c26251a49b","https://i.redd.it/6q9z38s7op881.gif","https://preview.redd.it/8qzv4gr7op881.png?width=640&crop=smart&auto=webp&s=6bb2eeafe88d807e930549682160700a6ea9a2a7","https://preview.redd.it/xtq505r7op881.png?width=640&crop=smart&auto=webp&s=b45496451e744c0886e4daf84d2da4a1b6161b24","https://preview.redd.it/spozawqbop881.png?width=640&crop=smart&auto=webp&s=4feb1114688a978e54c1701b8b824b5f74c77cb5","https://preview.redd.it/mrnna2rbop881.png?width=640&crop=smart&auto=webp&s=ada9d46983ed3c8c8292a3a4e87fd44f96bb1b55","https://preview.redd.it/if4hbzrbop881.png?width=640&crop=smart&auto=webp&s=d81fbf28c071a282cfded7cacbb2fc7eb4febdf2","https://preview.redd.it/bdhhvxqbop881.png?width=640&crop=smart&auto=webp&s=e42b6bcb4d0c7508c2674d72f754ca7b3ba7403c","https://preview.redd.it/g5e6n8rbop881.png?width=640&crop=smart&auto=webp&s=671ae8975a7ba4a28ab1ba3d102923ca2dbb226d","https://preview.redd.it/othl11rbop881.png?width=640&crop=smart&auto=webp&s=843f7cbbbb9e89d587c910ba92b48512c99b71d9","https://preview.redd.it/youn1arbop881.png?width=640&crop=smart&auto=webp&s=bb47e4647030f2d055471fb3c06ffd0047f07735","https://preview.redd.it/0rlzk5rbop881.png?width=640&crop=smart&auto=webp&s=228320575dd5bb8645dc35ca1d4d6aa79ca189bb","https://preview.redd.it/s9btd0rbop881.png?width=640&crop=smart&auto=webp&s=cfc05afb23cf6c0a2aa92daf3b992d3219258a45","https://preview.redd.it/097yrwqbop881.png?width=640&crop=smart&auto=webp&s=b5fe85eda72561c8b43b1c86f7691b8a0c0f80fc","https://preview.redd.it/gxjactqbop881.png?width=640&crop=smart&auto=webp&s=6683cab62c30f5b5ea01bfb73e3a64183818b0c5"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._14.02_-_20.02.mdx b/src/content/issues/holonews_fr_ver._14.02_-_20.02.mdx deleted file mode 100644 index 75dbcf0..0000000 --- a/src/content/issues/holonews_fr_ver._14.02_-_20.02.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 14.02 - 20.02" -date: "2022-02-28T16:33:37.515000+0000" -link: "https://reddit.com/r/HoloNews/comments/t3jlfs/holonews_fr_ver_1402_2002/" -images: ["https://preview.redd.it/vofozn9hplk81.png?width=640&crop=smart&auto=webp&s=27ae1c9d56f9bf4873fa12f688649f0862bb313c","https://i.redd.it/2x1avp9hplk81.gif","https://i.redd.it/q3grcw9hplk81.gif","https://i.redd.it/5c90dx9hplk81.gif","https://preview.redd.it/rtbwlt9hplk81.png?width=640&crop=smart&auto=webp&s=e511390519cb06a702c8fb02718e0658498bf955","https://preview.redd.it/n829ms9hplk81.png?width=640&crop=smart&auto=webp&s=edada192fd6599e6c75a049287658c1b6498f11b","https://preview.redd.it/wz3l9c9hplk81.png?width=640&crop=smart&auto=webp&s=9ce5f1d5c71ccb653319d143f6fe6f77869ab18d","https://preview.redd.it/y2itib9hplk81.png?width=640&crop=smart&auto=webp&s=12e89b1630c6cbd113379f10584dfd3453233314","https://preview.redd.it/0tignb9hplk81.png?width=640&crop=smart&auto=webp&s=4cc3c1ec43edea06db4a9f51305eafaddd0e0b5f","https://preview.redd.it/gvvkmc9hplk81.png?width=640&crop=smart&auto=webp&s=c031e7d337bf1de9fd8bfd39d427fafbe48fb620","https://preview.redd.it/e8oyxd9hplk81.png?width=640&crop=smart&auto=webp&s=92a3903ed9210fe9a5db25038b51fc1cc2aeb033","https://preview.redd.it/26e2rg9hplk81.png?width=640&crop=smart&auto=webp&s=d02bfd6c9a22e55755feac5eb10e6cbaca38907f","https://preview.redd.it/jrofnf9hplk81.png?width=640&crop=smart&auto=webp&s=62aacb83f40ee241e4f4e91bca1029d3f2be6551","https://preview.redd.it/ra08ek9hplk81.png?width=640&crop=smart&auto=webp&s=084be884b52ad02faa9e89642909878e9dfba355","https://preview.redd.it/fuhzya9hplk81.png?width=640&crop=smart&auto=webp&s=ecfd66c568f609b3852144852c5bc95267b4c074","https://preview.redd.it/oe03uf9hplk81.png?width=640&crop=smart&auto=webp&s=617a5e34007ab70f8018375de30d51744d69343d","https://preview.redd.it/msc19i9hplk81.png?width=640&crop=smart&auto=webp&s=92560dd1db5833f74b01460744d8b4a82f2122ac","https://preview.redd.it/oc740k9hplk81.png?width=640&crop=smart&auto=webp&s=91a4ea310ada07f71bda879d4805eeccbc80aea5","https://preview.redd.it/k8z90j9hplk81.png?width=640&crop=smart&auto=webp&s=d12fd84ccdc75f87cd0e240b875ee6b6da15a6b7","https://preview.redd.it/38e8fj9hplk81.png?width=640&crop=smart&auto=webp&s=7cf7d280ef148101d187fe3934bd8c063d42d4e1"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._14.03._-_20.03..mdx b/src/content/issues/holonews_fr_ver._14.03._-_20.03..mdx deleted file mode 100644 index 6060d3e..0000000 --- a/src/content/issues/holonews_fr_ver._14.03._-_20.03..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 14.03. - 20.03." -date: "2022-03-28T17:22:30.799000+0000" -link: "https://reddit.com/r/HoloNews/comments/tqeeiy/holonews_fr_ver_1403_2003/" -images: ["https://preview.redd.it/8l00lc61s5q81.png?width=640&crop=smart&auto=webp&s=453234cee70e0f548eed14bcc3b686d60118260e","https://i.redd.it/6uhrci61s5q81.gif","https://i.redd.it/cyqkof61s5q81.gif","https://i.redd.it/sylozk61s5q81.gif","https://preview.redd.it/vdqp7661s5q81.png?width=640&crop=smart&auto=webp&s=9d91fbed8899e9fe903537d6f79c621b17f98337","https://preview.redd.it/ii0pva61s5q81.png?width=640&crop=smart&auto=webp&s=9318492da5dac19d8b39fe81b1fdc72c1c665527","https://preview.redd.it/ea20f961s5q81.png?width=640&crop=smart&auto=webp&s=1417346c2aea0fd091f306550ad68b149dc63b07","https://preview.redd.it/y7r06h61s5q81.png?width=640&crop=smart&auto=webp&s=bed828d1631524f1865ce25ba57950a08b057f98","https://preview.redd.it/ilke9b61s5q81.png?width=640&crop=smart&auto=webp&s=be283f4da67749f62f511273da38f6974d419fae","https://preview.redd.it/cd6a9h61s5q81.png?width=640&crop=smart&auto=webp&s=f543205abd9397032632e17da83aa041ab9a3723","https://preview.redd.it/urbzei61s5q81.png?width=640&crop=smart&auto=webp&s=a8a7f73fa22047c3b4231709d6a599a11d6c6e52","https://preview.redd.it/ozi8q661s5q81.png?width=640&crop=smart&auto=webp&s=bb0b8c13b6021fcd9615a2f8965f5325dbdeca21","https://preview.redd.it/gw04iy61s5q81.png?width=640&crop=smart&auto=webp&s=b043da58c6d4b49c7c9fd8eea154428446fdf401","https://preview.redd.it/wk838d61s5q81.png?width=640&crop=smart&auto=webp&s=9557ef890f9cf60a5d1e4159b87bb1852e77cb77","https://preview.redd.it/jrpfmf61s5q81.png?width=640&crop=smart&auto=webp&s=89d897714f0ad2f21c5b3622d98a8dba56363eb3","https://preview.redd.it/l8ljjk61s5q81.png?width=640&crop=smart&auto=webp&s=8da3d628ea00e9b68a098ca9af9b56f7a76189c2","https://preview.redd.it/0zxhnd61s5q81.png?width=640&crop=smart&auto=webp&s=137ae1dcd569912482a52ccaccb9231563ef37b0","https://preview.redd.it/47e7fa61s5q81.png?width=640&crop=smart&auto=webp&s=0a528a44c670d8c7f6195df4d0d9966962ffd884","https://preview.redd.it/n98lfk61s5q81.png?width=640&crop=smart&auto=webp&s=91f0f69ace839651baac83aeca97c07d00e909a0"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._15.08._-_21.08..mdx b/src/content/issues/holonews_fr_ver._15.08._-_21.08..mdx deleted file mode 100644 index 9968e21..0000000 --- a/src/content/issues/holonews_fr_ver._15.08._-_21.08..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 15.08. - 21.08." -date: "2022-08-29T17:08:07.184000+0000" -link: "https://reddit.com/r/HoloNews/comments/x0u1a8/holonews_fr_ver_1508_2108/" -images: ["https://preview.redd.it/2ciom6supok91.png?width=640&crop=smart&auto=webp&s=a2a3c4992e8be646d742bdd59e3f3f8e4372ac33","https://i.redd.it/634sj0supok91.gif","https://preview.redd.it/e97q8xsupok91.png?width=640&crop=smart&auto=webp&s=d7ada2e095dca223fbe4466427123aab775f41ee","https://i.redd.it/lhhuwrsupok91.gif","https://i.redd.it/8nol54supok91.gif","https://preview.redd.it/stxer8supok91.png?width=640&crop=smart&auto=webp&s=01d888ec2cb59541c50c0d9ac6933f517a718cac","https://i.redd.it/garj0urupok91.gif","https://preview.redd.it/dzlymyrupok91.png?width=640&crop=smart&auto=webp&s=10bf18de905a5667dbf8f70fc7e93b8bb7d16c66","https://preview.redd.it/vucz81supok91.png?width=640&crop=smart&auto=webp&s=996b02056423a26d02ce37f2fa3c939b4a93d3cd","https://preview.redd.it/nuys91supok91.png?width=640&crop=smart&auto=webp&s=e0957be9073eeeb47ce37fc797987568461b0d9d","https://preview.redd.it/courx9supok91.png?width=640&crop=smart&auto=webp&s=1273453defd8ff55f4f970fb9296241b50a2044d","https://preview.redd.it/cp33mksupok91.png?width=640&crop=smart&auto=webp&s=d3960874a027037b145bb0638de96a47e0b2f01a","https://preview.redd.it/2iuegvrupok91.png?width=640&crop=smart&auto=webp&s=02669107cf0fef01489275046620eaef9e39913a","https://preview.redd.it/gup31rsupok91.png?width=640&crop=smart&auto=webp&s=5bd77a5f4344919c4173af822be99187de8b3c48","https://preview.redd.it/cq9bttsupok91.png?width=640&crop=smart&auto=webp&s=46548ab7eeb1768aa3c41089d7d1ac9e35eafb4b","https://preview.redd.it/x3pycvrupok91.png?width=640&crop=smart&auto=webp&s=7d5027456b42eeaa05855f9206192ad5092e7d36","https://preview.redd.it/uw7vqwrupok91.png?width=640&crop=smart&auto=webp&s=6843c861fa271acb89c0ca3607ccbd75d02070ac","https://preview.redd.it/4t5qgwrupok91.png?width=640&crop=smart&auto=webp&s=017892af2ce1c5b923d8af297a27642a70ac787e","https://preview.redd.it/1zq51wsupok91.png?width=640&crop=smart&auto=webp&s=be13fa6989a625ebe500340870400eab030dee07"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._17.01_-_23.01.mdx b/src/content/issues/holonews_fr_ver._17.01_-_23.01.mdx deleted file mode 100644 index 53f67c0..0000000 --- a/src/content/issues/holonews_fr_ver._17.01_-_23.01.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 17.01 - 23.01" -date: "2022-02-01T16:11:27.093000+0000" -link: "https://reddit.com/r/HoloNews/comments/shylp9/holonews_fr_ver_1701_2301/" -images: ["https://preview.redd.it/trqd5hf6x8f81.png?width=640&crop=smart&auto=webp&s=34605931436bd174ae8291be43559165f82cd9e5","https://i.redd.it/0se94vf6x8f81.gif","https://i.redd.it/tv8xlhf6x8f81.gif","https://i.redd.it/j4f6g8g6x8f81.gif","https://i.redd.it/cd52pyf6x8f81.gif","https://preview.redd.it/wyxpejf6x8f81.png?width=640&crop=smart&auto=webp&s=1b5114e7cc077ed90d6f8d1a50d2103a005aeffa","https://preview.redd.it/eg6iinf6x8f81.png?width=640&crop=smart&auto=webp&s=cb93a3f0f231c8aef20153cb355d963d5d1078e8","https://preview.redd.it/8yecplf6x8f81.png?width=640&crop=smart&auto=webp&s=bc45a8d226b09d27f513f6ce26f0eabbbc9cdbfb","https://preview.redd.it/qjxy9nf6x8f81.png?width=640&crop=smart&auto=webp&s=ab8a7fce77388059f184e3f4898feba5053ac3b0","https://preview.redd.it/2mvamff6x8f81.png?width=640&crop=smart&auto=webp&s=bbca0f824900bc7673cc3c023abf468aeb550e42","https://preview.redd.it/h286wlf6x8f81.png?width=640&crop=smart&auto=webp&s=ae8be14fd9a4fb383bf7b179b05536a554669f4b","https://preview.redd.it/dya8inf6x8f81.png?width=640&crop=smart&auto=webp&s=c3ac661fa1961c669f07aa05ff6795e869dc6fb3","https://preview.redd.it/ul3ntmf6x8f81.png?width=640&crop=smart&auto=webp&s=a2716fd3b95806416365b153a86cf46d11ed9311","https://preview.redd.it/re6y8of6x8f81.png?width=640&crop=smart&auto=webp&s=5d0d7b3c420b2ee8493a9dad9d532e347e236b91","https://preview.redd.it/ww8qoof6x8f81.png?width=640&crop=smart&auto=webp&s=01695cf89c2777ac8ec3c1af48bbc8167809226d","https://preview.redd.it/08bviof6x8f81.png?width=640&crop=smart&auto=webp&s=fbe6fa0e3851eddf409602064abbb5a5fe40dbd2","https://preview.redd.it/kt122qf6x8f81.png?width=640&crop=smart&auto=webp&s=6ecefb9bddc638fff6a871fb39bfa58eb123becc","https://preview.redd.it/n0g75tf6x8f81.png?width=640&crop=smart&auto=webp&s=3da5663ab629967818d3d454f9524c4a47090408","https://preview.redd.it/udnc3tf6x8f81.png?width=640&crop=smart&auto=webp&s=7e17a39cb459ab74aae2a263c39d6ff22f3de821","https://preview.redd.it/l83xopf6x8f81.png?width=640&crop=smart&auto=webp&s=1654d30eeb92204e8d364f996bcfd1c1bde484fd"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._18.07_-_24.07.mdx b/src/content/issues/holonews_fr_ver._18.07_-_24.07.mdx deleted file mode 100644 index 3ca6f53..0000000 --- a/src/content/issues/holonews_fr_ver._18.07_-_24.07.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR Ver. 18.07 - 24.07" -date: "2022-08-04T16:09:47.902000+0000" -link: "https://reddit.com/r/HoloNews/comments/wg54k1/holonews_fr_ver_1807_2407/" -images: ["https://preview.redd.it/j1sg7blo0qf91.png?width=640&crop=smart&auto=webp&s=875d080bded05de47847553516eb706d78b749e3","https://i.redd.it/mhzj60no0qf91.gif","https://i.redd.it/upgcmano0qf91.gif","https://i.redd.it/ofvroeno0qf91.gif","https://i.redd.it/ac2sk9no0qf91.gif","https://i.redd.it/9yip5omo0qf91.gif","https://preview.redd.it/sk6j3clo0qf91.png?width=640&crop=smart&auto=webp&s=b95136f3f3fefd479e264f02fdcebee10ebf5595","https://preview.redd.it/vf0r5zko0qf91.png?width=640&crop=smart&auto=webp&s=278bf6a9053de369fb0b32fd74adbe607359ac46","https://preview.redd.it/opnzsdlo0qf91.png?width=640&crop=smart&auto=webp&s=2496266de37e2aef7c2fc0447781df418989a5de","https://preview.redd.it/60vvyglo0qf91.png?width=640&crop=smart&auto=webp&s=681fa90f7d9759063c2430beb49ca2d693def520","https://preview.redd.it/hqc7zhlo0qf91.png?width=640&crop=smart&auto=webp&s=5d26114bee86c14ccdbe4e08d76eefa9eb9c97f1","https://preview.redd.it/fhlibllo0qf91.png?width=640&crop=smart&auto=webp&s=8c24bcdb191433b9daffd4e215da59b3bdd6c101","https://preview.redd.it/9t9pknlo0qf91.png?width=640&crop=smart&auto=webp&s=b31173c3638d3b1ab965d6ee9a51685aea3b13d0","https://preview.redd.it/ys0mh1lo0qf91.png?width=640&crop=smart&auto=webp&s=aec73dcf641c48852cc407c493ea046881c32fb6","https://preview.redd.it/0ixorqlo0qf91.png?width=640&crop=smart&auto=webp&s=f162f2271735030b16a0da84e29d99731332c88a","https://preview.redd.it/z5fgc2lo0qf91.png?width=640&crop=smart&auto=webp&s=e9cf1741e03837d1bdac8148c19eab244611717d","https://preview.redd.it/gou7namo0qf91.png?width=640&crop=smart&auto=webp&s=ddec0c1753e4f246705f48ef90062478d8e9f309","https://preview.redd.it/1ufxkslo0qf91.png?width=640&crop=smart&auto=webp&s=c49366b494af0be81f80a0d4ec303554cb3f03b7","https://preview.redd.it/2gksmulo0qf91.png?width=640&crop=smart&auto=webp&s=88287054c54e70fb0b4db443b92a7a7bee71037d","https://preview.redd.it/u2aubvlo0qf91.png?width=640&crop=smart&auto=webp&s=0e20ddeb4a9aea9fd53ba0ad5298c63fa95775d2"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._20.06._-_26.06.mdx b/src/content/issues/holonews_fr_ver._20.06._-_26.06.mdx deleted file mode 100644 index 352b2c0..0000000 --- a/src/content/issues/holonews_fr_ver._20.06._-_26.06.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 20.06. - 26.06" -date: "2022-07-08T06:33:58.918000+0000" -link: "https://reddit.com/r/HoloNews/comments/vu4684/holonews_fr_ver_2006_2606/" -images: ["https://preview.redd.it/a4m7wf92haa91.png?width=640&crop=smart&auto=webp&s=464404bb3d0ac9559ad0d97a1f24061fedfdbce1","https://i.redd.it/xom67c82haa91.gif","https://i.redd.it/xkxis982haa91.gif","https://i.redd.it/z9k5b892haa91.gif","https://preview.redd.it/8hxr4782haa91.png?width=640&crop=smart&auto=webp&s=3e9ca5ac0b03d3736c1689eaa856a648e8e4800c","https://i.redd.it/fqhy7f82haa91.gif","https://i.redd.it/o0w4l592haa91.gif","https://preview.redd.it/oyrub192haa91.png?width=640&crop=smart&auto=webp&s=5ab91050d582828df3e4256012f69db572972259","https://preview.redd.it/qy1jhg82haa91.png?width=640&crop=smart&auto=webp&s=4c3a184dc7a56aadb9249ef9fe9c720695016d74","https://preview.redd.it/oiuvl892haa91.png?width=640&crop=smart&auto=webp&s=271db9c52c870ca2f2d1866a87a381c902b6d71f","https://preview.redd.it/uezevg82haa91.png?width=640&crop=smart&auto=webp&s=90ecdaa7669c29791cbcb190c43aa59ad14c5cd1","https://preview.redd.it/8e85d2a2haa91.png?width=640&crop=smart&auto=webp&s=4b489cfb50f0e3247c566e6905d8fa2e38312acf","https://preview.redd.it/vlsl4i82haa91.png?width=640&crop=smart&auto=webp&s=4f0fbad2697d92c19c6a5490b72f874a9f5916f4","https://preview.redd.it/2m142j82haa91.png?width=640&crop=smart&auto=webp&s=6276d7759992fff74bd14f6d8a1bc3209cc83d5d","https://preview.redd.it/86fl4d92haa91.png?width=640&crop=smart&auto=webp&s=4bc72d30aca3d357409bdd450d70e1557d5dba92","https://preview.redd.it/x3gxo4a2haa91.png?width=640&crop=smart&auto=webp&s=c6776b5e0327052793d507f62a79ae41603d9f8f","https://preview.redd.it/n384f4a2haa91.png?width=640&crop=smart&auto=webp&s=378575797d8ae025d33d7e372a70056083a4e00a","https://preview.redd.it/x5aehn82haa91.png?width=640&crop=smart&auto=webp&s=00b0f5da213a7933bf219bb883ea410216c46d34"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._21.02._-_27.02..mdx b/src/content/issues/holonews_fr_ver._21.02._-_27.02..mdx deleted file mode 100644 index b589cce..0000000 --- a/src/content/issues/holonews_fr_ver._21.02._-_27.02..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 21.02. - 27.02." -date: "2022-03-07T18:59:47.304000+0000" -link: "https://reddit.com/r/HoloNews/comments/t8wk61/holonews_fr_ver_2102_2702/" -images: ["https://preview.redd.it/cpqvl105e0m81.png?width=640&crop=smart&auto=webp&s=ce8396cd38c057104db6ed211b90339ac18b66b3","https://i.redd.it/zp8yf9c5e0m81.gif","https://i.redd.it/dcw55vv5e0m81.gif","https://i.redd.it/c5zwidl5e0m81.gif","https://preview.redd.it/06z3en77e0m81.png?width=640&crop=smart&auto=webp&s=aedf2dcecd10326e5fdbd28d97e1811d6404bb8b","https://preview.redd.it/lchhitc7e0m81.png?width=640&crop=smart&auto=webp&s=9c98eb4702c0fdff91064c1260df0adfddc6e7d2","https://preview.redd.it/vfwjodj7e0m81.png?width=640&crop=smart&auto=webp&s=7667316c207344eae8c9ca6514a50923313be9ca","https://preview.redd.it/ttokyiq7e0m81.png?width=640&crop=smart&auto=webp&s=c0073a3eee48e8ee2b57b36147ee3843cc4b7f04","https://preview.redd.it/jusqv148e0m81.png?width=640&crop=smart&auto=webp&s=0fe1ca947b2d7cbf2fa9e5e6d019a70dd99a5170","https://preview.redd.it/slpsxie8e0m81.png?width=640&crop=smart&auto=webp&s=80afac18e6c61b189cffe69f22e00ab18416040b","https://preview.redd.it/mpiwp3n8e0m81.png?width=640&crop=smart&auto=webp&s=dc03a60bb843209a7479d8c4260d244055f66515","https://preview.redd.it/6hkaqlu8e0m81.png?width=640&crop=smart&auto=webp&s=99553f09a992c4bf4c9e7f2c3ae164a387b98746","https://preview.redd.it/3l14ee19e0m81.png?width=640&crop=smart&auto=webp&s=aa7325bf069ed609c160997c7b5ede79d9233e2d","https://preview.redd.it/2mcp2m89e0m81.png?width=640&crop=smart&auto=webp&s=faae2f33baa85ef5bbeb1dcb20cea8682e297e27","https://preview.redd.it/f4oo2fg9e0m81.png?width=640&crop=smart&auto=webp&s=7e895f6f1ffc8ea1d11d2b0268cbde79f46ecc27","https://preview.redd.it/r4ro0vn9e0m81.png?width=640&crop=smart&auto=webp&s=a92f675d5dd995f438b2dc45d4ccf69d320a7d53","https://preview.redd.it/6szj8cv9e0m81.png?width=640&crop=smart&auto=webp&s=db72ffc99052f5cc7033f2d39a79aa158869faf6","https://preview.redd.it/7rllf92ae0m81.png?width=640&crop=smart&auto=webp&s=e61743fcbece87590aafd378e77160b02e963b3a","https://preview.redd.it/mbwnn8eae0m81.png?width=640&crop=smart&auto=webp&s=166af0c1d19f9f2b6a1a85ae5d65574221adaac6","https://preview.redd.it/4hlcf6oae0m81.png?width=640&crop=smart&auto=webp&s=9d6770a6eada494417af40072b168c79743427f6"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._21.03_-_27.03.mdx b/src/content/issues/holonews_fr_ver._21.03_-_27.03.mdx deleted file mode 100644 index c0b3e93..0000000 --- a/src/content/issues/holonews_fr_ver._21.03_-_27.03.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 21.03 - 27.03" -date: "2022-04-04T15:59:52.145000+0000" -link: "https://reddit.com/r/HoloNews/comments/tw5k46/holonews_fr_ver_2103_2703/" -images: ["https://preview.redd.it/e9jtowfnbjr81.png?width=640&crop=smart&auto=webp&s=77c006c509931d09cc00a146b7cb8dac40524eda","https://i.redd.it/4o117xfnbjr81.gif","https://i.redd.it/z5xe8ifnbjr81.gif","https://i.redd.it/bfq810gnbjr81.gif","https://preview.redd.it/327mqnfnbjr81.png?width=640&crop=smart&auto=webp&s=a9879df3490ccc52e3ec35e1dbb46614450f16ce","https://preview.redd.it/0imd3rfnbjr81.png?width=640&crop=smart&auto=webp&s=3457e31dc9d639d95a729be5ab3e1a7d44348991","https://preview.redd.it/0w3wwrfnbjr81.png?width=640&crop=smart&auto=webp&s=3eb5268cebec1f8563fb329724626c1de859577e","https://preview.redd.it/lp0el1gnbjr81.png?width=640&crop=smart&auto=webp&s=6ca513dff53343e9cb39cb7ab25af4874fe6d5f6","https://preview.redd.it/074ictfnbjr81.png?width=640&crop=smart&auto=webp&s=c0b4d4f7525192de8aaa27f5ac10adcdef001aa8","https://preview.redd.it/9zavgtfnbjr81.png?width=640&crop=smart&auto=webp&s=736cc59093a687e96e66961666ee5b55840fe6be","https://preview.redd.it/pcshx2gnbjr81.png?width=640&crop=smart&auto=webp&s=19e5e694210fe2e1198955645b2aa24c8dbb724c","https://preview.redd.it/jglnjtfnbjr81.png?width=640&crop=smart&auto=webp&s=d7caacae7abf7dd1ac8e436a4230c944f5034ff7","https://preview.redd.it/jbcusifnbjr81.png?width=640&crop=smart&auto=webp&s=06ded2d623b522b750c6d7325fa1141603fd896d","https://preview.redd.it/glejulfnbjr81.png?width=640&crop=smart&auto=webp&s=799cc6c4309236e9064c3d16085c6d34d9334096","https://preview.redd.it/6zijamfnbjr81.png?width=640&crop=smart&auto=webp&s=c3a0c284c786ad6394983b8968b978fc01b926a5","https://preview.redd.it/z98vbufnbjr81.png?width=640&crop=smart&auto=webp&s=6291f449539348c2baae71fb1de98bb3d02262d8","https://preview.redd.it/hep20vfnbjr81.png?width=640&crop=smart&auto=webp&s=58d9f1500659c5bf5583ffcc8fa72fb89371f9f9","https://preview.redd.it/1ftqgzfnbjr81.png?width=640&crop=smart&auto=webp&s=a394764600a111c980ee58d0647ed08d5185669d","https://preview.redd.it/jsvzf2gnbjr81.png?width=640&crop=smart&auto=webp&s=2cb574d5b900fef32fcc8d2cba97e55c5d3ee177"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._22.08._-_28.08..mdx b/src/content/issues/holonews_fr_ver._22.08._-_28.08..mdx deleted file mode 100644 index 58aa7e0..0000000 --- a/src/content/issues/holonews_fr_ver._22.08._-_28.08..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 22.08. - 28.08." -date: "2022-09-05T14:08:01.678000+0000" -link: "https://reddit.com/r/HoloNews/comments/x6h3c2/holonews_fr_ver_2208_2808/" -images: ["https://preview.redd.it/jvjs8fvzr1m91.png?width=640&crop=smart&auto=webp&s=dbf11a7a04e72beda05c23487c3d5089fd9dc882","https://i.redd.it/q2jbxbvzr1m91.gif","https://i.redd.it/1cwrw0wzr1m91.gif","https://i.redd.it/4tpf09vzr1m91.gif","https://i.redd.it/a97apuvzr1m91.gif","https://preview.redd.it/ug961yvzr1m91.png?width=640&crop=smart&auto=webp&s=ba218c8fdc4099f952420c8f16069aacc2264459","https://preview.redd.it/i7f201wzr1m91.png?width=640&crop=smart&auto=webp&s=e5a7129317641336f215b737a67f90cf090a70c6","https://preview.redd.it/cnfnk6vzr1m91.png?width=640&crop=smart&auto=webp&s=bfaf9a09535b88f12d4e81c17d781ff9612bcdef","https://preview.redd.it/4xjo32wzr1m91.png?width=640&crop=smart&auto=webp&s=5ddb500940dd7f7c941b3b974673f026a96f1071","https://preview.redd.it/9mo0w9vzr1m91.png?width=640&crop=smart&auto=webp&s=2ebfce3d04d906ac9a528ed4373331a0c98e0d8e","https://preview.redd.it/pnjv1kvzr1m91.png?width=640&crop=smart&auto=webp&s=359e9b2393f0320ffb893b29423af73bf4ff6a85","https://preview.redd.it/kpem0lvzr1m91.png?width=640&crop=smart&auto=webp&s=51b9c3e34772df789d99615bb88294edef955053","https://preview.redd.it/6e4867vzr1m91.png?width=640&crop=smart&auto=webp&s=69f5bc9734620a21850fe6c2ebfaa9c3e6ae63b6","https://preview.redd.it/5jr7r6vzr1m91.png?width=640&crop=smart&auto=webp&s=d845e28a1358729697c51d41bf29a4f9c57dab0e","https://preview.redd.it/9a555bvzr1m91.png?width=640&crop=smart&auto=webp&s=2f516b600e73cb4d10a64e2eebd4a2af982d90b7"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._22.11_-_28.11.mdx b/src/content/issues/holonews_fr_ver._22.11_-_28.11.mdx deleted file mode 100644 index 1449bbf..0000000 --- a/src/content/issues/holonews_fr_ver._22.11_-_28.11.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 22.11 - 28.11" -date: "2021-12-05T17:59:43.728000+0000" -link: "https://reddit.com/r/HoloNews/comments/r9l84y/holonews_fr_ver_2211_2811/" -images: ["https://i.redd.it/6vrs9lemjr381.gif","https://preview.redd.it/sntzwjemjr381.png?width=640&crop=smart&auto=webp&s=ca5d4cb0fcb304bf37e525844b34be909581aea0","https://preview.redd.it/8pp441emjr381.png?width=640&crop=smart&auto=webp&s=30c53ff2fff7ac362554e5389237c8b69812b9e5","https://preview.redd.it/5s4id3emjr381.png?width=640&crop=smart&auto=webp&s=4ffc5ddf1c42b7cc8afccd4e6567d760785fdba3","https://preview.redd.it/addr02emjr381.png?width=640&crop=smart&auto=webp&s=afabbc6e3174a4d2cb995bf39a6311bde53e79a0","https://preview.redd.it/s8yy6zdmjr381.png?width=640&crop=smart&auto=webp&s=55d0fd72d7679d8a8e1746f3ecdff18a8dd843ef","https://preview.redd.it/7boungemjr381.png?width=640&crop=smart&auto=webp&s=d2807e8e4340eb4904702bd47ce8dc90a48338e5","https://preview.redd.it/84x9lydmjr381.png?width=640&crop=smart&auto=webp&s=c2e64fe9f11c2e8d617078415b4b5f4f19909c13","https://preview.redd.it/i85zowdmjr381.png?width=640&crop=smart&auto=webp&s=a720575fccaa0d97234101eb8a3feb54bbfb1015","https://preview.redd.it/ne64drdmjr381.png?width=640&crop=smart&auto=webp&s=98ca392f6249b3721e2ceb5855225d283d5bab72","https://preview.redd.it/4cl9sudmjr381.png?width=640&crop=smart&auto=webp&s=35de31027b7d13c31928eecbd1b1b95705bbe7a1","https://preview.redd.it/qya1fydmjr381.png?width=640&crop=smart&auto=webp&s=362ac1eed29761d83c6ca48b7ae63d02727c5ca6","https://preview.redd.it/3ppw2udmjr381.png?width=640&crop=smart&auto=webp&s=db3b8d45eb6360c53ef4a59ecd4392e7c7f50e1b","https://preview.redd.it/t3x3uudmjr381.png?width=640&crop=smart&auto=webp&s=d4211f77097b25c77a5dc15db307ec47f7b6695a","https://preview.redd.it/npfnstdmjr381.png?width=640&crop=smart&auto=webp&s=ed45c8a247812b0467830aabf9404016e8368d6a","https://preview.redd.it/f2nlytdmjr381.png?width=640&crop=smart&auto=webp&s=c81ba7e3c85f982c81712f27dc1eb1da763edb93","https://preview.redd.it/u31d7cemjr381.png?width=640&crop=smart&auto=webp&s=6c9d4b8104d3300c7bd749975c31752be08ec9d3","https://preview.redd.it/1wb8w5emjr381.png?width=640&crop=smart&auto=webp&s=e9e2239b45b2a3a8f6898bc386a959e73e7a8177","https://i.redd.it/kd71wpdmjr381.gif"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._23.05_-_29.05.mdx b/src/content/issues/holonews_fr_ver._23.05_-_29.05.mdx deleted file mode 100644 index 9846942..0000000 --- a/src/content/issues/holonews_fr_ver._23.05_-_29.05.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 23.05 - 29.05" -date: "2022-06-01T17:30:28.097000+0000" -link: "https://reddit.com/r/HoloNews/comments/v2megg/holonews_fr_ver_2305_2905/" -images: ["https://preview.redd.it/8xlqlojpo1391.png?width=640&crop=smart&auto=webp&s=e31afcdca8a1b900c1ebc7f0a403670cdf5a7efd","https://i.redd.it/pzvaf5kpo1391.gif","https://i.redd.it/zanfu8kpo1391.gif","https://preview.redd.it/zvk90cjpo1391.png?width=640&crop=smart&auto=webp&s=333da5025e8d5cc10a5450dcb7ac05956065b046","https://preview.redd.it/xxddaejpo1391.png?width=640&crop=smart&auto=webp&s=f288f7071e8f600d7a2f34003acab5c17d4d4bbb","https://preview.redd.it/upd17fjpo1391.png?width=640&crop=smart&auto=webp&s=8d7015be1aea1f85aa94be44d19dd6e1a24dcd62","https://preview.redd.it/q40nsfjpo1391.png?width=640&crop=smart&auto=webp&s=5112cc36e236fdce0b735d780d158918501dd936","https://preview.redd.it/w0mqrjjpo1391.png?width=640&crop=smart&auto=webp&s=e516bb2c35e1a009c6c511b7ced5703919d9f7f7","https://preview.redd.it/381pgkjpo1391.png?width=640&crop=smart&auto=webp&s=c9101696f5078360e812c70ab683ac360a0ead5d","https://preview.redd.it/kmsb9njpo1391.png?width=640&crop=smart&auto=webp&s=855eedc12720c13b34af0ddc45a1a25bc017fd85","https://preview.redd.it/mwlahcjpo1391.png?width=640&crop=smart&auto=webp&s=7854b53b0da6c752fadbc469b49d32b30f0f9047","https://preview.redd.it/0zeegdjpo1391.png?width=640&crop=smart&auto=webp&s=b0c5caa6b544e1a71079f157e9dbb0ee1c099c49","https://preview.redd.it/5hp1zdjpo1391.png?width=640&crop=smart&auto=webp&s=949a94884511a142fb5195e25e1a94c52e122df9","https://preview.redd.it/9ddhsmjpo1391.png?width=640&crop=smart&auto=webp&s=7396514cca62dcd35e971303404e245ac9cd727d","https://preview.redd.it/9imzlmjpo1391.png?width=640&crop=smart&auto=webp&s=c503745f8afee437edb0f87719ab25c7aeee0fea","https://preview.redd.it/o9myiojpo1391.png?width=640&crop=smart&auto=webp&s=245213ac1f6627e17d97f5b981649b37802470b6"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._24.01_-_30.01.mdx b/src/content/issues/holonews_fr_ver._24.01_-_30.01.mdx deleted file mode 100644 index b80ccf9..0000000 --- a/src/content/issues/holonews_fr_ver._24.01_-_30.01.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 24.01 - 30.01" -date: "2022-02-07T16:35:15.685000+0000" -link: "https://reddit.com/r/HoloNews/comments/smuejl/holonews_fr_ver_2401_3001/" -images: ["https://preview.redd.it/6z4vachuufg81.png?width=640&crop=smart&auto=webp&s=1954ac9ee4affe5580b5e00d5d1d013b126ef588","https://i.redd.it/f1fq2thuufg81.gif","https://i.redd.it/8502rshuufg81.gif","https://preview.redd.it/wofetfhuufg81.png?width=640&crop=smart&auto=webp&s=c065e79bfa3137d63b1e391601291ff5ba0dfab7","https://preview.redd.it/ccrn9hhuufg81.png?width=640&crop=smart&auto=webp&s=e2f8f9cd36abd54bba43423c19e8ee502ef4e67e","https://preview.redd.it/zy0gofhuufg81.png?width=640&crop=smart&auto=webp&s=04894b0f0fb97f9104f0dd29c6ec1c289a0edef1","https://preview.redd.it/wzx3dfhuufg81.png?width=640&crop=smart&auto=webp&s=2d338a07aaa22e86a2f184012d76095da8fbde56","https://preview.redd.it/z1wvufhuufg81.png?width=640&crop=smart&auto=webp&s=d5b79d6963dc86f035204c662c447416d016e3c7","https://preview.redd.it/3qkztghuufg81.png?width=640&crop=smart&auto=webp&s=f183c6227bb1d49ec6ad660c66a870201ae15c6e","https://preview.redd.it/ou4ruhhuufg81.png?width=640&crop=smart&auto=webp&s=52fcc5bf74610890a659866ff94a3078014f34a3","https://preview.redd.it/fdc3qqhuufg81.png?width=640&crop=smart&auto=webp&s=a8be1a0716b94679a8107c4d790027ef07575ec4","https://preview.redd.it/100fakhuufg81.png?width=640&crop=smart&auto=webp&s=102da2e12fc5bd839f2b4c49c92ac3be106b1de6","https://preview.redd.it/tnixxkhuufg81.png?width=640&crop=smart&auto=webp&s=3771c0343b835848cdfd5426dd1067ecf648c89b","https://preview.redd.it/8oh3ekhuufg81.png?width=640&crop=smart&auto=webp&s=aa7f515665811a0b47ed99a3b689b98022ca8b69","https://preview.redd.it/0mowfkhuufg81.png?width=640&crop=smart&auto=webp&s=28ee6fac29fab7f9fe05b5d58198eeccc91e58c8","https://preview.redd.it/4o5dvkhuufg81.png?width=640&crop=smart&auto=webp&s=ef3cd1298806fc3e1389041c0e0aedf622188332","https://preview.redd.it/4874bvhuufg81.png?width=640&crop=smart&auto=webp&s=1b17359cc38db40e12e3b9cf954edf8abaa7979f","https://preview.redd.it/a1a13nhuufg81.png?width=640&crop=smart&auto=webp&s=39b99492d574a9f3ffbc49e35eb60505f851f878","https://preview.redd.it/b3y7abhuufg81.png?width=640&crop=smart&auto=webp&s=64f8e37dfe913d1d18fb7bce061141e8f3f1cb24","https://preview.redd.it/0jefs2huufg81.png?width=640&crop=smart&auto=webp&s=c534950ccd162ac4a93a402c0815a7a64ea797ca"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._25.07_-_31.07.mdx b/src/content/issues/holonews_fr_ver._25.07_-_31.07.mdx deleted file mode 100644 index e6a227f..0000000 --- a/src/content/issues/holonews_fr_ver._25.07_-_31.07.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR Ver. 25.07 - 31.07" -date: "2022-08-08T15:40:28.892000+0000" -link: "https://reddit.com/r/HoloNews/comments/wjc0f8/holonews_fr_ver_2507_3107/" -images: ["https://preview.redd.it/1coo2kg4fig91.png?width=640&crop=smart&auto=webp&s=01af945c1647b78bf734eb990c38d53cfd193396","https://i.redd.it/grl0ilg4fig91.gif","https://i.redd.it/1k1ddfh4fig91.gif","https://i.redd.it/6p089nh4fig91.gif","https://i.redd.it/ghl4ofh4fig91.gif","https://preview.redd.it/7dsfemg4fig91.png?width=640&crop=smart&auto=webp&s=bfdca631997dd8746e304b0147a4f2a4d1197ff1","https://preview.redd.it/dqxpzng4fig91.png?width=640&crop=smart&auto=webp&s=457bfbe862d844a01f0a0789c8ae6b06b150f5d2","https://preview.redd.it/hci7log4fig91.png?width=640&crop=smart&auto=webp&s=5214684021ba1dd623f7b29ac8226ff2abc3b108","https://preview.redd.it/zwe0eqg4fig91.png?width=640&crop=smart&auto=webp&s=3746e94a164c594924eba3d5c1c0b78ba8d5db71","https://preview.redd.it/oe0g9rg4fig91.png?width=640&crop=smart&auto=webp&s=550cae72600f23450d471c4fbd5b10a28d2f5e73","https://preview.redd.it/dlffwig4fig91.png?width=640&crop=smart&auto=webp&s=8325e9b0227567cc088c456016da2159b5963d55","https://preview.redd.it/w6k76rg4fig91.png?width=640&crop=smart&auto=webp&s=7809f9b148fa3ec98d97739f32473d26e54ad4e1","https://preview.redd.it/lphuwhg4fig91.png?width=640&crop=smart&auto=webp&s=c2fa37b054b6076b6b3c6dbb3ab71d24859816cf","https://preview.redd.it/f4u7iug4fig91.png?width=640&crop=smart&auto=webp&s=8f7b251ffe6c97c3fe77d8d4803ea51b3b5e88cd","https://preview.redd.it/1sb36tg4fig91.png?width=640&crop=smart&auto=webp&s=a65464a0d9117876f6a1a79313933b16d4f9563e","https://preview.redd.it/817aptg4fig91.png?width=640&crop=smart&auto=webp&s=75f61c243ccaa4dc4abd73dee24ba833a2dfed56","https://preview.redd.it/mbsueug4fig91.png?width=640&crop=smart&auto=webp&s=ad74c31bedb17320c414bae138b565d12386c46e","https://preview.redd.it/ta1ztxg4fig91.png?width=640&crop=smart&auto=webp&s=f2ef0d193b68e9ccb25bdf2e61c0313e20596b69","https://preview.redd.it/kva7dyg4fig91.png?width=640&crop=smart&auto=webp&s=1fb88631f627ce7185331f0b045bdd231ccba3ad"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._27.06_-_03.07.mdx b/src/content/issues/holonews_fr_ver._27.06_-_03.07.mdx deleted file mode 100644 index a16e6a6..0000000 --- a/src/content/issues/holonews_fr_ver._27.06_-_03.07.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 27.06 - 03.07" -date: "2022-07-14T16:07:14.151000+0000" -link: "https://reddit.com/r/HoloNews/comments/vyzi9z/holonews_fr_ver_2706_0307/" -images: ["https://preview.redd.it/lzth3o635kb91.png?width=640&crop=smart&auto=webp&s=b1cc026041e5094a596616ad57812188ba7fed69","https://i.redd.it/zfx073835kb91.gif","https://i.redd.it/idjmrq835kb91.gif","https://i.redd.it/j4omtq835kb91.gif","https://preview.redd.it/mq7aco635kb91.png?width=640&crop=smart&auto=webp&s=ab5813261eab344d55b14136efcac7009b164192","https://preview.redd.it/exo5mb635kb91.png?width=640&crop=smart&auto=webp&s=2580cf6158318b9ab8fb6280e45cc41a3a1765cf","https://preview.redd.it/q1yelp635kb91.png?width=640&crop=smart&auto=webp&s=5f9d064558ab8d88ec56f21b1663a30d7fbbdda6","https://preview.redd.it/fof5pb635kb91.png?width=640&crop=smart&auto=webp&s=c121b55a5356a850e9ebebbe5a3da76575f0748a","https://preview.redd.it/4w71ks635kb91.png?width=640&crop=smart&auto=webp&s=c9c08ebfb0916bb8f13585ee6a68d80c8b704222","https://preview.redd.it/5ebsws635kb91.png?width=640&crop=smart&auto=webp&s=6b96b2a6e2960776b6b6a38b4a8fb6ceaef9ce39","https://preview.redd.it/kicl5b635kb91.png?width=640&crop=smart&auto=webp&s=6ba2bd2694007fd615c6c6f75e3d1c432b7ffb07","https://preview.redd.it/xoe62h635kb91.png?width=640&crop=smart&auto=webp&s=8704ac47a5cc09b2f1170e708d5f20121daceb60","https://preview.redd.it/gfy0du635kb91.png?width=640&crop=smart&auto=webp&s=50dfc59a898e1c0d30004e22973d94937adc929a","https://preview.redd.it/leqsbu635kb91.png?width=640&crop=smart&auto=webp&s=7ce930965562b3b75d3b67e8cc3a15d1ea519524","https://preview.redd.it/zcz347735kb91.png?width=640&crop=smart&auto=webp&s=7e352bcf23dd084f7cb0553bca31af306f6e5bc2","https://preview.redd.it/7840zv635kb91.png?width=640&crop=smart&auto=webp&s=b27fe020fb27e9225b380283cf76be025c1d0bb5","https://preview.redd.it/tm45wx635kb91.png?width=640&crop=smart&auto=webp&s=f82d5b0d733aef8b8dab3a44ed4e0a93cc7de2d8","https://preview.redd.it/8v8hoy635kb91.png?width=640&crop=smart&auto=webp&s=04c02aadb85ecd2c1c8953412cbcc06da52a3558"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._28.02_-_06.03.mdx b/src/content/issues/holonews_fr_ver._28.02_-_06.03.mdx deleted file mode 100644 index 8cd1735..0000000 --- a/src/content/issues/holonews_fr_ver._28.02_-_06.03.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 28.02 - 06.03" -date: "2022-03-14T15:30:18.900000+0000" -link: "https://reddit.com/r/HoloNews/comments/te03uf/holonews_fr_ver_2802_0603/" -images: ["https://preview.redd.it/23q6kht6bdn81.png?width=640&crop=smart&auto=webp&s=8cca50e411d708de56fd2895a9e2b31b1b115816","https://i.redd.it/z2qk4bu6bdn81.gif","https://i.redd.it/g1m45it6bdn81.gif","https://preview.redd.it/l54eomt6bdn81.png?width=640&crop=smart&auto=webp&s=cec6f31ee6af44760ac312216d5b8f1e9c529c48","https://preview.redd.it/9gug2nt6bdn81.png?width=640&crop=smart&auto=webp&s=6153102f0ffd6c25c9f88706f85708d3abeed99f","https://preview.redd.it/s6b0gnt6bdn81.png?width=640&crop=smart&auto=webp&s=c4215e9899b3cac04450101beceafb5b7c3205a0","https://preview.redd.it/57dvdet6bdn81.png?width=640&crop=smart&auto=webp&s=8f6ba4ffb9be56ca96576f70abaa8a1ac95a74e2","https://preview.redd.it/yrs4rbt6bdn81.png?width=640&crop=smart&auto=webp&s=a9dadc3f297d3a5ea7548631bae75bf01c2a4819","https://preview.redd.it/no8whnt6bdn81.png?width=640&crop=smart&auto=webp&s=af832bda289bd0351e9c8074c50772481ed6a098","https://preview.redd.it/uaeq8ot6bdn81.png?width=640&crop=smart&auto=webp&s=aa4558a8b8a05c56b960dca69a848af37fbb303a","https://preview.redd.it/c9r3kpt6bdn81.png?width=640&crop=smart&auto=webp&s=a66ad0f02dd5f84919daadc5068bb47f90273b5e","https://preview.redd.it/3c8hqpt6bdn81.png?width=640&crop=smart&auto=webp&s=fac1f0b5e6754d375906a0c4b666c2a1a127d79e","https://preview.redd.it/onkx9st6bdn81.png?width=640&crop=smart&auto=webp&s=2cbcbcb5bb8757cf1f36e4597681e9f8aed9ca51","https://preview.redd.it/odrpuqt6bdn81.png?width=640&crop=smart&auto=webp&s=a1432657350fb5629a1d4c3e48f11f5e3beda6a6","https://preview.redd.it/dtit2tt6bdn81.png?width=640&crop=smart&auto=webp&s=3107e232d1ffdd085b9d4043f25dc84a4fb4334b","https://preview.redd.it/j33dbst6bdn81.png?width=640&crop=smart&auto=webp&s=f21134e369a0e29bb8b796eaf464b8958fc1224c","https://preview.redd.it/zmf24vt6bdn81.png?width=640&crop=smart&auto=webp&s=6cc8dd70e97506f198b1ad83c0892a31a5346dc5","https://preview.redd.it/uipk4ut6bdn81.png?width=640&crop=smart&auto=webp&s=01a780e5395e00c93052d75991cf54fe71168c19"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._28.03._-_03.04..mdx b/src/content/issues/holonews_fr_ver._28.03._-_03.04..mdx deleted file mode 100644 index 95f1385..0000000 --- a/src/content/issues/holonews_fr_ver._28.03._-_03.04..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 28.03. - 03.04." -date: "2022-04-11T14:09:32.843000+0000" -link: "https://reddit.com/r/HoloNews/comments/u18n0z/holonews_fr_ver_2803_0304/" -images: ["https://preview.redd.it/np4jtys6qws81.png?width=640&crop=smart&auto=webp&s=9ecf4b2076d7bc3d6a75fe25f63a6e82ba1b354c","https://i.redd.it/2e2l5au6qws81.gif","https://i.redd.it/s31dcdu6qws81.gif","https://i.redd.it/8yufcbu6qws81.gif","https://preview.redd.it/yxqpv5t6qws81.png?width=640&crop=smart&auto=webp&s=eb60e57ccf2ba2efc2e0b91cb9527a282998e3e1","https://preview.redd.it/eysp99t6qws81.png?width=640&crop=smart&auto=webp&s=96a52f3e2d0f0c2724299e2228712c386cfb98f9","https://preview.redd.it/b3tt71t6qws81.png?width=640&crop=smart&auto=webp&s=e45e7074f6cbdd48bc5c71630e41459906ec883c","https://preview.redd.it/w07ty7t6qws81.png?width=640&crop=smart&auto=webp&s=aa425aa4a1446e1041b8a2519961698080063768","https://preview.redd.it/c7y0lat6qws81.png?width=640&crop=smart&auto=webp&s=1b3edd5381bb4c8884de3dd5030a15e24ff1d469","https://i.redd.it/r0t33dt6qws81.gif","https://preview.redd.it/qohnw3t6qws81.png?width=640&crop=smart&auto=webp&s=2fe000cb9a81ba7c82f56ca73771f87d0b372e55","https://preview.redd.it/e5qky9t6qws81.png?width=640&crop=smart&auto=webp&s=6b3283816f2e7f0431eba93a6b5ec184ba2839b3","https://preview.redd.it/b7ucr7t6qws81.png?width=640&crop=smart&auto=webp&s=75fc8d2b1df0c5c6c14b78e3511f5a35c39ee6a6","https://preview.redd.it/wipg43t6qws81.png?width=640&crop=smart&auto=webp&s=bd655f41b3051d51d3d1a3b51548e9244ab44b68","https://preview.redd.it/4ne2vvs6qws81.png?width=640&crop=smart&auto=webp&s=e057bc06f61fa213e05a37debcf2d905d95991d7","https://preview.redd.it/d8wrk3t6qws81.png?width=640&crop=smart&auto=webp&s=fd9d0823a6e30de0aae089698324a5d55f1b22ba","https://preview.redd.it/4oiv8ys6qws81.png?width=640&crop=smart&auto=webp&s=1e3d18be7b5f9a9653d5b9e68d041b9bf64f8cbc","https://preview.redd.it/wmzc4at6qws81.png?width=640&crop=smart&auto=webp&s=2548a2d31b260d7d6aaa05233812db53d0da5e46","https://preview.redd.it/w3lnk4t6qws81.png?width=640&crop=smart&auto=webp&s=aacdd5b044165ee8b79a45868bda760016cac6d8","https://preview.redd.it/ytwwazs6qws81.png?width=640&crop=smart&auto=webp&s=2bef6b974c0ef284302da40ede3f36faf6cc37c6"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._29.08._-_04.09..mdx b/src/content/issues/holonews_fr_ver._29.08._-_04.09..mdx deleted file mode 100644 index 667ec62..0000000 --- a/src/content/issues/holonews_fr_ver._29.08._-_04.09..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 29.08. - 04.09." -date: "2022-09-14T01:38:02.461000+0000" -link: "https://reddit.com/r/HoloNews/comments/xdovzu/holonews_fr_ver_2908_0409/" -images: ["https://preview.redd.it/cgmzilkiaqn91.png?width=640&crop=smart&auto=webp&s=97bc92a9b6ac93a397ac9057708425d25e5085a0","https://i.redd.it/w1zt85oiaqn91.gif","https://i.redd.it/y2k6rn1jaqn91.gif","https://preview.redd.it/vporqo8jaqn91.png?width=640&crop=smart&auto=webp&s=6b0b74332f20f3be68725f1c8e2e13e105e75fdb","https://i.redd.it/whfafsbjaqn91.gif","https://i.redd.it/rtwizwhjaqn91.gif","https://preview.redd.it/phir6wkjaqn91.png?width=640&crop=smart&auto=webp&s=3674ce302821494539a684b245d1e383044f93cc","https://preview.redd.it/71npw1ojaqn91.png?width=640&crop=smart&auto=webp&s=d7eb7df7757f71cd42c755b80a1d7d7ec59eb213","https://preview.redd.it/v2ax75rjaqn91.png?width=640&crop=smart&auto=webp&s=113b2558781da9b15b119ab4be42776b6987e4e6","https://preview.redd.it/bqtatjujaqn91.png?width=640&crop=smart&auto=webp&s=a8c032e3aa195c418deb1d9b7ae8c0b7542124b7","https://preview.redd.it/9rcfpbxjaqn91.png?width=640&crop=smart&auto=webp&s=aea0a0507e1108ac619404984e3b58312be2c546","https://preview.redd.it/w763jdzjaqn91.png?width=640&crop=smart&auto=webp&s=9ad6eb52599382b0a1b2242345920ef0a88d0f0f","https://preview.redd.it/yp52ri2kaqn91.png?width=640&crop=smart&auto=webp&s=75f011842465ae2708265a7642f9256e6db2ac81","https://preview.redd.it/ygevsr6kaqn91.png?width=640&crop=smart&auto=webp&s=8064f91ccf953ec5fb45ba18041fe662863a4aef","https://preview.redd.it/8t26mh9kaqn91.png?width=640&crop=smart&auto=webp&s=c51e5eba1eacf90f1224f3465e63212515070728","https://preview.redd.it/1l9el6ckaqn91.png?width=640&crop=smart&auto=webp&s=a27affd0768a26c0dce4155c13de3b5bd2a7f971","https://preview.redd.it/568mfgfkaqn91.png?width=640&crop=smart&auto=webp&s=40ce6f964c164e7388df55dc40d7e8402cdea3cc","https://preview.redd.it/jp7n1whkaqn91.png?width=640&crop=smart&auto=webp&s=7153c5630a7c26422758f1954238bf056106169e","https://preview.redd.it/h9aba3lkaqn91.png?width=640&crop=smart&auto=webp&s=bf32019e4ff152df906524b5defb21ccdb9f66bf","https://preview.redd.it/lcf2saokaqn91.png?width=640&crop=smart&auto=webp&s=ffbe518fcd6880de3cb49b99b024056d67995538"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._29.11_-_05.12.mdx b/src/content/issues/holonews_fr_ver._29.11_-_05.12.mdx deleted file mode 100644 index 5258420..0000000 --- a/src/content/issues/holonews_fr_ver._29.11_-_05.12.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. 29.11 - 05.12" -date: "2021-12-15T16:46:51.709000+0000" -link: "https://reddit.com/r/HoloNews/comments/rh3dzi/holonews_fr_ver_2911_0512/" -images: ["https://preview.redd.it/qfiuoa7rjq581.png?width=640&crop=smart&auto=webp&s=128b029bb95e4ca22e863e2775cba3e0fa38b80e","https://i.redd.it/8wdgeh7rjq581.gif","https://preview.redd.it/729cdb7rjq581.png?width=640&crop=smart&auto=webp&s=2db0a22eecc35a12cfdba2b7958c13cb50d7ac09","https://i.redd.it/y903pm7rjq581.gif","https://preview.redd.it/cmn54b7rjq581.png?width=640&crop=smart&auto=webp&s=ff1650e13f9f5fc0eb8cc04d2123887966083bce","https://preview.redd.it/8h12qa7rjq581.png?width=640&crop=smart&auto=webp&s=187f821ea2f6b4457f2a3522a365ac0dd673c7f1","https://preview.redd.it/ywcsfm7rjq581.png?width=640&crop=smart&auto=webp&s=bda3c1af1f4949dac5656d1e2cccb92e8508773b","https://preview.redd.it/9940wb7rjq581.png?width=640&crop=smart&auto=webp&s=b5100203a8255c4b833739897eee95da7f98fc7d","https://preview.redd.it/us6flb7rjq581.png?width=640&crop=smart&auto=webp&s=407fd1b65ff8f0cf7f232135b4af1f67f1fc7586","https://preview.redd.it/2ndrif7rjq581.png?width=640&crop=smart&auto=webp&s=57fad8843db201b0fdcb51433f4e21c3ab406d20","https://preview.redd.it/jz095e7rjq581.png?width=640&crop=smart&auto=webp&s=853684040d70aef17b382ffbe6838ac19ecbb79b","https://preview.redd.it/eroq6e7rjq581.png?width=640&crop=smart&auto=webp&s=fc1760af75c0c0cfc3e3a35235bad5e3fda22090","https://preview.redd.it/xnsxdb7rjq581.png?width=640&crop=smart&auto=webp&s=ef68f9e4cee9eb3e7632db36c9487bc91f49ef68","https://preview.redd.it/cbatbs7rjq581.png?width=640&crop=smart&auto=webp&s=9c899ba3a59d3ab0efed8dc139ca42f6049457fe","https://preview.redd.it/udoavh7rjq581.png?width=640&crop=smart&auto=webp&s=67416d88d47adcd308eeeff129d6cfbdfad9d38f","https://preview.redd.it/2107xv6rjq581.png?width=640&crop=smart&auto=webp&s=9f07c47445844f3ef77ed69c0543e383ca874b17","https://preview.redd.it/dm5t477rjq581.png?width=640&crop=smart&auto=webp&s=9cc0af45c5bbb91aff85b994ffce66fc2a732063","https://preview.redd.it/740ubz6rjq581.png?width=640&crop=smart&auto=webp&s=7f67afb966fb85686437f0065aecf0111292afa9","https://preview.redd.it/xmq1va7rjq581.png?width=640&crop=smart&auto=webp&s=d144b161e93be3570e9167cc544aeb47c026ab1e","https://preview.redd.it/ev1vbx6rjq581.png?width=640&crop=smart&auto=webp&s=155937498d6d9283654e0838072a2a4fff0b4b1c"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._31.01._-_06.02..mdx b/src/content/issues/holonews_fr_ver._31.01._-_06.02..mdx deleted file mode 100644 index d47a593..0000000 --- a/src/content/issues/holonews_fr_ver._31.01._-_06.02..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "Holonews FR ver. 31.01. - 06.02." -date: "2022-02-14T17:40:28.027000+0000" -link: "https://reddit.com/r/HoloNews/comments/ssgeh6/holonews_fr_ver_3101_0602/" -images: ["https://preview.redd.it/61ezrffs4uh81.png?width=640&crop=smart&auto=webp&s=9d0f58a95d1fdcfdd474c5898e481a0d94556d9b","https://i.redd.it/z53agqfs4uh81.gif","https://i.redd.it/8batfofs4uh81.gif","https://preview.redd.it/d7mn0jfs4uh81.png?width=640&crop=smart&auto=webp&s=e00145715d182549e32dbdd9c08cbb85323a5e79","https://preview.redd.it/el1lpcfs4uh81.png?width=640&crop=smart&auto=webp&s=107d84a004b90e53382ce866545992f663c090c4","https://preview.redd.it/tzca4efs4uh81.png?width=640&crop=smart&auto=webp&s=c2a689d2c8f523b1bd3d9930b91b4732ab197cb3","https://preview.redd.it/hl9l6dfs4uh81.png?width=640&crop=smart&auto=webp&s=11cdee87460482574a91a6c78bd1f283a0d33cea","https://preview.redd.it/nyyhspfs4uh81.png?width=640&crop=smart&auto=webp&s=63b0fc317a48b6d1577d0e2d59a4ae07c42185db","https://preview.redd.it/x3i8kifs4uh81.png?width=640&crop=smart&auto=webp&s=e45c20500fc33fad431137f4b85bfb8a5aaeacfb","https://preview.redd.it/4fs7jhfs4uh81.png?width=640&crop=smart&auto=webp&s=41be5b4fb0a4d5b9ec1e1dc210c17ff5de36658a","https://preview.redd.it/8jlmukfs4uh81.png?width=640&crop=smart&auto=webp&s=291df50cc35dd6c9df9e5ad04c17ec7fffb050f4","https://preview.redd.it/ei221dfs4uh81.png?width=640&crop=smart&auto=webp&s=37e2e0d9bc950298b61857f237f21fc457046ee1","https://preview.redd.it/p6avthfs4uh81.png?width=640&crop=smart&auto=webp&s=ab26a52e7c91dca0c6ae782ac55641e99b2b5742","https://preview.redd.it/qpou2nfs4uh81.png?width=640&crop=smart&auto=webp&s=5b194e2017a43eb1f044a1fed7915080ca05ac8a","https://preview.redd.it/dfngglfs4uh81.png?width=640&crop=smart&auto=webp&s=ad7f976dffcf23049bc1a2b59b49fffb6ac176a5","https://preview.redd.it/roi4olfs4uh81.png?width=640&crop=smart&auto=webp&s=21a2b1937b3289fe8453f45a791ec88c9a17d1dc","https://preview.redd.it/ewrx7efs4uh81.png?width=640&crop=smart&auto=webp&s=a38428bcf45d31c74950e6d039bab43915eafacf","https://preview.redd.it/vih0tjfs4uh81.png?width=640&crop=smart&auto=webp&s=f5ee7281e1063cb8ad14d1d4f993437679625fa3","https://preview.redd.it/4x14jafs4uh81.png?width=640&crop=smart&auto=webp&s=8e8229140043543c46535191e485ce381854b0f6","https://preview.redd.it/97k03dfs4uh81.png?width=640&crop=smart&auto=webp&s=be20e4b7bd7255eb7bb4003b4e5bc7d11e902c64"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx b/src/content/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx deleted file mode 100644 index 6b84588..0000000 --- a/src/content/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. LITE 20.12 - 26.12" -date: "2022-01-12T16:57:27.391000+0000" -link: "https://reddit.com/r/HoloNews/comments/s2azxb/holonews_fr_ver_lite_2012_2612/" -images: ["https://preview.redd.it/3wneo35zeab81.png?width=640&crop=smart&auto=webp&s=a243a7c789c83c6dd5d10447794121297b9c77fd","https://preview.redd.it/9axzq35zeab81.png?width=640&crop=smart&auto=webp&s=8e29248af19fd75b561ca1e2bf01f31c53a991f6","https://i.redd.it/25o1wc5zeab81.gif","https://preview.redd.it/zh1lqu3zeab81.png?width=640&crop=smart&auto=webp&s=1a8da2e78b363c2f957b1e1f349cb2cca12c1848","https://preview.redd.it/owf5sl3zeab81.png?width=640&crop=smart&auto=webp&s=1991ff856f701e084bcdc030f515d308b8a7554c","https://preview.redd.it/feykt35zeab81.png?width=640&crop=smart&auto=webp&s=d862f1eb6437cae05224576dff3995a1995f9fb1","https://preview.redd.it/lnb2q25zeab81.png?width=640&crop=smart&auto=webp&s=a7595923436797d3024033bcccd7571fa68fa938","https://preview.redd.it/w3tzco3zeab81.png?width=640&crop=smart&auto=webp&s=4ba0ec3214a892c1e15ca3a87e837532c2a38ad0","https://preview.redd.it/5sp8xw4zeab81.png?width=640&crop=smart&auto=webp&s=3b0a4460af180e8bb87ade973ce5415b1d4daa9a","https://preview.redd.it/y3zbvl3zeab81.png?width=640&crop=smart&auto=webp&s=d30f43925cfefa0cbb740b70428523effcbf8991","https://preview.redd.it/69vne65zeab81.png?width=640&crop=smart&auto=webp&s=ebfa8fc66279799f829d8cbc57fd4550e55a9613","https://preview.redd.it/lm24g45zeab81.png?width=640&crop=smart&auto=webp&s=362300c782d52469e642fcb60a814dd88c3779e8","https://preview.redd.it/2kqs765zeab81.png?width=640&crop=smart&auto=webp&s=10ba5610935e5ef0711dca54d75dbbf59b6e66cc","https://preview.redd.it/b7icc73zeab81.png?width=640&crop=smart&auto=webp&s=00ca1f5253070c981171caf09b7506c2fb651941","https://preview.redd.it/cesdba5zeab81.png?width=640&crop=smart&auto=webp&s=485bcb4db9a24a4188af42942ae4b882daadad64","https://preview.redd.it/2ms3s35zeab81.png?width=640&crop=smart&auto=webp&s=64ab7f2c86f3433912dfa015ad010b3cbaa0b443","https://preview.redd.it/8hjto73zeab81.png?width=640&crop=smart&auto=webp&s=9b64b7405b37418d426f11eb7cf6dc0cdeb43d0f","https://preview.redd.it/90ezx35zeab81.png?width=640&crop=smart&auto=webp&s=d473ae722631e16515b51f96331cae42cc0d0678","https://preview.redd.it/eisvlg3zeab81.png?width=640&crop=smart&auto=webp&s=b8cea2fd0de1dc255b89caf4944fc2b8713bd1a1"] -tags: ["lite"] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx b/src/content/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx deleted file mode 100644 index e743759..0000000 --- a/src/content/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. LITE 27.12 - 02.01" -date: "2022-01-13T16:11:14.543000+0000" -link: "https://reddit.com/r/HoloNews/comments/s32xsw/holonews_fr_ver_lite_2712_0201/" -images: ["https://preview.redd.it/nmg8hicubhb81.png?width=640&crop=smart&auto=webp&s=a8b289891d856f6a7bc2b8a4da366eda3687a5ee","https://preview.redd.it/ayja8gcubhb81.png?width=640&crop=smart&auto=webp&s=eadeb1cacfa8401f7ef9dffbd4df36e95815b1ab","https://preview.redd.it/qh7q1fcubhb81.png?width=640&crop=smart&auto=webp&s=7e93fb12c1f45c86babc42dba7e2f655cfcb53e9","https://preview.redd.it/romqrncubhb81.png?width=640&crop=smart&auto=webp&s=04558668df52e0b418a8c259c7ec31e52b51eb2e","https://preview.redd.it/b6luaicubhb81.png?width=640&crop=smart&auto=webp&s=abeb6c597ae584802d477f87fd063484cd5ba4a1","https://preview.redd.it/0m01hkcubhb81.png?width=640&crop=smart&auto=webp&s=1a0bb076061c81e9b198f1f42dd93e0d2a886142","https://preview.redd.it/40hgtlcubhb81.png?width=640&crop=smart&auto=webp&s=1c7b98fee03cea5a9d4dc7adf2dcd588d54c946c","https://preview.redd.it/osr47mcubhb81.png?width=640&crop=smart&auto=webp&s=25ffdf2368b22b91fe49e1f9bef30fa0fa0eae79","https://preview.redd.it/2d9gywcubhb81.png?width=640&crop=smart&auto=webp&s=27f67a654a16012c0df5d47e89f902c270fec5ac","https://preview.redd.it/4cz7kicubhb81.png?width=640&crop=smart&auto=webp&s=abfe06f7248e8f7f4238f149e753ee2ec41411ba","https://preview.redd.it/wwym2pcubhb81.png?width=640&crop=smart&auto=webp&s=43a73b2eec3a73688cf0b98ade7af4e6bf7718a7","https://preview.redd.it/bvrj7jcubhb81.png?width=640&crop=smart&auto=webp&s=849981db16afeb68ab1f6e9f58f5e87e5cf69c0b"] -tags: ["lite"] ---- \ No newline at end of file diff --git "a/src/content/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" "b/src/content/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" deleted file mode 100644 index 1a322c0..0000000 --- "a/src/content/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews FR ver. Numéro Spécial Débuts d'holoX" -date: "2021-12-08T16:55:37.599000+0000" -link: "https://reddit.com/r/HoloNews/comments/rbvlel/holonews_fr_ver_numéro_spécial_débuts_dholox/" -images: ["https://preview.redd.it/v9irlsp8kc481.png?width=640&crop=smart&auto=webp&s=be2e14aa5cff262eb5be7f242629b3f0b976cb1b","https://preview.redd.it/x6j349p8kc481.png?width=640&crop=smart&auto=webp&s=d4c47366adf22f668eb6ccc43eaebff73957c2ba","https://i.redd.it/ozgnj2q8kc481.gif","https://preview.redd.it/5vpzg4p8kc481.png?width=640&crop=smart&auto=webp&s=352d9dba88f3ce78841bdb8c2b8ab94ca339953b","https://i.redd.it/e2zrxeq8kc481.gif","https://preview.redd.it/org9vyo8kc481.png?width=640&crop=smart&auto=webp&s=c39e7661b3688e4d2414d3c51f9859063160ad65","https://i.redd.it/isqekdq8kc481.gif","https://preview.redd.it/hlluz2p8kc481.png?width=640&crop=smart&auto=webp&s=0d865aac51986006509ca4e48ec42c6b519d75dd","https://i.redd.it/0mqtdjq8kc481.gif","https://preview.redd.it/ce1tl1p8kc481.png?width=640&crop=smart&auto=webp&s=9d4d81226cde95d5870f111abdb8e75b270110a8","https://i.redd.it/mmeh3cq8kc481.gif","https://preview.redd.it/hn76m8p8kc481.png?width=640&crop=smart&auto=webp&s=234077f7bbfaa2770fe3eb7b4f7bceac57438660","https://i.redd.it/wptkaxp8kc481.gif","https://preview.redd.it/k6y7cyo8kc481.png?width=640&crop=smart&auto=webp&s=d1214edc2eaed253a35c4f8f1c665c4fd0669643","https://preview.redd.it/lp8tsto8kc481.png?width=640&crop=smart&auto=webp&s=9a31c29c5caee21143b29737543ff47223ac45ed"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_french_17.10_-_23.10.mdx b/src/content/issues/holonews_french_17.10_-_23.10.mdx deleted file mode 100644 index 13e53cd..0000000 --- a/src/content/issues/holonews_french_17.10_-_23.10.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews french 17.10 - 23.10" -date: "2022-11-06T18:01:16.445000+0000" -link: "https://reddit.com/r/HoloNews/comments/ynxghk/holonews_french_1710_2310/" -images: ["https://preview.redd.it/gz3dr109edy91.png?width=640&crop=smart&auto=webp&s=68c962537b76d1b1c4a576545fc9bfe8fed83f32","https://i.redd.it/bmwo8f49edy91.gif","https://preview.redd.it/k0jee8j9edy91.png?width=640&crop=smart&auto=webp&s=0507cdf001c6c77b5ca501c0e30ed2428c35069e","https://preview.redd.it/sd82mtm9edy91.png?width=640&crop=smart&auto=webp&s=4a756c376fee13a402fb55003a39c62532f85a71","https://i.redd.it/6xquwfp9edy91.gif","https://preview.redd.it/je2v5rs9edy91.png?width=640&crop=smart&auto=webp&s=904f448ffaba9e6e745a891749425b524b0a1d4c","https://preview.redd.it/2s5w8rv9edy91.png?width=640&crop=smart&auto=webp&s=9ca9c7e5955821e10b55b5fd74e5688068ab962b","https://preview.redd.it/7olqdyz9edy91.png?width=640&crop=smart&auto=webp&s=c35a23497f37ad91bd2b85c5f22c15ce235cb73c","https://preview.redd.it/7htxo03aedy91.png?width=640&crop=smart&auto=webp&s=5ebb4c3f3238e37296497e2a936e92d2a9a35469","https://preview.redd.it/hi40o46aedy91.png?width=640&crop=smart&auto=webp&s=77cbc45b74c44b11ba67a5d9cbc1b4e7e525c7ab","https://preview.redd.it/u9dwv4aaedy91.png?width=640&crop=smart&auto=webp&s=a72c6ab9e226dbb70318b982ff9be8fb9dde54f3","https://preview.redd.it/ri6w1hdaedy91.png?width=640&crop=smart&auto=webp&s=ae805651b7c6e3e632facd326ffdc6203d0c3582","https://preview.redd.it/1jrumygaedy91.png?width=640&crop=smart&auto=webp&s=5d82a84295f897d21889d68df9b73e4891db9eba","https://preview.redd.it/p0005ykaedy91.png?width=640&crop=smart&auto=webp&s=1227250bc2757ba114edc7b83884cbc861a2e38a","https://preview.redd.it/jk8wveoaedy91.png?width=640&crop=smart&auto=webp&s=845735eabc2e9fe579350b1ad455b8994b15e20a","https://preview.redd.it/uq2dxfraedy91.png?width=640&crop=smart&auto=webp&s=35728fb9576296d95e68afc344839c033f71a4af","https://preview.redd.it/b8siebwaedy91.png?width=640&crop=smart&auto=webp&s=7778529201b7c83b9020708ab38a8dd547bf8633","https://preview.redd.it/wk34kd0bedy91.png?width=640&crop=smart&auto=webp&s=962a9324633cb4acccde4bc49233beefbcba582a"] -tags: [] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_holoid03_debut_special_-_fr_version.mdx b/src/content/issues/holonews_holoid03_debut_special_-_fr_version.mdx deleted file mode 100644 index aa8ce5a..0000000 --- a/src/content/issues/holonews_holoid03_debut_special_-_fr_version.mdx +++ /dev/null @@ -1,20 +0,0 @@ ---- -title: "HoloNews HoloID03 Debut Special - FR Version" -date: "2022-04-09T15:35:43.174000+0000" -link: "https://reddit.com/r/HoloNews/comments/tzvo80/holonews_holoid03_debut_special_fr_version/" -images: - [ - "https://preview.redd.it/1k667zayvis81.png?width=640&crop=smart&auto=webp&s=e941cd400bccb7288a654982ef563006f8b2f8d8", - "https://i.redd.it/m9dhlfbyvis81.gif", - "https://preview.redd.it/qygvcsayvis81.png?width=640&crop=smart&auto=webp&s=ad0083c918aa65b63c2c613c708b222c7f0c9e9d", - "https://i.redd.it/lrxqn7byvis81.gif", - "https://preview.redd.it/n244sqayvis81.png?width=640&crop=smart&auto=webp&s=8cc03fc291d5c0fe6cca78daa79a3ce8978ff0ba", - "https://i.redd.it/4wcnxfbyvis81.gif", - "https://preview.redd.it/kls1yrayvis81.png?width=640&crop=smart&auto=webp&s=394d34e26128c11d58c10eda9cadede77e9f459e", - "https://preview.redd.it/1u9tyvayvis81.png?width=640&crop=smart&auto=webp&s=8577e1ae1bd57a4623102c9cbfd7e359a11677e1", - "https://i.redd.it/y66urvayvis81.gif", - "https://preview.redd.it/iaef6vayvis81.png?width=640&crop=smart&auto=webp&s=1b3b6050b70a5a34501b8a9e81db5b37aed66415", - "https://preview.redd.it/brxautayvis81.png?width=640&crop=smart&auto=webp&s=dce02a34671035762cdde0afdd658f7aa08ccb86", - ] -tags: ["special"] ---- diff --git a/src/content/issues/holonews_sana_special_issue_fr_ver..mdx b/src/content/issues/holonews_sana_special_issue_fr_ver..mdx deleted file mode 100644 index 1f5d7b7..0000000 --- a/src/content/issues/holonews_sana_special_issue_fr_ver..mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -title: "HoloNews Sana Special Issue FR Ver." -date: "2022-08-01T16:20:21.565000+0000" -link: "https://reddit.com/r/HoloNews/comments/wdlidu/holonews_sana_special_issue_fr_ver/" -images: ["https://preview.redd.it/dri6gk1un4f91.png?width=640&crop=smart&auto=webp&s=c1f6d9ceb3975bdaa9be3aea6485a121c65c2bc2","https://preview.redd.it/0coc5f1un4f91.png?width=640&crop=smart&auto=webp&s=65057f0119bed851def896b0ba549c7218b2ce0e","https://preview.redd.it/ru3dyl1un4f91.png?width=640&crop=smart&auto=webp&s=205256adbbefea97e6677b75f327909ede910eee","https://preview.redd.it/3idu6o1un4f91.png?width=640&crop=smart&auto=webp&s=27f6162d674f355177b3f99f66b24ee9f107f53a","https://preview.redd.it/qgp5qp1un4f91.png?width=640&crop=smart&auto=webp&s=cf0c9094c2440204152bd808a99c6b1940a9e12e","https://preview.redd.it/fthpgp1un4f91.png?width=640&crop=smart&auto=webp&s=56f095ff4ac5e32b2eac869aaaf68ec5604ed60d","https://preview.redd.it/3pk3ar1un4f91.png?width=640&crop=smart&auto=webp&s=f7bba6f90a14e7db1392c27eeb96f8ec15916c2b","https://i.redd.it/9f168h2un4f91.gif","https://preview.redd.it/0ghn302un4f91.png?width=640&crop=smart&auto=webp&s=8c4a0e4359c7e29fa3709ad5e0c1832fba087efb","https://preview.redd.it/yp3r7d2un4f91.png?width=640&crop=smart&auto=webp&s=e3fe887c763949ad25ea19f2d024cc0032ec4f1c","https://preview.redd.it/inrl012un4f91.png?width=640&crop=smart&auto=webp&s=d1949d01b66a7fe23bb15f27a6035667ecdad36c","https://preview.redd.it/nkpcua2un4f91.png?width=640&crop=smart&auto=webp&s=e9b2505ea1695da4430ab0749c9b912dfa5bd386","https://preview.redd.it/r5bl842un4f91.png?width=640&crop=smart&auto=webp&s=e0533ce520d6a107ca3396b87dd41ed32b5381ea","https://preview.redd.it/p40b0z1un4f91.png?width=640&crop=smart&auto=webp&s=fc78106653e411ed44d634ead2c50d9eb972e60c","https://preview.redd.it/475v542un4f91.png?width=640&crop=smart&auto=webp&s=a5d5ae73a05f53e8f5cde8b55cbc48e45c50cdb5","https://preview.redd.it/fn3hrt1un4f91.png?width=640&crop=smart&auto=webp&s=ad9db108d612f62f31386c599cedd39362aa7ce3","https://preview.redd.it/52rp3e2un4f91.png?width=640&crop=smart&auto=webp&s=6ea1813a36ebd7734a63e35490e1bb794c97f1fa","https://preview.redd.it/n4dcuw1un4f91.png?width=640&crop=smart&auto=webp&s=df844409cf161e85aaa320122572e8be22d589d2","https://preview.redd.it/ml8tgf1un4f91.png?width=640&crop=smart&auto=webp&s=d4ffae1933aa42a00a23e27ec99a807a6e1ed5e1","https://preview.redd.it/uutf0n2un4f91.png?width=640&crop=smart&auto=webp&s=4f6ec9176aaeeeddd57f80ae7ee7720d10aa0c2a"] -tags: ["special"] ---- \ No newline at end of file diff --git a/src/content/issues/holonews_uproar!!_debut_special_-_fr_version.mdx b/src/content/issues/holonews_uproar!!_debut_special_-_fr_version.mdx deleted file mode 100644 index de6b829..0000000 --- a/src/content/issues/holonews_uproar!!_debut_special_-_fr_version.mdx +++ /dev/null @@ -1,23 +0,0 @@ ---- -title: "HoloNews UPROAR!! Debut Special - FR Version" -date: "2022-04-09T15:36:48.992000+0000" -link: "https://reddit.com/r/HoloNews/comments/tzvp16/holonews_uproar_debut_special_fr_version/" -images: - [ - "https://preview.redd.it/7y785i46wis81.png?width=640&crop=smart&auto=webp&s=49c643ed92ef8839ea68a7a220cf5ff839dfd2f0", - "https://i.redd.it/2olhh456wis81.gif", - "https://preview.redd.it/4309tb46wis81.png?width=640&crop=smart&auto=webp&s=3ad19d9e513c7d03d45188ec9b57d28141950d0b", - "https://i.redd.it/18fvcg56wis81.gif", - "https://preview.redd.it/xqns4f46wis81.png?width=640&crop=smart&auto=webp&s=7a87ba4e3a817212826eb7432064353a537775ae", - "https://i.redd.it/56grmz56wis81.gif", - "https://preview.redd.it/sv65vd46wis81.png?width=640&crop=smart&auto=webp&s=b49860d30ea17faca0ab5f0dce70a1ceff53b480", - "https://i.redd.it/obomnn56wis81.gif", - "https://preview.redd.it/31fq3e46wis81.png?width=640&crop=smart&auto=webp&s=509fefcaf2cffcf022eff6d20854720f6ae3d61a", - "https://preview.redd.it/rw15uf46wis81.png?width=640&crop=smart&auto=webp&s=587659c3e8128991d75227e587b42c996b68d5bf", - "https://i.redd.it/v800fg46wis81.gif", - "https://preview.redd.it/ufxywg46wis81.png?width=640&crop=smart&auto=webp&s=37c2fc6117615018b58eaf2e24d00eef4ac3341d", - "https://preview.redd.it/j69sk846wis81.png?width=640&crop=smart&auto=webp&s=e9379987d1d9c288a54d3205734747d0af0bf0ed", - "https://preview.redd.it/myhj3046wis81.png?width=640&crop=smart&auto=webp&s=519c69ba46583f2a803f0503197ca711e0f4dbe7", - ] -tags: ["special"] ---- diff --git a/src/data/issues/holonews_fr_10.10._-_16.10..mdx b/src/data/issues/holonews_fr_10.10._-_16.10..mdx index 44d39b7..36c8d72 100644 --- a/src/data/issues/holonews_fr_10.10._-_16.10..mdx +++ b/src/data/issues/holonews_fr_10.10._-_16.10..mdx @@ -2,6 +2,21 @@ title: "HoloNews FR 10.10. - 16.10." date: "2022-10-27T11:51:46.788000+0000" link: "https://reddit.com/r/HoloNews/comments/yepx37/holonews_fr_1010_1610/" -images: ["https://preview.redd.it/3bzrie087cw91.png?width=640&crop=smart&auto=webp&s=7636c6c5f4dffb1065778d9a674b4e8642e2622c","https://i.redd.it/d01519587cw91.gif","https://i.redd.it/wjw5oud87cw91.gif","https://preview.redd.it/acfbjss87cw91.png?width=640&crop=smart&auto=webp&s=78f755b9410aba8cac5cef7e8c080db510a9ac33","https://preview.redd.it/sgvwf7w87cw91.png?width=640&crop=smart&auto=webp&s=53d4f9edfc5e699c96b1429a1c5bc78ece4c7144","https://preview.redd.it/w6wc6oz87cw91.png?width=640&crop=smart&auto=webp&s=26949b5b03b842fe9517c18dae1bf2360c7cd486","https://preview.redd.it/yroqjl397cw91.png?width=640&crop=smart&auto=webp&s=688d66be18c7dc75a4073d7c5291330e021dba24","https://preview.redd.it/dlkrhp697cw91.png?width=640&crop=smart&auto=webp&s=990a87f058209405adcc65d237712f7ae6c27189","https://preview.redd.it/y0sg1r997cw91.png?width=640&crop=smart&auto=webp&s=91958a0bd3733f54ff4f49ca3eb4b666081d8495","https://preview.redd.it/091s8zc97cw91.png?width=640&crop=smart&auto=webp&s=bc02366b3688ccb67359234536ad93d43cc79795","https://preview.redd.it/60w8k9g97cw91.png?width=640&crop=smart&auto=webp&s=f8f99c275252b55cafaa30090da9b254b31ccd08","https://preview.redd.it/45g7zek97cw91.png?width=640&crop=smart&auto=webp&s=b80bebc6543877d228e13c5b1f173be226d0d37d","https://preview.redd.it/oox2exn97cw91.png?width=640&crop=smart&auto=webp&s=dcc672ab0168170e0ff80a6a53a12918dd16dfb4"] +images: + [ + "https://preview.redd.it/3bzrie087cw91.png?width=640&crop=smart&auto=webp&s=7636c6c5f4dffb1065778d9a674b4e8642e2622c", + "https://i.redd.it/d01519587cw91.gif", + "https://i.redd.it/wjw5oud87cw91.gif", + "https://preview.redd.it/acfbjss87cw91.png?width=640&crop=smart&auto=webp&s=78f755b9410aba8cac5cef7e8c080db510a9ac33", + "https://preview.redd.it/sgvwf7w87cw91.png?width=640&crop=smart&auto=webp&s=53d4f9edfc5e699c96b1429a1c5bc78ece4c7144", + "https://preview.redd.it/w6wc6oz87cw91.png?width=640&crop=smart&auto=webp&s=26949b5b03b842fe9517c18dae1bf2360c7cd486", + "https://preview.redd.it/yroqjl397cw91.png?width=640&crop=smart&auto=webp&s=688d66be18c7dc75a4073d7c5291330e021dba24", + "https://preview.redd.it/dlkrhp697cw91.png?width=640&crop=smart&auto=webp&s=990a87f058209405adcc65d237712f7ae6c27189", + "https://preview.redd.it/y0sg1r997cw91.png?width=640&crop=smart&auto=webp&s=91958a0bd3733f54ff4f49ca3eb4b666081d8495", + "https://preview.redd.it/091s8zc97cw91.png?width=640&crop=smart&auto=webp&s=bc02366b3688ccb67359234536ad93d43cc79795", + "https://preview.redd.it/60w8k9g97cw91.png?width=640&crop=smart&auto=webp&s=f8f99c275252b55cafaa30090da9b254b31ccd08", + "https://preview.redd.it/45g7zek97cw91.png?width=640&crop=smart&auto=webp&s=b80bebc6543877d228e13c5b1f173be226d0d37d", + "https://preview.redd.it/oox2exn97cw91.png?width=640&crop=smart&auto=webp&s=dcc672ab0168170e0ff80a6a53a12918dd16dfb4", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_11.07._-_17.07..mdx b/src/data/issues/holonews_fr_11.07._-_17.07..mdx index 1b7f93f..3b29275 100644 --- a/src/data/issues/holonews_fr_11.07._-_17.07..mdx +++ b/src/data/issues/holonews_fr_11.07._-_17.07..mdx @@ -2,6 +2,26 @@ title: "HoloNews FR 11.07. - 17.07." date: "2022-07-25T16:37:32.029000+0000" link: "https://reddit.com/r/HoloNews/comments/w7tkee/holonews_fr_1107_1707/" -images: ["https://preview.redd.it/inupyz55sqd91.png?width=640&crop=smart&auto=webp&s=a13f43b1822e58a7223fd5a279385a053ae8a98e","https://i.redd.it/8dnl82obsqd91.gif","https://preview.redd.it/5x04ir55sqd91.png?width=640&crop=smart&auto=webp&s=70538af4cfbb95b1767ce6af3b7240adb3a6e006","https://i.redd.it/3xglyy55sqd91.gif","https://preview.redd.it/zdrtoz55sqd91.png?width=640&crop=smart&auto=webp&s=5ee931aa25cc004c9ae71bcbdd0960d7dae7c708","https://preview.redd.it/3cqxn165sqd91.png?width=640&crop=smart&auto=webp&s=bc45e14ee76e4bf724d19ef246ed892289443c3c","https://preview.redd.it/iyzym265sqd91.png?width=640&crop=smart&auto=webp&s=3158f75f9144ed8fe8728f30b5185e6d65479249","https://preview.redd.it/9uzxv265sqd91.png?width=640&crop=smart&auto=webp&s=5e70e4684752a4ed05fbe48135131e133c9aff95","https://preview.redd.it/njk2ov55sqd91.png?width=640&crop=smart&auto=webp&s=7087d0cff466285ace1f9019297627b174c114b8","https://preview.redd.it/ordd9765sqd91.png?width=640&crop=smart&auto=webp&s=37f5c74cd18e1d49a0175af99a099d3044958238","https://preview.redd.it/17xdy565sqd91.png?width=640&crop=smart&auto=webp&s=9d55acff85a990e6c7b874987a5c48cb2270327e","https://preview.redd.it/m4x6l765sqd91.png?width=640&crop=smart&auto=webp&s=e91aa0ed1673d4a376f8b94e8741027d5f074609","https://preview.redd.it/dzym0t55sqd91.png?width=640&crop=smart&auto=webp&s=2f9edb65378036072489ec09300b5cdd016b6cf7","https://preview.redd.it/31jeru55sqd91.png?width=640&crop=smart&auto=webp&s=8e29ac52bee9af7487038e31d545a05484aa02cc","https://preview.redd.it/ovsazt55sqd91.png?width=640&crop=smart&auto=webp&s=b1eb27bc1d2a498877be1e50922b41b32ed33d0a","https://preview.redd.it/lcvmsu55sqd91.png?width=640&crop=smart&auto=webp&s=a9d9b43ff564ee302c34d05fd99fb07cf29c4d38","https://preview.redd.it/57633v55sqd91.png?width=640&crop=smart&auto=webp&s=c1684738dcc40506baa175126f3188de869d98bf","https://preview.redd.it/5fxqsw55sqd91.png?width=640&crop=smart&auto=webp&s=530a45e18edd134fcaaee8fe7b99da825abb1622"] +images: + [ + "https://preview.redd.it/inupyz55sqd91.png?width=640&crop=smart&auto=webp&s=a13f43b1822e58a7223fd5a279385a053ae8a98e", + "https://i.redd.it/8dnl82obsqd91.gif", + "https://preview.redd.it/5x04ir55sqd91.png?width=640&crop=smart&auto=webp&s=70538af4cfbb95b1767ce6af3b7240adb3a6e006", + "https://i.redd.it/3xglyy55sqd91.gif", + "https://preview.redd.it/zdrtoz55sqd91.png?width=640&crop=smart&auto=webp&s=5ee931aa25cc004c9ae71bcbdd0960d7dae7c708", + "https://preview.redd.it/3cqxn165sqd91.png?width=640&crop=smart&auto=webp&s=bc45e14ee76e4bf724d19ef246ed892289443c3c", + "https://preview.redd.it/iyzym265sqd91.png?width=640&crop=smart&auto=webp&s=3158f75f9144ed8fe8728f30b5185e6d65479249", + "https://preview.redd.it/9uzxv265sqd91.png?width=640&crop=smart&auto=webp&s=5e70e4684752a4ed05fbe48135131e133c9aff95", + "https://preview.redd.it/njk2ov55sqd91.png?width=640&crop=smart&auto=webp&s=7087d0cff466285ace1f9019297627b174c114b8", + "https://preview.redd.it/ordd9765sqd91.png?width=640&crop=smart&auto=webp&s=37f5c74cd18e1d49a0175af99a099d3044958238", + "https://preview.redd.it/17xdy565sqd91.png?width=640&crop=smart&auto=webp&s=9d55acff85a990e6c7b874987a5c48cb2270327e", + "https://preview.redd.it/m4x6l765sqd91.png?width=640&crop=smart&auto=webp&s=e91aa0ed1673d4a376f8b94e8741027d5f074609", + "https://preview.redd.it/dzym0t55sqd91.png?width=640&crop=smart&auto=webp&s=2f9edb65378036072489ec09300b5cdd016b6cf7", + "https://preview.redd.it/31jeru55sqd91.png?width=640&crop=smart&auto=webp&s=8e29ac52bee9af7487038e31d545a05484aa02cc", + "https://preview.redd.it/ovsazt55sqd91.png?width=640&crop=smart&auto=webp&s=b1eb27bc1d2a498877be1e50922b41b32ed33d0a", + "https://preview.redd.it/lcvmsu55sqd91.png?width=640&crop=smart&auto=webp&s=a9d9b43ff564ee302c34d05fd99fb07cf29c4d38", + "https://preview.redd.it/57633v55sqd91.png?width=640&crop=smart&auto=webp&s=c1684738dcc40506baa175126f3188de869d98bf", + "https://preview.redd.it/5fxqsw55sqd91.png?width=640&crop=smart&auto=webp&s=530a45e18edd134fcaaee8fe7b99da825abb1622", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_24.10_-_30.10.mdx b/src/data/issues/holonews_fr_24.10_-_30.10.mdx index 74c739c..eaf5e2d 100644 --- a/src/data/issues/holonews_fr_24.10_-_30.10.mdx +++ b/src/data/issues/holonews_fr_24.10_-_30.10.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR 24.10 - 30.10" date: "2022-11-25T10:13:41.430000+0000" link: "https://reddit.com/r/HoloNews/comments/z49vh9/holonews_fr_2410_3010/" -images: ["https://preview.redd.it/sia4alx4o22a1.png?width=640&crop=smart&auto=webp&s=692efb5929e41f7cf44a2dad87e4777e2eb66c61","https://i.redd.it/4dgyri05o22a1.gif","https://preview.redd.it/q8w30uc5o22a1.png?width=640&crop=smart&auto=webp&s=03d913adca6f119832e2d7e5ebb1ecce95bcf8fd","https://i.redd.it/2opnzsf5o22a1.gif","https://i.redd.it/sonzn5m5o22a1.gif","https://i.redd.it/335o9ht5o22a1.gif","https://preview.redd.it/dgdc2u26o22a1.png?width=640&crop=smart&auto=webp&s=f96e59aec9df46ce309414d3ba472e48ad4b7f86","https://preview.redd.it/6yz6cz56o22a1.png?width=640&crop=smart&auto=webp&s=3d23e420677faf60ca75ad5f75a3b7bf4124a25a","https://preview.redd.it/3kvpg596o22a1.png?width=640&crop=smart&auto=webp&s=9f537feef364a7ac68ddd246ce15228d70b64a34","https://preview.redd.it/4grhzyb6o22a1.png?width=640&crop=smart&auto=webp&s=2e3984edda1e500125c4609509c09a60cec2bfa2","https://preview.redd.it/2kwkcgf6o22a1.png?width=640&crop=smart&auto=webp&s=69926c9f6e59a39c2168a69d72306abee75910d5","https://preview.redd.it/fcad0hi6o22a1.png?width=640&crop=smart&auto=webp&s=fad0c5401be1ff5a3863385cb0b8f93a57256d1b","https://preview.redd.it/lztz23l6o22a1.png?width=640&crop=smart&auto=webp&s=e806b27ea4cbc72e94dad670eba8b54c04808859","https://preview.redd.it/wi7in5p6o22a1.png?width=640&crop=smart&auto=webp&s=a844849e4432d4dedd5cd3b0ddce57c7ee611476","https://preview.redd.it/fosw4gs6o22a1.png?width=640&crop=smart&auto=webp&s=cbe0b64438958ae0d71d196bbb01e4f2c14a3675","https://preview.redd.it/488gfnv6o22a1.png?width=640&crop=smart&auto=webp&s=664e0c54baf43ea16fba07afe6a4df6a31bbf468","https://preview.redd.it/8e1wbcz6o22a1.png?width=640&crop=smart&auto=webp&s=d313a99b1f8c377125e56ec82ff28843807f9b25","https://preview.redd.it/lw5dm337o22a1.png?width=640&crop=smart&auto=webp&s=5089280089dee7ed86a8cd953f29459692571ab0","https://preview.redd.it/7f150h77o22a1.png?width=640&crop=smart&auto=webp&s=85f14d563c25de2e638d92fb53524d8a3c95fa3b","https://preview.redd.it/cbumokb7o22a1.png?width=640&crop=smart&auto=webp&s=cd0f5a38344afbe611b2acd672e309bfb3352a2e"] +images: + [ + "https://preview.redd.it/sia4alx4o22a1.png?width=640&crop=smart&auto=webp&s=692efb5929e41f7cf44a2dad87e4777e2eb66c61", + "https://i.redd.it/4dgyri05o22a1.gif", + "https://preview.redd.it/q8w30uc5o22a1.png?width=640&crop=smart&auto=webp&s=03d913adca6f119832e2d7e5ebb1ecce95bcf8fd", + "https://i.redd.it/2opnzsf5o22a1.gif", + "https://i.redd.it/sonzn5m5o22a1.gif", + "https://i.redd.it/335o9ht5o22a1.gif", + "https://preview.redd.it/dgdc2u26o22a1.png?width=640&crop=smart&auto=webp&s=f96e59aec9df46ce309414d3ba472e48ad4b7f86", + "https://preview.redd.it/6yz6cz56o22a1.png?width=640&crop=smart&auto=webp&s=3d23e420677faf60ca75ad5f75a3b7bf4124a25a", + "https://preview.redd.it/3kvpg596o22a1.png?width=640&crop=smart&auto=webp&s=9f537feef364a7ac68ddd246ce15228d70b64a34", + "https://preview.redd.it/4grhzyb6o22a1.png?width=640&crop=smart&auto=webp&s=2e3984edda1e500125c4609509c09a60cec2bfa2", + "https://preview.redd.it/2kwkcgf6o22a1.png?width=640&crop=smart&auto=webp&s=69926c9f6e59a39c2168a69d72306abee75910d5", + "https://preview.redd.it/fcad0hi6o22a1.png?width=640&crop=smart&auto=webp&s=fad0c5401be1ff5a3863385cb0b8f93a57256d1b", + "https://preview.redd.it/lztz23l6o22a1.png?width=640&crop=smart&auto=webp&s=e806b27ea4cbc72e94dad670eba8b54c04808859", + "https://preview.redd.it/wi7in5p6o22a1.png?width=640&crop=smart&auto=webp&s=a844849e4432d4dedd5cd3b0ddce57c7ee611476", + "https://preview.redd.it/fosw4gs6o22a1.png?width=640&crop=smart&auto=webp&s=cbe0b64438958ae0d71d196bbb01e4f2c14a3675", + "https://preview.redd.it/488gfnv6o22a1.png?width=640&crop=smart&auto=webp&s=664e0c54baf43ea16fba07afe6a4df6a31bbf468", + "https://preview.redd.it/8e1wbcz6o22a1.png?width=640&crop=smart&auto=webp&s=d313a99b1f8c377125e56ec82ff28843807f9b25", + "https://preview.redd.it/lw5dm337o22a1.png?width=640&crop=smart&auto=webp&s=5089280089dee7ed86a8cd953f29459692571ab0", + "https://preview.redd.it/7f150h77o22a1.png?width=640&crop=smart&auto=webp&s=85f14d563c25de2e638d92fb53524d8a3c95fa3b", + "https://preview.redd.it/cbumokb7o22a1.png?width=640&crop=smart&auto=webp&s=cd0f5a38344afbe611b2acd672e309bfb3352a2e", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_30.05._-_05.06..mdx b/src/data/issues/holonews_fr_30.05._-_05.06..mdx index 36bbffc..6eec3e1 100644 --- a/src/data/issues/holonews_fr_30.05._-_05.06..mdx +++ b/src/data/issues/holonews_fr_30.05._-_05.06..mdx @@ -2,6 +2,27 @@ title: "HoloNews FR 30.05. - 05.06." date: "2022-06-15T16:37:48.038000+0000" link: "https://reddit.com/r/HoloNews/comments/vcyot7/holonews_fr_3005_0506/" -images: ["https://preview.redd.it/ma0oy6gvbt591.png?width=640&crop=smart&auto=webp&s=65c5b90b9937a2edcc8784a15ce444829a09e441","https://i.redd.it/cl3aoohvbt591.gif","https://i.redd.it/ie5ynpgvbt591.gif","https://i.redd.it/jro1atgvbt591.gif","https://preview.redd.it/5pswx0gvbt591.png?width=640&crop=smart&auto=webp&s=34c06a35a31fa3949281dff88d148b1f96b36ed3","https://preview.redd.it/qejof3gvbt591.png?width=640&crop=smart&auto=webp&s=a810f26d05289dc70869c3008c5ede4d4e355504","https://preview.redd.it/ua3je7gvbt591.png?width=640&crop=smart&auto=webp&s=75970127e81f40b14cbdfc23cccb86e981ae8592","https://preview.redd.it/bnjt28gvbt591.png?width=640&crop=smart&auto=webp&s=754200ba89fe44e585ed415844045123b2caae06","https://preview.redd.it/ey9i7thvbt591.png?width=640&crop=smart&auto=webp&s=a2ad9adf90fb7e7135287ce120c3f3c24a71e8c0","https://preview.redd.it/i25rzagvbt591.png?width=640&crop=smart&auto=webp&s=9929922f65d796e2ba3c905789d5fc6e0ecb4640","https://preview.redd.it/wljo5agvbt591.png?width=640&crop=smart&auto=webp&s=a39cfeb6854c51a7d85268c9311a5ffad22160ab","https://preview.redd.it/lg1g5cgvbt591.png?width=640&crop=smart&auto=webp&s=b471c815fb738f013bb9b1382980f9d11502ff2e","https://preview.redd.it/v4p04cgvbt591.png?width=640&crop=smart&auto=webp&s=b43bfffa17abdcc264a63578dcf64fe5aa4b3486","https://preview.redd.it/1nlnedgvbt591.png?width=640&crop=smart&auto=webp&s=84e7070cf06ead6e9e4c540d8c8b4d05b93eb452","https://preview.redd.it/10mxlfgvbt591.png?width=640&crop=smart&auto=webp&s=307d61a9b41db45861e6c4c49a27118d307473a6","https://preview.redd.it/a9e19ggvbt591.png?width=640&crop=smart&auto=webp&s=57d4e9dc212ea8a71b0baace7bb34a8ef449e1aa","https://preview.redd.it/16re6jgvbt591.png?width=640&crop=smart&auto=webp&s=dadaa5141bda600e01893f55d28dff0256f854da","https://preview.redd.it/yx6dvdgvbt591.png?width=640&crop=smart&auto=webp&s=b3dbb6f881424e6bd4afca58de6485dfe10bf07d","https://preview.redd.it/yf6d8hgvbt591.png?width=640&crop=smart&auto=webp&s=7819ef03e5be090513bef47dbb2fc878a6c05e78"] +images: + [ + "https://preview.redd.it/ma0oy6gvbt591.png?width=640&crop=smart&auto=webp&s=65c5b90b9937a2edcc8784a15ce444829a09e441", + "https://i.redd.it/cl3aoohvbt591.gif", + "https://i.redd.it/ie5ynpgvbt591.gif", + "https://i.redd.it/jro1atgvbt591.gif", + "https://preview.redd.it/5pswx0gvbt591.png?width=640&crop=smart&auto=webp&s=34c06a35a31fa3949281dff88d148b1f96b36ed3", + "https://preview.redd.it/qejof3gvbt591.png?width=640&crop=smart&auto=webp&s=a810f26d05289dc70869c3008c5ede4d4e355504", + "https://preview.redd.it/ua3je7gvbt591.png?width=640&crop=smart&auto=webp&s=75970127e81f40b14cbdfc23cccb86e981ae8592", + "https://preview.redd.it/bnjt28gvbt591.png?width=640&crop=smart&auto=webp&s=754200ba89fe44e585ed415844045123b2caae06", + "https://preview.redd.it/ey9i7thvbt591.png?width=640&crop=smart&auto=webp&s=a2ad9adf90fb7e7135287ce120c3f3c24a71e8c0", + "https://preview.redd.it/i25rzagvbt591.png?width=640&crop=smart&auto=webp&s=9929922f65d796e2ba3c905789d5fc6e0ecb4640", + "https://preview.redd.it/wljo5agvbt591.png?width=640&crop=smart&auto=webp&s=a39cfeb6854c51a7d85268c9311a5ffad22160ab", + "https://preview.redd.it/lg1g5cgvbt591.png?width=640&crop=smart&auto=webp&s=b471c815fb738f013bb9b1382980f9d11502ff2e", + "https://preview.redd.it/v4p04cgvbt591.png?width=640&crop=smart&auto=webp&s=b43bfffa17abdcc264a63578dcf64fe5aa4b3486", + "https://preview.redd.it/1nlnedgvbt591.png?width=640&crop=smart&auto=webp&s=84e7070cf06ead6e9e4c540d8c8b4d05b93eb452", + "https://preview.redd.it/10mxlfgvbt591.png?width=640&crop=smart&auto=webp&s=307d61a9b41db45861e6c4c49a27118d307473a6", + "https://preview.redd.it/a9e19ggvbt591.png?width=640&crop=smart&auto=webp&s=57d4e9dc212ea8a71b0baace7bb34a8ef449e1aa", + "https://preview.redd.it/16re6jgvbt591.png?width=640&crop=smart&auto=webp&s=dadaa5141bda600e01893f55d28dff0256f854da", + "https://preview.redd.it/yx6dvdgvbt591.png?width=640&crop=smart&auto=webp&s=b3dbb6f881424e6bd4afca58de6485dfe10bf07d", + "https://preview.redd.it/yf6d8hgvbt591.png?width=640&crop=smart&auto=webp&s=7819ef03e5be090513bef47dbb2fc878a6c05e78", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx b/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx index 28360b4..c58e54e 100644 --- a/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx +++ b/src/data/issues/holonews_fr_ver._01.08_-_07.08.mdx @@ -2,6 +2,27 @@ title: "HoloNews FR ver. 01.08 - 07.08" date: "2022-08-15T16:23:36.864000+0000" link: "https://reddit.com/r/HoloNews/comments/wp3utw/holonews_fr_ver_0108_0708/" -images: ["https://preview.redd.it/7cwhos56lwh91.png?width=640&crop=smart&auto=webp&s=8162f7e5c897d76e9c979386fdffceba45f3cb68","https://i.redd.it/eph6kg56lwh91.gif","https://i.redd.it/klv7w376lwh91.gif","https://i.redd.it/omqga176lwh91.gif","https://i.redd.it/1aqchi66lwh91.gif","https://i.redd.it/co8v6w66lwh91.gif","https://preview.redd.it/x9kqii56lwh91.png?width=640&crop=smart&auto=webp&s=1bec0820b57fe748c8dfc78ee8e42853fb46f9f9","https://preview.redd.it/xgl1ov56lwh91.png?width=640&crop=smart&auto=webp&s=97c56ffa8318049488ceb41fb697d8847f5b7b7a","https://preview.redd.it/4x4jwu56lwh91.png?width=640&crop=smart&auto=webp&s=a12389ceb4834976e6a9228c19a20745e6ac0242","https://preview.redd.it/0kjwhn56lwh91.png?width=640&crop=smart&auto=webp&s=5166bb27f299f9b151c4fe995610005fe78e09eb","https://preview.redd.it/yn90nl56lwh91.png?width=640&crop=smart&auto=webp&s=e5aa4d5853f93820386a10a3c3f6e48a19779045","https://preview.redd.it/mpcmzv56lwh91.png?width=640&crop=smart&auto=webp&s=d6ecfaa817a32fd3a39be026089208e7ee8f1ecc","https://preview.redd.it/ihfx3x56lwh91.png?width=640&crop=smart&auto=webp&s=b203d6a0c90906530714dc9c09eb7b46feda4bf9","https://preview.redd.it/v9k1kl56lwh91.png?width=640&crop=smart&auto=webp&s=b3cf3c7937b04ce0bc8903d76e16d02f8b2960f4","https://preview.redd.it/lp3qz866lwh91.png?width=640&crop=smart&auto=webp&s=e454dfbb090a515f1f35b79c0e4c00c7be1a730f","https://preview.redd.it/1pijhy56lwh91.png?width=640&crop=smart&auto=webp&s=5a0b2c7beba7b50a63f762ff0355409a0032e9bd","https://preview.redd.it/po7s6z56lwh91.png?width=640&crop=smart&auto=webp&s=1b4bc2ab623a7c1060eea13473a225bb9a0a09cc","https://preview.redd.it/xul38166lwh91.png?width=640&crop=smart&auto=webp&s=31b08298485128c0ad443e7d6dbf714a738e9f3f","https://preview.redd.it/rrk4n166lwh91.png?width=640&crop=smart&auto=webp&s=0ca7b7090a7bd12eb8449ea35c3ce23ff2ff6e67"] +images: + [ + "https://preview.redd.it/7cwhos56lwh91.png?width=640&crop=smart&auto=webp&s=8162f7e5c897d76e9c979386fdffceba45f3cb68", + "https://i.redd.it/eph6kg56lwh91.gif", + "https://i.redd.it/klv7w376lwh91.gif", + "https://i.redd.it/omqga176lwh91.gif", + "https://i.redd.it/1aqchi66lwh91.gif", + "https://i.redd.it/co8v6w66lwh91.gif", + "https://preview.redd.it/x9kqii56lwh91.png?width=640&crop=smart&auto=webp&s=1bec0820b57fe748c8dfc78ee8e42853fb46f9f9", + "https://preview.redd.it/xgl1ov56lwh91.png?width=640&crop=smart&auto=webp&s=97c56ffa8318049488ceb41fb697d8847f5b7b7a", + "https://preview.redd.it/4x4jwu56lwh91.png?width=640&crop=smart&auto=webp&s=a12389ceb4834976e6a9228c19a20745e6ac0242", + "https://preview.redd.it/0kjwhn56lwh91.png?width=640&crop=smart&auto=webp&s=5166bb27f299f9b151c4fe995610005fe78e09eb", + "https://preview.redd.it/yn90nl56lwh91.png?width=640&crop=smart&auto=webp&s=e5aa4d5853f93820386a10a3c3f6e48a19779045", + "https://preview.redd.it/mpcmzv56lwh91.png?width=640&crop=smart&auto=webp&s=d6ecfaa817a32fd3a39be026089208e7ee8f1ecc", + "https://preview.redd.it/ihfx3x56lwh91.png?width=640&crop=smart&auto=webp&s=b203d6a0c90906530714dc9c09eb7b46feda4bf9", + "https://preview.redd.it/v9k1kl56lwh91.png?width=640&crop=smart&auto=webp&s=b3cf3c7937b04ce0bc8903d76e16d02f8b2960f4", + "https://preview.redd.it/lp3qz866lwh91.png?width=640&crop=smart&auto=webp&s=e454dfbb090a515f1f35b79c0e4c00c7be1a730f", + "https://preview.redd.it/1pijhy56lwh91.png?width=640&crop=smart&auto=webp&s=5a0b2c7beba7b50a63f762ff0355409a0032e9bd", + "https://preview.redd.it/po7s6z56lwh91.png?width=640&crop=smart&auto=webp&s=1b4bc2ab623a7c1060eea13473a225bb9a0a09cc", + "https://preview.redd.it/xul38166lwh91.png?width=640&crop=smart&auto=webp&s=31b08298485128c0ad443e7d6dbf714a738e9f3f", + "https://preview.redd.it/rrk4n166lwh91.png?width=640&crop=smart&auto=webp&s=0ca7b7090a7bd12eb8449ea35c3ce23ff2ff6e67", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx b/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx index d348e69..66a49f8 100644 --- a/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx +++ b/src/data/issues/holonews_fr_ver._02.05._-_08.05..mdx @@ -2,6 +2,25 @@ title: "HoloNews FR ver. 02.05. - 08.05." date: "2022-05-19T16:51:21.261000+0000" link: "https://reddit.com/r/HoloNews/comments/ut7q1c/holonews_fr_ver_0205_0805/" -images: ["https://preview.redd.it/4bdt9fnspg091.png?width=640&crop=smart&auto=webp&s=36a264382dfa72475d093a1b4e4178449218b945","https://preview.redd.it/ha0268nspg091.png?width=640&crop=smart&auto=webp&s=33f222623ee5581ae85da9a6472846c157d55346","https://i.redd.it/sdzj9xnspg091.gif","https://preview.redd.it/yii65xmspg091.png?width=640&crop=smart&auto=webp&s=810b5bb5941b9067ec7b20a8d10fbccbadcff9a3","https://preview.redd.it/hwgnzxmspg091.png?width=640&crop=smart&auto=webp&s=a378d2c69c908e2df53dbbf03899abdf686e499a","https://preview.redd.it/3m9h2wmspg091.png?width=640&crop=smart&auto=webp&s=e5f92d38d316a09ece8af7f339e3854479da2c93","https://preview.redd.it/50v2twmspg091.png?width=640&crop=smart&auto=webp&s=a6702f21b72c37332dddccb9aa57c4d09c098132","https://preview.redd.it/tu86yymspg091.png?width=640&crop=smart&auto=webp&s=08e241575fe1b020ee8aade81d0af1aab72feec3","https://preview.redd.it/msp250nspg091.png?width=640&crop=smart&auto=webp&s=84a89fa6afeec50643b761daa62426a2e216d86d","https://preview.redd.it/bkozi1nspg091.png?width=640&crop=smart&auto=webp&s=4114262caefe5f7d738cbf5d9677f37b9dee80cc","https://preview.redd.it/rphaednspg091.png?width=640&crop=smart&auto=webp&s=c812a74dc54e32c377641547d843d4cc5fb2edbf","https://preview.redd.it/z9n8j2nspg091.png?width=640&crop=smart&auto=webp&s=432f436a8994d4f130b7760f1e46321f9c698bed","https://preview.redd.it/g0v222nspg091.png?width=640&crop=smart&auto=webp&s=59eb5c22cbb271f610169e0213fca4885408e1c4","https://preview.redd.it/tpgoqenspg091.png?width=640&crop=smart&auto=webp&s=df4eba2abbebb689027595cf2b2dab3125182194","https://preview.redd.it/v1b9q7nspg091.png?width=640&crop=smart&auto=webp&s=c20e79f7e1b33a5115e9bd89e7d0379aa395098b","https://preview.redd.it/jgm6u5nspg091.png?width=640&crop=smart&auto=webp&s=38be17fb48f3caa1d10e36d0cc3a12a50f0e91ae","https://preview.redd.it/60cho6nspg091.png?width=640&crop=smart&auto=webp&s=5f3723f70577ff3d85224f4e929cbe5d91071284"] +images: + [ + "https://preview.redd.it/4bdt9fnspg091.png?width=640&crop=smart&auto=webp&s=36a264382dfa72475d093a1b4e4178449218b945", + "https://preview.redd.it/ha0268nspg091.png?width=640&crop=smart&auto=webp&s=33f222623ee5581ae85da9a6472846c157d55346", + "https://i.redd.it/sdzj9xnspg091.gif", + "https://preview.redd.it/yii65xmspg091.png?width=640&crop=smart&auto=webp&s=810b5bb5941b9067ec7b20a8d10fbccbadcff9a3", + "https://preview.redd.it/hwgnzxmspg091.png?width=640&crop=smart&auto=webp&s=a378d2c69c908e2df53dbbf03899abdf686e499a", + "https://preview.redd.it/3m9h2wmspg091.png?width=640&crop=smart&auto=webp&s=e5f92d38d316a09ece8af7f339e3854479da2c93", + "https://preview.redd.it/50v2twmspg091.png?width=640&crop=smart&auto=webp&s=a6702f21b72c37332dddccb9aa57c4d09c098132", + "https://preview.redd.it/tu86yymspg091.png?width=640&crop=smart&auto=webp&s=08e241575fe1b020ee8aade81d0af1aab72feec3", + "https://preview.redd.it/msp250nspg091.png?width=640&crop=smart&auto=webp&s=84a89fa6afeec50643b761daa62426a2e216d86d", + "https://preview.redd.it/bkozi1nspg091.png?width=640&crop=smart&auto=webp&s=4114262caefe5f7d738cbf5d9677f37b9dee80cc", + "https://preview.redd.it/rphaednspg091.png?width=640&crop=smart&auto=webp&s=c812a74dc54e32c377641547d843d4cc5fb2edbf", + "https://preview.redd.it/z9n8j2nspg091.png?width=640&crop=smart&auto=webp&s=432f436a8994d4f130b7760f1e46321f9c698bed", + "https://preview.redd.it/g0v222nspg091.png?width=640&crop=smart&auto=webp&s=59eb5c22cbb271f610169e0213fca4885408e1c4", + "https://preview.redd.it/tpgoqenspg091.png?width=640&crop=smart&auto=webp&s=df4eba2abbebb689027595cf2b2dab3125182194", + "https://preview.redd.it/v1b9q7nspg091.png?width=640&crop=smart&auto=webp&s=c20e79f7e1b33a5115e9bd89e7d0379aa395098b", + "https://preview.redd.it/jgm6u5nspg091.png?width=640&crop=smart&auto=webp&s=38be17fb48f3caa1d10e36d0cc3a12a50f0e91ae", + "https://preview.redd.it/60cho6nspg091.png?width=640&crop=smart&auto=webp&s=5f3723f70577ff3d85224f4e929cbe5d91071284", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx b/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx index 4b99afd..783fb66 100644 --- a/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx +++ b/src/data/issues/holonews_fr_ver._03.01_-_09.01.mdx @@ -2,6 +2,26 @@ title: "HoloNews FR ver. 03.01 - 09.01" date: "2022-01-20T16:36:02.893000+0000" link: "https://reddit.com/r/HoloNews/comments/s8mzqp/holonews_fr_ver_0301_0901/" -images: ["https://preview.redd.it/e0dk876kevc81.png?width=640&crop=smart&auto=webp&s=b1a10b8c11dd5444432233ebad7dc85f19b37a6b","https://i.redd.it/hia0f17kevc81.gif","https://i.redd.it/n55qx67kevc81.gif","https://i.redd.it/ahkv077kevc81.gif","https://i.redd.it/5ape827kevc81.gif","https://preview.redd.it/abe6bx5kevc81.png?width=640&crop=smart&auto=webp&s=52aaddc7317c62cc23de1804ae9ea6e1d4d6b67f","https://preview.redd.it/i347xy5kevc81.png?width=640&crop=smart&auto=webp&s=e059be0277f5cbb6d3b5a49dd6b842dca6e28a5b","https://preview.redd.it/ixnr5z5kevc81.png?width=640&crop=smart&auto=webp&s=00296bebce0cf49ff2a60adf446b0001d94c4256","https://preview.redd.it/kktgi06kevc81.png?width=640&crop=smart&auto=webp&s=a279380f1c1c25e62fbcda2599952a4ac935aa63","https://preview.redd.it/4asej26kevc81.png?width=640&crop=smart&auto=webp&s=1da02be9928fec88553f343688ab2960062d8c54","https://preview.redd.it/2l6kq26kevc81.png?width=640&crop=smart&auto=webp&s=b3e0388325c217a42376d9fb2ef69ad64d695cf0","https://preview.redd.it/o3u8t16kevc81.png?width=640&crop=smart&auto=webp&s=81c5cf45cb2c8f077963d391af23bfbf1df040c5","https://preview.redd.it/tel1c36kevc81.png?width=640&crop=smart&auto=webp&s=0368541747da3a937db11e3bc008dd900543be7d","https://preview.redd.it/zugkx56kevc81.png?width=640&crop=smart&auto=webp&s=056846a9305b54458cc498ee463ae613c86f975c","https://preview.redd.it/evbxr56kevc81.png?width=640&crop=smart&auto=webp&s=c064699f9beef5a8c903e64d48889e866b7c9ca9","https://preview.redd.it/691e766kevc81.png?width=640&crop=smart&auto=webp&s=8473f4355a1bfcb01aabe183e71c71adbd824f8b","https://preview.redd.it/mc0gyv5kevc81.png?width=640&crop=smart&auto=webp&s=52fb16261be0fd121febc144ffd98ae44629ec3f","https://preview.redd.it/m4mlsr5kevc81.png?width=640&crop=smart&auto=webp&s=d1b6bc6fd846c2b101ba88fb12811394c6e484fd"] +images: + [ + "https://preview.redd.it/e0dk876kevc81.png?width=640&crop=smart&auto=webp&s=b1a10b8c11dd5444432233ebad7dc85f19b37a6b", + "https://i.redd.it/hia0f17kevc81.gif", + "https://i.redd.it/n55qx67kevc81.gif", + "https://i.redd.it/ahkv077kevc81.gif", + "https://i.redd.it/5ape827kevc81.gif", + "https://preview.redd.it/abe6bx5kevc81.png?width=640&crop=smart&auto=webp&s=52aaddc7317c62cc23de1804ae9ea6e1d4d6b67f", + "https://preview.redd.it/i347xy5kevc81.png?width=640&crop=smart&auto=webp&s=e059be0277f5cbb6d3b5a49dd6b842dca6e28a5b", + "https://preview.redd.it/ixnr5z5kevc81.png?width=640&crop=smart&auto=webp&s=00296bebce0cf49ff2a60adf446b0001d94c4256", + "https://preview.redd.it/kktgi06kevc81.png?width=640&crop=smart&auto=webp&s=a279380f1c1c25e62fbcda2599952a4ac935aa63", + "https://preview.redd.it/4asej26kevc81.png?width=640&crop=smart&auto=webp&s=1da02be9928fec88553f343688ab2960062d8c54", + "https://preview.redd.it/2l6kq26kevc81.png?width=640&crop=smart&auto=webp&s=b3e0388325c217a42376d9fb2ef69ad64d695cf0", + "https://preview.redd.it/o3u8t16kevc81.png?width=640&crop=smart&auto=webp&s=81c5cf45cb2c8f077963d391af23bfbf1df040c5", + "https://preview.redd.it/tel1c36kevc81.png?width=640&crop=smart&auto=webp&s=0368541747da3a937db11e3bc008dd900543be7d", + "https://preview.redd.it/zugkx56kevc81.png?width=640&crop=smart&auto=webp&s=056846a9305b54458cc498ee463ae613c86f975c", + "https://preview.redd.it/evbxr56kevc81.png?width=640&crop=smart&auto=webp&s=c064699f9beef5a8c903e64d48889e866b7c9ca9", + "https://preview.redd.it/691e766kevc81.png?width=640&crop=smart&auto=webp&s=8473f4355a1bfcb01aabe183e71c71adbd824f8b", + "https://preview.redd.it/mc0gyv5kevc81.png?width=640&crop=smart&auto=webp&s=52fb16261be0fd121febc144ffd98ae44629ec3f", + "https://preview.redd.it/m4mlsr5kevc81.png?width=640&crop=smart&auto=webp&s=d1b6bc6fd846c2b101ba88fb12811394c6e484fd", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx b/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx index c7f9f72..40d8e21 100644 --- a/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx +++ b/src/data/issues/holonews_fr_ver._04.04._-_10.04..mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 04.04. - 10.04." date: "2022-04-18T14:18:29.626000+0000" link: "https://reddit.com/r/HoloNews/comments/u6e90i/holonews_fr_ver_0404_1004/" -images: ["https://preview.redd.it/447d9x59qau81.png?width=640&crop=smart&auto=webp&s=da1e72ad85758efd28cf305535e60e368ec906ab","https://i.redd.it/evaqgz69qau81.gif","https://i.redd.it/4cpyy569qau81.gif","https://i.redd.it/2lhpqm59qau81.gif","https://preview.redd.it/vqoemv59qau81.png?width=640&crop=smart&auto=webp&s=b577f973557b160e93c85dc2b50aebe53ae0cfcc","https://preview.redd.it/1p0w9x59qau81.png?width=640&crop=smart&auto=webp&s=eb24d7aed08ae47eb98c77548d486027886f3aef","https://preview.redd.it/8onp0069qau81.png?width=640&crop=smart&auto=webp&s=77c2052d6367e0672b2f9e574a1921b2f4f1535f","https://preview.redd.it/47q8zz59qau81.png?width=640&crop=smart&auto=webp&s=5b214222c0bf05bb30f184628729d134f4029a70","https://preview.redd.it/ng2jez59qau81.png?width=640&crop=smart&auto=webp&s=78a6f629b1d8d2347e487b340162b0cd02fcd30b","https://preview.redd.it/bvkxy169qau81.png?width=640&crop=smart&auto=webp&s=1954ff66b0b26e3e8ec5f1ab36dd544231decdd0","https://preview.redd.it/4isaim59qau81.png?width=640&crop=smart&auto=webp&s=2e2233b68a7665018531f331396e2d12d5982b20","https://preview.redd.it/tg33do59qau81.png?width=640&crop=smart&auto=webp&s=fe5c5e2398aae966f5a15220b53bd23994d842fe","https://preview.redd.it/k0xgzo59qau81.png?width=640&crop=smart&auto=webp&s=04894ea46f5cc6870c464c348b2b43220c05a620","https://preview.redd.it/f28i0069qau81.png?width=640&crop=smart&auto=webp&s=cfd9f432f4ca684c8741fa8a0de0757357fa5925","https://preview.redd.it/rpi8qr59qau81.png?width=640&crop=smart&auto=webp&s=e98e9e66e3150f9e0ca4b61ef491be956bcb1bd4","https://preview.redd.it/te1hcs59qau81.png?width=640&crop=smart&auto=webp&s=54067a4bbe0ce794e14ae015a4120d71e97c3f3c","https://preview.redd.it/jccgzt59qau81.png?width=640&crop=smart&auto=webp&s=c6f01e7fa0a3652ff04988062d8f9b317659f5af","https://preview.redd.it/zaqhfz59qau81.png?width=640&crop=smart&auto=webp&s=5d87fad3fb4ef7e073cd1546cc7bdd8172e18842","https://preview.redd.it/xr2di069qau81.png?width=640&crop=smart&auto=webp&s=6e8eada40e4418ca77867db22b2f2f2ec815bb3c","https://preview.redd.it/e9o8r269qau81.png?width=640&crop=smart&auto=webp&s=a0bbca7e0346cb52f6ac821b06ad9a3b15f05d31"] +images: + [ + "https://preview.redd.it/447d9x59qau81.png?width=640&crop=smart&auto=webp&s=da1e72ad85758efd28cf305535e60e368ec906ab", + "https://i.redd.it/evaqgz69qau81.gif", + "https://i.redd.it/4cpyy569qau81.gif", + "https://i.redd.it/2lhpqm59qau81.gif", + "https://preview.redd.it/vqoemv59qau81.png?width=640&crop=smart&auto=webp&s=b577f973557b160e93c85dc2b50aebe53ae0cfcc", + "https://preview.redd.it/1p0w9x59qau81.png?width=640&crop=smart&auto=webp&s=eb24d7aed08ae47eb98c77548d486027886f3aef", + "https://preview.redd.it/8onp0069qau81.png?width=640&crop=smart&auto=webp&s=77c2052d6367e0672b2f9e574a1921b2f4f1535f", + "https://preview.redd.it/47q8zz59qau81.png?width=640&crop=smart&auto=webp&s=5b214222c0bf05bb30f184628729d134f4029a70", + "https://preview.redd.it/ng2jez59qau81.png?width=640&crop=smart&auto=webp&s=78a6f629b1d8d2347e487b340162b0cd02fcd30b", + "https://preview.redd.it/bvkxy169qau81.png?width=640&crop=smart&auto=webp&s=1954ff66b0b26e3e8ec5f1ab36dd544231decdd0", + "https://preview.redd.it/4isaim59qau81.png?width=640&crop=smart&auto=webp&s=2e2233b68a7665018531f331396e2d12d5982b20", + "https://preview.redd.it/tg33do59qau81.png?width=640&crop=smart&auto=webp&s=fe5c5e2398aae966f5a15220b53bd23994d842fe", + "https://preview.redd.it/k0xgzo59qau81.png?width=640&crop=smart&auto=webp&s=04894ea46f5cc6870c464c348b2b43220c05a620", + "https://preview.redd.it/f28i0069qau81.png?width=640&crop=smart&auto=webp&s=cfd9f432f4ca684c8741fa8a0de0757357fa5925", + "https://preview.redd.it/rpi8qr59qau81.png?width=640&crop=smart&auto=webp&s=e98e9e66e3150f9e0ca4b61ef491be956bcb1bd4", + "https://preview.redd.it/te1hcs59qau81.png?width=640&crop=smart&auto=webp&s=54067a4bbe0ce794e14ae015a4120d71e97c3f3c", + "https://preview.redd.it/jccgzt59qau81.png?width=640&crop=smart&auto=webp&s=c6f01e7fa0a3652ff04988062d8f9b317659f5af", + "https://preview.redd.it/zaqhfz59qau81.png?width=640&crop=smart&auto=webp&s=5d87fad3fb4ef7e073cd1546cc7bdd8172e18842", + "https://preview.redd.it/xr2di069qau81.png?width=640&crop=smart&auto=webp&s=6e8eada40e4418ca77867db22b2f2f2ec815bb3c", + "https://preview.redd.it/e9o8r269qau81.png?width=640&crop=smart&auto=webp&s=a0bbca7e0346cb52f6ac821b06ad9a3b15f05d31", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx b/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx index 9f98780..6df8f90 100644 --- a/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx +++ b/src/data/issues/holonews_fr_ver._06.12_-_12.12.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 06.12 - 12.12" date: "2021-12-22T16:46:40.026000+0000" link: "https://reddit.com/r/HoloNews/comments/rm97dw/holonews_fr_ver_0612_1212/" -images: ["https://preview.redd.it/5m6u9vp5i4781.png?width=640&crop=smart&auto=webp&s=7e457b5c24559a4cb3729e0bca75fd436a4b7165","https://preview.redd.it/nxfdzpp5i4781.png?width=640&crop=smart&auto=webp&s=7eab2a23d433cc117eb4a12f319cc3a214d5ae20","https://i.redd.it/hzn54bq5i4781.gif","https://i.redd.it/84g75zp5i4781.gif","https://preview.redd.it/jzt074p5i4781.png?width=640&crop=smart&auto=webp&s=997f51f1b3d6470afd96392271d196610aba110c","https://preview.redd.it/xcgw2ro5i4781.png?width=640&crop=smart&auto=webp&s=85aff27ea989920d74b94ae79bc75ce0a4392708","https://preview.redd.it/5kftsfp5i4781.png?width=640&crop=smart&auto=webp&s=83e0568463842cd00b87c774eb0d1585f76d4cef","https://preview.redd.it/kplmeso5i4781.png?width=640&crop=smart&auto=webp&s=0ea90b4f544dae17840de1b754a844c428d356f0","https://preview.redd.it/3l7onpp5i4781.png?width=640&crop=smart&auto=webp&s=38d52e16a5c2e277921cf205ef3f1011c8ee1464","https://preview.redd.it/l819swo5i4781.png?width=640&crop=smart&auto=webp&s=c7bd7d92b3639dbbc69088ebfb49c6816ba8232a","https://preview.redd.it/hl8t1hp5i4781.png?width=640&crop=smart&auto=webp&s=05a87ee5c1f7493e5d32dce40bebd7abe2e024f9","https://preview.redd.it/spyjo0p5i4781.png?width=640&crop=smart&auto=webp&s=4a623d558b68c67ecb4547633c7226217f1c17ad","https://preview.redd.it/e4f2xbp5i4781.png?width=640&crop=smart&auto=webp&s=c79249d75260e4ca600f6da0372bed1234a92097","https://preview.redd.it/zybw02p5i4781.png?width=640&crop=smart&auto=webp&s=d41d4462503e963675c3d5362b89eb71f33b5389","https://preview.redd.it/j7pps8p5i4781.png?width=640&crop=smart&auto=webp&s=dcb9b082a98544a2e6a20a2e10a2ebaf4e8f6e5f","https://preview.redd.it/ufn3pso5i4781.png?width=640&crop=smart&auto=webp&s=140e213e675490db910653c1c37ed7259165f74c","https://preview.redd.it/2xyiqnp5i4781.png?width=640&crop=smart&auto=webp&s=ba9e8d7d8edcb7fc00143b7342f7e334abeb76da","https://preview.redd.it/l1ow7ap5i4781.png?width=640&crop=smart&auto=webp&s=c646d37f6d0ccd884044a772736a99aa0fd442e9","https://preview.redd.it/8ewqvso5i4781.png?width=640&crop=smart&auto=webp&s=b74795ad6432996d87370d219679c38b4ab0e903","https://preview.redd.it/0vvx7po5i4781.png?width=640&crop=smart&auto=webp&s=eaf33e2828b780aca5a67a53903ed3d5b7ebefa4"] +images: + [ + "https://preview.redd.it/5m6u9vp5i4781.png?width=640&crop=smart&auto=webp&s=7e457b5c24559a4cb3729e0bca75fd436a4b7165", + "https://preview.redd.it/nxfdzpp5i4781.png?width=640&crop=smart&auto=webp&s=7eab2a23d433cc117eb4a12f319cc3a214d5ae20", + "https://i.redd.it/hzn54bq5i4781.gif", + "https://i.redd.it/84g75zp5i4781.gif", + "https://preview.redd.it/jzt074p5i4781.png?width=640&crop=smart&auto=webp&s=997f51f1b3d6470afd96392271d196610aba110c", + "https://preview.redd.it/xcgw2ro5i4781.png?width=640&crop=smart&auto=webp&s=85aff27ea989920d74b94ae79bc75ce0a4392708", + "https://preview.redd.it/5kftsfp5i4781.png?width=640&crop=smart&auto=webp&s=83e0568463842cd00b87c774eb0d1585f76d4cef", + "https://preview.redd.it/kplmeso5i4781.png?width=640&crop=smart&auto=webp&s=0ea90b4f544dae17840de1b754a844c428d356f0", + "https://preview.redd.it/3l7onpp5i4781.png?width=640&crop=smart&auto=webp&s=38d52e16a5c2e277921cf205ef3f1011c8ee1464", + "https://preview.redd.it/l819swo5i4781.png?width=640&crop=smart&auto=webp&s=c7bd7d92b3639dbbc69088ebfb49c6816ba8232a", + "https://preview.redd.it/hl8t1hp5i4781.png?width=640&crop=smart&auto=webp&s=05a87ee5c1f7493e5d32dce40bebd7abe2e024f9", + "https://preview.redd.it/spyjo0p5i4781.png?width=640&crop=smart&auto=webp&s=4a623d558b68c67ecb4547633c7226217f1c17ad", + "https://preview.redd.it/e4f2xbp5i4781.png?width=640&crop=smart&auto=webp&s=c79249d75260e4ca600f6da0372bed1234a92097", + "https://preview.redd.it/zybw02p5i4781.png?width=640&crop=smart&auto=webp&s=d41d4462503e963675c3d5362b89eb71f33b5389", + "https://preview.redd.it/j7pps8p5i4781.png?width=640&crop=smart&auto=webp&s=dcb9b082a98544a2e6a20a2e10a2ebaf4e8f6e5f", + "https://preview.redd.it/ufn3pso5i4781.png?width=640&crop=smart&auto=webp&s=140e213e675490db910653c1c37ed7259165f74c", + "https://preview.redd.it/2xyiqnp5i4781.png?width=640&crop=smart&auto=webp&s=ba9e8d7d8edcb7fc00143b7342f7e334abeb76da", + "https://preview.redd.it/l1ow7ap5i4781.png?width=640&crop=smart&auto=webp&s=c646d37f6d0ccd884044a772736a99aa0fd442e9", + "https://preview.redd.it/8ewqvso5i4781.png?width=640&crop=smart&auto=webp&s=b74795ad6432996d87370d219679c38b4ab0e903", + "https://preview.redd.it/0vvx7po5i4781.png?width=640&crop=smart&auto=webp&s=eaf33e2828b780aca5a67a53903ed3d5b7ebefa4", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx b/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx index af5d198..6929305 100644 --- a/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx +++ b/src/data/issues/holonews_fr_ver._07.02._-_13.02..mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 07.02. - 13.02." date: "2022-02-21T14:09:17.542000+0000" link: "https://reddit.com/r/HoloNews/comments/sxuedk/holonews_fr_ver_0702_1302/" -images: ["https://preview.redd.it/1xfzyfoe17j81.png?width=640&crop=smart&auto=webp&s=69ac8f5daa881a83eefe8f8190748dd9c30706d1","https://i.redd.it/vx10udpe17j81.gif","https://i.redd.it/6qdrdooe17j81.gif","https://preview.redd.it/y7orleoe17j81.png?width=640&crop=smart&auto=webp&s=74998876761e262deed684eb5b53a51396ded201","https://preview.redd.it/7qv70ioe17j81.png?width=640&crop=smart&auto=webp&s=aa3dbb48840f050b2f67f1fac8c38814fbd88136","https://preview.redd.it/aqfugaoe17j81.png?width=640&crop=smart&auto=webp&s=da06ce83b779cf147cc36b615492b4d0982ccd3f","https://preview.redd.it/8jlvjloe17j81.png?width=640&crop=smart&auto=webp&s=98053983677d9c8fc005ba981e28137f659c1923","https://preview.redd.it/vu96h6oe17j81.png?width=640&crop=smart&auto=webp&s=b20ac10643527831a5f66b34786e5e87a2a83d3a","https://preview.redd.it/ywb64loe17j81.png?width=640&crop=smart&auto=webp&s=60fce1043dcd8e04b3534965e30eca2b2ec8a98b","https://preview.redd.it/t75966pe17j81.png?width=640&crop=smart&auto=webp&s=72f77c7cd6fb78a2487dad6bdfccafc4fe8f4a9f","https://preview.redd.it/5wthh8oe17j81.png?width=640&crop=smart&auto=webp&s=1a86e660068db52e38573cff7742de79dafbf662","https://preview.redd.it/c09s25oe17j81.png?width=640&crop=smart&auto=webp&s=5cbe3680b6467f9da0b935546816dad8d499ff54","https://preview.redd.it/1v57uhoe17j81.png?width=640&crop=smart&auto=webp&s=41c54d02b72dec2d35bdd5b1b32c1b57530ffb69","https://preview.redd.it/qf0n8aoe17j81.png?width=640&crop=smart&auto=webp&s=74641f3cdf7bd1a6c419064576002a3b53604637","https://preview.redd.it/u7q04boe17j81.png?width=640&crop=smart&auto=webp&s=0bb8480b0715cca40ae48a67ad0888fbee201922","https://preview.redd.it/zyj0iloe17j81.png?width=640&crop=smart&auto=webp&s=efc19b82b99cee47e70142c7f682b8fd14f28f72","https://preview.redd.it/e6g9weoe17j81.png?width=640&crop=smart&auto=webp&s=66e538b401cdf2197feb68fb1342e76b75668534","https://preview.redd.it/v1qafhoe17j81.png?width=640&crop=smart&auto=webp&s=db1ea0aee1483346bf2eb62c7734f266af900473","https://preview.redd.it/z6e4h4oe17j81.png?width=640&crop=smart&auto=webp&s=6e5a8c47eb6c597fe2c44120585bd5a7b11d612a","https://preview.redd.it/o9evvcoe17j81.png?width=640&crop=smart&auto=webp&s=df331404b6d04ec3dbcd8a6fe34dd307e1dcda49"] +images: + [ + "https://preview.redd.it/1xfzyfoe17j81.png?width=640&crop=smart&auto=webp&s=69ac8f5daa881a83eefe8f8190748dd9c30706d1", + "https://i.redd.it/vx10udpe17j81.gif", + "https://i.redd.it/6qdrdooe17j81.gif", + "https://preview.redd.it/y7orleoe17j81.png?width=640&crop=smart&auto=webp&s=74998876761e262deed684eb5b53a51396ded201", + "https://preview.redd.it/7qv70ioe17j81.png?width=640&crop=smart&auto=webp&s=aa3dbb48840f050b2f67f1fac8c38814fbd88136", + "https://preview.redd.it/aqfugaoe17j81.png?width=640&crop=smart&auto=webp&s=da06ce83b779cf147cc36b615492b4d0982ccd3f", + "https://preview.redd.it/8jlvjloe17j81.png?width=640&crop=smart&auto=webp&s=98053983677d9c8fc005ba981e28137f659c1923", + "https://preview.redd.it/vu96h6oe17j81.png?width=640&crop=smart&auto=webp&s=b20ac10643527831a5f66b34786e5e87a2a83d3a", + "https://preview.redd.it/ywb64loe17j81.png?width=640&crop=smart&auto=webp&s=60fce1043dcd8e04b3534965e30eca2b2ec8a98b", + "https://preview.redd.it/t75966pe17j81.png?width=640&crop=smart&auto=webp&s=72f77c7cd6fb78a2487dad6bdfccafc4fe8f4a9f", + "https://preview.redd.it/5wthh8oe17j81.png?width=640&crop=smart&auto=webp&s=1a86e660068db52e38573cff7742de79dafbf662", + "https://preview.redd.it/c09s25oe17j81.png?width=640&crop=smart&auto=webp&s=5cbe3680b6467f9da0b935546816dad8d499ff54", + "https://preview.redd.it/1v57uhoe17j81.png?width=640&crop=smart&auto=webp&s=41c54d02b72dec2d35bdd5b1b32c1b57530ffb69", + "https://preview.redd.it/qf0n8aoe17j81.png?width=640&crop=smart&auto=webp&s=74641f3cdf7bd1a6c419064576002a3b53604637", + "https://preview.redd.it/u7q04boe17j81.png?width=640&crop=smart&auto=webp&s=0bb8480b0715cca40ae48a67ad0888fbee201922", + "https://preview.redd.it/zyj0iloe17j81.png?width=640&crop=smart&auto=webp&s=efc19b82b99cee47e70142c7f682b8fd14f28f72", + "https://preview.redd.it/e6g9weoe17j81.png?width=640&crop=smart&auto=webp&s=66e538b401cdf2197feb68fb1342e76b75668534", + "https://preview.redd.it/v1qafhoe17j81.png?width=640&crop=smart&auto=webp&s=db1ea0aee1483346bf2eb62c7734f266af900473", + "https://preview.redd.it/z6e4h4oe17j81.png?width=640&crop=smart&auto=webp&s=6e5a8c47eb6c597fe2c44120585bd5a7b11d612a", + "https://preview.redd.it/o9evvcoe17j81.png?width=640&crop=smart&auto=webp&s=df331404b6d04ec3dbcd8a6fe34dd307e1dcda49", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx b/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx index 3fda26a..1a814d0 100644 --- a/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx +++ b/src/data/issues/holonews_fr_ver._09.05_-_15.05.mdx @@ -2,6 +2,24 @@ title: "HoloNews FR ver. 09.05 - 15.05" date: "2022-05-25T16:19:11.481000+0000" link: "https://reddit.com/r/HoloNews/comments/uxkygz/holonews_fr_ver_0905_1505/" -images: ["https://preview.redd.it/6d08rvbndn191.png?width=640&crop=smart&auto=webp&s=7e2fd1ef053ff2fe358a609eaabd9b285712c3d3","https://i.redd.it/st3x3ucndn191.gif","https://i.redd.it/hnb15qcndn191.gif","https://i.redd.it/fytcxvbndn191.gif","https://preview.redd.it/m2u0pjbndn191.png?width=640&crop=smart&auto=webp&s=cd79e6d50aaf007979553ea641edc9254ddf881e","https://preview.redd.it/deqm6xbndn191.png?width=640&crop=smart&auto=webp&s=0fad1eeeb31516731caa5ef2e129d754427a90e0","https://preview.redd.it/ha4s0lbndn191.png?width=640&crop=smart&auto=webp&s=a2fd10886fcfe15a0ba3993cd7ffb9251d23fcba","https://preview.redd.it/acwo6ybndn191.png?width=640&crop=smart&auto=webp&s=f8380c0618b174c4aaaed89a43d47c85528ac4de","https://preview.redd.it/cj6uylbndn191.png?width=640&crop=smart&auto=webp&s=1f9c69ec63ac1f124746a0384eed3da6be3a566b","https://preview.redd.it/mu6x71cndn191.png?width=640&crop=smart&auto=webp&s=cafbd9db5c001d5043d3886b0074c4d7cfa90f14","https://preview.redd.it/wu1g0qbndn191.png?width=640&crop=smart&auto=webp&s=a6e98f1011de70edf8b47cf7aab59c78a401d1e4","https://preview.redd.it/zv18f4cndn191.png?width=640&crop=smart&auto=webp&s=72c9183f4d0fb2bef328de562bda9e969f7dc066","https://preview.redd.it/0iwz07cndn191.png?width=640&crop=smart&auto=webp&s=70c364a93c727a7516950bd3963bed83a2f58ee1","https://preview.redd.it/4wc5t6cndn191.png?width=640&crop=smart&auto=webp&s=c85e5a0a8c62f4dbbeccfe9c3b281d499fb07f44","https://preview.redd.it/zf57hpbndn191.png?width=640&crop=smart&auto=webp&s=9fd1bb1fe3f7209bebf5fc0d77b7ae97701aaaa3","https://preview.redd.it/ph45p7cndn191.png?width=640&crop=smart&auto=webp&s=15ba7ecd4a015e61debac2ae2b2aadba6a65d425"] +images: + [ + "https://preview.redd.it/6d08rvbndn191.png?width=640&crop=smart&auto=webp&s=7e2fd1ef053ff2fe358a609eaabd9b285712c3d3", + "https://i.redd.it/st3x3ucndn191.gif", + "https://i.redd.it/hnb15qcndn191.gif", + "https://i.redd.it/fytcxvbndn191.gif", + "https://preview.redd.it/m2u0pjbndn191.png?width=640&crop=smart&auto=webp&s=cd79e6d50aaf007979553ea641edc9254ddf881e", + "https://preview.redd.it/deqm6xbndn191.png?width=640&crop=smart&auto=webp&s=0fad1eeeb31516731caa5ef2e129d754427a90e0", + "https://preview.redd.it/ha4s0lbndn191.png?width=640&crop=smart&auto=webp&s=a2fd10886fcfe15a0ba3993cd7ffb9251d23fcba", + "https://preview.redd.it/acwo6ybndn191.png?width=640&crop=smart&auto=webp&s=f8380c0618b174c4aaaed89a43d47c85528ac4de", + "https://preview.redd.it/cj6uylbndn191.png?width=640&crop=smart&auto=webp&s=1f9c69ec63ac1f124746a0384eed3da6be3a566b", + "https://preview.redd.it/mu6x71cndn191.png?width=640&crop=smart&auto=webp&s=cafbd9db5c001d5043d3886b0074c4d7cfa90f14", + "https://preview.redd.it/wu1g0qbndn191.png?width=640&crop=smart&auto=webp&s=a6e98f1011de70edf8b47cf7aab59c78a401d1e4", + "https://preview.redd.it/zv18f4cndn191.png?width=640&crop=smart&auto=webp&s=72c9183f4d0fb2bef328de562bda9e969f7dc066", + "https://preview.redd.it/0iwz07cndn191.png?width=640&crop=smart&auto=webp&s=70c364a93c727a7516950bd3963bed83a2f58ee1", + "https://preview.redd.it/4wc5t6cndn191.png?width=640&crop=smart&auto=webp&s=c85e5a0a8c62f4dbbeccfe9c3b281d499fb07f44", + "https://preview.redd.it/zf57hpbndn191.png?width=640&crop=smart&auto=webp&s=9fd1bb1fe3f7209bebf5fc0d77b7ae97701aaaa3", + "https://preview.redd.it/ph45p7cndn191.png?width=640&crop=smart&auto=webp&s=15ba7ecd4a015e61debac2ae2b2aadba6a65d425", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx b/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx index 9e70c87..fd42aa2 100644 --- a/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx +++ b/src/data/issues/holonews_fr_ver._10.01_-_16.01.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR Ver. 10.01 - 16.01" date: "2022-01-27T14:20:51.083000+0000" link: "https://reddit.com/r/HoloNews/comments/sdzh5w/holonews_fr_ver_1001_1601/" -images: ["https://preview.redd.it/a76xd4h6i8e81.png?width=640&crop=smart&auto=webp&s=2160e06d63719f7d76812b300423c06f6d658d7a","https://i.redd.it/ldw5o6h6i8e81.gif","https://i.redd.it/rtncihi6i8e81.gif","https://i.redd.it/c5gisfi6i8e81.gif","https://preview.redd.it/x5494bh6i8e81.png?width=640&crop=smart&auto=webp&s=7488bd4f327323ad0979a4b1183d0955b202fd11","https://preview.redd.it/5jy3qhh6i8e81.png?width=640&crop=smart&auto=webp&s=3a22eab335ce4698b6d6e299df4d2d3334351e25","https://preview.redd.it/f4nqihh6i8e81.png?width=640&crop=smart&auto=webp&s=433fd2b7bd2779f11b2006fdf57a099bc4c88df5","https://preview.redd.it/3fitkhh6i8e81.png?width=640&crop=smart&auto=webp&s=8cac1142ecb982d1c06121e1e2cd1e717c9cd4c1","https://preview.redd.it/e9p0ahh6i8e81.png?width=640&crop=smart&auto=webp&s=96c9984596982e0ce748641b6dffc378e49ffe6c","https://preview.redd.it/da0p0hh6i8e81.png?width=640&crop=smart&auto=webp&s=a575ed71198b5ef83fb6f1c942132ceefb828cdb","https://preview.redd.it/7gvwwhh6i8e81.png?width=640&crop=smart&auto=webp&s=1d83353fc0bc2dff157a9c9a88e38801c307981a","https://preview.redd.it/104s7ih6i8e81.png?width=640&crop=smart&auto=webp&s=477e2122148b4ef0757c5b7db6c010cb7f1cc075","https://preview.redd.it/th3koth6i8e81.png?width=640&crop=smart&auto=webp&s=a451fa59e863f049ba2da3db78a640c3cbe4adcc","https://preview.redd.it/iw24srh6i8e81.png?width=640&crop=smart&auto=webp&s=a09c329c87b17fa942d47934cd6a62f5636a9a34","https://preview.redd.it/2udkcmh6i8e81.png?width=640&crop=smart&auto=webp&s=7f02583e2a85bd24dccb0a5db084fb7a0f12d9fd","https://preview.redd.it/kc62oei6i8e81.png?width=640&crop=smart&auto=webp&s=cf86fe46ca2384b39099017b21768f6eb4ef675a","https://preview.redd.it/y1gnwei6i8e81.png?width=640&crop=smart&auto=webp&s=b3aaa1da19a3b37c390ad1679968a4993d21ea79","https://preview.redd.it/djp3zei6i8e81.png?width=640&crop=smart&auto=webp&s=a4080bdfe2c04dff85e166cf9ed334d39b59ec80","https://preview.redd.it/obuq7mi6i8e81.png?width=640&crop=smart&auto=webp&s=240389696801ca970648cd9143523facede88b6b","https://preview.redd.it/sk6ss9h6i8e81.png?width=640&crop=smart&auto=webp&s=59e36b78eaaa448846caaedbd330253ac1d42533"] +images: + [ + "https://preview.redd.it/a76xd4h6i8e81.png?width=640&crop=smart&auto=webp&s=2160e06d63719f7d76812b300423c06f6d658d7a", + "https://i.redd.it/ldw5o6h6i8e81.gif", + "https://i.redd.it/rtncihi6i8e81.gif", + "https://i.redd.it/c5gisfi6i8e81.gif", + "https://preview.redd.it/x5494bh6i8e81.png?width=640&crop=smart&auto=webp&s=7488bd4f327323ad0979a4b1183d0955b202fd11", + "https://preview.redd.it/5jy3qhh6i8e81.png?width=640&crop=smart&auto=webp&s=3a22eab335ce4698b6d6e299df4d2d3334351e25", + "https://preview.redd.it/f4nqihh6i8e81.png?width=640&crop=smart&auto=webp&s=433fd2b7bd2779f11b2006fdf57a099bc4c88df5", + "https://preview.redd.it/3fitkhh6i8e81.png?width=640&crop=smart&auto=webp&s=8cac1142ecb982d1c06121e1e2cd1e717c9cd4c1", + "https://preview.redd.it/e9p0ahh6i8e81.png?width=640&crop=smart&auto=webp&s=96c9984596982e0ce748641b6dffc378e49ffe6c", + "https://preview.redd.it/da0p0hh6i8e81.png?width=640&crop=smart&auto=webp&s=a575ed71198b5ef83fb6f1c942132ceefb828cdb", + "https://preview.redd.it/7gvwwhh6i8e81.png?width=640&crop=smart&auto=webp&s=1d83353fc0bc2dff157a9c9a88e38801c307981a", + "https://preview.redd.it/104s7ih6i8e81.png?width=640&crop=smart&auto=webp&s=477e2122148b4ef0757c5b7db6c010cb7f1cc075", + "https://preview.redd.it/th3koth6i8e81.png?width=640&crop=smart&auto=webp&s=a451fa59e863f049ba2da3db78a640c3cbe4adcc", + "https://preview.redd.it/iw24srh6i8e81.png?width=640&crop=smart&auto=webp&s=a09c329c87b17fa942d47934cd6a62f5636a9a34", + "https://preview.redd.it/2udkcmh6i8e81.png?width=640&crop=smart&auto=webp&s=7f02583e2a85bd24dccb0a5db084fb7a0f12d9fd", + "https://preview.redd.it/kc62oei6i8e81.png?width=640&crop=smart&auto=webp&s=cf86fe46ca2384b39099017b21768f6eb4ef675a", + "https://preview.redd.it/y1gnwei6i8e81.png?width=640&crop=smart&auto=webp&s=b3aaa1da19a3b37c390ad1679968a4993d21ea79", + "https://preview.redd.it/djp3zei6i8e81.png?width=640&crop=smart&auto=webp&s=a4080bdfe2c04dff85e166cf9ed334d39b59ec80", + "https://preview.redd.it/obuq7mi6i8e81.png?width=640&crop=smart&auto=webp&s=240389696801ca970648cd9143523facede88b6b", + "https://preview.redd.it/sk6ss9h6i8e81.png?width=640&crop=smart&auto=webp&s=59e36b78eaaa448846caaedbd330253ac1d42533", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx b/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx index 534fbca..b92e855 100644 --- a/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx +++ b/src/data/issues/holonews_fr_ver._13.06_-_19.06.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 13.06 - 19.06" date: "2022-06-27T16:43:05.423000+0000" link: "https://reddit.com/r/HoloNews/comments/vlzuj2/holonews_fr_ver_1306_1906/" -images: ["https://preview.redd.it/4gafg71007891.png?width=640&crop=smart&auto=webp&s=55e9dec36ffe6e76e1f8dbe0ede59d01f38a868e","https://i.redd.it/q8n0df2007891.gif","https://preview.redd.it/afwo4y0007891.png?width=640&crop=smart&auto=webp&s=70baf8b329ba1861153f4483cd02d7a529a2aaef","https://i.redd.it/s4x3x42007891.gif","https://i.redd.it/d18nbs2007891.gif","https://i.redd.it/c3krlc2007891.gif","https://preview.redd.it/vsc0491007891.png?width=640&crop=smart&auto=webp&s=ed4896f76dd308bb5406c63d0a4a76b9a8ba5582","https://preview.redd.it/s8i86e1007891.png?width=640&crop=smart&auto=webp&s=69851b3f717262b0ab3beac099832d0ac873d4e6","https://preview.redd.it/mfyk4z0007891.png?width=640&crop=smart&auto=webp&s=43c15344c536d74655db9e4b5812d310dd4ee253","https://preview.redd.it/elcvud1007891.png?width=640&crop=smart&auto=webp&s=be9e361ccb0357ed50d812a9450b7fd4d614d321","https://preview.redd.it/yapvr21007891.png?width=640&crop=smart&auto=webp&s=b50b4276bfd0a7957100d638dc8c47cae2a92ebb","https://preview.redd.it/jc8e6e1007891.png?width=640&crop=smart&auto=webp&s=b0dfadcd41e7aa11d6d6cde874950fa0ff7f88b2","https://preview.redd.it/2aotee1007891.png?width=640&crop=smart&auto=webp&s=51e3bf1f1f43d395bbf5ea8ae0bf81809b0def2e","https://preview.redd.it/y13tq21007891.png?width=640&crop=smart&auto=webp&s=4296a60300dbd1f1fae2c7ceb1a474ebaf82abaa","https://preview.redd.it/5b7awf1007891.png?width=640&crop=smart&auto=webp&s=5fd9bc247acc09895c2b0d3af40f6a11eb514596","https://preview.redd.it/8bwjx61007891.png?width=640&crop=smart&auto=webp&s=8fc31732846bf8b7e14f7977536776d8e6b4a737","https://preview.redd.it/yt54hs1007891.png?width=640&crop=smart&auto=webp&s=2939f79cea455088f292bab53cd073bdf23e8fb2","https://preview.redd.it/urmq5h1007891.png?width=640&crop=smart&auto=webp&s=27d2ed6ecd4f0a7f3ace23ae4ae024317fa13950","https://preview.redd.it/x7r5pk1007891.png?width=640&crop=smart&auto=webp&s=57895970b13ba7336aa91b0b9dba9b177f8c2ec3","https://preview.redd.it/5jtaoj1007891.png?width=640&crop=smart&auto=webp&s=5b1f8f69573a4bbe81a6157c8ec9de18abb7f00a"] +images: + [ + "https://preview.redd.it/4gafg71007891.png?width=640&crop=smart&auto=webp&s=55e9dec36ffe6e76e1f8dbe0ede59d01f38a868e", + "https://i.redd.it/q8n0df2007891.gif", + "https://preview.redd.it/afwo4y0007891.png?width=640&crop=smart&auto=webp&s=70baf8b329ba1861153f4483cd02d7a529a2aaef", + "https://i.redd.it/s4x3x42007891.gif", + "https://i.redd.it/d18nbs2007891.gif", + "https://i.redd.it/c3krlc2007891.gif", + "https://preview.redd.it/vsc0491007891.png?width=640&crop=smart&auto=webp&s=ed4896f76dd308bb5406c63d0a4a76b9a8ba5582", + "https://preview.redd.it/s8i86e1007891.png?width=640&crop=smart&auto=webp&s=69851b3f717262b0ab3beac099832d0ac873d4e6", + "https://preview.redd.it/mfyk4z0007891.png?width=640&crop=smart&auto=webp&s=43c15344c536d74655db9e4b5812d310dd4ee253", + "https://preview.redd.it/elcvud1007891.png?width=640&crop=smart&auto=webp&s=be9e361ccb0357ed50d812a9450b7fd4d614d321", + "https://preview.redd.it/yapvr21007891.png?width=640&crop=smart&auto=webp&s=b50b4276bfd0a7957100d638dc8c47cae2a92ebb", + "https://preview.redd.it/jc8e6e1007891.png?width=640&crop=smart&auto=webp&s=b0dfadcd41e7aa11d6d6cde874950fa0ff7f88b2", + "https://preview.redd.it/2aotee1007891.png?width=640&crop=smart&auto=webp&s=51e3bf1f1f43d395bbf5ea8ae0bf81809b0def2e", + "https://preview.redd.it/y13tq21007891.png?width=640&crop=smart&auto=webp&s=4296a60300dbd1f1fae2c7ceb1a474ebaf82abaa", + "https://preview.redd.it/5b7awf1007891.png?width=640&crop=smart&auto=webp&s=5fd9bc247acc09895c2b0d3af40f6a11eb514596", + "https://preview.redd.it/8bwjx61007891.png?width=640&crop=smart&auto=webp&s=8fc31732846bf8b7e14f7977536776d8e6b4a737", + "https://preview.redd.it/yt54hs1007891.png?width=640&crop=smart&auto=webp&s=2939f79cea455088f292bab53cd073bdf23e8fb2", + "https://preview.redd.it/urmq5h1007891.png?width=640&crop=smart&auto=webp&s=27d2ed6ecd4f0a7f3ace23ae4ae024317fa13950", + "https://preview.redd.it/x7r5pk1007891.png?width=640&crop=smart&auto=webp&s=57895970b13ba7336aa91b0b9dba9b177f8c2ec3", + "https://preview.redd.it/5jtaoj1007891.png?width=640&crop=smart&auto=webp&s=5b1f8f69573a4bbe81a6157c8ec9de18abb7f00a", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx b/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx index f0ce445..724888d 100644 --- a/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx +++ b/src/data/issues/holonews_fr_ver._13.12_-_19.12.mdx @@ -2,6 +2,28 @@ title: "Holonews FR ver. 13.12 - 19.12" date: "2021-12-30T17:03:40.473000+0000" link: "https://reddit.com/r/HoloNews/comments/rs6inc/holonews_fr_ver_1312_1912/" -images: ["https://i.redd.it/mdbr8fr7op881.gif","https://i.redd.it/2gkvmbr7op881.gif","https://i.redd.it/cfgs5fr7op881.gif","https://preview.redd.it/yoztz9r7op881.png?width=640&crop=smart&auto=webp&s=faf4b4ff1d037d972b11359332d21340e67b2c6e","https://preview.redd.it/6hzku9r7op881.png?width=640&crop=smart&auto=webp&s=f611a3956a9a7cd55f7bca2cd03adb150b719f29","https://preview.redd.it/4ans4cr7op881.png?width=640&crop=smart&auto=webp&s=aa4c3e5e272c4343ed4c2d5a8cff19c26251a49b","https://i.redd.it/6q9z38s7op881.gif","https://preview.redd.it/8qzv4gr7op881.png?width=640&crop=smart&auto=webp&s=6bb2eeafe88d807e930549682160700a6ea9a2a7","https://preview.redd.it/xtq505r7op881.png?width=640&crop=smart&auto=webp&s=b45496451e744c0886e4daf84d2da4a1b6161b24","https://preview.redd.it/spozawqbop881.png?width=640&crop=smart&auto=webp&s=4feb1114688a978e54c1701b8b824b5f74c77cb5","https://preview.redd.it/mrnna2rbop881.png?width=640&crop=smart&auto=webp&s=ada9d46983ed3c8c8292a3a4e87fd44f96bb1b55","https://preview.redd.it/if4hbzrbop881.png?width=640&crop=smart&auto=webp&s=d81fbf28c071a282cfded7cacbb2fc7eb4febdf2","https://preview.redd.it/bdhhvxqbop881.png?width=640&crop=smart&auto=webp&s=e42b6bcb4d0c7508c2674d72f754ca7b3ba7403c","https://preview.redd.it/g5e6n8rbop881.png?width=640&crop=smart&auto=webp&s=671ae8975a7ba4a28ab1ba3d102923ca2dbb226d","https://preview.redd.it/othl11rbop881.png?width=640&crop=smart&auto=webp&s=843f7cbbbb9e89d587c910ba92b48512c99b71d9","https://preview.redd.it/youn1arbop881.png?width=640&crop=smart&auto=webp&s=bb47e4647030f2d055471fb3c06ffd0047f07735","https://preview.redd.it/0rlzk5rbop881.png?width=640&crop=smart&auto=webp&s=228320575dd5bb8645dc35ca1d4d6aa79ca189bb","https://preview.redd.it/s9btd0rbop881.png?width=640&crop=smart&auto=webp&s=cfc05afb23cf6c0a2aa92daf3b992d3219258a45","https://preview.redd.it/097yrwqbop881.png?width=640&crop=smart&auto=webp&s=b5fe85eda72561c8b43b1c86f7691b8a0c0f80fc","https://preview.redd.it/gxjactqbop881.png?width=640&crop=smart&auto=webp&s=6683cab62c30f5b5ea01bfb73e3a64183818b0c5"] +images: + [ + "https://i.redd.it/mdbr8fr7op881.gif", + "https://i.redd.it/2gkvmbr7op881.gif", + "https://i.redd.it/cfgs5fr7op881.gif", + "https://preview.redd.it/yoztz9r7op881.png?width=640&crop=smart&auto=webp&s=faf4b4ff1d037d972b11359332d21340e67b2c6e", + "https://preview.redd.it/6hzku9r7op881.png?width=640&crop=smart&auto=webp&s=f611a3956a9a7cd55f7bca2cd03adb150b719f29", + "https://preview.redd.it/4ans4cr7op881.png?width=640&crop=smart&auto=webp&s=aa4c3e5e272c4343ed4c2d5a8cff19c26251a49b", + "https://i.redd.it/6q9z38s7op881.gif", + "https://preview.redd.it/8qzv4gr7op881.png?width=640&crop=smart&auto=webp&s=6bb2eeafe88d807e930549682160700a6ea9a2a7", + "https://preview.redd.it/xtq505r7op881.png?width=640&crop=smart&auto=webp&s=b45496451e744c0886e4daf84d2da4a1b6161b24", + "https://preview.redd.it/spozawqbop881.png?width=640&crop=smart&auto=webp&s=4feb1114688a978e54c1701b8b824b5f74c77cb5", + "https://preview.redd.it/mrnna2rbop881.png?width=640&crop=smart&auto=webp&s=ada9d46983ed3c8c8292a3a4e87fd44f96bb1b55", + "https://preview.redd.it/if4hbzrbop881.png?width=640&crop=smart&auto=webp&s=d81fbf28c071a282cfded7cacbb2fc7eb4febdf2", + "https://preview.redd.it/bdhhvxqbop881.png?width=640&crop=smart&auto=webp&s=e42b6bcb4d0c7508c2674d72f754ca7b3ba7403c", + "https://preview.redd.it/g5e6n8rbop881.png?width=640&crop=smart&auto=webp&s=671ae8975a7ba4a28ab1ba3d102923ca2dbb226d", + "https://preview.redd.it/othl11rbop881.png?width=640&crop=smart&auto=webp&s=843f7cbbbb9e89d587c910ba92b48512c99b71d9", + "https://preview.redd.it/youn1arbop881.png?width=640&crop=smart&auto=webp&s=bb47e4647030f2d055471fb3c06ffd0047f07735", + "https://preview.redd.it/0rlzk5rbop881.png?width=640&crop=smart&auto=webp&s=228320575dd5bb8645dc35ca1d4d6aa79ca189bb", + "https://preview.redd.it/s9btd0rbop881.png?width=640&crop=smart&auto=webp&s=cfc05afb23cf6c0a2aa92daf3b992d3219258a45", + "https://preview.redd.it/097yrwqbop881.png?width=640&crop=smart&auto=webp&s=b5fe85eda72561c8b43b1c86f7691b8a0c0f80fc", + "https://preview.redd.it/gxjactqbop881.png?width=640&crop=smart&auto=webp&s=6683cab62c30f5b5ea01bfb73e3a64183818b0c5", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx b/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx index 75dbcf0..23825fb 100644 --- a/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx +++ b/src/data/issues/holonews_fr_ver._14.02_-_20.02.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 14.02 - 20.02" date: "2022-02-28T16:33:37.515000+0000" link: "https://reddit.com/r/HoloNews/comments/t3jlfs/holonews_fr_ver_1402_2002/" -images: ["https://preview.redd.it/vofozn9hplk81.png?width=640&crop=smart&auto=webp&s=27ae1c9d56f9bf4873fa12f688649f0862bb313c","https://i.redd.it/2x1avp9hplk81.gif","https://i.redd.it/q3grcw9hplk81.gif","https://i.redd.it/5c90dx9hplk81.gif","https://preview.redd.it/rtbwlt9hplk81.png?width=640&crop=smart&auto=webp&s=e511390519cb06a702c8fb02718e0658498bf955","https://preview.redd.it/n829ms9hplk81.png?width=640&crop=smart&auto=webp&s=edada192fd6599e6c75a049287658c1b6498f11b","https://preview.redd.it/wz3l9c9hplk81.png?width=640&crop=smart&auto=webp&s=9ce5f1d5c71ccb653319d143f6fe6f77869ab18d","https://preview.redd.it/y2itib9hplk81.png?width=640&crop=smart&auto=webp&s=12e89b1630c6cbd113379f10584dfd3453233314","https://preview.redd.it/0tignb9hplk81.png?width=640&crop=smart&auto=webp&s=4cc3c1ec43edea06db4a9f51305eafaddd0e0b5f","https://preview.redd.it/gvvkmc9hplk81.png?width=640&crop=smart&auto=webp&s=c031e7d337bf1de9fd8bfd39d427fafbe48fb620","https://preview.redd.it/e8oyxd9hplk81.png?width=640&crop=smart&auto=webp&s=92a3903ed9210fe9a5db25038b51fc1cc2aeb033","https://preview.redd.it/26e2rg9hplk81.png?width=640&crop=smart&auto=webp&s=d02bfd6c9a22e55755feac5eb10e6cbaca38907f","https://preview.redd.it/jrofnf9hplk81.png?width=640&crop=smart&auto=webp&s=62aacb83f40ee241e4f4e91bca1029d3f2be6551","https://preview.redd.it/ra08ek9hplk81.png?width=640&crop=smart&auto=webp&s=084be884b52ad02faa9e89642909878e9dfba355","https://preview.redd.it/fuhzya9hplk81.png?width=640&crop=smart&auto=webp&s=ecfd66c568f609b3852144852c5bc95267b4c074","https://preview.redd.it/oe03uf9hplk81.png?width=640&crop=smart&auto=webp&s=617a5e34007ab70f8018375de30d51744d69343d","https://preview.redd.it/msc19i9hplk81.png?width=640&crop=smart&auto=webp&s=92560dd1db5833f74b01460744d8b4a82f2122ac","https://preview.redd.it/oc740k9hplk81.png?width=640&crop=smart&auto=webp&s=91a4ea310ada07f71bda879d4805eeccbc80aea5","https://preview.redd.it/k8z90j9hplk81.png?width=640&crop=smart&auto=webp&s=d12fd84ccdc75f87cd0e240b875ee6b6da15a6b7","https://preview.redd.it/38e8fj9hplk81.png?width=640&crop=smart&auto=webp&s=7cf7d280ef148101d187fe3934bd8c063d42d4e1"] +images: + [ + "https://preview.redd.it/vofozn9hplk81.png?width=640&crop=smart&auto=webp&s=27ae1c9d56f9bf4873fa12f688649f0862bb313c", + "https://i.redd.it/2x1avp9hplk81.gif", + "https://i.redd.it/q3grcw9hplk81.gif", + "https://i.redd.it/5c90dx9hplk81.gif", + "https://preview.redd.it/rtbwlt9hplk81.png?width=640&crop=smart&auto=webp&s=e511390519cb06a702c8fb02718e0658498bf955", + "https://preview.redd.it/n829ms9hplk81.png?width=640&crop=smart&auto=webp&s=edada192fd6599e6c75a049287658c1b6498f11b", + "https://preview.redd.it/wz3l9c9hplk81.png?width=640&crop=smart&auto=webp&s=9ce5f1d5c71ccb653319d143f6fe6f77869ab18d", + "https://preview.redd.it/y2itib9hplk81.png?width=640&crop=smart&auto=webp&s=12e89b1630c6cbd113379f10584dfd3453233314", + "https://preview.redd.it/0tignb9hplk81.png?width=640&crop=smart&auto=webp&s=4cc3c1ec43edea06db4a9f51305eafaddd0e0b5f", + "https://preview.redd.it/gvvkmc9hplk81.png?width=640&crop=smart&auto=webp&s=c031e7d337bf1de9fd8bfd39d427fafbe48fb620", + "https://preview.redd.it/e8oyxd9hplk81.png?width=640&crop=smart&auto=webp&s=92a3903ed9210fe9a5db25038b51fc1cc2aeb033", + "https://preview.redd.it/26e2rg9hplk81.png?width=640&crop=smart&auto=webp&s=d02bfd6c9a22e55755feac5eb10e6cbaca38907f", + "https://preview.redd.it/jrofnf9hplk81.png?width=640&crop=smart&auto=webp&s=62aacb83f40ee241e4f4e91bca1029d3f2be6551", + "https://preview.redd.it/ra08ek9hplk81.png?width=640&crop=smart&auto=webp&s=084be884b52ad02faa9e89642909878e9dfba355", + "https://preview.redd.it/fuhzya9hplk81.png?width=640&crop=smart&auto=webp&s=ecfd66c568f609b3852144852c5bc95267b4c074", + "https://preview.redd.it/oe03uf9hplk81.png?width=640&crop=smart&auto=webp&s=617a5e34007ab70f8018375de30d51744d69343d", + "https://preview.redd.it/msc19i9hplk81.png?width=640&crop=smart&auto=webp&s=92560dd1db5833f74b01460744d8b4a82f2122ac", + "https://preview.redd.it/oc740k9hplk81.png?width=640&crop=smart&auto=webp&s=91a4ea310ada07f71bda879d4805eeccbc80aea5", + "https://preview.redd.it/k8z90j9hplk81.png?width=640&crop=smart&auto=webp&s=d12fd84ccdc75f87cd0e240b875ee6b6da15a6b7", + "https://preview.redd.it/38e8fj9hplk81.png?width=640&crop=smart&auto=webp&s=7cf7d280ef148101d187fe3934bd8c063d42d4e1", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx b/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx index 6060d3e..f7a80fd 100644 --- a/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx +++ b/src/data/issues/holonews_fr_ver._14.03._-_20.03..mdx @@ -2,6 +2,27 @@ title: "HoloNews FR ver. 14.03. - 20.03." date: "2022-03-28T17:22:30.799000+0000" link: "https://reddit.com/r/HoloNews/comments/tqeeiy/holonews_fr_ver_1403_2003/" -images: ["https://preview.redd.it/8l00lc61s5q81.png?width=640&crop=smart&auto=webp&s=453234cee70e0f548eed14bcc3b686d60118260e","https://i.redd.it/6uhrci61s5q81.gif","https://i.redd.it/cyqkof61s5q81.gif","https://i.redd.it/sylozk61s5q81.gif","https://preview.redd.it/vdqp7661s5q81.png?width=640&crop=smart&auto=webp&s=9d91fbed8899e9fe903537d6f79c621b17f98337","https://preview.redd.it/ii0pva61s5q81.png?width=640&crop=smart&auto=webp&s=9318492da5dac19d8b39fe81b1fdc72c1c665527","https://preview.redd.it/ea20f961s5q81.png?width=640&crop=smart&auto=webp&s=1417346c2aea0fd091f306550ad68b149dc63b07","https://preview.redd.it/y7r06h61s5q81.png?width=640&crop=smart&auto=webp&s=bed828d1631524f1865ce25ba57950a08b057f98","https://preview.redd.it/ilke9b61s5q81.png?width=640&crop=smart&auto=webp&s=be283f4da67749f62f511273da38f6974d419fae","https://preview.redd.it/cd6a9h61s5q81.png?width=640&crop=smart&auto=webp&s=f543205abd9397032632e17da83aa041ab9a3723","https://preview.redd.it/urbzei61s5q81.png?width=640&crop=smart&auto=webp&s=a8a7f73fa22047c3b4231709d6a599a11d6c6e52","https://preview.redd.it/ozi8q661s5q81.png?width=640&crop=smart&auto=webp&s=bb0b8c13b6021fcd9615a2f8965f5325dbdeca21","https://preview.redd.it/gw04iy61s5q81.png?width=640&crop=smart&auto=webp&s=b043da58c6d4b49c7c9fd8eea154428446fdf401","https://preview.redd.it/wk838d61s5q81.png?width=640&crop=smart&auto=webp&s=9557ef890f9cf60a5d1e4159b87bb1852e77cb77","https://preview.redd.it/jrpfmf61s5q81.png?width=640&crop=smart&auto=webp&s=89d897714f0ad2f21c5b3622d98a8dba56363eb3","https://preview.redd.it/l8ljjk61s5q81.png?width=640&crop=smart&auto=webp&s=8da3d628ea00e9b68a098ca9af9b56f7a76189c2","https://preview.redd.it/0zxhnd61s5q81.png?width=640&crop=smart&auto=webp&s=137ae1dcd569912482a52ccaccb9231563ef37b0","https://preview.redd.it/47e7fa61s5q81.png?width=640&crop=smart&auto=webp&s=0a528a44c670d8c7f6195df4d0d9966962ffd884","https://preview.redd.it/n98lfk61s5q81.png?width=640&crop=smart&auto=webp&s=91f0f69ace839651baac83aeca97c07d00e909a0"] +images: + [ + "https://preview.redd.it/8l00lc61s5q81.png?width=640&crop=smart&auto=webp&s=453234cee70e0f548eed14bcc3b686d60118260e", + "https://i.redd.it/6uhrci61s5q81.gif", + "https://i.redd.it/cyqkof61s5q81.gif", + "https://i.redd.it/sylozk61s5q81.gif", + "https://preview.redd.it/vdqp7661s5q81.png?width=640&crop=smart&auto=webp&s=9d91fbed8899e9fe903537d6f79c621b17f98337", + "https://preview.redd.it/ii0pva61s5q81.png?width=640&crop=smart&auto=webp&s=9318492da5dac19d8b39fe81b1fdc72c1c665527", + "https://preview.redd.it/ea20f961s5q81.png?width=640&crop=smart&auto=webp&s=1417346c2aea0fd091f306550ad68b149dc63b07", + "https://preview.redd.it/y7r06h61s5q81.png?width=640&crop=smart&auto=webp&s=bed828d1631524f1865ce25ba57950a08b057f98", + "https://preview.redd.it/ilke9b61s5q81.png?width=640&crop=smart&auto=webp&s=be283f4da67749f62f511273da38f6974d419fae", + "https://preview.redd.it/cd6a9h61s5q81.png?width=640&crop=smart&auto=webp&s=f543205abd9397032632e17da83aa041ab9a3723", + "https://preview.redd.it/urbzei61s5q81.png?width=640&crop=smart&auto=webp&s=a8a7f73fa22047c3b4231709d6a599a11d6c6e52", + "https://preview.redd.it/ozi8q661s5q81.png?width=640&crop=smart&auto=webp&s=bb0b8c13b6021fcd9615a2f8965f5325dbdeca21", + "https://preview.redd.it/gw04iy61s5q81.png?width=640&crop=smart&auto=webp&s=b043da58c6d4b49c7c9fd8eea154428446fdf401", + "https://preview.redd.it/wk838d61s5q81.png?width=640&crop=smart&auto=webp&s=9557ef890f9cf60a5d1e4159b87bb1852e77cb77", + "https://preview.redd.it/jrpfmf61s5q81.png?width=640&crop=smart&auto=webp&s=89d897714f0ad2f21c5b3622d98a8dba56363eb3", + "https://preview.redd.it/l8ljjk61s5q81.png?width=640&crop=smart&auto=webp&s=8da3d628ea00e9b68a098ca9af9b56f7a76189c2", + "https://preview.redd.it/0zxhnd61s5q81.png?width=640&crop=smart&auto=webp&s=137ae1dcd569912482a52ccaccb9231563ef37b0", + "https://preview.redd.it/47e7fa61s5q81.png?width=640&crop=smart&auto=webp&s=0a528a44c670d8c7f6195df4d0d9966962ffd884", + "https://preview.redd.it/n98lfk61s5q81.png?width=640&crop=smart&auto=webp&s=91f0f69ace839651baac83aeca97c07d00e909a0", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx b/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx index 9968e21..5a9f02f 100644 --- a/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx +++ b/src/data/issues/holonews_fr_ver._15.08._-_21.08..mdx @@ -2,6 +2,27 @@ title: "HoloNews FR ver. 15.08. - 21.08." date: "2022-08-29T17:08:07.184000+0000" link: "https://reddit.com/r/HoloNews/comments/x0u1a8/holonews_fr_ver_1508_2108/" -images: ["https://preview.redd.it/2ciom6supok91.png?width=640&crop=smart&auto=webp&s=a2a3c4992e8be646d742bdd59e3f3f8e4372ac33","https://i.redd.it/634sj0supok91.gif","https://preview.redd.it/e97q8xsupok91.png?width=640&crop=smart&auto=webp&s=d7ada2e095dca223fbe4466427123aab775f41ee","https://i.redd.it/lhhuwrsupok91.gif","https://i.redd.it/8nol54supok91.gif","https://preview.redd.it/stxer8supok91.png?width=640&crop=smart&auto=webp&s=01d888ec2cb59541c50c0d9ac6933f517a718cac","https://i.redd.it/garj0urupok91.gif","https://preview.redd.it/dzlymyrupok91.png?width=640&crop=smart&auto=webp&s=10bf18de905a5667dbf8f70fc7e93b8bb7d16c66","https://preview.redd.it/vucz81supok91.png?width=640&crop=smart&auto=webp&s=996b02056423a26d02ce37f2fa3c939b4a93d3cd","https://preview.redd.it/nuys91supok91.png?width=640&crop=smart&auto=webp&s=e0957be9073eeeb47ce37fc797987568461b0d9d","https://preview.redd.it/courx9supok91.png?width=640&crop=smart&auto=webp&s=1273453defd8ff55f4f970fb9296241b50a2044d","https://preview.redd.it/cp33mksupok91.png?width=640&crop=smart&auto=webp&s=d3960874a027037b145bb0638de96a47e0b2f01a","https://preview.redd.it/2iuegvrupok91.png?width=640&crop=smart&auto=webp&s=02669107cf0fef01489275046620eaef9e39913a","https://preview.redd.it/gup31rsupok91.png?width=640&crop=smart&auto=webp&s=5bd77a5f4344919c4173af822be99187de8b3c48","https://preview.redd.it/cq9bttsupok91.png?width=640&crop=smart&auto=webp&s=46548ab7eeb1768aa3c41089d7d1ac9e35eafb4b","https://preview.redd.it/x3pycvrupok91.png?width=640&crop=smart&auto=webp&s=7d5027456b42eeaa05855f9206192ad5092e7d36","https://preview.redd.it/uw7vqwrupok91.png?width=640&crop=smart&auto=webp&s=6843c861fa271acb89c0ca3607ccbd75d02070ac","https://preview.redd.it/4t5qgwrupok91.png?width=640&crop=smart&auto=webp&s=017892af2ce1c5b923d8af297a27642a70ac787e","https://preview.redd.it/1zq51wsupok91.png?width=640&crop=smart&auto=webp&s=be13fa6989a625ebe500340870400eab030dee07"] +images: + [ + "https://preview.redd.it/2ciom6supok91.png?width=640&crop=smart&auto=webp&s=a2a3c4992e8be646d742bdd59e3f3f8e4372ac33", + "https://i.redd.it/634sj0supok91.gif", + "https://preview.redd.it/e97q8xsupok91.png?width=640&crop=smart&auto=webp&s=d7ada2e095dca223fbe4466427123aab775f41ee", + "https://i.redd.it/lhhuwrsupok91.gif", + "https://i.redd.it/8nol54supok91.gif", + "https://preview.redd.it/stxer8supok91.png?width=640&crop=smart&auto=webp&s=01d888ec2cb59541c50c0d9ac6933f517a718cac", + "https://i.redd.it/garj0urupok91.gif", + "https://preview.redd.it/dzlymyrupok91.png?width=640&crop=smart&auto=webp&s=10bf18de905a5667dbf8f70fc7e93b8bb7d16c66", + "https://preview.redd.it/vucz81supok91.png?width=640&crop=smart&auto=webp&s=996b02056423a26d02ce37f2fa3c939b4a93d3cd", + "https://preview.redd.it/nuys91supok91.png?width=640&crop=smart&auto=webp&s=e0957be9073eeeb47ce37fc797987568461b0d9d", + "https://preview.redd.it/courx9supok91.png?width=640&crop=smart&auto=webp&s=1273453defd8ff55f4f970fb9296241b50a2044d", + "https://preview.redd.it/cp33mksupok91.png?width=640&crop=smart&auto=webp&s=d3960874a027037b145bb0638de96a47e0b2f01a", + "https://preview.redd.it/2iuegvrupok91.png?width=640&crop=smart&auto=webp&s=02669107cf0fef01489275046620eaef9e39913a", + "https://preview.redd.it/gup31rsupok91.png?width=640&crop=smart&auto=webp&s=5bd77a5f4344919c4173af822be99187de8b3c48", + "https://preview.redd.it/cq9bttsupok91.png?width=640&crop=smart&auto=webp&s=46548ab7eeb1768aa3c41089d7d1ac9e35eafb4b", + "https://preview.redd.it/x3pycvrupok91.png?width=640&crop=smart&auto=webp&s=7d5027456b42eeaa05855f9206192ad5092e7d36", + "https://preview.redd.it/uw7vqwrupok91.png?width=640&crop=smart&auto=webp&s=6843c861fa271acb89c0ca3607ccbd75d02070ac", + "https://preview.redd.it/4t5qgwrupok91.png?width=640&crop=smart&auto=webp&s=017892af2ce1c5b923d8af297a27642a70ac787e", + "https://preview.redd.it/1zq51wsupok91.png?width=640&crop=smart&auto=webp&s=be13fa6989a625ebe500340870400eab030dee07", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx b/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx index 53f67c0..66737e9 100644 --- a/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx +++ b/src/data/issues/holonews_fr_ver._17.01_-_23.01.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 17.01 - 23.01" date: "2022-02-01T16:11:27.093000+0000" link: "https://reddit.com/r/HoloNews/comments/shylp9/holonews_fr_ver_1701_2301/" -images: ["https://preview.redd.it/trqd5hf6x8f81.png?width=640&crop=smart&auto=webp&s=34605931436bd174ae8291be43559165f82cd9e5","https://i.redd.it/0se94vf6x8f81.gif","https://i.redd.it/tv8xlhf6x8f81.gif","https://i.redd.it/j4f6g8g6x8f81.gif","https://i.redd.it/cd52pyf6x8f81.gif","https://preview.redd.it/wyxpejf6x8f81.png?width=640&crop=smart&auto=webp&s=1b5114e7cc077ed90d6f8d1a50d2103a005aeffa","https://preview.redd.it/eg6iinf6x8f81.png?width=640&crop=smart&auto=webp&s=cb93a3f0f231c8aef20153cb355d963d5d1078e8","https://preview.redd.it/8yecplf6x8f81.png?width=640&crop=smart&auto=webp&s=bc45a8d226b09d27f513f6ce26f0eabbbc9cdbfb","https://preview.redd.it/qjxy9nf6x8f81.png?width=640&crop=smart&auto=webp&s=ab8a7fce77388059f184e3f4898feba5053ac3b0","https://preview.redd.it/2mvamff6x8f81.png?width=640&crop=smart&auto=webp&s=bbca0f824900bc7673cc3c023abf468aeb550e42","https://preview.redd.it/h286wlf6x8f81.png?width=640&crop=smart&auto=webp&s=ae8be14fd9a4fb383bf7b179b05536a554669f4b","https://preview.redd.it/dya8inf6x8f81.png?width=640&crop=smart&auto=webp&s=c3ac661fa1961c669f07aa05ff6795e869dc6fb3","https://preview.redd.it/ul3ntmf6x8f81.png?width=640&crop=smart&auto=webp&s=a2716fd3b95806416365b153a86cf46d11ed9311","https://preview.redd.it/re6y8of6x8f81.png?width=640&crop=smart&auto=webp&s=5d0d7b3c420b2ee8493a9dad9d532e347e236b91","https://preview.redd.it/ww8qoof6x8f81.png?width=640&crop=smart&auto=webp&s=01695cf89c2777ac8ec3c1af48bbc8167809226d","https://preview.redd.it/08bviof6x8f81.png?width=640&crop=smart&auto=webp&s=fbe6fa0e3851eddf409602064abbb5a5fe40dbd2","https://preview.redd.it/kt122qf6x8f81.png?width=640&crop=smart&auto=webp&s=6ecefb9bddc638fff6a871fb39bfa58eb123becc","https://preview.redd.it/n0g75tf6x8f81.png?width=640&crop=smart&auto=webp&s=3da5663ab629967818d3d454f9524c4a47090408","https://preview.redd.it/udnc3tf6x8f81.png?width=640&crop=smart&auto=webp&s=7e17a39cb459ab74aae2a263c39d6ff22f3de821","https://preview.redd.it/l83xopf6x8f81.png?width=640&crop=smart&auto=webp&s=1654d30eeb92204e8d364f996bcfd1c1bde484fd"] +images: + [ + "https://preview.redd.it/trqd5hf6x8f81.png?width=640&crop=smart&auto=webp&s=34605931436bd174ae8291be43559165f82cd9e5", + "https://i.redd.it/0se94vf6x8f81.gif", + "https://i.redd.it/tv8xlhf6x8f81.gif", + "https://i.redd.it/j4f6g8g6x8f81.gif", + "https://i.redd.it/cd52pyf6x8f81.gif", + "https://preview.redd.it/wyxpejf6x8f81.png?width=640&crop=smart&auto=webp&s=1b5114e7cc077ed90d6f8d1a50d2103a005aeffa", + "https://preview.redd.it/eg6iinf6x8f81.png?width=640&crop=smart&auto=webp&s=cb93a3f0f231c8aef20153cb355d963d5d1078e8", + "https://preview.redd.it/8yecplf6x8f81.png?width=640&crop=smart&auto=webp&s=bc45a8d226b09d27f513f6ce26f0eabbbc9cdbfb", + "https://preview.redd.it/qjxy9nf6x8f81.png?width=640&crop=smart&auto=webp&s=ab8a7fce77388059f184e3f4898feba5053ac3b0", + "https://preview.redd.it/2mvamff6x8f81.png?width=640&crop=smart&auto=webp&s=bbca0f824900bc7673cc3c023abf468aeb550e42", + "https://preview.redd.it/h286wlf6x8f81.png?width=640&crop=smart&auto=webp&s=ae8be14fd9a4fb383bf7b179b05536a554669f4b", + "https://preview.redd.it/dya8inf6x8f81.png?width=640&crop=smart&auto=webp&s=c3ac661fa1961c669f07aa05ff6795e869dc6fb3", + "https://preview.redd.it/ul3ntmf6x8f81.png?width=640&crop=smart&auto=webp&s=a2716fd3b95806416365b153a86cf46d11ed9311", + "https://preview.redd.it/re6y8of6x8f81.png?width=640&crop=smart&auto=webp&s=5d0d7b3c420b2ee8493a9dad9d532e347e236b91", + "https://preview.redd.it/ww8qoof6x8f81.png?width=640&crop=smart&auto=webp&s=01695cf89c2777ac8ec3c1af48bbc8167809226d", + "https://preview.redd.it/08bviof6x8f81.png?width=640&crop=smart&auto=webp&s=fbe6fa0e3851eddf409602064abbb5a5fe40dbd2", + "https://preview.redd.it/kt122qf6x8f81.png?width=640&crop=smart&auto=webp&s=6ecefb9bddc638fff6a871fb39bfa58eb123becc", + "https://preview.redd.it/n0g75tf6x8f81.png?width=640&crop=smart&auto=webp&s=3da5663ab629967818d3d454f9524c4a47090408", + "https://preview.redd.it/udnc3tf6x8f81.png?width=640&crop=smart&auto=webp&s=7e17a39cb459ab74aae2a263c39d6ff22f3de821", + "https://preview.redd.it/l83xopf6x8f81.png?width=640&crop=smart&auto=webp&s=1654d30eeb92204e8d364f996bcfd1c1bde484fd", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx b/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx index 3ca6f53..4b76eab 100644 --- a/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx +++ b/src/data/issues/holonews_fr_ver._18.07_-_24.07.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR Ver. 18.07 - 24.07" date: "2022-08-04T16:09:47.902000+0000" link: "https://reddit.com/r/HoloNews/comments/wg54k1/holonews_fr_ver_1807_2407/" -images: ["https://preview.redd.it/j1sg7blo0qf91.png?width=640&crop=smart&auto=webp&s=875d080bded05de47847553516eb706d78b749e3","https://i.redd.it/mhzj60no0qf91.gif","https://i.redd.it/upgcmano0qf91.gif","https://i.redd.it/ofvroeno0qf91.gif","https://i.redd.it/ac2sk9no0qf91.gif","https://i.redd.it/9yip5omo0qf91.gif","https://preview.redd.it/sk6j3clo0qf91.png?width=640&crop=smart&auto=webp&s=b95136f3f3fefd479e264f02fdcebee10ebf5595","https://preview.redd.it/vf0r5zko0qf91.png?width=640&crop=smart&auto=webp&s=278bf6a9053de369fb0b32fd74adbe607359ac46","https://preview.redd.it/opnzsdlo0qf91.png?width=640&crop=smart&auto=webp&s=2496266de37e2aef7c2fc0447781df418989a5de","https://preview.redd.it/60vvyglo0qf91.png?width=640&crop=smart&auto=webp&s=681fa90f7d9759063c2430beb49ca2d693def520","https://preview.redd.it/hqc7zhlo0qf91.png?width=640&crop=smart&auto=webp&s=5d26114bee86c14ccdbe4e08d76eefa9eb9c97f1","https://preview.redd.it/fhlibllo0qf91.png?width=640&crop=smart&auto=webp&s=8c24bcdb191433b9daffd4e215da59b3bdd6c101","https://preview.redd.it/9t9pknlo0qf91.png?width=640&crop=smart&auto=webp&s=b31173c3638d3b1ab965d6ee9a51685aea3b13d0","https://preview.redd.it/ys0mh1lo0qf91.png?width=640&crop=smart&auto=webp&s=aec73dcf641c48852cc407c493ea046881c32fb6","https://preview.redd.it/0ixorqlo0qf91.png?width=640&crop=smart&auto=webp&s=f162f2271735030b16a0da84e29d99731332c88a","https://preview.redd.it/z5fgc2lo0qf91.png?width=640&crop=smart&auto=webp&s=e9cf1741e03837d1bdac8148c19eab244611717d","https://preview.redd.it/gou7namo0qf91.png?width=640&crop=smart&auto=webp&s=ddec0c1753e4f246705f48ef90062478d8e9f309","https://preview.redd.it/1ufxkslo0qf91.png?width=640&crop=smart&auto=webp&s=c49366b494af0be81f80a0d4ec303554cb3f03b7","https://preview.redd.it/2gksmulo0qf91.png?width=640&crop=smart&auto=webp&s=88287054c54e70fb0b4db443b92a7a7bee71037d","https://preview.redd.it/u2aubvlo0qf91.png?width=640&crop=smart&auto=webp&s=0e20ddeb4a9aea9fd53ba0ad5298c63fa95775d2"] +images: + [ + "https://preview.redd.it/j1sg7blo0qf91.png?width=640&crop=smart&auto=webp&s=875d080bded05de47847553516eb706d78b749e3", + "https://i.redd.it/mhzj60no0qf91.gif", + "https://i.redd.it/upgcmano0qf91.gif", + "https://i.redd.it/ofvroeno0qf91.gif", + "https://i.redd.it/ac2sk9no0qf91.gif", + "https://i.redd.it/9yip5omo0qf91.gif", + "https://preview.redd.it/sk6j3clo0qf91.png?width=640&crop=smart&auto=webp&s=b95136f3f3fefd479e264f02fdcebee10ebf5595", + "https://preview.redd.it/vf0r5zko0qf91.png?width=640&crop=smart&auto=webp&s=278bf6a9053de369fb0b32fd74adbe607359ac46", + "https://preview.redd.it/opnzsdlo0qf91.png?width=640&crop=smart&auto=webp&s=2496266de37e2aef7c2fc0447781df418989a5de", + "https://preview.redd.it/60vvyglo0qf91.png?width=640&crop=smart&auto=webp&s=681fa90f7d9759063c2430beb49ca2d693def520", + "https://preview.redd.it/hqc7zhlo0qf91.png?width=640&crop=smart&auto=webp&s=5d26114bee86c14ccdbe4e08d76eefa9eb9c97f1", + "https://preview.redd.it/fhlibllo0qf91.png?width=640&crop=smart&auto=webp&s=8c24bcdb191433b9daffd4e215da59b3bdd6c101", + "https://preview.redd.it/9t9pknlo0qf91.png?width=640&crop=smart&auto=webp&s=b31173c3638d3b1ab965d6ee9a51685aea3b13d0", + "https://preview.redd.it/ys0mh1lo0qf91.png?width=640&crop=smart&auto=webp&s=aec73dcf641c48852cc407c493ea046881c32fb6", + "https://preview.redd.it/0ixorqlo0qf91.png?width=640&crop=smart&auto=webp&s=f162f2271735030b16a0da84e29d99731332c88a", + "https://preview.redd.it/z5fgc2lo0qf91.png?width=640&crop=smart&auto=webp&s=e9cf1741e03837d1bdac8148c19eab244611717d", + "https://preview.redd.it/gou7namo0qf91.png?width=640&crop=smart&auto=webp&s=ddec0c1753e4f246705f48ef90062478d8e9f309", + "https://preview.redd.it/1ufxkslo0qf91.png?width=640&crop=smart&auto=webp&s=c49366b494af0be81f80a0d4ec303554cb3f03b7", + "https://preview.redd.it/2gksmulo0qf91.png?width=640&crop=smart&auto=webp&s=88287054c54e70fb0b4db443b92a7a7bee71037d", + "https://preview.redd.it/u2aubvlo0qf91.png?width=640&crop=smart&auto=webp&s=0e20ddeb4a9aea9fd53ba0ad5298c63fa95775d2", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx b/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx index 352b2c0..a4b1ab9 100644 --- a/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx +++ b/src/data/issues/holonews_fr_ver._20.06._-_26.06.mdx @@ -2,6 +2,26 @@ title: "HoloNews FR ver. 20.06. - 26.06" date: "2022-07-08T06:33:58.918000+0000" link: "https://reddit.com/r/HoloNews/comments/vu4684/holonews_fr_ver_2006_2606/" -images: ["https://preview.redd.it/a4m7wf92haa91.png?width=640&crop=smart&auto=webp&s=464404bb3d0ac9559ad0d97a1f24061fedfdbce1","https://i.redd.it/xom67c82haa91.gif","https://i.redd.it/xkxis982haa91.gif","https://i.redd.it/z9k5b892haa91.gif","https://preview.redd.it/8hxr4782haa91.png?width=640&crop=smart&auto=webp&s=3e9ca5ac0b03d3736c1689eaa856a648e8e4800c","https://i.redd.it/fqhy7f82haa91.gif","https://i.redd.it/o0w4l592haa91.gif","https://preview.redd.it/oyrub192haa91.png?width=640&crop=smart&auto=webp&s=5ab91050d582828df3e4256012f69db572972259","https://preview.redd.it/qy1jhg82haa91.png?width=640&crop=smart&auto=webp&s=4c3a184dc7a56aadb9249ef9fe9c720695016d74","https://preview.redd.it/oiuvl892haa91.png?width=640&crop=smart&auto=webp&s=271db9c52c870ca2f2d1866a87a381c902b6d71f","https://preview.redd.it/uezevg82haa91.png?width=640&crop=smart&auto=webp&s=90ecdaa7669c29791cbcb190c43aa59ad14c5cd1","https://preview.redd.it/8e85d2a2haa91.png?width=640&crop=smart&auto=webp&s=4b489cfb50f0e3247c566e6905d8fa2e38312acf","https://preview.redd.it/vlsl4i82haa91.png?width=640&crop=smart&auto=webp&s=4f0fbad2697d92c19c6a5490b72f874a9f5916f4","https://preview.redd.it/2m142j82haa91.png?width=640&crop=smart&auto=webp&s=6276d7759992fff74bd14f6d8a1bc3209cc83d5d","https://preview.redd.it/86fl4d92haa91.png?width=640&crop=smart&auto=webp&s=4bc72d30aca3d357409bdd450d70e1557d5dba92","https://preview.redd.it/x3gxo4a2haa91.png?width=640&crop=smart&auto=webp&s=c6776b5e0327052793d507f62a79ae41603d9f8f","https://preview.redd.it/n384f4a2haa91.png?width=640&crop=smart&auto=webp&s=378575797d8ae025d33d7e372a70056083a4e00a","https://preview.redd.it/x5aehn82haa91.png?width=640&crop=smart&auto=webp&s=00b0f5da213a7933bf219bb883ea410216c46d34"] +images: + [ + "https://preview.redd.it/a4m7wf92haa91.png?width=640&crop=smart&auto=webp&s=464404bb3d0ac9559ad0d97a1f24061fedfdbce1", + "https://i.redd.it/xom67c82haa91.gif", + "https://i.redd.it/xkxis982haa91.gif", + "https://i.redd.it/z9k5b892haa91.gif", + "https://preview.redd.it/8hxr4782haa91.png?width=640&crop=smart&auto=webp&s=3e9ca5ac0b03d3736c1689eaa856a648e8e4800c", + "https://i.redd.it/fqhy7f82haa91.gif", + "https://i.redd.it/o0w4l592haa91.gif", + "https://preview.redd.it/oyrub192haa91.png?width=640&crop=smart&auto=webp&s=5ab91050d582828df3e4256012f69db572972259", + "https://preview.redd.it/qy1jhg82haa91.png?width=640&crop=smart&auto=webp&s=4c3a184dc7a56aadb9249ef9fe9c720695016d74", + "https://preview.redd.it/oiuvl892haa91.png?width=640&crop=smart&auto=webp&s=271db9c52c870ca2f2d1866a87a381c902b6d71f", + "https://preview.redd.it/uezevg82haa91.png?width=640&crop=smart&auto=webp&s=90ecdaa7669c29791cbcb190c43aa59ad14c5cd1", + "https://preview.redd.it/8e85d2a2haa91.png?width=640&crop=smart&auto=webp&s=4b489cfb50f0e3247c566e6905d8fa2e38312acf", + "https://preview.redd.it/vlsl4i82haa91.png?width=640&crop=smart&auto=webp&s=4f0fbad2697d92c19c6a5490b72f874a9f5916f4", + "https://preview.redd.it/2m142j82haa91.png?width=640&crop=smart&auto=webp&s=6276d7759992fff74bd14f6d8a1bc3209cc83d5d", + "https://preview.redd.it/86fl4d92haa91.png?width=640&crop=smart&auto=webp&s=4bc72d30aca3d357409bdd450d70e1557d5dba92", + "https://preview.redd.it/x3gxo4a2haa91.png?width=640&crop=smart&auto=webp&s=c6776b5e0327052793d507f62a79ae41603d9f8f", + "https://preview.redd.it/n384f4a2haa91.png?width=640&crop=smart&auto=webp&s=378575797d8ae025d33d7e372a70056083a4e00a", + "https://preview.redd.it/x5aehn82haa91.png?width=640&crop=smart&auto=webp&s=00b0f5da213a7933bf219bb883ea410216c46d34", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx b/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx index b589cce..408da2f 100644 --- a/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx +++ b/src/data/issues/holonews_fr_ver._21.02._-_27.02..mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 21.02. - 27.02." date: "2022-03-07T18:59:47.304000+0000" link: "https://reddit.com/r/HoloNews/comments/t8wk61/holonews_fr_ver_2102_2702/" -images: ["https://preview.redd.it/cpqvl105e0m81.png?width=640&crop=smart&auto=webp&s=ce8396cd38c057104db6ed211b90339ac18b66b3","https://i.redd.it/zp8yf9c5e0m81.gif","https://i.redd.it/dcw55vv5e0m81.gif","https://i.redd.it/c5zwidl5e0m81.gif","https://preview.redd.it/06z3en77e0m81.png?width=640&crop=smart&auto=webp&s=aedf2dcecd10326e5fdbd28d97e1811d6404bb8b","https://preview.redd.it/lchhitc7e0m81.png?width=640&crop=smart&auto=webp&s=9c98eb4702c0fdff91064c1260df0adfddc6e7d2","https://preview.redd.it/vfwjodj7e0m81.png?width=640&crop=smart&auto=webp&s=7667316c207344eae8c9ca6514a50923313be9ca","https://preview.redd.it/ttokyiq7e0m81.png?width=640&crop=smart&auto=webp&s=c0073a3eee48e8ee2b57b36147ee3843cc4b7f04","https://preview.redd.it/jusqv148e0m81.png?width=640&crop=smart&auto=webp&s=0fe1ca947b2d7cbf2fa9e5e6d019a70dd99a5170","https://preview.redd.it/slpsxie8e0m81.png?width=640&crop=smart&auto=webp&s=80afac18e6c61b189cffe69f22e00ab18416040b","https://preview.redd.it/mpiwp3n8e0m81.png?width=640&crop=smart&auto=webp&s=dc03a60bb843209a7479d8c4260d244055f66515","https://preview.redd.it/6hkaqlu8e0m81.png?width=640&crop=smart&auto=webp&s=99553f09a992c4bf4c9e7f2c3ae164a387b98746","https://preview.redd.it/3l14ee19e0m81.png?width=640&crop=smart&auto=webp&s=aa7325bf069ed609c160997c7b5ede79d9233e2d","https://preview.redd.it/2mcp2m89e0m81.png?width=640&crop=smart&auto=webp&s=faae2f33baa85ef5bbeb1dcb20cea8682e297e27","https://preview.redd.it/f4oo2fg9e0m81.png?width=640&crop=smart&auto=webp&s=7e895f6f1ffc8ea1d11d2b0268cbde79f46ecc27","https://preview.redd.it/r4ro0vn9e0m81.png?width=640&crop=smart&auto=webp&s=a92f675d5dd995f438b2dc45d4ccf69d320a7d53","https://preview.redd.it/6szj8cv9e0m81.png?width=640&crop=smart&auto=webp&s=db72ffc99052f5cc7033f2d39a79aa158869faf6","https://preview.redd.it/7rllf92ae0m81.png?width=640&crop=smart&auto=webp&s=e61743fcbece87590aafd378e77160b02e963b3a","https://preview.redd.it/mbwnn8eae0m81.png?width=640&crop=smart&auto=webp&s=166af0c1d19f9f2b6a1a85ae5d65574221adaac6","https://preview.redd.it/4hlcf6oae0m81.png?width=640&crop=smart&auto=webp&s=9d6770a6eada494417af40072b168c79743427f6"] +images: + [ + "https://preview.redd.it/cpqvl105e0m81.png?width=640&crop=smart&auto=webp&s=ce8396cd38c057104db6ed211b90339ac18b66b3", + "https://i.redd.it/zp8yf9c5e0m81.gif", + "https://i.redd.it/dcw55vv5e0m81.gif", + "https://i.redd.it/c5zwidl5e0m81.gif", + "https://preview.redd.it/06z3en77e0m81.png?width=640&crop=smart&auto=webp&s=aedf2dcecd10326e5fdbd28d97e1811d6404bb8b", + "https://preview.redd.it/lchhitc7e0m81.png?width=640&crop=smart&auto=webp&s=9c98eb4702c0fdff91064c1260df0adfddc6e7d2", + "https://preview.redd.it/vfwjodj7e0m81.png?width=640&crop=smart&auto=webp&s=7667316c207344eae8c9ca6514a50923313be9ca", + "https://preview.redd.it/ttokyiq7e0m81.png?width=640&crop=smart&auto=webp&s=c0073a3eee48e8ee2b57b36147ee3843cc4b7f04", + "https://preview.redd.it/jusqv148e0m81.png?width=640&crop=smart&auto=webp&s=0fe1ca947b2d7cbf2fa9e5e6d019a70dd99a5170", + "https://preview.redd.it/slpsxie8e0m81.png?width=640&crop=smart&auto=webp&s=80afac18e6c61b189cffe69f22e00ab18416040b", + "https://preview.redd.it/mpiwp3n8e0m81.png?width=640&crop=smart&auto=webp&s=dc03a60bb843209a7479d8c4260d244055f66515", + "https://preview.redd.it/6hkaqlu8e0m81.png?width=640&crop=smart&auto=webp&s=99553f09a992c4bf4c9e7f2c3ae164a387b98746", + "https://preview.redd.it/3l14ee19e0m81.png?width=640&crop=smart&auto=webp&s=aa7325bf069ed609c160997c7b5ede79d9233e2d", + "https://preview.redd.it/2mcp2m89e0m81.png?width=640&crop=smart&auto=webp&s=faae2f33baa85ef5bbeb1dcb20cea8682e297e27", + "https://preview.redd.it/f4oo2fg9e0m81.png?width=640&crop=smart&auto=webp&s=7e895f6f1ffc8ea1d11d2b0268cbde79f46ecc27", + "https://preview.redd.it/r4ro0vn9e0m81.png?width=640&crop=smart&auto=webp&s=a92f675d5dd995f438b2dc45d4ccf69d320a7d53", + "https://preview.redd.it/6szj8cv9e0m81.png?width=640&crop=smart&auto=webp&s=db72ffc99052f5cc7033f2d39a79aa158869faf6", + "https://preview.redd.it/7rllf92ae0m81.png?width=640&crop=smart&auto=webp&s=e61743fcbece87590aafd378e77160b02e963b3a", + "https://preview.redd.it/mbwnn8eae0m81.png?width=640&crop=smart&auto=webp&s=166af0c1d19f9f2b6a1a85ae5d65574221adaac6", + "https://preview.redd.it/4hlcf6oae0m81.png?width=640&crop=smart&auto=webp&s=9d6770a6eada494417af40072b168c79743427f6", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx b/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx index c0b3e93..5f7bb4d 100644 --- a/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx +++ b/src/data/issues/holonews_fr_ver._21.03_-_27.03.mdx @@ -2,6 +2,27 @@ title: "HoloNews FR ver. 21.03 - 27.03" date: "2022-04-04T15:59:52.145000+0000" link: "https://reddit.com/r/HoloNews/comments/tw5k46/holonews_fr_ver_2103_2703/" -images: ["https://preview.redd.it/e9jtowfnbjr81.png?width=640&crop=smart&auto=webp&s=77c006c509931d09cc00a146b7cb8dac40524eda","https://i.redd.it/4o117xfnbjr81.gif","https://i.redd.it/z5xe8ifnbjr81.gif","https://i.redd.it/bfq810gnbjr81.gif","https://preview.redd.it/327mqnfnbjr81.png?width=640&crop=smart&auto=webp&s=a9879df3490ccc52e3ec35e1dbb46614450f16ce","https://preview.redd.it/0imd3rfnbjr81.png?width=640&crop=smart&auto=webp&s=3457e31dc9d639d95a729be5ab3e1a7d44348991","https://preview.redd.it/0w3wwrfnbjr81.png?width=640&crop=smart&auto=webp&s=3eb5268cebec1f8563fb329724626c1de859577e","https://preview.redd.it/lp0el1gnbjr81.png?width=640&crop=smart&auto=webp&s=6ca513dff53343e9cb39cb7ab25af4874fe6d5f6","https://preview.redd.it/074ictfnbjr81.png?width=640&crop=smart&auto=webp&s=c0b4d4f7525192de8aaa27f5ac10adcdef001aa8","https://preview.redd.it/9zavgtfnbjr81.png?width=640&crop=smart&auto=webp&s=736cc59093a687e96e66961666ee5b55840fe6be","https://preview.redd.it/pcshx2gnbjr81.png?width=640&crop=smart&auto=webp&s=19e5e694210fe2e1198955645b2aa24c8dbb724c","https://preview.redd.it/jglnjtfnbjr81.png?width=640&crop=smart&auto=webp&s=d7caacae7abf7dd1ac8e436a4230c944f5034ff7","https://preview.redd.it/jbcusifnbjr81.png?width=640&crop=smart&auto=webp&s=06ded2d623b522b750c6d7325fa1141603fd896d","https://preview.redd.it/glejulfnbjr81.png?width=640&crop=smart&auto=webp&s=799cc6c4309236e9064c3d16085c6d34d9334096","https://preview.redd.it/6zijamfnbjr81.png?width=640&crop=smart&auto=webp&s=c3a0c284c786ad6394983b8968b978fc01b926a5","https://preview.redd.it/z98vbufnbjr81.png?width=640&crop=smart&auto=webp&s=6291f449539348c2baae71fb1de98bb3d02262d8","https://preview.redd.it/hep20vfnbjr81.png?width=640&crop=smart&auto=webp&s=58d9f1500659c5bf5583ffcc8fa72fb89371f9f9","https://preview.redd.it/1ftqgzfnbjr81.png?width=640&crop=smart&auto=webp&s=a394764600a111c980ee58d0647ed08d5185669d","https://preview.redd.it/jsvzf2gnbjr81.png?width=640&crop=smart&auto=webp&s=2cb574d5b900fef32fcc8d2cba97e55c5d3ee177"] +images: + [ + "https://preview.redd.it/e9jtowfnbjr81.png?width=640&crop=smart&auto=webp&s=77c006c509931d09cc00a146b7cb8dac40524eda", + "https://i.redd.it/4o117xfnbjr81.gif", + "https://i.redd.it/z5xe8ifnbjr81.gif", + "https://i.redd.it/bfq810gnbjr81.gif", + "https://preview.redd.it/327mqnfnbjr81.png?width=640&crop=smart&auto=webp&s=a9879df3490ccc52e3ec35e1dbb46614450f16ce", + "https://preview.redd.it/0imd3rfnbjr81.png?width=640&crop=smart&auto=webp&s=3457e31dc9d639d95a729be5ab3e1a7d44348991", + "https://preview.redd.it/0w3wwrfnbjr81.png?width=640&crop=smart&auto=webp&s=3eb5268cebec1f8563fb329724626c1de859577e", + "https://preview.redd.it/lp0el1gnbjr81.png?width=640&crop=smart&auto=webp&s=6ca513dff53343e9cb39cb7ab25af4874fe6d5f6", + "https://preview.redd.it/074ictfnbjr81.png?width=640&crop=smart&auto=webp&s=c0b4d4f7525192de8aaa27f5ac10adcdef001aa8", + "https://preview.redd.it/9zavgtfnbjr81.png?width=640&crop=smart&auto=webp&s=736cc59093a687e96e66961666ee5b55840fe6be", + "https://preview.redd.it/pcshx2gnbjr81.png?width=640&crop=smart&auto=webp&s=19e5e694210fe2e1198955645b2aa24c8dbb724c", + "https://preview.redd.it/jglnjtfnbjr81.png?width=640&crop=smart&auto=webp&s=d7caacae7abf7dd1ac8e436a4230c944f5034ff7", + "https://preview.redd.it/jbcusifnbjr81.png?width=640&crop=smart&auto=webp&s=06ded2d623b522b750c6d7325fa1141603fd896d", + "https://preview.redd.it/glejulfnbjr81.png?width=640&crop=smart&auto=webp&s=799cc6c4309236e9064c3d16085c6d34d9334096", + "https://preview.redd.it/6zijamfnbjr81.png?width=640&crop=smart&auto=webp&s=c3a0c284c786ad6394983b8968b978fc01b926a5", + "https://preview.redd.it/z98vbufnbjr81.png?width=640&crop=smart&auto=webp&s=6291f449539348c2baae71fb1de98bb3d02262d8", + "https://preview.redd.it/hep20vfnbjr81.png?width=640&crop=smart&auto=webp&s=58d9f1500659c5bf5583ffcc8fa72fb89371f9f9", + "https://preview.redd.it/1ftqgzfnbjr81.png?width=640&crop=smart&auto=webp&s=a394764600a111c980ee58d0647ed08d5185669d", + "https://preview.redd.it/jsvzf2gnbjr81.png?width=640&crop=smart&auto=webp&s=2cb574d5b900fef32fcc8d2cba97e55c5d3ee177", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx b/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx index 58aa7e0..6abb6e6 100644 --- a/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx +++ b/src/data/issues/holonews_fr_ver._22.08._-_28.08..mdx @@ -2,6 +2,23 @@ title: "HoloNews FR ver. 22.08. - 28.08." date: "2022-09-05T14:08:01.678000+0000" link: "https://reddit.com/r/HoloNews/comments/x6h3c2/holonews_fr_ver_2208_2808/" -images: ["https://preview.redd.it/jvjs8fvzr1m91.png?width=640&crop=smart&auto=webp&s=dbf11a7a04e72beda05c23487c3d5089fd9dc882","https://i.redd.it/q2jbxbvzr1m91.gif","https://i.redd.it/1cwrw0wzr1m91.gif","https://i.redd.it/4tpf09vzr1m91.gif","https://i.redd.it/a97apuvzr1m91.gif","https://preview.redd.it/ug961yvzr1m91.png?width=640&crop=smart&auto=webp&s=ba218c8fdc4099f952420c8f16069aacc2264459","https://preview.redd.it/i7f201wzr1m91.png?width=640&crop=smart&auto=webp&s=e5a7129317641336f215b737a67f90cf090a70c6","https://preview.redd.it/cnfnk6vzr1m91.png?width=640&crop=smart&auto=webp&s=bfaf9a09535b88f12d4e81c17d781ff9612bcdef","https://preview.redd.it/4xjo32wzr1m91.png?width=640&crop=smart&auto=webp&s=5ddb500940dd7f7c941b3b974673f026a96f1071","https://preview.redd.it/9mo0w9vzr1m91.png?width=640&crop=smart&auto=webp&s=2ebfce3d04d906ac9a528ed4373331a0c98e0d8e","https://preview.redd.it/pnjv1kvzr1m91.png?width=640&crop=smart&auto=webp&s=359e9b2393f0320ffb893b29423af73bf4ff6a85","https://preview.redd.it/kpem0lvzr1m91.png?width=640&crop=smart&auto=webp&s=51b9c3e34772df789d99615bb88294edef955053","https://preview.redd.it/6e4867vzr1m91.png?width=640&crop=smart&auto=webp&s=69f5bc9734620a21850fe6c2ebfaa9c3e6ae63b6","https://preview.redd.it/5jr7r6vzr1m91.png?width=640&crop=smart&auto=webp&s=d845e28a1358729697c51d41bf29a4f9c57dab0e","https://preview.redd.it/9a555bvzr1m91.png?width=640&crop=smart&auto=webp&s=2f516b600e73cb4d10a64e2eebd4a2af982d90b7"] +images: + [ + "https://preview.redd.it/jvjs8fvzr1m91.png?width=640&crop=smart&auto=webp&s=dbf11a7a04e72beda05c23487c3d5089fd9dc882", + "https://i.redd.it/q2jbxbvzr1m91.gif", + "https://i.redd.it/1cwrw0wzr1m91.gif", + "https://i.redd.it/4tpf09vzr1m91.gif", + "https://i.redd.it/a97apuvzr1m91.gif", + "https://preview.redd.it/ug961yvzr1m91.png?width=640&crop=smart&auto=webp&s=ba218c8fdc4099f952420c8f16069aacc2264459", + "https://preview.redd.it/i7f201wzr1m91.png?width=640&crop=smart&auto=webp&s=e5a7129317641336f215b737a67f90cf090a70c6", + "https://preview.redd.it/cnfnk6vzr1m91.png?width=640&crop=smart&auto=webp&s=bfaf9a09535b88f12d4e81c17d781ff9612bcdef", + "https://preview.redd.it/4xjo32wzr1m91.png?width=640&crop=smart&auto=webp&s=5ddb500940dd7f7c941b3b974673f026a96f1071", + "https://preview.redd.it/9mo0w9vzr1m91.png?width=640&crop=smart&auto=webp&s=2ebfce3d04d906ac9a528ed4373331a0c98e0d8e", + "https://preview.redd.it/pnjv1kvzr1m91.png?width=640&crop=smart&auto=webp&s=359e9b2393f0320ffb893b29423af73bf4ff6a85", + "https://preview.redd.it/kpem0lvzr1m91.png?width=640&crop=smart&auto=webp&s=51b9c3e34772df789d99615bb88294edef955053", + "https://preview.redd.it/6e4867vzr1m91.png?width=640&crop=smart&auto=webp&s=69f5bc9734620a21850fe6c2ebfaa9c3e6ae63b6", + "https://preview.redd.it/5jr7r6vzr1m91.png?width=640&crop=smart&auto=webp&s=d845e28a1358729697c51d41bf29a4f9c57dab0e", + "https://preview.redd.it/9a555bvzr1m91.png?width=640&crop=smart&auto=webp&s=2f516b600e73cb4d10a64e2eebd4a2af982d90b7", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx b/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx index 1449bbf..823a07b 100644 --- a/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx +++ b/src/data/issues/holonews_fr_ver._22.11_-_28.11.mdx @@ -2,6 +2,27 @@ title: "HoloNews FR ver. 22.11 - 28.11" date: "2021-12-05T17:59:43.728000+0000" link: "https://reddit.com/r/HoloNews/comments/r9l84y/holonews_fr_ver_2211_2811/" -images: ["https://i.redd.it/6vrs9lemjr381.gif","https://preview.redd.it/sntzwjemjr381.png?width=640&crop=smart&auto=webp&s=ca5d4cb0fcb304bf37e525844b34be909581aea0","https://preview.redd.it/8pp441emjr381.png?width=640&crop=smart&auto=webp&s=30c53ff2fff7ac362554e5389237c8b69812b9e5","https://preview.redd.it/5s4id3emjr381.png?width=640&crop=smart&auto=webp&s=4ffc5ddf1c42b7cc8afccd4e6567d760785fdba3","https://preview.redd.it/addr02emjr381.png?width=640&crop=smart&auto=webp&s=afabbc6e3174a4d2cb995bf39a6311bde53e79a0","https://preview.redd.it/s8yy6zdmjr381.png?width=640&crop=smart&auto=webp&s=55d0fd72d7679d8a8e1746f3ecdff18a8dd843ef","https://preview.redd.it/7boungemjr381.png?width=640&crop=smart&auto=webp&s=d2807e8e4340eb4904702bd47ce8dc90a48338e5","https://preview.redd.it/84x9lydmjr381.png?width=640&crop=smart&auto=webp&s=c2e64fe9f11c2e8d617078415b4b5f4f19909c13","https://preview.redd.it/i85zowdmjr381.png?width=640&crop=smart&auto=webp&s=a720575fccaa0d97234101eb8a3feb54bbfb1015","https://preview.redd.it/ne64drdmjr381.png?width=640&crop=smart&auto=webp&s=98ca392f6249b3721e2ceb5855225d283d5bab72","https://preview.redd.it/4cl9sudmjr381.png?width=640&crop=smart&auto=webp&s=35de31027b7d13c31928eecbd1b1b95705bbe7a1","https://preview.redd.it/qya1fydmjr381.png?width=640&crop=smart&auto=webp&s=362ac1eed29761d83c6ca48b7ae63d02727c5ca6","https://preview.redd.it/3ppw2udmjr381.png?width=640&crop=smart&auto=webp&s=db3b8d45eb6360c53ef4a59ecd4392e7c7f50e1b","https://preview.redd.it/t3x3uudmjr381.png?width=640&crop=smart&auto=webp&s=d4211f77097b25c77a5dc15db307ec47f7b6695a","https://preview.redd.it/npfnstdmjr381.png?width=640&crop=smart&auto=webp&s=ed45c8a247812b0467830aabf9404016e8368d6a","https://preview.redd.it/f2nlytdmjr381.png?width=640&crop=smart&auto=webp&s=c81ba7e3c85f982c81712f27dc1eb1da763edb93","https://preview.redd.it/u31d7cemjr381.png?width=640&crop=smart&auto=webp&s=6c9d4b8104d3300c7bd749975c31752be08ec9d3","https://preview.redd.it/1wb8w5emjr381.png?width=640&crop=smart&auto=webp&s=e9e2239b45b2a3a8f6898bc386a959e73e7a8177","https://i.redd.it/kd71wpdmjr381.gif"] +images: + [ + "https://i.redd.it/6vrs9lemjr381.gif", + "https://preview.redd.it/sntzwjemjr381.png?width=640&crop=smart&auto=webp&s=ca5d4cb0fcb304bf37e525844b34be909581aea0", + "https://preview.redd.it/8pp441emjr381.png?width=640&crop=smart&auto=webp&s=30c53ff2fff7ac362554e5389237c8b69812b9e5", + "https://preview.redd.it/5s4id3emjr381.png?width=640&crop=smart&auto=webp&s=4ffc5ddf1c42b7cc8afccd4e6567d760785fdba3", + "https://preview.redd.it/addr02emjr381.png?width=640&crop=smart&auto=webp&s=afabbc6e3174a4d2cb995bf39a6311bde53e79a0", + "https://preview.redd.it/s8yy6zdmjr381.png?width=640&crop=smart&auto=webp&s=55d0fd72d7679d8a8e1746f3ecdff18a8dd843ef", + "https://preview.redd.it/7boungemjr381.png?width=640&crop=smart&auto=webp&s=d2807e8e4340eb4904702bd47ce8dc90a48338e5", + "https://preview.redd.it/84x9lydmjr381.png?width=640&crop=smart&auto=webp&s=c2e64fe9f11c2e8d617078415b4b5f4f19909c13", + "https://preview.redd.it/i85zowdmjr381.png?width=640&crop=smart&auto=webp&s=a720575fccaa0d97234101eb8a3feb54bbfb1015", + "https://preview.redd.it/ne64drdmjr381.png?width=640&crop=smart&auto=webp&s=98ca392f6249b3721e2ceb5855225d283d5bab72", + "https://preview.redd.it/4cl9sudmjr381.png?width=640&crop=smart&auto=webp&s=35de31027b7d13c31928eecbd1b1b95705bbe7a1", + "https://preview.redd.it/qya1fydmjr381.png?width=640&crop=smart&auto=webp&s=362ac1eed29761d83c6ca48b7ae63d02727c5ca6", + "https://preview.redd.it/3ppw2udmjr381.png?width=640&crop=smart&auto=webp&s=db3b8d45eb6360c53ef4a59ecd4392e7c7f50e1b", + "https://preview.redd.it/t3x3uudmjr381.png?width=640&crop=smart&auto=webp&s=d4211f77097b25c77a5dc15db307ec47f7b6695a", + "https://preview.redd.it/npfnstdmjr381.png?width=640&crop=smart&auto=webp&s=ed45c8a247812b0467830aabf9404016e8368d6a", + "https://preview.redd.it/f2nlytdmjr381.png?width=640&crop=smart&auto=webp&s=c81ba7e3c85f982c81712f27dc1eb1da763edb93", + "https://preview.redd.it/u31d7cemjr381.png?width=640&crop=smart&auto=webp&s=6c9d4b8104d3300c7bd749975c31752be08ec9d3", + "https://preview.redd.it/1wb8w5emjr381.png?width=640&crop=smart&auto=webp&s=e9e2239b45b2a3a8f6898bc386a959e73e7a8177", + "https://i.redd.it/kd71wpdmjr381.gif", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx b/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx index 9846942..4da8da6 100644 --- a/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx +++ b/src/data/issues/holonews_fr_ver._23.05_-_29.05.mdx @@ -2,6 +2,24 @@ title: "HoloNews FR ver. 23.05 - 29.05" date: "2022-06-01T17:30:28.097000+0000" link: "https://reddit.com/r/HoloNews/comments/v2megg/holonews_fr_ver_2305_2905/" -images: ["https://preview.redd.it/8xlqlojpo1391.png?width=640&crop=smart&auto=webp&s=e31afcdca8a1b900c1ebc7f0a403670cdf5a7efd","https://i.redd.it/pzvaf5kpo1391.gif","https://i.redd.it/zanfu8kpo1391.gif","https://preview.redd.it/zvk90cjpo1391.png?width=640&crop=smart&auto=webp&s=333da5025e8d5cc10a5450dcb7ac05956065b046","https://preview.redd.it/xxddaejpo1391.png?width=640&crop=smart&auto=webp&s=f288f7071e8f600d7a2f34003acab5c17d4d4bbb","https://preview.redd.it/upd17fjpo1391.png?width=640&crop=smart&auto=webp&s=8d7015be1aea1f85aa94be44d19dd6e1a24dcd62","https://preview.redd.it/q40nsfjpo1391.png?width=640&crop=smart&auto=webp&s=5112cc36e236fdce0b735d780d158918501dd936","https://preview.redd.it/w0mqrjjpo1391.png?width=640&crop=smart&auto=webp&s=e516bb2c35e1a009c6c511b7ced5703919d9f7f7","https://preview.redd.it/381pgkjpo1391.png?width=640&crop=smart&auto=webp&s=c9101696f5078360e812c70ab683ac360a0ead5d","https://preview.redd.it/kmsb9njpo1391.png?width=640&crop=smart&auto=webp&s=855eedc12720c13b34af0ddc45a1a25bc017fd85","https://preview.redd.it/mwlahcjpo1391.png?width=640&crop=smart&auto=webp&s=7854b53b0da6c752fadbc469b49d32b30f0f9047","https://preview.redd.it/0zeegdjpo1391.png?width=640&crop=smart&auto=webp&s=b0c5caa6b544e1a71079f157e9dbb0ee1c099c49","https://preview.redd.it/5hp1zdjpo1391.png?width=640&crop=smart&auto=webp&s=949a94884511a142fb5195e25e1a94c52e122df9","https://preview.redd.it/9ddhsmjpo1391.png?width=640&crop=smart&auto=webp&s=7396514cca62dcd35e971303404e245ac9cd727d","https://preview.redd.it/9imzlmjpo1391.png?width=640&crop=smart&auto=webp&s=c503745f8afee437edb0f87719ab25c7aeee0fea","https://preview.redd.it/o9myiojpo1391.png?width=640&crop=smart&auto=webp&s=245213ac1f6627e17d97f5b981649b37802470b6"] +images: + [ + "https://preview.redd.it/8xlqlojpo1391.png?width=640&crop=smart&auto=webp&s=e31afcdca8a1b900c1ebc7f0a403670cdf5a7efd", + "https://i.redd.it/pzvaf5kpo1391.gif", + "https://i.redd.it/zanfu8kpo1391.gif", + "https://preview.redd.it/zvk90cjpo1391.png?width=640&crop=smart&auto=webp&s=333da5025e8d5cc10a5450dcb7ac05956065b046", + "https://preview.redd.it/xxddaejpo1391.png?width=640&crop=smart&auto=webp&s=f288f7071e8f600d7a2f34003acab5c17d4d4bbb", + "https://preview.redd.it/upd17fjpo1391.png?width=640&crop=smart&auto=webp&s=8d7015be1aea1f85aa94be44d19dd6e1a24dcd62", + "https://preview.redd.it/q40nsfjpo1391.png?width=640&crop=smart&auto=webp&s=5112cc36e236fdce0b735d780d158918501dd936", + "https://preview.redd.it/w0mqrjjpo1391.png?width=640&crop=smart&auto=webp&s=e516bb2c35e1a009c6c511b7ced5703919d9f7f7", + "https://preview.redd.it/381pgkjpo1391.png?width=640&crop=smart&auto=webp&s=c9101696f5078360e812c70ab683ac360a0ead5d", + "https://preview.redd.it/kmsb9njpo1391.png?width=640&crop=smart&auto=webp&s=855eedc12720c13b34af0ddc45a1a25bc017fd85", + "https://preview.redd.it/mwlahcjpo1391.png?width=640&crop=smart&auto=webp&s=7854b53b0da6c752fadbc469b49d32b30f0f9047", + "https://preview.redd.it/0zeegdjpo1391.png?width=640&crop=smart&auto=webp&s=b0c5caa6b544e1a71079f157e9dbb0ee1c099c49", + "https://preview.redd.it/5hp1zdjpo1391.png?width=640&crop=smart&auto=webp&s=949a94884511a142fb5195e25e1a94c52e122df9", + "https://preview.redd.it/9ddhsmjpo1391.png?width=640&crop=smart&auto=webp&s=7396514cca62dcd35e971303404e245ac9cd727d", + "https://preview.redd.it/9imzlmjpo1391.png?width=640&crop=smart&auto=webp&s=c503745f8afee437edb0f87719ab25c7aeee0fea", + "https://preview.redd.it/o9myiojpo1391.png?width=640&crop=smart&auto=webp&s=245213ac1f6627e17d97f5b981649b37802470b6", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx b/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx index b80ccf9..8903003 100644 --- a/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx +++ b/src/data/issues/holonews_fr_ver._24.01_-_30.01.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 24.01 - 30.01" date: "2022-02-07T16:35:15.685000+0000" link: "https://reddit.com/r/HoloNews/comments/smuejl/holonews_fr_ver_2401_3001/" -images: ["https://preview.redd.it/6z4vachuufg81.png?width=640&crop=smart&auto=webp&s=1954ac9ee4affe5580b5e00d5d1d013b126ef588","https://i.redd.it/f1fq2thuufg81.gif","https://i.redd.it/8502rshuufg81.gif","https://preview.redd.it/wofetfhuufg81.png?width=640&crop=smart&auto=webp&s=c065e79bfa3137d63b1e391601291ff5ba0dfab7","https://preview.redd.it/ccrn9hhuufg81.png?width=640&crop=smart&auto=webp&s=e2f8f9cd36abd54bba43423c19e8ee502ef4e67e","https://preview.redd.it/zy0gofhuufg81.png?width=640&crop=smart&auto=webp&s=04894b0f0fb97f9104f0dd29c6ec1c289a0edef1","https://preview.redd.it/wzx3dfhuufg81.png?width=640&crop=smart&auto=webp&s=2d338a07aaa22e86a2f184012d76095da8fbde56","https://preview.redd.it/z1wvufhuufg81.png?width=640&crop=smart&auto=webp&s=d5b79d6963dc86f035204c662c447416d016e3c7","https://preview.redd.it/3qkztghuufg81.png?width=640&crop=smart&auto=webp&s=f183c6227bb1d49ec6ad660c66a870201ae15c6e","https://preview.redd.it/ou4ruhhuufg81.png?width=640&crop=smart&auto=webp&s=52fcc5bf74610890a659866ff94a3078014f34a3","https://preview.redd.it/fdc3qqhuufg81.png?width=640&crop=smart&auto=webp&s=a8be1a0716b94679a8107c4d790027ef07575ec4","https://preview.redd.it/100fakhuufg81.png?width=640&crop=smart&auto=webp&s=102da2e12fc5bd839f2b4c49c92ac3be106b1de6","https://preview.redd.it/tnixxkhuufg81.png?width=640&crop=smart&auto=webp&s=3771c0343b835848cdfd5426dd1067ecf648c89b","https://preview.redd.it/8oh3ekhuufg81.png?width=640&crop=smart&auto=webp&s=aa7f515665811a0b47ed99a3b689b98022ca8b69","https://preview.redd.it/0mowfkhuufg81.png?width=640&crop=smart&auto=webp&s=28ee6fac29fab7f9fe05b5d58198eeccc91e58c8","https://preview.redd.it/4o5dvkhuufg81.png?width=640&crop=smart&auto=webp&s=ef3cd1298806fc3e1389041c0e0aedf622188332","https://preview.redd.it/4874bvhuufg81.png?width=640&crop=smart&auto=webp&s=1b17359cc38db40e12e3b9cf954edf8abaa7979f","https://preview.redd.it/a1a13nhuufg81.png?width=640&crop=smart&auto=webp&s=39b99492d574a9f3ffbc49e35eb60505f851f878","https://preview.redd.it/b3y7abhuufg81.png?width=640&crop=smart&auto=webp&s=64f8e37dfe913d1d18fb7bce061141e8f3f1cb24","https://preview.redd.it/0jefs2huufg81.png?width=640&crop=smart&auto=webp&s=c534950ccd162ac4a93a402c0815a7a64ea797ca"] +images: + [ + "https://preview.redd.it/6z4vachuufg81.png?width=640&crop=smart&auto=webp&s=1954ac9ee4affe5580b5e00d5d1d013b126ef588", + "https://i.redd.it/f1fq2thuufg81.gif", + "https://i.redd.it/8502rshuufg81.gif", + "https://preview.redd.it/wofetfhuufg81.png?width=640&crop=smart&auto=webp&s=c065e79bfa3137d63b1e391601291ff5ba0dfab7", + "https://preview.redd.it/ccrn9hhuufg81.png?width=640&crop=smart&auto=webp&s=e2f8f9cd36abd54bba43423c19e8ee502ef4e67e", + "https://preview.redd.it/zy0gofhuufg81.png?width=640&crop=smart&auto=webp&s=04894b0f0fb97f9104f0dd29c6ec1c289a0edef1", + "https://preview.redd.it/wzx3dfhuufg81.png?width=640&crop=smart&auto=webp&s=2d338a07aaa22e86a2f184012d76095da8fbde56", + "https://preview.redd.it/z1wvufhuufg81.png?width=640&crop=smart&auto=webp&s=d5b79d6963dc86f035204c662c447416d016e3c7", + "https://preview.redd.it/3qkztghuufg81.png?width=640&crop=smart&auto=webp&s=f183c6227bb1d49ec6ad660c66a870201ae15c6e", + "https://preview.redd.it/ou4ruhhuufg81.png?width=640&crop=smart&auto=webp&s=52fcc5bf74610890a659866ff94a3078014f34a3", + "https://preview.redd.it/fdc3qqhuufg81.png?width=640&crop=smart&auto=webp&s=a8be1a0716b94679a8107c4d790027ef07575ec4", + "https://preview.redd.it/100fakhuufg81.png?width=640&crop=smart&auto=webp&s=102da2e12fc5bd839f2b4c49c92ac3be106b1de6", + "https://preview.redd.it/tnixxkhuufg81.png?width=640&crop=smart&auto=webp&s=3771c0343b835848cdfd5426dd1067ecf648c89b", + "https://preview.redd.it/8oh3ekhuufg81.png?width=640&crop=smart&auto=webp&s=aa7f515665811a0b47ed99a3b689b98022ca8b69", + "https://preview.redd.it/0mowfkhuufg81.png?width=640&crop=smart&auto=webp&s=28ee6fac29fab7f9fe05b5d58198eeccc91e58c8", + "https://preview.redd.it/4o5dvkhuufg81.png?width=640&crop=smart&auto=webp&s=ef3cd1298806fc3e1389041c0e0aedf622188332", + "https://preview.redd.it/4874bvhuufg81.png?width=640&crop=smart&auto=webp&s=1b17359cc38db40e12e3b9cf954edf8abaa7979f", + "https://preview.redd.it/a1a13nhuufg81.png?width=640&crop=smart&auto=webp&s=39b99492d574a9f3ffbc49e35eb60505f851f878", + "https://preview.redd.it/b3y7abhuufg81.png?width=640&crop=smart&auto=webp&s=64f8e37dfe913d1d18fb7bce061141e8f3f1cb24", + "https://preview.redd.it/0jefs2huufg81.png?width=640&crop=smart&auto=webp&s=c534950ccd162ac4a93a402c0815a7a64ea797ca", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx b/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx index e6a227f..de612a5 100644 --- a/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx +++ b/src/data/issues/holonews_fr_ver._25.07_-_31.07.mdx @@ -2,6 +2,27 @@ title: "HoloNews FR Ver. 25.07 - 31.07" date: "2022-08-08T15:40:28.892000+0000" link: "https://reddit.com/r/HoloNews/comments/wjc0f8/holonews_fr_ver_2507_3107/" -images: ["https://preview.redd.it/1coo2kg4fig91.png?width=640&crop=smart&auto=webp&s=01af945c1647b78bf734eb990c38d53cfd193396","https://i.redd.it/grl0ilg4fig91.gif","https://i.redd.it/1k1ddfh4fig91.gif","https://i.redd.it/6p089nh4fig91.gif","https://i.redd.it/ghl4ofh4fig91.gif","https://preview.redd.it/7dsfemg4fig91.png?width=640&crop=smart&auto=webp&s=bfdca631997dd8746e304b0147a4f2a4d1197ff1","https://preview.redd.it/dqxpzng4fig91.png?width=640&crop=smart&auto=webp&s=457bfbe862d844a01f0a0789c8ae6b06b150f5d2","https://preview.redd.it/hci7log4fig91.png?width=640&crop=smart&auto=webp&s=5214684021ba1dd623f7b29ac8226ff2abc3b108","https://preview.redd.it/zwe0eqg4fig91.png?width=640&crop=smart&auto=webp&s=3746e94a164c594924eba3d5c1c0b78ba8d5db71","https://preview.redd.it/oe0g9rg4fig91.png?width=640&crop=smart&auto=webp&s=550cae72600f23450d471c4fbd5b10a28d2f5e73","https://preview.redd.it/dlffwig4fig91.png?width=640&crop=smart&auto=webp&s=8325e9b0227567cc088c456016da2159b5963d55","https://preview.redd.it/w6k76rg4fig91.png?width=640&crop=smart&auto=webp&s=7809f9b148fa3ec98d97739f32473d26e54ad4e1","https://preview.redd.it/lphuwhg4fig91.png?width=640&crop=smart&auto=webp&s=c2fa37b054b6076b6b3c6dbb3ab71d24859816cf","https://preview.redd.it/f4u7iug4fig91.png?width=640&crop=smart&auto=webp&s=8f7b251ffe6c97c3fe77d8d4803ea51b3b5e88cd","https://preview.redd.it/1sb36tg4fig91.png?width=640&crop=smart&auto=webp&s=a65464a0d9117876f6a1a79313933b16d4f9563e","https://preview.redd.it/817aptg4fig91.png?width=640&crop=smart&auto=webp&s=75f61c243ccaa4dc4abd73dee24ba833a2dfed56","https://preview.redd.it/mbsueug4fig91.png?width=640&crop=smart&auto=webp&s=ad74c31bedb17320c414bae138b565d12386c46e","https://preview.redd.it/ta1ztxg4fig91.png?width=640&crop=smart&auto=webp&s=f2ef0d193b68e9ccb25bdf2e61c0313e20596b69","https://preview.redd.it/kva7dyg4fig91.png?width=640&crop=smart&auto=webp&s=1fb88631f627ce7185331f0b045bdd231ccba3ad"] +images: + [ + "https://preview.redd.it/1coo2kg4fig91.png?width=640&crop=smart&auto=webp&s=01af945c1647b78bf734eb990c38d53cfd193396", + "https://i.redd.it/grl0ilg4fig91.gif", + "https://i.redd.it/1k1ddfh4fig91.gif", + "https://i.redd.it/6p089nh4fig91.gif", + "https://i.redd.it/ghl4ofh4fig91.gif", + "https://preview.redd.it/7dsfemg4fig91.png?width=640&crop=smart&auto=webp&s=bfdca631997dd8746e304b0147a4f2a4d1197ff1", + "https://preview.redd.it/dqxpzng4fig91.png?width=640&crop=smart&auto=webp&s=457bfbe862d844a01f0a0789c8ae6b06b150f5d2", + "https://preview.redd.it/hci7log4fig91.png?width=640&crop=smart&auto=webp&s=5214684021ba1dd623f7b29ac8226ff2abc3b108", + "https://preview.redd.it/zwe0eqg4fig91.png?width=640&crop=smart&auto=webp&s=3746e94a164c594924eba3d5c1c0b78ba8d5db71", + "https://preview.redd.it/oe0g9rg4fig91.png?width=640&crop=smart&auto=webp&s=550cae72600f23450d471c4fbd5b10a28d2f5e73", + "https://preview.redd.it/dlffwig4fig91.png?width=640&crop=smart&auto=webp&s=8325e9b0227567cc088c456016da2159b5963d55", + "https://preview.redd.it/w6k76rg4fig91.png?width=640&crop=smart&auto=webp&s=7809f9b148fa3ec98d97739f32473d26e54ad4e1", + "https://preview.redd.it/lphuwhg4fig91.png?width=640&crop=smart&auto=webp&s=c2fa37b054b6076b6b3c6dbb3ab71d24859816cf", + "https://preview.redd.it/f4u7iug4fig91.png?width=640&crop=smart&auto=webp&s=8f7b251ffe6c97c3fe77d8d4803ea51b3b5e88cd", + "https://preview.redd.it/1sb36tg4fig91.png?width=640&crop=smart&auto=webp&s=a65464a0d9117876f6a1a79313933b16d4f9563e", + "https://preview.redd.it/817aptg4fig91.png?width=640&crop=smart&auto=webp&s=75f61c243ccaa4dc4abd73dee24ba833a2dfed56", + "https://preview.redd.it/mbsueug4fig91.png?width=640&crop=smart&auto=webp&s=ad74c31bedb17320c414bae138b565d12386c46e", + "https://preview.redd.it/ta1ztxg4fig91.png?width=640&crop=smart&auto=webp&s=f2ef0d193b68e9ccb25bdf2e61c0313e20596b69", + "https://preview.redd.it/kva7dyg4fig91.png?width=640&crop=smart&auto=webp&s=1fb88631f627ce7185331f0b045bdd231ccba3ad", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx b/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx index a16e6a6..e83de5a 100644 --- a/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx +++ b/src/data/issues/holonews_fr_ver._27.06_-_03.07.mdx @@ -2,6 +2,26 @@ title: "HoloNews FR ver. 27.06 - 03.07" date: "2022-07-14T16:07:14.151000+0000" link: "https://reddit.com/r/HoloNews/comments/vyzi9z/holonews_fr_ver_2706_0307/" -images: ["https://preview.redd.it/lzth3o635kb91.png?width=640&crop=smart&auto=webp&s=b1cc026041e5094a596616ad57812188ba7fed69","https://i.redd.it/zfx073835kb91.gif","https://i.redd.it/idjmrq835kb91.gif","https://i.redd.it/j4omtq835kb91.gif","https://preview.redd.it/mq7aco635kb91.png?width=640&crop=smart&auto=webp&s=ab5813261eab344d55b14136efcac7009b164192","https://preview.redd.it/exo5mb635kb91.png?width=640&crop=smart&auto=webp&s=2580cf6158318b9ab8fb6280e45cc41a3a1765cf","https://preview.redd.it/q1yelp635kb91.png?width=640&crop=smart&auto=webp&s=5f9d064558ab8d88ec56f21b1663a30d7fbbdda6","https://preview.redd.it/fof5pb635kb91.png?width=640&crop=smart&auto=webp&s=c121b55a5356a850e9ebebbe5a3da76575f0748a","https://preview.redd.it/4w71ks635kb91.png?width=640&crop=smart&auto=webp&s=c9c08ebfb0916bb8f13585ee6a68d80c8b704222","https://preview.redd.it/5ebsws635kb91.png?width=640&crop=smart&auto=webp&s=6b96b2a6e2960776b6b6a38b4a8fb6ceaef9ce39","https://preview.redd.it/kicl5b635kb91.png?width=640&crop=smart&auto=webp&s=6ba2bd2694007fd615c6c6f75e3d1c432b7ffb07","https://preview.redd.it/xoe62h635kb91.png?width=640&crop=smart&auto=webp&s=8704ac47a5cc09b2f1170e708d5f20121daceb60","https://preview.redd.it/gfy0du635kb91.png?width=640&crop=smart&auto=webp&s=50dfc59a898e1c0d30004e22973d94937adc929a","https://preview.redd.it/leqsbu635kb91.png?width=640&crop=smart&auto=webp&s=7ce930965562b3b75d3b67e8cc3a15d1ea519524","https://preview.redd.it/zcz347735kb91.png?width=640&crop=smart&auto=webp&s=7e352bcf23dd084f7cb0553bca31af306f6e5bc2","https://preview.redd.it/7840zv635kb91.png?width=640&crop=smart&auto=webp&s=b27fe020fb27e9225b380283cf76be025c1d0bb5","https://preview.redd.it/tm45wx635kb91.png?width=640&crop=smart&auto=webp&s=f82d5b0d733aef8b8dab3a44ed4e0a93cc7de2d8","https://preview.redd.it/8v8hoy635kb91.png?width=640&crop=smart&auto=webp&s=04c02aadb85ecd2c1c8953412cbcc06da52a3558"] +images: + [ + "https://preview.redd.it/lzth3o635kb91.png?width=640&crop=smart&auto=webp&s=b1cc026041e5094a596616ad57812188ba7fed69", + "https://i.redd.it/zfx073835kb91.gif", + "https://i.redd.it/idjmrq835kb91.gif", + "https://i.redd.it/j4omtq835kb91.gif", + "https://preview.redd.it/mq7aco635kb91.png?width=640&crop=smart&auto=webp&s=ab5813261eab344d55b14136efcac7009b164192", + "https://preview.redd.it/exo5mb635kb91.png?width=640&crop=smart&auto=webp&s=2580cf6158318b9ab8fb6280e45cc41a3a1765cf", + "https://preview.redd.it/q1yelp635kb91.png?width=640&crop=smart&auto=webp&s=5f9d064558ab8d88ec56f21b1663a30d7fbbdda6", + "https://preview.redd.it/fof5pb635kb91.png?width=640&crop=smart&auto=webp&s=c121b55a5356a850e9ebebbe5a3da76575f0748a", + "https://preview.redd.it/4w71ks635kb91.png?width=640&crop=smart&auto=webp&s=c9c08ebfb0916bb8f13585ee6a68d80c8b704222", + "https://preview.redd.it/5ebsws635kb91.png?width=640&crop=smart&auto=webp&s=6b96b2a6e2960776b6b6a38b4a8fb6ceaef9ce39", + "https://preview.redd.it/kicl5b635kb91.png?width=640&crop=smart&auto=webp&s=6ba2bd2694007fd615c6c6f75e3d1c432b7ffb07", + "https://preview.redd.it/xoe62h635kb91.png?width=640&crop=smart&auto=webp&s=8704ac47a5cc09b2f1170e708d5f20121daceb60", + "https://preview.redd.it/gfy0du635kb91.png?width=640&crop=smart&auto=webp&s=50dfc59a898e1c0d30004e22973d94937adc929a", + "https://preview.redd.it/leqsbu635kb91.png?width=640&crop=smart&auto=webp&s=7ce930965562b3b75d3b67e8cc3a15d1ea519524", + "https://preview.redd.it/zcz347735kb91.png?width=640&crop=smart&auto=webp&s=7e352bcf23dd084f7cb0553bca31af306f6e5bc2", + "https://preview.redd.it/7840zv635kb91.png?width=640&crop=smart&auto=webp&s=b27fe020fb27e9225b380283cf76be025c1d0bb5", + "https://preview.redd.it/tm45wx635kb91.png?width=640&crop=smart&auto=webp&s=f82d5b0d733aef8b8dab3a44ed4e0a93cc7de2d8", + "https://preview.redd.it/8v8hoy635kb91.png?width=640&crop=smart&auto=webp&s=04c02aadb85ecd2c1c8953412cbcc06da52a3558", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx b/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx index 8cd1735..c08fd07 100644 --- a/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx +++ b/src/data/issues/holonews_fr_ver._28.02_-_06.03.mdx @@ -2,6 +2,26 @@ title: "HoloNews FR ver. 28.02 - 06.03" date: "2022-03-14T15:30:18.900000+0000" link: "https://reddit.com/r/HoloNews/comments/te03uf/holonews_fr_ver_2802_0603/" -images: ["https://preview.redd.it/23q6kht6bdn81.png?width=640&crop=smart&auto=webp&s=8cca50e411d708de56fd2895a9e2b31b1b115816","https://i.redd.it/z2qk4bu6bdn81.gif","https://i.redd.it/g1m45it6bdn81.gif","https://preview.redd.it/l54eomt6bdn81.png?width=640&crop=smart&auto=webp&s=cec6f31ee6af44760ac312216d5b8f1e9c529c48","https://preview.redd.it/9gug2nt6bdn81.png?width=640&crop=smart&auto=webp&s=6153102f0ffd6c25c9f88706f85708d3abeed99f","https://preview.redd.it/s6b0gnt6bdn81.png?width=640&crop=smart&auto=webp&s=c4215e9899b3cac04450101beceafb5b7c3205a0","https://preview.redd.it/57dvdet6bdn81.png?width=640&crop=smart&auto=webp&s=8f6ba4ffb9be56ca96576f70abaa8a1ac95a74e2","https://preview.redd.it/yrs4rbt6bdn81.png?width=640&crop=smart&auto=webp&s=a9dadc3f297d3a5ea7548631bae75bf01c2a4819","https://preview.redd.it/no8whnt6bdn81.png?width=640&crop=smart&auto=webp&s=af832bda289bd0351e9c8074c50772481ed6a098","https://preview.redd.it/uaeq8ot6bdn81.png?width=640&crop=smart&auto=webp&s=aa4558a8b8a05c56b960dca69a848af37fbb303a","https://preview.redd.it/c9r3kpt6bdn81.png?width=640&crop=smart&auto=webp&s=a66ad0f02dd5f84919daadc5068bb47f90273b5e","https://preview.redd.it/3c8hqpt6bdn81.png?width=640&crop=smart&auto=webp&s=fac1f0b5e6754d375906a0c4b666c2a1a127d79e","https://preview.redd.it/onkx9st6bdn81.png?width=640&crop=smart&auto=webp&s=2cbcbcb5bb8757cf1f36e4597681e9f8aed9ca51","https://preview.redd.it/odrpuqt6bdn81.png?width=640&crop=smart&auto=webp&s=a1432657350fb5629a1d4c3e48f11f5e3beda6a6","https://preview.redd.it/dtit2tt6bdn81.png?width=640&crop=smart&auto=webp&s=3107e232d1ffdd085b9d4043f25dc84a4fb4334b","https://preview.redd.it/j33dbst6bdn81.png?width=640&crop=smart&auto=webp&s=f21134e369a0e29bb8b796eaf464b8958fc1224c","https://preview.redd.it/zmf24vt6bdn81.png?width=640&crop=smart&auto=webp&s=6cc8dd70e97506f198b1ad83c0892a31a5346dc5","https://preview.redd.it/uipk4ut6bdn81.png?width=640&crop=smart&auto=webp&s=01a780e5395e00c93052d75991cf54fe71168c19"] +images: + [ + "https://preview.redd.it/23q6kht6bdn81.png?width=640&crop=smart&auto=webp&s=8cca50e411d708de56fd2895a9e2b31b1b115816", + "https://i.redd.it/z2qk4bu6bdn81.gif", + "https://i.redd.it/g1m45it6bdn81.gif", + "https://preview.redd.it/l54eomt6bdn81.png?width=640&crop=smart&auto=webp&s=cec6f31ee6af44760ac312216d5b8f1e9c529c48", + "https://preview.redd.it/9gug2nt6bdn81.png?width=640&crop=smart&auto=webp&s=6153102f0ffd6c25c9f88706f85708d3abeed99f", + "https://preview.redd.it/s6b0gnt6bdn81.png?width=640&crop=smart&auto=webp&s=c4215e9899b3cac04450101beceafb5b7c3205a0", + "https://preview.redd.it/57dvdet6bdn81.png?width=640&crop=smart&auto=webp&s=8f6ba4ffb9be56ca96576f70abaa8a1ac95a74e2", + "https://preview.redd.it/yrs4rbt6bdn81.png?width=640&crop=smart&auto=webp&s=a9dadc3f297d3a5ea7548631bae75bf01c2a4819", + "https://preview.redd.it/no8whnt6bdn81.png?width=640&crop=smart&auto=webp&s=af832bda289bd0351e9c8074c50772481ed6a098", + "https://preview.redd.it/uaeq8ot6bdn81.png?width=640&crop=smart&auto=webp&s=aa4558a8b8a05c56b960dca69a848af37fbb303a", + "https://preview.redd.it/c9r3kpt6bdn81.png?width=640&crop=smart&auto=webp&s=a66ad0f02dd5f84919daadc5068bb47f90273b5e", + "https://preview.redd.it/3c8hqpt6bdn81.png?width=640&crop=smart&auto=webp&s=fac1f0b5e6754d375906a0c4b666c2a1a127d79e", + "https://preview.redd.it/onkx9st6bdn81.png?width=640&crop=smart&auto=webp&s=2cbcbcb5bb8757cf1f36e4597681e9f8aed9ca51", + "https://preview.redd.it/odrpuqt6bdn81.png?width=640&crop=smart&auto=webp&s=a1432657350fb5629a1d4c3e48f11f5e3beda6a6", + "https://preview.redd.it/dtit2tt6bdn81.png?width=640&crop=smart&auto=webp&s=3107e232d1ffdd085b9d4043f25dc84a4fb4334b", + "https://preview.redd.it/j33dbst6bdn81.png?width=640&crop=smart&auto=webp&s=f21134e369a0e29bb8b796eaf464b8958fc1224c", + "https://preview.redd.it/zmf24vt6bdn81.png?width=640&crop=smart&auto=webp&s=6cc8dd70e97506f198b1ad83c0892a31a5346dc5", + "https://preview.redd.it/uipk4ut6bdn81.png?width=640&crop=smart&auto=webp&s=01a780e5395e00c93052d75991cf54fe71168c19", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx b/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx index 95f1385..dac8e3c 100644 --- a/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx +++ b/src/data/issues/holonews_fr_ver._28.03._-_03.04..mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 28.03. - 03.04." date: "2022-04-11T14:09:32.843000+0000" link: "https://reddit.com/r/HoloNews/comments/u18n0z/holonews_fr_ver_2803_0304/" -images: ["https://preview.redd.it/np4jtys6qws81.png?width=640&crop=smart&auto=webp&s=9ecf4b2076d7bc3d6a75fe25f63a6e82ba1b354c","https://i.redd.it/2e2l5au6qws81.gif","https://i.redd.it/s31dcdu6qws81.gif","https://i.redd.it/8yufcbu6qws81.gif","https://preview.redd.it/yxqpv5t6qws81.png?width=640&crop=smart&auto=webp&s=eb60e57ccf2ba2efc2e0b91cb9527a282998e3e1","https://preview.redd.it/eysp99t6qws81.png?width=640&crop=smart&auto=webp&s=96a52f3e2d0f0c2724299e2228712c386cfb98f9","https://preview.redd.it/b3tt71t6qws81.png?width=640&crop=smart&auto=webp&s=e45e7074f6cbdd48bc5c71630e41459906ec883c","https://preview.redd.it/w07ty7t6qws81.png?width=640&crop=smart&auto=webp&s=aa425aa4a1446e1041b8a2519961698080063768","https://preview.redd.it/c7y0lat6qws81.png?width=640&crop=smart&auto=webp&s=1b3edd5381bb4c8884de3dd5030a15e24ff1d469","https://i.redd.it/r0t33dt6qws81.gif","https://preview.redd.it/qohnw3t6qws81.png?width=640&crop=smart&auto=webp&s=2fe000cb9a81ba7c82f56ca73771f87d0b372e55","https://preview.redd.it/e5qky9t6qws81.png?width=640&crop=smart&auto=webp&s=6b3283816f2e7f0431eba93a6b5ec184ba2839b3","https://preview.redd.it/b7ucr7t6qws81.png?width=640&crop=smart&auto=webp&s=75fc8d2b1df0c5c6c14b78e3511f5a35c39ee6a6","https://preview.redd.it/wipg43t6qws81.png?width=640&crop=smart&auto=webp&s=bd655f41b3051d51d3d1a3b51548e9244ab44b68","https://preview.redd.it/4ne2vvs6qws81.png?width=640&crop=smart&auto=webp&s=e057bc06f61fa213e05a37debcf2d905d95991d7","https://preview.redd.it/d8wrk3t6qws81.png?width=640&crop=smart&auto=webp&s=fd9d0823a6e30de0aae089698324a5d55f1b22ba","https://preview.redd.it/4oiv8ys6qws81.png?width=640&crop=smart&auto=webp&s=1e3d18be7b5f9a9653d5b9e68d041b9bf64f8cbc","https://preview.redd.it/wmzc4at6qws81.png?width=640&crop=smart&auto=webp&s=2548a2d31b260d7d6aaa05233812db53d0da5e46","https://preview.redd.it/w3lnk4t6qws81.png?width=640&crop=smart&auto=webp&s=aacdd5b044165ee8b79a45868bda760016cac6d8","https://preview.redd.it/ytwwazs6qws81.png?width=640&crop=smart&auto=webp&s=2bef6b974c0ef284302da40ede3f36faf6cc37c6"] +images: + [ + "https://preview.redd.it/np4jtys6qws81.png?width=640&crop=smart&auto=webp&s=9ecf4b2076d7bc3d6a75fe25f63a6e82ba1b354c", + "https://i.redd.it/2e2l5au6qws81.gif", + "https://i.redd.it/s31dcdu6qws81.gif", + "https://i.redd.it/8yufcbu6qws81.gif", + "https://preview.redd.it/yxqpv5t6qws81.png?width=640&crop=smart&auto=webp&s=eb60e57ccf2ba2efc2e0b91cb9527a282998e3e1", + "https://preview.redd.it/eysp99t6qws81.png?width=640&crop=smart&auto=webp&s=96a52f3e2d0f0c2724299e2228712c386cfb98f9", + "https://preview.redd.it/b3tt71t6qws81.png?width=640&crop=smart&auto=webp&s=e45e7074f6cbdd48bc5c71630e41459906ec883c", + "https://preview.redd.it/w07ty7t6qws81.png?width=640&crop=smart&auto=webp&s=aa425aa4a1446e1041b8a2519961698080063768", + "https://preview.redd.it/c7y0lat6qws81.png?width=640&crop=smart&auto=webp&s=1b3edd5381bb4c8884de3dd5030a15e24ff1d469", + "https://i.redd.it/r0t33dt6qws81.gif", + "https://preview.redd.it/qohnw3t6qws81.png?width=640&crop=smart&auto=webp&s=2fe000cb9a81ba7c82f56ca73771f87d0b372e55", + "https://preview.redd.it/e5qky9t6qws81.png?width=640&crop=smart&auto=webp&s=6b3283816f2e7f0431eba93a6b5ec184ba2839b3", + "https://preview.redd.it/b7ucr7t6qws81.png?width=640&crop=smart&auto=webp&s=75fc8d2b1df0c5c6c14b78e3511f5a35c39ee6a6", + "https://preview.redd.it/wipg43t6qws81.png?width=640&crop=smart&auto=webp&s=bd655f41b3051d51d3d1a3b51548e9244ab44b68", + "https://preview.redd.it/4ne2vvs6qws81.png?width=640&crop=smart&auto=webp&s=e057bc06f61fa213e05a37debcf2d905d95991d7", + "https://preview.redd.it/d8wrk3t6qws81.png?width=640&crop=smart&auto=webp&s=fd9d0823a6e30de0aae089698324a5d55f1b22ba", + "https://preview.redd.it/4oiv8ys6qws81.png?width=640&crop=smart&auto=webp&s=1e3d18be7b5f9a9653d5b9e68d041b9bf64f8cbc", + "https://preview.redd.it/wmzc4at6qws81.png?width=640&crop=smart&auto=webp&s=2548a2d31b260d7d6aaa05233812db53d0da5e46", + "https://preview.redd.it/w3lnk4t6qws81.png?width=640&crop=smart&auto=webp&s=aacdd5b044165ee8b79a45868bda760016cac6d8", + "https://preview.redd.it/ytwwazs6qws81.png?width=640&crop=smart&auto=webp&s=2bef6b974c0ef284302da40ede3f36faf6cc37c6", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx b/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx index 667ec62..3776884 100644 --- a/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx +++ b/src/data/issues/holonews_fr_ver._29.08._-_04.09..mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 29.08. - 04.09." date: "2022-09-14T01:38:02.461000+0000" link: "https://reddit.com/r/HoloNews/comments/xdovzu/holonews_fr_ver_2908_0409/" -images: ["https://preview.redd.it/cgmzilkiaqn91.png?width=640&crop=smart&auto=webp&s=97bc92a9b6ac93a397ac9057708425d25e5085a0","https://i.redd.it/w1zt85oiaqn91.gif","https://i.redd.it/y2k6rn1jaqn91.gif","https://preview.redd.it/vporqo8jaqn91.png?width=640&crop=smart&auto=webp&s=6b0b74332f20f3be68725f1c8e2e13e105e75fdb","https://i.redd.it/whfafsbjaqn91.gif","https://i.redd.it/rtwizwhjaqn91.gif","https://preview.redd.it/phir6wkjaqn91.png?width=640&crop=smart&auto=webp&s=3674ce302821494539a684b245d1e383044f93cc","https://preview.redd.it/71npw1ojaqn91.png?width=640&crop=smart&auto=webp&s=d7eb7df7757f71cd42c755b80a1d7d7ec59eb213","https://preview.redd.it/v2ax75rjaqn91.png?width=640&crop=smart&auto=webp&s=113b2558781da9b15b119ab4be42776b6987e4e6","https://preview.redd.it/bqtatjujaqn91.png?width=640&crop=smart&auto=webp&s=a8c032e3aa195c418deb1d9b7ae8c0b7542124b7","https://preview.redd.it/9rcfpbxjaqn91.png?width=640&crop=smart&auto=webp&s=aea0a0507e1108ac619404984e3b58312be2c546","https://preview.redd.it/w763jdzjaqn91.png?width=640&crop=smart&auto=webp&s=9ad6eb52599382b0a1b2242345920ef0a88d0f0f","https://preview.redd.it/yp52ri2kaqn91.png?width=640&crop=smart&auto=webp&s=75f011842465ae2708265a7642f9256e6db2ac81","https://preview.redd.it/ygevsr6kaqn91.png?width=640&crop=smart&auto=webp&s=8064f91ccf953ec5fb45ba18041fe662863a4aef","https://preview.redd.it/8t26mh9kaqn91.png?width=640&crop=smart&auto=webp&s=c51e5eba1eacf90f1224f3465e63212515070728","https://preview.redd.it/1l9el6ckaqn91.png?width=640&crop=smart&auto=webp&s=a27affd0768a26c0dce4155c13de3b5bd2a7f971","https://preview.redd.it/568mfgfkaqn91.png?width=640&crop=smart&auto=webp&s=40ce6f964c164e7388df55dc40d7e8402cdea3cc","https://preview.redd.it/jp7n1whkaqn91.png?width=640&crop=smart&auto=webp&s=7153c5630a7c26422758f1954238bf056106169e","https://preview.redd.it/h9aba3lkaqn91.png?width=640&crop=smart&auto=webp&s=bf32019e4ff152df906524b5defb21ccdb9f66bf","https://preview.redd.it/lcf2saokaqn91.png?width=640&crop=smart&auto=webp&s=ffbe518fcd6880de3cb49b99b024056d67995538"] +images: + [ + "https://preview.redd.it/cgmzilkiaqn91.png?width=640&crop=smart&auto=webp&s=97bc92a9b6ac93a397ac9057708425d25e5085a0", + "https://i.redd.it/w1zt85oiaqn91.gif", + "https://i.redd.it/y2k6rn1jaqn91.gif", + "https://preview.redd.it/vporqo8jaqn91.png?width=640&crop=smart&auto=webp&s=6b0b74332f20f3be68725f1c8e2e13e105e75fdb", + "https://i.redd.it/whfafsbjaqn91.gif", + "https://i.redd.it/rtwizwhjaqn91.gif", + "https://preview.redd.it/phir6wkjaqn91.png?width=640&crop=smart&auto=webp&s=3674ce302821494539a684b245d1e383044f93cc", + "https://preview.redd.it/71npw1ojaqn91.png?width=640&crop=smart&auto=webp&s=d7eb7df7757f71cd42c755b80a1d7d7ec59eb213", + "https://preview.redd.it/v2ax75rjaqn91.png?width=640&crop=smart&auto=webp&s=113b2558781da9b15b119ab4be42776b6987e4e6", + "https://preview.redd.it/bqtatjujaqn91.png?width=640&crop=smart&auto=webp&s=a8c032e3aa195c418deb1d9b7ae8c0b7542124b7", + "https://preview.redd.it/9rcfpbxjaqn91.png?width=640&crop=smart&auto=webp&s=aea0a0507e1108ac619404984e3b58312be2c546", + "https://preview.redd.it/w763jdzjaqn91.png?width=640&crop=smart&auto=webp&s=9ad6eb52599382b0a1b2242345920ef0a88d0f0f", + "https://preview.redd.it/yp52ri2kaqn91.png?width=640&crop=smart&auto=webp&s=75f011842465ae2708265a7642f9256e6db2ac81", + "https://preview.redd.it/ygevsr6kaqn91.png?width=640&crop=smart&auto=webp&s=8064f91ccf953ec5fb45ba18041fe662863a4aef", + "https://preview.redd.it/8t26mh9kaqn91.png?width=640&crop=smart&auto=webp&s=c51e5eba1eacf90f1224f3465e63212515070728", + "https://preview.redd.it/1l9el6ckaqn91.png?width=640&crop=smart&auto=webp&s=a27affd0768a26c0dce4155c13de3b5bd2a7f971", + "https://preview.redd.it/568mfgfkaqn91.png?width=640&crop=smart&auto=webp&s=40ce6f964c164e7388df55dc40d7e8402cdea3cc", + "https://preview.redd.it/jp7n1whkaqn91.png?width=640&crop=smart&auto=webp&s=7153c5630a7c26422758f1954238bf056106169e", + "https://preview.redd.it/h9aba3lkaqn91.png?width=640&crop=smart&auto=webp&s=bf32019e4ff152df906524b5defb21ccdb9f66bf", + "https://preview.redd.it/lcf2saokaqn91.png?width=640&crop=smart&auto=webp&s=ffbe518fcd6880de3cb49b99b024056d67995538", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx b/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx index 5258420..ad59bf8 100644 --- a/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx +++ b/src/data/issues/holonews_fr_ver._29.11_-_05.12.mdx @@ -2,6 +2,28 @@ title: "HoloNews FR ver. 29.11 - 05.12" date: "2021-12-15T16:46:51.709000+0000" link: "https://reddit.com/r/HoloNews/comments/rh3dzi/holonews_fr_ver_2911_0512/" -images: ["https://preview.redd.it/qfiuoa7rjq581.png?width=640&crop=smart&auto=webp&s=128b029bb95e4ca22e863e2775cba3e0fa38b80e","https://i.redd.it/8wdgeh7rjq581.gif","https://preview.redd.it/729cdb7rjq581.png?width=640&crop=smart&auto=webp&s=2db0a22eecc35a12cfdba2b7958c13cb50d7ac09","https://i.redd.it/y903pm7rjq581.gif","https://preview.redd.it/cmn54b7rjq581.png?width=640&crop=smart&auto=webp&s=ff1650e13f9f5fc0eb8cc04d2123887966083bce","https://preview.redd.it/8h12qa7rjq581.png?width=640&crop=smart&auto=webp&s=187f821ea2f6b4457f2a3522a365ac0dd673c7f1","https://preview.redd.it/ywcsfm7rjq581.png?width=640&crop=smart&auto=webp&s=bda3c1af1f4949dac5656d1e2cccb92e8508773b","https://preview.redd.it/9940wb7rjq581.png?width=640&crop=smart&auto=webp&s=b5100203a8255c4b833739897eee95da7f98fc7d","https://preview.redd.it/us6flb7rjq581.png?width=640&crop=smart&auto=webp&s=407fd1b65ff8f0cf7f232135b4af1f67f1fc7586","https://preview.redd.it/2ndrif7rjq581.png?width=640&crop=smart&auto=webp&s=57fad8843db201b0fdcb51433f4e21c3ab406d20","https://preview.redd.it/jz095e7rjq581.png?width=640&crop=smart&auto=webp&s=853684040d70aef17b382ffbe6838ac19ecbb79b","https://preview.redd.it/eroq6e7rjq581.png?width=640&crop=smart&auto=webp&s=fc1760af75c0c0cfc3e3a35235bad5e3fda22090","https://preview.redd.it/xnsxdb7rjq581.png?width=640&crop=smart&auto=webp&s=ef68f9e4cee9eb3e7632db36c9487bc91f49ef68","https://preview.redd.it/cbatbs7rjq581.png?width=640&crop=smart&auto=webp&s=9c899ba3a59d3ab0efed8dc139ca42f6049457fe","https://preview.redd.it/udoavh7rjq581.png?width=640&crop=smart&auto=webp&s=67416d88d47adcd308eeeff129d6cfbdfad9d38f","https://preview.redd.it/2107xv6rjq581.png?width=640&crop=smart&auto=webp&s=9f07c47445844f3ef77ed69c0543e383ca874b17","https://preview.redd.it/dm5t477rjq581.png?width=640&crop=smart&auto=webp&s=9cc0af45c5bbb91aff85b994ffce66fc2a732063","https://preview.redd.it/740ubz6rjq581.png?width=640&crop=smart&auto=webp&s=7f67afb966fb85686437f0065aecf0111292afa9","https://preview.redd.it/xmq1va7rjq581.png?width=640&crop=smart&auto=webp&s=d144b161e93be3570e9167cc544aeb47c026ab1e","https://preview.redd.it/ev1vbx6rjq581.png?width=640&crop=smart&auto=webp&s=155937498d6d9283654e0838072a2a4fff0b4b1c"] +images: + [ + "https://preview.redd.it/qfiuoa7rjq581.png?width=640&crop=smart&auto=webp&s=128b029bb95e4ca22e863e2775cba3e0fa38b80e", + "https://i.redd.it/8wdgeh7rjq581.gif", + "https://preview.redd.it/729cdb7rjq581.png?width=640&crop=smart&auto=webp&s=2db0a22eecc35a12cfdba2b7958c13cb50d7ac09", + "https://i.redd.it/y903pm7rjq581.gif", + "https://preview.redd.it/cmn54b7rjq581.png?width=640&crop=smart&auto=webp&s=ff1650e13f9f5fc0eb8cc04d2123887966083bce", + "https://preview.redd.it/8h12qa7rjq581.png?width=640&crop=smart&auto=webp&s=187f821ea2f6b4457f2a3522a365ac0dd673c7f1", + "https://preview.redd.it/ywcsfm7rjq581.png?width=640&crop=smart&auto=webp&s=bda3c1af1f4949dac5656d1e2cccb92e8508773b", + "https://preview.redd.it/9940wb7rjq581.png?width=640&crop=smart&auto=webp&s=b5100203a8255c4b833739897eee95da7f98fc7d", + "https://preview.redd.it/us6flb7rjq581.png?width=640&crop=smart&auto=webp&s=407fd1b65ff8f0cf7f232135b4af1f67f1fc7586", + "https://preview.redd.it/2ndrif7rjq581.png?width=640&crop=smart&auto=webp&s=57fad8843db201b0fdcb51433f4e21c3ab406d20", + "https://preview.redd.it/jz095e7rjq581.png?width=640&crop=smart&auto=webp&s=853684040d70aef17b382ffbe6838ac19ecbb79b", + "https://preview.redd.it/eroq6e7rjq581.png?width=640&crop=smart&auto=webp&s=fc1760af75c0c0cfc3e3a35235bad5e3fda22090", + "https://preview.redd.it/xnsxdb7rjq581.png?width=640&crop=smart&auto=webp&s=ef68f9e4cee9eb3e7632db36c9487bc91f49ef68", + "https://preview.redd.it/cbatbs7rjq581.png?width=640&crop=smart&auto=webp&s=9c899ba3a59d3ab0efed8dc139ca42f6049457fe", + "https://preview.redd.it/udoavh7rjq581.png?width=640&crop=smart&auto=webp&s=67416d88d47adcd308eeeff129d6cfbdfad9d38f", + "https://preview.redd.it/2107xv6rjq581.png?width=640&crop=smart&auto=webp&s=9f07c47445844f3ef77ed69c0543e383ca874b17", + "https://preview.redd.it/dm5t477rjq581.png?width=640&crop=smart&auto=webp&s=9cc0af45c5bbb91aff85b994ffce66fc2a732063", + "https://preview.redd.it/740ubz6rjq581.png?width=640&crop=smart&auto=webp&s=7f67afb966fb85686437f0065aecf0111292afa9", + "https://preview.redd.it/xmq1va7rjq581.png?width=640&crop=smart&auto=webp&s=d144b161e93be3570e9167cc544aeb47c026ab1e", + "https://preview.redd.it/ev1vbx6rjq581.png?width=640&crop=smart&auto=webp&s=155937498d6d9283654e0838072a2a4fff0b4b1c", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx b/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx index d47a593..9a3b905 100644 --- a/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx +++ b/src/data/issues/holonews_fr_ver._31.01._-_06.02..mdx @@ -2,6 +2,28 @@ title: "Holonews FR ver. 31.01. - 06.02." date: "2022-02-14T17:40:28.027000+0000" link: "https://reddit.com/r/HoloNews/comments/ssgeh6/holonews_fr_ver_3101_0602/" -images: ["https://preview.redd.it/61ezrffs4uh81.png?width=640&crop=smart&auto=webp&s=9d0f58a95d1fdcfdd474c5898e481a0d94556d9b","https://i.redd.it/z53agqfs4uh81.gif","https://i.redd.it/8batfofs4uh81.gif","https://preview.redd.it/d7mn0jfs4uh81.png?width=640&crop=smart&auto=webp&s=e00145715d182549e32dbdd9c08cbb85323a5e79","https://preview.redd.it/el1lpcfs4uh81.png?width=640&crop=smart&auto=webp&s=107d84a004b90e53382ce866545992f663c090c4","https://preview.redd.it/tzca4efs4uh81.png?width=640&crop=smart&auto=webp&s=c2a689d2c8f523b1bd3d9930b91b4732ab197cb3","https://preview.redd.it/hl9l6dfs4uh81.png?width=640&crop=smart&auto=webp&s=11cdee87460482574a91a6c78bd1f283a0d33cea","https://preview.redd.it/nyyhspfs4uh81.png?width=640&crop=smart&auto=webp&s=63b0fc317a48b6d1577d0e2d59a4ae07c42185db","https://preview.redd.it/x3i8kifs4uh81.png?width=640&crop=smart&auto=webp&s=e45c20500fc33fad431137f4b85bfb8a5aaeacfb","https://preview.redd.it/4fs7jhfs4uh81.png?width=640&crop=smart&auto=webp&s=41be5b4fb0a4d5b9ec1e1dc210c17ff5de36658a","https://preview.redd.it/8jlmukfs4uh81.png?width=640&crop=smart&auto=webp&s=291df50cc35dd6c9df9e5ad04c17ec7fffb050f4","https://preview.redd.it/ei221dfs4uh81.png?width=640&crop=smart&auto=webp&s=37e2e0d9bc950298b61857f237f21fc457046ee1","https://preview.redd.it/p6avthfs4uh81.png?width=640&crop=smart&auto=webp&s=ab26a52e7c91dca0c6ae782ac55641e99b2b5742","https://preview.redd.it/qpou2nfs4uh81.png?width=640&crop=smart&auto=webp&s=5b194e2017a43eb1f044a1fed7915080ca05ac8a","https://preview.redd.it/dfngglfs4uh81.png?width=640&crop=smart&auto=webp&s=ad7f976dffcf23049bc1a2b59b49fffb6ac176a5","https://preview.redd.it/roi4olfs4uh81.png?width=640&crop=smart&auto=webp&s=21a2b1937b3289fe8453f45a791ec88c9a17d1dc","https://preview.redd.it/ewrx7efs4uh81.png?width=640&crop=smart&auto=webp&s=a38428bcf45d31c74950e6d039bab43915eafacf","https://preview.redd.it/vih0tjfs4uh81.png?width=640&crop=smart&auto=webp&s=f5ee7281e1063cb8ad14d1d4f993437679625fa3","https://preview.redd.it/4x14jafs4uh81.png?width=640&crop=smart&auto=webp&s=8e8229140043543c46535191e485ce381854b0f6","https://preview.redd.it/97k03dfs4uh81.png?width=640&crop=smart&auto=webp&s=be20e4b7bd7255eb7bb4003b4e5bc7d11e902c64"] +images: + [ + "https://preview.redd.it/61ezrffs4uh81.png?width=640&crop=smart&auto=webp&s=9d0f58a95d1fdcfdd474c5898e481a0d94556d9b", + "https://i.redd.it/z53agqfs4uh81.gif", + "https://i.redd.it/8batfofs4uh81.gif", + "https://preview.redd.it/d7mn0jfs4uh81.png?width=640&crop=smart&auto=webp&s=e00145715d182549e32dbdd9c08cbb85323a5e79", + "https://preview.redd.it/el1lpcfs4uh81.png?width=640&crop=smart&auto=webp&s=107d84a004b90e53382ce866545992f663c090c4", + "https://preview.redd.it/tzca4efs4uh81.png?width=640&crop=smart&auto=webp&s=c2a689d2c8f523b1bd3d9930b91b4732ab197cb3", + "https://preview.redd.it/hl9l6dfs4uh81.png?width=640&crop=smart&auto=webp&s=11cdee87460482574a91a6c78bd1f283a0d33cea", + "https://preview.redd.it/nyyhspfs4uh81.png?width=640&crop=smart&auto=webp&s=63b0fc317a48b6d1577d0e2d59a4ae07c42185db", + "https://preview.redd.it/x3i8kifs4uh81.png?width=640&crop=smart&auto=webp&s=e45c20500fc33fad431137f4b85bfb8a5aaeacfb", + "https://preview.redd.it/4fs7jhfs4uh81.png?width=640&crop=smart&auto=webp&s=41be5b4fb0a4d5b9ec1e1dc210c17ff5de36658a", + "https://preview.redd.it/8jlmukfs4uh81.png?width=640&crop=smart&auto=webp&s=291df50cc35dd6c9df9e5ad04c17ec7fffb050f4", + "https://preview.redd.it/ei221dfs4uh81.png?width=640&crop=smart&auto=webp&s=37e2e0d9bc950298b61857f237f21fc457046ee1", + "https://preview.redd.it/p6avthfs4uh81.png?width=640&crop=smart&auto=webp&s=ab26a52e7c91dca0c6ae782ac55641e99b2b5742", + "https://preview.redd.it/qpou2nfs4uh81.png?width=640&crop=smart&auto=webp&s=5b194e2017a43eb1f044a1fed7915080ca05ac8a", + "https://preview.redd.it/dfngglfs4uh81.png?width=640&crop=smart&auto=webp&s=ad7f976dffcf23049bc1a2b59b49fffb6ac176a5", + "https://preview.redd.it/roi4olfs4uh81.png?width=640&crop=smart&auto=webp&s=21a2b1937b3289fe8453f45a791ec88c9a17d1dc", + "https://preview.redd.it/ewrx7efs4uh81.png?width=640&crop=smart&auto=webp&s=a38428bcf45d31c74950e6d039bab43915eafacf", + "https://preview.redd.it/vih0tjfs4uh81.png?width=640&crop=smart&auto=webp&s=f5ee7281e1063cb8ad14d1d4f993437679625fa3", + "https://preview.redd.it/4x14jafs4uh81.png?width=640&crop=smart&auto=webp&s=8e8229140043543c46535191e485ce381854b0f6", + "https://preview.redd.it/97k03dfs4uh81.png?width=640&crop=smart&auto=webp&s=be20e4b7bd7255eb7bb4003b4e5bc7d11e902c64", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx b/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx index 6b84588..f1c6104 100644 --- a/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx +++ b/src/data/issues/holonews_fr_ver._lite_20.12_-_26.12.mdx @@ -2,6 +2,27 @@ title: "HoloNews FR ver. LITE 20.12 - 26.12" date: "2022-01-12T16:57:27.391000+0000" link: "https://reddit.com/r/HoloNews/comments/s2azxb/holonews_fr_ver_lite_2012_2612/" -images: ["https://preview.redd.it/3wneo35zeab81.png?width=640&crop=smart&auto=webp&s=a243a7c789c83c6dd5d10447794121297b9c77fd","https://preview.redd.it/9axzq35zeab81.png?width=640&crop=smart&auto=webp&s=8e29248af19fd75b561ca1e2bf01f31c53a991f6","https://i.redd.it/25o1wc5zeab81.gif","https://preview.redd.it/zh1lqu3zeab81.png?width=640&crop=smart&auto=webp&s=1a8da2e78b363c2f957b1e1f349cb2cca12c1848","https://preview.redd.it/owf5sl3zeab81.png?width=640&crop=smart&auto=webp&s=1991ff856f701e084bcdc030f515d308b8a7554c","https://preview.redd.it/feykt35zeab81.png?width=640&crop=smart&auto=webp&s=d862f1eb6437cae05224576dff3995a1995f9fb1","https://preview.redd.it/lnb2q25zeab81.png?width=640&crop=smart&auto=webp&s=a7595923436797d3024033bcccd7571fa68fa938","https://preview.redd.it/w3tzco3zeab81.png?width=640&crop=smart&auto=webp&s=4ba0ec3214a892c1e15ca3a87e837532c2a38ad0","https://preview.redd.it/5sp8xw4zeab81.png?width=640&crop=smart&auto=webp&s=3b0a4460af180e8bb87ade973ce5415b1d4daa9a","https://preview.redd.it/y3zbvl3zeab81.png?width=640&crop=smart&auto=webp&s=d30f43925cfefa0cbb740b70428523effcbf8991","https://preview.redd.it/69vne65zeab81.png?width=640&crop=smart&auto=webp&s=ebfa8fc66279799f829d8cbc57fd4550e55a9613","https://preview.redd.it/lm24g45zeab81.png?width=640&crop=smart&auto=webp&s=362300c782d52469e642fcb60a814dd88c3779e8","https://preview.redd.it/2kqs765zeab81.png?width=640&crop=smart&auto=webp&s=10ba5610935e5ef0711dca54d75dbbf59b6e66cc","https://preview.redd.it/b7icc73zeab81.png?width=640&crop=smart&auto=webp&s=00ca1f5253070c981171caf09b7506c2fb651941","https://preview.redd.it/cesdba5zeab81.png?width=640&crop=smart&auto=webp&s=485bcb4db9a24a4188af42942ae4b882daadad64","https://preview.redd.it/2ms3s35zeab81.png?width=640&crop=smart&auto=webp&s=64ab7f2c86f3433912dfa015ad010b3cbaa0b443","https://preview.redd.it/8hjto73zeab81.png?width=640&crop=smart&auto=webp&s=9b64b7405b37418d426f11eb7cf6dc0cdeb43d0f","https://preview.redd.it/90ezx35zeab81.png?width=640&crop=smart&auto=webp&s=d473ae722631e16515b51f96331cae42cc0d0678","https://preview.redd.it/eisvlg3zeab81.png?width=640&crop=smart&auto=webp&s=b8cea2fd0de1dc255b89caf4944fc2b8713bd1a1"] +images: + [ + "https://preview.redd.it/3wneo35zeab81.png?width=640&crop=smart&auto=webp&s=a243a7c789c83c6dd5d10447794121297b9c77fd", + "https://preview.redd.it/9axzq35zeab81.png?width=640&crop=smart&auto=webp&s=8e29248af19fd75b561ca1e2bf01f31c53a991f6", + "https://i.redd.it/25o1wc5zeab81.gif", + "https://preview.redd.it/zh1lqu3zeab81.png?width=640&crop=smart&auto=webp&s=1a8da2e78b363c2f957b1e1f349cb2cca12c1848", + "https://preview.redd.it/owf5sl3zeab81.png?width=640&crop=smart&auto=webp&s=1991ff856f701e084bcdc030f515d308b8a7554c", + "https://preview.redd.it/feykt35zeab81.png?width=640&crop=smart&auto=webp&s=d862f1eb6437cae05224576dff3995a1995f9fb1", + "https://preview.redd.it/lnb2q25zeab81.png?width=640&crop=smart&auto=webp&s=a7595923436797d3024033bcccd7571fa68fa938", + "https://preview.redd.it/w3tzco3zeab81.png?width=640&crop=smart&auto=webp&s=4ba0ec3214a892c1e15ca3a87e837532c2a38ad0", + "https://preview.redd.it/5sp8xw4zeab81.png?width=640&crop=smart&auto=webp&s=3b0a4460af180e8bb87ade973ce5415b1d4daa9a", + "https://preview.redd.it/y3zbvl3zeab81.png?width=640&crop=smart&auto=webp&s=d30f43925cfefa0cbb740b70428523effcbf8991", + "https://preview.redd.it/69vne65zeab81.png?width=640&crop=smart&auto=webp&s=ebfa8fc66279799f829d8cbc57fd4550e55a9613", + "https://preview.redd.it/lm24g45zeab81.png?width=640&crop=smart&auto=webp&s=362300c782d52469e642fcb60a814dd88c3779e8", + "https://preview.redd.it/2kqs765zeab81.png?width=640&crop=smart&auto=webp&s=10ba5610935e5ef0711dca54d75dbbf59b6e66cc", + "https://preview.redd.it/b7icc73zeab81.png?width=640&crop=smart&auto=webp&s=00ca1f5253070c981171caf09b7506c2fb651941", + "https://preview.redd.it/cesdba5zeab81.png?width=640&crop=smart&auto=webp&s=485bcb4db9a24a4188af42942ae4b882daadad64", + "https://preview.redd.it/2ms3s35zeab81.png?width=640&crop=smart&auto=webp&s=64ab7f2c86f3433912dfa015ad010b3cbaa0b443", + "https://preview.redd.it/8hjto73zeab81.png?width=640&crop=smart&auto=webp&s=9b64b7405b37418d426f11eb7cf6dc0cdeb43d0f", + "https://preview.redd.it/90ezx35zeab81.png?width=640&crop=smart&auto=webp&s=d473ae722631e16515b51f96331cae42cc0d0678", + "https://preview.redd.it/eisvlg3zeab81.png?width=640&crop=smart&auto=webp&s=b8cea2fd0de1dc255b89caf4944fc2b8713bd1a1", + ] tags: ["lite"] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx b/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx index e743759..f89fbea 100644 --- a/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx +++ b/src/data/issues/holonews_fr_ver._lite_27.12_-_02.01.mdx @@ -2,6 +2,20 @@ title: "HoloNews FR ver. LITE 27.12 - 02.01" date: "2022-01-13T16:11:14.543000+0000" link: "https://reddit.com/r/HoloNews/comments/s32xsw/holonews_fr_ver_lite_2712_0201/" -images: ["https://preview.redd.it/nmg8hicubhb81.png?width=640&crop=smart&auto=webp&s=a8b289891d856f6a7bc2b8a4da366eda3687a5ee","https://preview.redd.it/ayja8gcubhb81.png?width=640&crop=smart&auto=webp&s=eadeb1cacfa8401f7ef9dffbd4df36e95815b1ab","https://preview.redd.it/qh7q1fcubhb81.png?width=640&crop=smart&auto=webp&s=7e93fb12c1f45c86babc42dba7e2f655cfcb53e9","https://preview.redd.it/romqrncubhb81.png?width=640&crop=smart&auto=webp&s=04558668df52e0b418a8c259c7ec31e52b51eb2e","https://preview.redd.it/b6luaicubhb81.png?width=640&crop=smart&auto=webp&s=abeb6c597ae584802d477f87fd063484cd5ba4a1","https://preview.redd.it/0m01hkcubhb81.png?width=640&crop=smart&auto=webp&s=1a0bb076061c81e9b198f1f42dd93e0d2a886142","https://preview.redd.it/40hgtlcubhb81.png?width=640&crop=smart&auto=webp&s=1c7b98fee03cea5a9d4dc7adf2dcd588d54c946c","https://preview.redd.it/osr47mcubhb81.png?width=640&crop=smart&auto=webp&s=25ffdf2368b22b91fe49e1f9bef30fa0fa0eae79","https://preview.redd.it/2d9gywcubhb81.png?width=640&crop=smart&auto=webp&s=27f67a654a16012c0df5d47e89f902c270fec5ac","https://preview.redd.it/4cz7kicubhb81.png?width=640&crop=smart&auto=webp&s=abfe06f7248e8f7f4238f149e753ee2ec41411ba","https://preview.redd.it/wwym2pcubhb81.png?width=640&crop=smart&auto=webp&s=43a73b2eec3a73688cf0b98ade7af4e6bf7718a7","https://preview.redd.it/bvrj7jcubhb81.png?width=640&crop=smart&auto=webp&s=849981db16afeb68ab1f6e9f58f5e87e5cf69c0b"] +images: + [ + "https://preview.redd.it/nmg8hicubhb81.png?width=640&crop=smart&auto=webp&s=a8b289891d856f6a7bc2b8a4da366eda3687a5ee", + "https://preview.redd.it/ayja8gcubhb81.png?width=640&crop=smart&auto=webp&s=eadeb1cacfa8401f7ef9dffbd4df36e95815b1ab", + "https://preview.redd.it/qh7q1fcubhb81.png?width=640&crop=smart&auto=webp&s=7e93fb12c1f45c86babc42dba7e2f655cfcb53e9", + "https://preview.redd.it/romqrncubhb81.png?width=640&crop=smart&auto=webp&s=04558668df52e0b418a8c259c7ec31e52b51eb2e", + "https://preview.redd.it/b6luaicubhb81.png?width=640&crop=smart&auto=webp&s=abeb6c597ae584802d477f87fd063484cd5ba4a1", + "https://preview.redd.it/0m01hkcubhb81.png?width=640&crop=smart&auto=webp&s=1a0bb076061c81e9b198f1f42dd93e0d2a886142", + "https://preview.redd.it/40hgtlcubhb81.png?width=640&crop=smart&auto=webp&s=1c7b98fee03cea5a9d4dc7adf2dcd588d54c946c", + "https://preview.redd.it/osr47mcubhb81.png?width=640&crop=smart&auto=webp&s=25ffdf2368b22b91fe49e1f9bef30fa0fa0eae79", + "https://preview.redd.it/2d9gywcubhb81.png?width=640&crop=smart&auto=webp&s=27f67a654a16012c0df5d47e89f902c270fec5ac", + "https://preview.redd.it/4cz7kicubhb81.png?width=640&crop=smart&auto=webp&s=abfe06f7248e8f7f4238f149e753ee2ec41411ba", + "https://preview.redd.it/wwym2pcubhb81.png?width=640&crop=smart&auto=webp&s=43a73b2eec3a73688cf0b98ade7af4e6bf7718a7", + "https://preview.redd.it/bvrj7jcubhb81.png?width=640&crop=smart&auto=webp&s=849981db16afeb68ab1f6e9f58f5e87e5cf69c0b", + ] tags: ["lite"] ---- \ No newline at end of file +--- diff --git "a/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" "b/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" index 1a322c0..a1fc9d4 100644 --- "a/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" +++ "b/src/data/issues/holonews_fr_ver._num\303\251ro_sp\303\251cial_d\303\251buts_d'holox.mdx" @@ -2,6 +2,23 @@ title: "HoloNews FR ver. Numéro Spécial Débuts d'holoX" date: "2021-12-08T16:55:37.599000+0000" link: "https://reddit.com/r/HoloNews/comments/rbvlel/holonews_fr_ver_numéro_spécial_débuts_dholox/" -images: ["https://preview.redd.it/v9irlsp8kc481.png?width=640&crop=smart&auto=webp&s=be2e14aa5cff262eb5be7f242629b3f0b976cb1b","https://preview.redd.it/x6j349p8kc481.png?width=640&crop=smart&auto=webp&s=d4c47366adf22f668eb6ccc43eaebff73957c2ba","https://i.redd.it/ozgnj2q8kc481.gif","https://preview.redd.it/5vpzg4p8kc481.png?width=640&crop=smart&auto=webp&s=352d9dba88f3ce78841bdb8c2b8ab94ca339953b","https://i.redd.it/e2zrxeq8kc481.gif","https://preview.redd.it/org9vyo8kc481.png?width=640&crop=smart&auto=webp&s=c39e7661b3688e4d2414d3c51f9859063160ad65","https://i.redd.it/isqekdq8kc481.gif","https://preview.redd.it/hlluz2p8kc481.png?width=640&crop=smart&auto=webp&s=0d865aac51986006509ca4e48ec42c6b519d75dd","https://i.redd.it/0mqtdjq8kc481.gif","https://preview.redd.it/ce1tl1p8kc481.png?width=640&crop=smart&auto=webp&s=9d4d81226cde95d5870f111abdb8e75b270110a8","https://i.redd.it/mmeh3cq8kc481.gif","https://preview.redd.it/hn76m8p8kc481.png?width=640&crop=smart&auto=webp&s=234077f7bbfaa2770fe3eb7b4f7bceac57438660","https://i.redd.it/wptkaxp8kc481.gif","https://preview.redd.it/k6y7cyo8kc481.png?width=640&crop=smart&auto=webp&s=d1214edc2eaed253a35c4f8f1c665c4fd0669643","https://preview.redd.it/lp8tsto8kc481.png?width=640&crop=smart&auto=webp&s=9a31c29c5caee21143b29737543ff47223ac45ed"] +images: + [ + "https://preview.redd.it/v9irlsp8kc481.png?width=640&crop=smart&auto=webp&s=be2e14aa5cff262eb5be7f242629b3f0b976cb1b", + "https://preview.redd.it/x6j349p8kc481.png?width=640&crop=smart&auto=webp&s=d4c47366adf22f668eb6ccc43eaebff73957c2ba", + "https://i.redd.it/ozgnj2q8kc481.gif", + "https://preview.redd.it/5vpzg4p8kc481.png?width=640&crop=smart&auto=webp&s=352d9dba88f3ce78841bdb8c2b8ab94ca339953b", + "https://i.redd.it/e2zrxeq8kc481.gif", + "https://preview.redd.it/org9vyo8kc481.png?width=640&crop=smart&auto=webp&s=c39e7661b3688e4d2414d3c51f9859063160ad65", + "https://i.redd.it/isqekdq8kc481.gif", + "https://preview.redd.it/hlluz2p8kc481.png?width=640&crop=smart&auto=webp&s=0d865aac51986006509ca4e48ec42c6b519d75dd", + "https://i.redd.it/0mqtdjq8kc481.gif", + "https://preview.redd.it/ce1tl1p8kc481.png?width=640&crop=smart&auto=webp&s=9d4d81226cde95d5870f111abdb8e75b270110a8", + "https://i.redd.it/mmeh3cq8kc481.gif", + "https://preview.redd.it/hn76m8p8kc481.png?width=640&crop=smart&auto=webp&s=234077f7bbfaa2770fe3eb7b4f7bceac57438660", + "https://i.redd.it/wptkaxp8kc481.gif", + "https://preview.redd.it/k6y7cyo8kc481.png?width=640&crop=smart&auto=webp&s=d1214edc2eaed253a35c4f8f1c665c4fd0669643", + "https://preview.redd.it/lp8tsto8kc481.png?width=640&crop=smart&auto=webp&s=9a31c29c5caee21143b29737543ff47223ac45ed", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_french_17.10_-_23.10.mdx b/src/data/issues/holonews_french_17.10_-_23.10.mdx index 13e53cd..52e29ea 100644 --- a/src/data/issues/holonews_french_17.10_-_23.10.mdx +++ b/src/data/issues/holonews_french_17.10_-_23.10.mdx @@ -2,6 +2,26 @@ title: "HoloNews french 17.10 - 23.10" date: "2022-11-06T18:01:16.445000+0000" link: "https://reddit.com/r/HoloNews/comments/ynxghk/holonews_french_1710_2310/" -images: ["https://preview.redd.it/gz3dr109edy91.png?width=640&crop=smart&auto=webp&s=68c962537b76d1b1c4a576545fc9bfe8fed83f32","https://i.redd.it/bmwo8f49edy91.gif","https://preview.redd.it/k0jee8j9edy91.png?width=640&crop=smart&auto=webp&s=0507cdf001c6c77b5ca501c0e30ed2428c35069e","https://preview.redd.it/sd82mtm9edy91.png?width=640&crop=smart&auto=webp&s=4a756c376fee13a402fb55003a39c62532f85a71","https://i.redd.it/6xquwfp9edy91.gif","https://preview.redd.it/je2v5rs9edy91.png?width=640&crop=smart&auto=webp&s=904f448ffaba9e6e745a891749425b524b0a1d4c","https://preview.redd.it/2s5w8rv9edy91.png?width=640&crop=smart&auto=webp&s=9ca9c7e5955821e10b55b5fd74e5688068ab962b","https://preview.redd.it/7olqdyz9edy91.png?width=640&crop=smart&auto=webp&s=c35a23497f37ad91bd2b85c5f22c15ce235cb73c","https://preview.redd.it/7htxo03aedy91.png?width=640&crop=smart&auto=webp&s=5ebb4c3f3238e37296497e2a936e92d2a9a35469","https://preview.redd.it/hi40o46aedy91.png?width=640&crop=smart&auto=webp&s=77cbc45b74c44b11ba67a5d9cbc1b4e7e525c7ab","https://preview.redd.it/u9dwv4aaedy91.png?width=640&crop=smart&auto=webp&s=a72c6ab9e226dbb70318b982ff9be8fb9dde54f3","https://preview.redd.it/ri6w1hdaedy91.png?width=640&crop=smart&auto=webp&s=ae805651b7c6e3e632facd326ffdc6203d0c3582","https://preview.redd.it/1jrumygaedy91.png?width=640&crop=smart&auto=webp&s=5d82a84295f897d21889d68df9b73e4891db9eba","https://preview.redd.it/p0005ykaedy91.png?width=640&crop=smart&auto=webp&s=1227250bc2757ba114edc7b83884cbc861a2e38a","https://preview.redd.it/jk8wveoaedy91.png?width=640&crop=smart&auto=webp&s=845735eabc2e9fe579350b1ad455b8994b15e20a","https://preview.redd.it/uq2dxfraedy91.png?width=640&crop=smart&auto=webp&s=35728fb9576296d95e68afc344839c033f71a4af","https://preview.redd.it/b8siebwaedy91.png?width=640&crop=smart&auto=webp&s=7778529201b7c83b9020708ab38a8dd547bf8633","https://preview.redd.it/wk34kd0bedy91.png?width=640&crop=smart&auto=webp&s=962a9324633cb4acccde4bc49233beefbcba582a"] +images: + [ + "https://preview.redd.it/gz3dr109edy91.png?width=640&crop=smart&auto=webp&s=68c962537b76d1b1c4a576545fc9bfe8fed83f32", + "https://i.redd.it/bmwo8f49edy91.gif", + "https://preview.redd.it/k0jee8j9edy91.png?width=640&crop=smart&auto=webp&s=0507cdf001c6c77b5ca501c0e30ed2428c35069e", + "https://preview.redd.it/sd82mtm9edy91.png?width=640&crop=smart&auto=webp&s=4a756c376fee13a402fb55003a39c62532f85a71", + "https://i.redd.it/6xquwfp9edy91.gif", + "https://preview.redd.it/je2v5rs9edy91.png?width=640&crop=smart&auto=webp&s=904f448ffaba9e6e745a891749425b524b0a1d4c", + "https://preview.redd.it/2s5w8rv9edy91.png?width=640&crop=smart&auto=webp&s=9ca9c7e5955821e10b55b5fd74e5688068ab962b", + "https://preview.redd.it/7olqdyz9edy91.png?width=640&crop=smart&auto=webp&s=c35a23497f37ad91bd2b85c5f22c15ce235cb73c", + "https://preview.redd.it/7htxo03aedy91.png?width=640&crop=smart&auto=webp&s=5ebb4c3f3238e37296497e2a936e92d2a9a35469", + "https://preview.redd.it/hi40o46aedy91.png?width=640&crop=smart&auto=webp&s=77cbc45b74c44b11ba67a5d9cbc1b4e7e525c7ab", + "https://preview.redd.it/u9dwv4aaedy91.png?width=640&crop=smart&auto=webp&s=a72c6ab9e226dbb70318b982ff9be8fb9dde54f3", + "https://preview.redd.it/ri6w1hdaedy91.png?width=640&crop=smart&auto=webp&s=ae805651b7c6e3e632facd326ffdc6203d0c3582", + "https://preview.redd.it/1jrumygaedy91.png?width=640&crop=smart&auto=webp&s=5d82a84295f897d21889d68df9b73e4891db9eba", + "https://preview.redd.it/p0005ykaedy91.png?width=640&crop=smart&auto=webp&s=1227250bc2757ba114edc7b83884cbc861a2e38a", + "https://preview.redd.it/jk8wveoaedy91.png?width=640&crop=smart&auto=webp&s=845735eabc2e9fe579350b1ad455b8994b15e20a", + "https://preview.redd.it/uq2dxfraedy91.png?width=640&crop=smart&auto=webp&s=35728fb9576296d95e68afc344839c033f71a4af", + "https://preview.redd.it/b8siebwaedy91.png?width=640&crop=smart&auto=webp&s=7778529201b7c83b9020708ab38a8dd547bf8633", + "https://preview.redd.it/wk34kd0bedy91.png?width=640&crop=smart&auto=webp&s=962a9324633cb4acccde4bc49233beefbcba582a", + ] tags: [] ---- \ No newline at end of file +--- diff --git a/src/data/issues/holonews_sana_special_issue_fr_ver..mdx b/src/data/issues/holonews_sana_special_issue_fr_ver..mdx index 1f5d7b7..9611e17 100644 --- a/src/data/issues/holonews_sana_special_issue_fr_ver..mdx +++ b/src/data/issues/holonews_sana_special_issue_fr_ver..mdx @@ -2,6 +2,28 @@ title: "HoloNews Sana Special Issue FR Ver." date: "2022-08-01T16:20:21.565000+0000" link: "https://reddit.com/r/HoloNews/comments/wdlidu/holonews_sana_special_issue_fr_ver/" -images: ["https://preview.redd.it/dri6gk1un4f91.png?width=640&crop=smart&auto=webp&s=c1f6d9ceb3975bdaa9be3aea6485a121c65c2bc2","https://preview.redd.it/0coc5f1un4f91.png?width=640&crop=smart&auto=webp&s=65057f0119bed851def896b0ba549c7218b2ce0e","https://preview.redd.it/ru3dyl1un4f91.png?width=640&crop=smart&auto=webp&s=205256adbbefea97e6677b75f327909ede910eee","https://preview.redd.it/3idu6o1un4f91.png?width=640&crop=smart&auto=webp&s=27f6162d674f355177b3f99f66b24ee9f107f53a","https://preview.redd.it/qgp5qp1un4f91.png?width=640&crop=smart&auto=webp&s=cf0c9094c2440204152bd808a99c6b1940a9e12e","https://preview.redd.it/fthpgp1un4f91.png?width=640&crop=smart&auto=webp&s=56f095ff4ac5e32b2eac869aaaf68ec5604ed60d","https://preview.redd.it/3pk3ar1un4f91.png?width=640&crop=smart&auto=webp&s=f7bba6f90a14e7db1392c27eeb96f8ec15916c2b","https://i.redd.it/9f168h2un4f91.gif","https://preview.redd.it/0ghn302un4f91.png?width=640&crop=smart&auto=webp&s=8c4a0e4359c7e29fa3709ad5e0c1832fba087efb","https://preview.redd.it/yp3r7d2un4f91.png?width=640&crop=smart&auto=webp&s=e3fe887c763949ad25ea19f2d024cc0032ec4f1c","https://preview.redd.it/inrl012un4f91.png?width=640&crop=smart&auto=webp&s=d1949d01b66a7fe23bb15f27a6035667ecdad36c","https://preview.redd.it/nkpcua2un4f91.png?width=640&crop=smart&auto=webp&s=e9b2505ea1695da4430ab0749c9b912dfa5bd386","https://preview.redd.it/r5bl842un4f91.png?width=640&crop=smart&auto=webp&s=e0533ce520d6a107ca3396b87dd41ed32b5381ea","https://preview.redd.it/p40b0z1un4f91.png?width=640&crop=smart&auto=webp&s=fc78106653e411ed44d634ead2c50d9eb972e60c","https://preview.redd.it/475v542un4f91.png?width=640&crop=smart&auto=webp&s=a5d5ae73a05f53e8f5cde8b55cbc48e45c50cdb5","https://preview.redd.it/fn3hrt1un4f91.png?width=640&crop=smart&auto=webp&s=ad9db108d612f62f31386c599cedd39362aa7ce3","https://preview.redd.it/52rp3e2un4f91.png?width=640&crop=smart&auto=webp&s=6ea1813a36ebd7734a63e35490e1bb794c97f1fa","https://preview.redd.it/n4dcuw1un4f91.png?width=640&crop=smart&auto=webp&s=df844409cf161e85aaa320122572e8be22d589d2","https://preview.redd.it/ml8tgf1un4f91.png?width=640&crop=smart&auto=webp&s=d4ffae1933aa42a00a23e27ec99a807a6e1ed5e1","https://preview.redd.it/uutf0n2un4f91.png?width=640&crop=smart&auto=webp&s=4f6ec9176aaeeeddd57f80ae7ee7720d10aa0c2a"] +images: + [ + "https://preview.redd.it/dri6gk1un4f91.png?width=640&crop=smart&auto=webp&s=c1f6d9ceb3975bdaa9be3aea6485a121c65c2bc2", + "https://preview.redd.it/0coc5f1un4f91.png?width=640&crop=smart&auto=webp&s=65057f0119bed851def896b0ba549c7218b2ce0e", + "https://preview.redd.it/ru3dyl1un4f91.png?width=640&crop=smart&auto=webp&s=205256adbbefea97e6677b75f327909ede910eee", + "https://preview.redd.it/3idu6o1un4f91.png?width=640&crop=smart&auto=webp&s=27f6162d674f355177b3f99f66b24ee9f107f53a", + "https://preview.redd.it/qgp5qp1un4f91.png?width=640&crop=smart&auto=webp&s=cf0c9094c2440204152bd808a99c6b1940a9e12e", + "https://preview.redd.it/fthpgp1un4f91.png?width=640&crop=smart&auto=webp&s=56f095ff4ac5e32b2eac869aaaf68ec5604ed60d", + "https://preview.redd.it/3pk3ar1un4f91.png?width=640&crop=smart&auto=webp&s=f7bba6f90a14e7db1392c27eeb96f8ec15916c2b", + "https://i.redd.it/9f168h2un4f91.gif", + "https://preview.redd.it/0ghn302un4f91.png?width=640&crop=smart&auto=webp&s=8c4a0e4359c7e29fa3709ad5e0c1832fba087efb", + "https://preview.redd.it/yp3r7d2un4f91.png?width=640&crop=smart&auto=webp&s=e3fe887c763949ad25ea19f2d024cc0032ec4f1c", + "https://preview.redd.it/inrl012un4f91.png?width=640&crop=smart&auto=webp&s=d1949d01b66a7fe23bb15f27a6035667ecdad36c", + "https://preview.redd.it/nkpcua2un4f91.png?width=640&crop=smart&auto=webp&s=e9b2505ea1695da4430ab0749c9b912dfa5bd386", + "https://preview.redd.it/r5bl842un4f91.png?width=640&crop=smart&auto=webp&s=e0533ce520d6a107ca3396b87dd41ed32b5381ea", + "https://preview.redd.it/p40b0z1un4f91.png?width=640&crop=smart&auto=webp&s=fc78106653e411ed44d634ead2c50d9eb972e60c", + "https://preview.redd.it/475v542un4f91.png?width=640&crop=smart&auto=webp&s=a5d5ae73a05f53e8f5cde8b55cbc48e45c50cdb5", + "https://preview.redd.it/fn3hrt1un4f91.png?width=640&crop=smart&auto=webp&s=ad9db108d612f62f31386c599cedd39362aa7ce3", + "https://preview.redd.it/52rp3e2un4f91.png?width=640&crop=smart&auto=webp&s=6ea1813a36ebd7734a63e35490e1bb794c97f1fa", + "https://preview.redd.it/n4dcuw1un4f91.png?width=640&crop=smart&auto=webp&s=df844409cf161e85aaa320122572e8be22d589d2", + "https://preview.redd.it/ml8tgf1un4f91.png?width=640&crop=smart&auto=webp&s=d4ffae1933aa42a00a23e27ec99a807a6e1ed5e1", + "https://preview.redd.it/uutf0n2un4f91.png?width=640&crop=smart&auto=webp&s=4f6ec9176aaeeeddd57f80ae7ee7720d10aa0c2a", + ] tags: ["special"] ---- \ No newline at end of file +--- diff --git a/src/env.d.ts b/src/env.d.ts deleted file mode 100644 index e16c13c..0000000 --- a/src/env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 444c971..f6cc1b6 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -38,7 +38,7 @@ const { title } = Astro.props;
-
+