commit a5fd8545f4861908b99319da21ad81dd7d17bcbc Author: 祀梦 <3501646051@qq.com> Date: Fri Jan 9 10:03:40 2026 +0800 feat: v1.0.0 祀梦笔记:从 0 到 1 的数字化花园建设 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..78bb66a --- /dev/null +++ b/.gitattributes @@ -0,0 +1,14 @@ +* text eol=lf +*.txt text eol=crlf + +*.png binary +*.jpg binary +*.jpeg binary +*.ico binary +*.gif binary +*.tff binary +*.woff binary +*.woff2 binary +*.mp4 binary +*.webm binary +*.mov binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6ac00d6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +**/node_modules + +docs/.vuepress/.cache +docs/.vuepress/.temp +docs/.vuepress/dist + +.trae/ +.DS_Store +*.log + +# Build and Publish output +_publish/ + +# Local resources storage (not uploaded) +resources/ + +# Ensure .gitkeep files are always tracked +!**/.gitkeep diff --git a/README.md b/README.md new file mode 100644 index 0000000..90304b1 --- /dev/null +++ b/README.md @@ -0,0 +1,89 @@ +# 祀梦的笔记网站 + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + +一个基于 VuePress 的个人学习笔记和博客网站,记录编程学习、算法练习和日常生活的点滴。 + +## 项目简介 + +这个网站是我(祀梦)记录学习和生活的个人空间,主要包含以下内容: + +- **编程笔记**:记录C++、LeetCode算法等编程相关的学习笔记 +- **博客**:分享日常生活和学习心得 +- **工具推荐**:记录实用的开发工具和资源 +- **友情链接**:展示朋友的个人网站 + +## 技术栈 + +- [VuePress](https://vuepress.vuejs.org/) - 静态网站生成器 +- [VuePress Theme Plume](https://theme-plume.vuejs.press/) - 美观的博客主题 +- [Vue 3](https://vuejs.org/) - 前端框架 +- [Vite](https://vitejs.dev/) - 构建工具 + +## 安装 + +- 环境要求: + - Node.js:`^20.6.0` 或 `>=22.0.0`(推荐使用当前 LTS 或稳定版) + - npm:`>=10` + +- 安装步骤: + 1. 在项目根目录执行依赖安装: + ```sh + npm install + ``` + 2. 启动开发服务器(任选其一): + - 常规方式: + ```sh + npm run docs:dev + ``` + - Windows 快捷方式(尝试监听 `0.0.0.0` 以便局域网访问): + ```bat + .\start.bat + ``` + - 若端口或权限受限,使用备用命令(绑定到本机并更换端口): + ```sh + npx vuepress@2.0.0-rc.24 dev docs --port 5173 --host localhost + ``` + 3. 打开浏览器访问: + - `http://localhost:4567/`(默认)或 + - `http://localhost:5173/`(如果使用备用命令) + +- 常见问题与排查: + - “`vuepress` 不是内部或外部命令”:通常为依赖未安装或安装失败,执行 `npm install` 后重试。 + - “listen EACCES: permission denied 0.0.0.0:4567”:端口或绑定权限受限,改用 `--host localhost` 或更换端口(如 `--port 5173`)。 + - 需要清理缓存后重试: + ```sh + npm run docs:dev-clean + ``` + - 更换端口示例(以 8080 为例): + ```sh + npx vuepress dev docs --port 8080 --host localhost + ``` + +## 使用 + +```sh +# 启动开发服务器(带热重载) +npm run docs:dev + +# 清除缓存并启动开发服务器 +npm run docs:dev-clean + +# 构建生产版本 +npm run docs:build + +# 本地预览生产版本 +npm run docs:preview + +# 更新 VuePress 和主题 +npm run vp-update +``` + +## 文档链接 + +- [VuePress 官方文档](https://vuepress.vuejs.org/) +- [VuePress Theme Plume 文档](https://theme-plume.vuejs.press/) + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. diff --git a/README.zh-CN.md b/README.zh-CN.md new file mode 100644 index 0000000..8dd3c8e --- /dev/null +++ b/README.zh-CN.md @@ -0,0 +1,57 @@ +# 祀梦的笔记网站 + +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + +一个基于 VuePress 的个人学习笔记和博客网站,记录编程学习、算法练习和日常生活的点滴。 + +## 项目简介 + +这个网站是我(祀梦)记录学习和生活的个人空间,主要包含以下内容: + +- **编程笔记**:记录C++、LeetCode算法等编程相关的学习笔记 +- **博客**:分享日常生活和学习心得 +- **工具推荐**:记录实用的开发工具和资源 +- **友情链接**:展示朋友的个人网站 + +## 技术栈 + +- [VuePress](https://vuepress.vuejs.org/) - 静态网站生成器 +- [VuePress Theme Plume](https://theme-plume.vuejs.press/) - 美观的博客主题 +- [Vue 3](https://vuejs.org/) - 前端框架 +- [Vite](https://vitejs.dev/) - 构建工具 + +## 安装 + +确保您的 Node.js 版本符合要求(^20.6.0 || >=22.0.0),然后执行以下命令: + +```sh +npm i +``` + +## 使用 + +```sh +# 启动开发服务器(带热重载) +npm run docs:dev + +# 清除缓存并启动开发服务器 +npm run docs:dev-clean + +# 构建生产版本 +npm run docs:build + +# 本地预览生产版本 +npm run docs:preview + +# 更新 VuePress 和主题 +npm run vp-update +``` + +## 文档链接 + +- [VuePress 官方文档](https://vuepress.vuejs.org/) +- [VuePress Theme Plume 文档](https://theme-plume.vuejs.press/) + +## 许可证 + +本项目采用 MIT 许可证 - 详见 [LICENSE](LICENSE) 文件。 diff --git a/docs/.vuepress/client.ts b/docs/.vuepress/client.ts new file mode 100644 index 0000000..aa1c369 --- /dev/null +++ b/docs/.vuepress/client.ts @@ -0,0 +1,8 @@ +import { defineClientConfig } from 'vuepress/client' +import RImg from './theme/components/RImg.vue' + +export default defineClientConfig({ + enhance({ app }) { + app.component('RImg', RImg) + }, +}) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts new file mode 100644 index 0000000..f76a28d --- /dev/null +++ b/docs/.vuepress/config.ts @@ -0,0 +1,110 @@ +import { defineUserConfig } from 'vuepress' +import { plumeTheme } from 'vuepress-theme-plume' +import { viteBundler } from '@vuepress/bundler-vite' +import { commentPlugin } from '@vuepress/plugin-comment' +import { umamiAnalyticsPlugin } from '@vuepress/plugin-umami-analytics' +import path from 'node:path' +import { fileURLToPath } from 'node:url' + +const __filename = fileURLToPath(import.meta.url) +const __dirname = path.dirname(__filename) + +export default defineUserConfig({ + base: '/', + lang: 'zh-CN', + title: '仲夏夜之梦', + description: '爱与回忆的小世界,记录生活中的每一份温暖与感动', + + head: [ + ['link', { rel: 'icon', type: 'image/png', href: 'https://theme-plume.vuejs.press/favicon-32x32.png' }], + ], + + bundler: viteBundler({ + viteOptions: { + resolve: { + alias: { + }, + }, + }, + }), + shouldPrefetch: false, + + theme: plumeTheme({ + /* 站点域名,启动 SEO 优化 */ + hostname: 'https://www.simengweb.com', + /* 博客文章页面链接前缀 */ + article: '/article/', + + /* 启用数学公式支持和Mermaid图表 */ + markdown: { + math: { + type: 'katex', + }, + mermaid: true, + demo: true, + }, + /** + * 编译缓存,加快编译速度 + */ + cache: 'filesystem', + + /* 本地搜索, 默认启用 */ + search: { provider: 'local' }, + footer: { + message: '愿每一份温柔都被世界珍藏 ✨', + copyright: '沪ICP备2023010022号-1©2025祀梦的个人博客' + }, + /** + * 博客相关配置 + */ + blog: { + postCover: { + layout: 'left', + width: 300, + compact: true + } + }, + + /** + * 文章贡献者配置 + */ + contributors: { + mode: 'inline', + info: [ + { + username: 'si-meng-spec', + name: 'si-meng-spec', + alias: ['si-meng-spec'], + } + ] + }, + + /** + * Git插件配置 + * 设置为true以在开发环境也启用 + */ + plugins: { + git: true + }, + + codeHighlighter: { + lineNumbers: true, + } + + }), + + plugins: [ + commentPlugin({ + provider: 'Waline', + serverURL: 'https://vercel.simengweb.com', + meta: ['nick'], + requiredMeta: ['nick'] + }), + umamiAnalyticsPlugin({ + id: '2114ab32-5543-4be1-b5e8-c4f2c9269d0d', + link: 'https://umami.simengweb.com/script.js', + domains: ['www.simengweb.com'], + cache: true + }), + ], +}) diff --git a/docs/.vuepress/navbar.ts b/docs/.vuepress/navbar.ts new file mode 100644 index 0000000..435271a --- /dev/null +++ b/docs/.vuepress/navbar.ts @@ -0,0 +1,80 @@ +import { defineNavbarConfig } from 'vuepress-theme-plume' + +export default defineNavbarConfig([ + { + text: '首页', + link: '/', + }, + { + text: '博客', + link: '/blog/', + }, + { + text: '学科知识', + items: [ + { + text: '英语学习笔记', + link: '/subject/english/', + }, + ], + }, + { + text: '编程笔记', + items: [ + { + text: 'LeetCode', + link: '/programming/leetcode/', + }, + { + text: 'C++', + link: '/programming/cplusplus/', + }, + { + text: 'Solidity', + link: '/programming/solidity/', + }, + { + text: 'Web 开发', + link: '/programming/web/', + } + ], + }, + { + text:"技术理论", + items:[ + { + text: '密码学基础', + link: '/theory/cryptography/', + }, + ] + }, + { + text: '运维', + items: [ + { + text: '区块链运维', + link: '/ops/blockchain/', + }, + { + text: 'Linux 运维', + link: '/ops/linux/', + }, + { + text: 'Docker 运维', + link: '/ops/docker/', + }, + ], + }, + { + text: '工具', + link: '/tools/', + }, + { + text: '关于', + link: '/about/', + }, + { + text: '友情链接', + link: '/friends/', + }, +]) diff --git a/docs/.vuepress/notes.ts b/docs/.vuepress/notes.ts new file mode 100644 index 0000000..915dea5 --- /dev/null +++ b/docs/.vuepress/notes.ts @@ -0,0 +1,194 @@ +import { defineNoteConfig, defineNotesConfig } from 'vuepress-theme-plume' + +/** + * 配置编程笔记 + */ +const LeetCode = defineNoteConfig({ + dir: 'programming', + link: '/programming/leetcode/', + sidebar: [ + { text: "LeetCode 指南", link: "/programming/leetcode/" }, + { + text: "刷题题单", prefix: "/question_sheet", items: [ + { text: "LeetCode 入门题单~(≧∇≦)ノ", link: "/programming/leetcode/question_sheet/beginner/" } + ] + } + ] +}) +const cPlusPlus = defineNoteConfig({ + dir: 'programming', + link: '/programming/cplusplus/', + sidebar: [ + { text: "C++ 学习笔记", link: "/programming/cplusplus/" }, + { + text: "基础配置与开发工具", prefix: "/basis", items: [ + { text: "C++ 环境配置", link: "/programming/cplusplus/basis/" } + ] + } + ] +}) +const english = defineNoteConfig({ + dir: 'subject', + link: '/subject/english/', + sidebar: [ + { text: "英语学习笔记", link: "/subject/english/" }, + { + text: "学习环境与工具", prefix: "/basis", items: [ + { text: "英语环境配置", link: "/subject/english/basis/" } + ] + }, + { + text: "词汇与记忆", prefix: "/vocabulary", items: [ + { text: "词汇学习与记忆法", link: "/subject/english/vocabulary/" } + ] + }, + { + text: "语法与句法", prefix: "/grammar", items: [ + { text: "核心语法与句型", link: "/subject/english/grammar/" } + ] + }, + { + text: "听力与口语", prefix: "/listening-speaking", items: [ + { text: "听力口语训练", link: "/subject/english/listening-speaking/" } + ] + }, + { + text: "阅读与写作", prefix: "/reading-writing", items: [ + { text: "阅读提升", link: "/subject/english/reading-writing/" } + ] + }, + { + text: "写译", prefix: "/writing-translation", items: [ + { text: "写作与翻译指南", link: "/subject/english/writing-translation/" } + ] + }, + { + text: "考试与备考", prefix: "/exam", items: [ + { text: "英语四级 (CET-4) 备考指南", link: "/subject/english/exam/cet-4/" } + ] + }, + { + text: "资源与工具", prefix: "/resources", items: [ + { text: "学习资源与工具", link: "/subject/english/resources/" } + ] + } + ] +}) +const solidity = defineNoteConfig({ + dir: 'programming', + link: '/programming/solidity/', + sidebar: [ + { text: "Solidity 学习笔记", link: "/programming/solidity/" }, + { + text: "基础语法", prefix: "/basic-syntax", items: [ + { text: "Solidity 基础语法与数据类型", link: "/programming/solidity/basic-syntax/" } + ], + }, + { + text: "项目实例", prefix: "/basic-syntax", items: [ + { text: "Solidity 代码实例", link: "/programming/solidity/analysis/case-analysis/" } + ], + }, + { + text: "杂项", prefix: "/other", items: [ + { text: "Hardhat 相关知识", link: "/programming/solidity/other/hardhat/" }, + { text: "一些没分类的小知识", link: "/programming/solidity/other/miscellaneous/" } + ], + } + ] +}) +const cryptography = defineNoteConfig({ + dir: 'theory', + link: '/theory/cryptography/', + sidebar: [ + { text: "密码学基础", link: "/theory/cryptography/" }, + { + text: "古典加密算法", prefix: "/theory", items: [ + { text: "替换密码", link: "/theory/cryptography/substitution-ciphers/" }, + { text: "置换密码", link: "/theory/cryptography/permutation-encryption/" }, + ] + }, + ] +}) +const blockchain = defineNoteConfig({ + dir: 'ops', + link: '/ops/blockchain', + sidebar: [ + { text: "区块链运维指南", link: "/ops/blockchain/" }, + { + text: "区块链理论基础", prefix: "/theory", items: [ + { text: "区块链的基本原理", link: "/ops/blockchain/theory/basic-principles/" }, + { text: "FISCO-BCOS 节点类型", link: "/ops/blockchain/theory/fisco-bcos-node-type/" } + ] + }, + { + text: "区块链运维", items: [ + { text: "区块链产品设计和基本部署", link: "/ops/blockchain/practice/basic-deployment/" }, + { text: "区块链网络部署与管理", link: "/ops/blockchain/practice/node-deployment/" }, + { text: "Console 控制台操作", link: "/ops/blockchain/practice/console-operator/" } + ] + } + ] +}) +const linux = defineNoteConfig({ + dir: 'ops', + link: '/ops/', + sidebar: [ + { text: "Linux 运维笔记", link: "/ops/linux/" }, + { + text: "Linux 基础", prefix: "/linux", items: [ + { text: "Linux 基础命令详解", link: "/ops/linux/basic-commands/" } + ] + }, + { + text: "其他", prefix: "/linux", items: [ + { text: "一些零散的命令", link: "/ops/linux/other/" } + ] + } + ] +}) +const docker = defineNoteConfig({ + dir: 'ops', + link: '/ops/docker/', + sidebar: [ + { text: "Docker 运维笔记", link: "/ops/docker/" }, + { + text: "数据库相关", + prefix: "/ops/docker/db/", + items: [ + { text: "MongoDB 部署", link: "/ops/docker/db/mongodb/" }, + { text: "Postgres 部署", link: "/ops/docker/db/postgres/" }, + ] + }, + { + text: "其他服务", + prefix: "/ops/docker/other/", + items: [ + { text: "ETLCloud 部署", link: "/ops/docker/other/ETLCloud/" }, + ] + }, + ] +}) +const web = defineNoteConfig({ + dir: 'programming', + link: '/programming/web/', + sidebar: [ + { text: "Web 开发学习笔记", link: "/programming/web/" }, + { + text: "基础知识", prefix: "/basic-syntax", items: [ + { text: "Web 前端基础讲解", link: "/programming/web/basic-syntax/html-css-js/" }, + { text: "HTML 常用标签与属性", link: "/programming/web/basic-syntax/html-tags-attributes/" }, + { text: "HTML 列表与语义布局", link: "/programming/web/basic-syntax/html-lists-and-semantic-layout/" }, + { text: "JavaScript 基础知识", link: "/programming/web/basic-syntax/javascript-basics/" }, + ], + }, + ] +}) +/** + * 导出所有的 note + */ +export default defineNotesConfig({ + dir: 'notes', + link: '/', + notes: [LeetCode, english, cPlusPlus, solidity, blockchain, linux, docker, cryptography, web], +}) diff --git a/docs/.vuepress/plume.config.ts b/docs/.vuepress/plume.config.ts new file mode 100644 index 0000000..17f5500 --- /dev/null +++ b/docs/.vuepress/plume.config.ts @@ -0,0 +1,25 @@ +import { defineThemeConfig } from 'vuepress-theme-plume' +import navbar from './navbar' +import notes from './notes' + +export default defineThemeConfig({ + logo: '/plume.svg', + + appearance: true, // 深色模式 + + social: [ + { icon: 'github', link: '/' }, + ], + + /** + * @see https://theme-plume.vuejs.press/config/basic/#profile + */ + profile: { + avatar: 'https://image.simengweb.com/elysia/header.jpg', + name: 'SiMengWebSite Notes', + description: '祀梦的笔记网站', + }, + + navbar, + notes, +}) diff --git a/docs/.vuepress/public/docs/.gitkeep b/docs/.vuepress/public/docs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/.vuepress/public/images/.gitkeep b/docs/.vuepress/public/images/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/.vuepress/public/images/elysia/1.jpg b/docs/.vuepress/public/images/elysia/1.jpg new file mode 100644 index 0000000..fe5522c Binary files /dev/null and b/docs/.vuepress/public/images/elysia/1.jpg differ diff --git a/docs/.vuepress/public/images/elysia/2.png b/docs/.vuepress/public/images/elysia/2.png new file mode 100644 index 0000000..da59693 Binary files /dev/null and b/docs/.vuepress/public/images/elysia/2.png differ diff --git a/docs/.vuepress/public/images/elysia/3.jpg b/docs/.vuepress/public/images/elysia/3.jpg new file mode 100644 index 0000000..150881e Binary files /dev/null and b/docs/.vuepress/public/images/elysia/3.jpg differ diff --git a/docs/.vuepress/public/images/elysia/4.jpg b/docs/.vuepress/public/images/elysia/4.jpg new file mode 100644 index 0000000..395dad2 Binary files /dev/null and b/docs/.vuepress/public/images/elysia/4.jpg differ diff --git a/docs/.vuepress/public/images/elysia/5.jpg b/docs/.vuepress/public/images/elysia/5.jpg new file mode 100644 index 0000000..f4da1da Binary files /dev/null and b/docs/.vuepress/public/images/elysia/5.jpg differ diff --git a/docs/.vuepress/public/images/elysia/6.jpg b/docs/.vuepress/public/images/elysia/6.jpg new file mode 100644 index 0000000..cbfe146 Binary files /dev/null and b/docs/.vuepress/public/images/elysia/6.jpg differ diff --git a/docs/.vuepress/public/plume.svg b/docs/.vuepress/public/plume.svg new file mode 100644 index 0000000..d744dff --- /dev/null +++ b/docs/.vuepress/public/plume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/docs/.vuepress/public/videos/.gitkeep b/docs/.vuepress/public/videos/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/docs/.vuepress/theme/components/RImg.vue b/docs/.vuepress/theme/components/RImg.vue new file mode 100644 index 0000000..bbb63fd --- /dev/null +++ b/docs/.vuepress/theme/components/RImg.vue @@ -0,0 +1,27 @@ + + + diff --git a/docs/.vuepress/theme/shim.d.ts b/docs/.vuepress/theme/shim.d.ts new file mode 100644 index 0000000..f07bbd3 --- /dev/null +++ b/docs/.vuepress/theme/shim.d.ts @@ -0,0 +1,6 @@ +declare module '*.vue' { + import type { ComponentOptions } from 'vue' + + const comp: ComponentOptions + export default comp +} diff --git a/docs/.vuepress/theme/styles/custom.css b/docs/.vuepress/theme/styles/custom.css new file mode 100644 index 0000000..16de560 --- /dev/null +++ b/docs/.vuepress/theme/styles/custom.css @@ -0,0 +1,50 @@ +:root { + /** 主题颜色 */ + + /* + --vp-c-brand-1: #5086a1; + --vp-c-brand-2: #6aa1b7; + --vp-c-brand-3: #8cccd5; + --vp-c-brand-soft: rgba(131, 208, 218, 0.314); + */ + + /** 背景颜色 */ + + /* + --vp-c-bg: #fff; + --vp-c-bg-alt: #f6f6f7; + --vp-c-bg-elv: #fff; + --vp-c-bg-soft: #f6f6f7; + */ + + /** 文本颜色 */ + + /* + --vp-c-text-1: rgba(60, 60, 67); + --vp-c-text-2: rgba(60, 60, 67, 0.78); + --vp-c-text-3: rgba(60, 60, 67, 0.56); + */ +} + +/** 深色模式 */ +[data-theme="dark"] { + /* + --vp-c-brand-1: #8cccd5; + --vp-c-brand-2: #6aa1b7; + --vp-c-brand-3: #5086a1; + --vp-c-brand-soft: rgba(131, 208, 218, 0.314); + */ + + /* + --vp-c-bg: #1b1b1f; + --vp-c-bg-alt: #161618; + --vp-c-bg-elv: #202127; + --vp-c-bg-soft: #202127; + */ + + /* + --vp-c-text-1: rgba(255, 255, 245, 0.86); + --vp-c-text-2: rgba(235, 235, 245, 0.6); + --vp-c-text-3: rgba(235, 235, 245, 0.38); + */ +} diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 0000000..9301bc5 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,18 @@ +--- +pageLayout: home +externalLinkIcon: false +config: + - + type: hero + full: true + background: tint-plate + hero: + name: 仲夏夜之梦 + tagline: 祀梦和小小夏的花园 + text: 在这里,每一个文字都承载着温暖与美好 🌸 + actions: + - + theme: brand + text: 博客 + link: /blog/ +--- diff --git a/docs/about.md b/docs/about.md new file mode 100644 index 0000000..8dcd77c --- /dev/null +++ b/docs/about.md @@ -0,0 +1,65 @@ +--- +title: 关于祀梦与他的花园 +description: 这里是爱与回忆的小世界~ +hideInBlogList: true +article: false +createTime: 2024/10/29 12:30:00 +permalink: /about/ +--- + +# 👋 嗨呀!这里是祀梦的小窝~ + +欢迎来到我的数字花园!这里不仅是笔记的存放处,更是我思维流转、技术成长与生活感悟的小小交汇点。希望能在这里和你分享温暖与美好~ (๑>◡<๑) + +## 🏗️ 正在努力构建的未来~ + +目前我是一名大三的学生,主修**信息安全**专业。虽然专业背景在“守”,但我对“建”有着更浓厚的兴趣呢! + +- **职业坐标**:目前正全力投入**后端开发**的学习中,正在努力准备实习,期待能在真实的代码世界里磨砺自己,成为厉害的后端大牛!(๑•̀ㅂ•́)و✧ +- **技术理念**:我崇尚简洁、高效的代码,同时也相信技术的最终目的是为了传递温暖和解决问题。 + +## 🪴 为什么会有这个“花园”? + +你可能会发现这个站点的结构非常清晰(或者说,我在努力让它变得整齐一些~)。 + +在 2025 年末,我决定将原有的博客迁移到这个新家。原因很简单:**我需要一个更具结构化的空间来安放我的笔记**。从密码学理论到后端开发实战,从英语四级备考到算法练习,我希望知识能够像小植物一样,在合适的土壤里有序生长,方便自己翻阅,也能给路过的你一点点参考呀~ 🌸 + +## 🚀 个人项目展示~ + +除了这个笔记站,我还维护着以下这些心血之作: + +- [**祀梦的个人博客**](https://blog.simengweb.com/):我的感性领地,记录着生活故事与长长的技术思考。 +- [**算法练习平台**](https://algorithmplatform.simengweb.com/):为了提升算法能力而开发的小平台,欢迎来一起刷题呀!(≧∇≦)ノ + +## 🛠️ 祀梦的小技能树~ (〃'▽'〃) + +虽然总觉得自己学得杂杂的,但每一项技能都是我用心收集的“宝藏”哦! + +- **常用的魔法咒语**:Python (最熟练啦~), C++, Java, Solidity, JavaScript +- **探索过的奇幻领地**:后端开发、信息安全、区块链运维、Linux 系统管理 (。・ω・。) +- **随身携带的口袋工具**:Docker, Git, WSL2, Hardhat + +## 📸 生活的彩色一角 + +在代码之外,我的世界也是五颜六色的: + +- **超棒的朋友**:首页提到的“小小夏”是我非常要好的朋友。我们共同守护着这个数字花园的宁静。 +- **我的小爱好**:我热爱摄像、美食与旅游。假期闲下来的时候,也会拿起画笔,勾勒出心里的角色呢~ (๑˘ᴗ˘๑) +- **关于我呀**:一个喜欢美好事物、偶尔有点小社恐、但在技术面前总能保持好奇心的男孩子。 + +## 🕰️ 网站的成长足迹 + +- **2025-12-15**:完成结构化迁移,给笔记们找了个舒服的新家。 +- **2025-09-21**:笔记站初次部署。 +- **2024-10-29**:在这个小站写下了第一段关于花园的文字。 + +## 💌 找我玩呀~ + +如果你对我的项目感兴趣,或者只是想聊聊技术与生活,欢迎随时联系: + +- **邮箱**:[meng_si@proton.me](mailto:meng_si@proton.me) +- **B站**:[66ccff色的薰依草](https://space.bilibili.com/361714249) + +--- + +> “在每一个文字里,都承载着温暖与美好。” 🌸 \ No newline at end of file diff --git a/docs/blog/collect/free_model_pai.md b/docs/blog/collect/free_model_pai.md new file mode 100644 index 0000000..387dfcf --- /dev/null +++ b/docs/blog/collect/free_model_pai.md @@ -0,0 +1,255 @@ +--- +title: 便宜免费的大模型 API 整合 ( 2025年11月11日 ) +createTime: 2025/11/11 13:54:02 +cover: /images/elysia/1.jpg +coverStyle: + layout: right +permalink: /article/free_model_api/ +--- + +百度千帆、讯飞星火、腾讯混元均有免费在线额度,SCNet 提供 0.1 元/百万 tokens 的超低价大模型,轻量任务先薅免费,量大了再掏 0.1 元,稳! + + +## 免费的大模型 API 整合 + +嗨~如果你在找既温柔又省荷包的小模型,就把它们悄悄收进这里吧!它们也许不是夜空最亮的那颗星,却能在摘要、划重点、轻声问答的小角落里,给你软软又稳稳的陪伴哦~ + + +### 百度千帆大模型平台 + +先从千帆开始吧~下面是常用模型的参考价格: + +| 模型名称 | 版本名称 | 服务内容 | 子项 | 在线推理 | 批量推理 | 单位 | +|---|---|---|---|---|---|---| +| ERNIE Speed | ernie-speed-128k | 推理服务 | 输入 | 0 | 0.00012 | 元/千tokens | +| ERNIE Speed | ernie-speed-128k | 推理服务 | 输出 | 0 | 0.00024 | 元/千tokens | +| ERNIE Lite | ernie-lite-8k | 推理服务 | 输入 | 0 | 0.0012 | 元/千tokens | +| ERNIE Lite | ernie-lite-8k | 推理服务 | 输出 | 0 | 0.0024 | 元/千tokens | +| ERNIE Tiny | ernie-tiny-8k | 推理服务 | 输入 | 0 | 0.00008 | 元/千tokens | +| ERNIE Tiny | ernie-tiny-8k | 推理服务 | 输出 | 0 | 0.00016 | 元/千tokens | + +> 提示:单纯调用 API 接口属于在线推理,当前显示为 0 元;批量推理按量计费。 + +#### 快速上手 + +1. 访问控制台并获取 API Key。 +2. 使用下方示例进行快速测试。 +3. 若遇错误,请检查模型名称与凭证有效期。 + +控制台:[https://console.bce.baidu.com/qianfan/ais/console/apiKey](https://console.bce.baidu.com/qianfan/ais/console/apiKey) + +```python +import requests +import json + +def main(): + url = "https://qianfan.baidubce.com/v2/chat/completions" + API_KEY = 'YOUR_API_KEY' + payload = json.dumps({ + "model": "ernie-speed-128k", + "messages": [ + { + "role": "system", + "content": "You are a helpful assistant." + }, + { + "role": "user", + "content": "你好" + } + ] + }) + headers = { + 'Content-Type': 'application/json', + 'Authorization': F'Bearer {API_KEY}' + } + response = requests.request("POST", url, headers=headers, data=payload) + print(response.text) + + +if __name__ == '__main__': + main() +``` + +> 小贴士:将 `YOUR_API_KEY` 替换为你的密钥,建议使用环境变量管理凭证;请勿在公共仓库提交 Key。 + +更多文档:[https://cloud.baidu.com/doc/qianfan-api/s/3m9b5lqft](https://cloud.baidu.com/doc/qianfan-api/s/3m9b5lqft) + +### 讯飞星火大模型 + +接着,我们轻盈地来到星火~ + +- 官网:[https://xinghuo.xfyun.cn/sparkapi](https://xinghuo.xfyun.cn/sparkapi) +- 控制台:[https://console.xfyun.cn/services/cbm?from=desk](https://console.xfyun.cn/services/cbm?from=desk) +- 模型说明:可见 Spark Lite,Token 余量为无限。 + +#### 快速上手 + +> 小贴士:如需联网检索,启用 `web_search`;流式输出可以提升交互体验。 + +1. 在控制台获取授权凭证并替换到示例中。 +2. 选择 `Lite` 模型,按需开启 `web_search` 与 `stream`。 +3. 若需要长内容输出,注意 8K tokens 限制,合理裁剪上下文。 + +```python +# encoding:UTF-8 +import json +import requests + + +# 请替换XXXXXXXXXX为您的 APIpassword, 获取地址:https://console.xfyun.cn/services/bmx1 +api_key = "Bearer XXXXXXXXXX" +url = "https://spark-api-open.xf-yun.com/v1/chat/completions" + +# 请求模型,并将结果输出 +def get_answer(message): + #初始化请求体 + headers = { + 'Authorization':api_key, + 'content-type': "application/json" + } + body = { + "model": "Lite", + "user": "user_id", + "messages": message, + # 下面是可选参数 + "stream": True, + "tools": [ + { + "type": "web_search", + "web_search": { + "enable": True, + "search_mode":"deep" + } + } + ] + } + full_response = "" # 存储返回结果 + isFirstContent = True # 首帧标识 + + response = requests.post(url=url,json= body,headers= headers,stream= True) + # print(response) + for chunks in response.iter_lines(): + # 打印返回的每帧内容 + # print(chunks) + if (chunks and '[DONE]' not in str(chunks)): + data_org = chunks[6:] + + # print(f"DEBUG: raw data_org: {data_org}") + chunk = json.loads(data_org) + text = chunk['choices'][0]['delta'] + + # 判断最终结果状态并输出 + if ('content' in text and '' != text['content']): + content = text["content"] + if (True == isFirstContent): + isFirstContent = False + print(content, end="") + full_response += content + return full_response + + +# 管理对话历史,按序编为列表 +def getText(text,role, content): + jsoncon = {} + jsoncon["role"] = role + jsoncon["content"] = content + text.append(jsoncon) + return text + +# 获取对话中的所有角色的content长度 +def getlength(text): + length = 0 + for content in text: + temp = content["content"] + leng = len(temp) + length += leng + return length + +# 判断长度是否超长,当前限制8K tokens +def checklen(text): + while (getlength(text) > 11000): + del text[0] + return text + + +#主程序入口 +if __name__ =='__main__': + + #对话历史存储列表 + chatHistory = [] + #循环对话轮次 + while (1): + # 等待控制台输入 + Input = input("\n" + "我:") + question = checklen(getText(chatHistory,"user", Input)) + # 开始输出模型内容 + print("星火:", end="") + getText(chatHistory,"assistant", get_answer(question)) +``` + +### 腾讯混元大模型 + + - 计费与价格:[https://cloud.tencent.com/document/product/1729/97731](https://cloud.tencent.com/document/product/1729/97731) + - 文档与控制台:[https://cloud.tencent.com/document/product/1729/111008](https://cloud.tencent.com/document/product/1729/111008) + - 模型说明:`hunyuan-lite` 免费可用,适合轻量任务。 + +```python +import os +from openai import OpenAI + +# 构造 client(建议使用环境变量管理密钥) +api_key = os.getenv("HUNYUAN_API_KEY", "YOUR_API_KEY") +client = OpenAI( + api_key=api_key, # 混元 APIKey + base_url="https://api.hunyuan.cloud.tencent.com/v1", # 混元 endpoint +) + +completion = client.chat.completions.create( + model="hunyuan-lite", + messages=[ + { + "role": "user", + "content": "泥嚎" + } + ], + extra_body={ + "enable_enhancement": True, + }, +) +print(completion.choices[0].message.content) +``` + +> 小贴士:请勿在公共仓库提交任何真实密钥;使用环境变量或密钥管理服务更安全。 + +## 低价大模型 + +### SCNet 平台 + +#### 简介 +SCNet 是一个面向人工智能和科学计算的一站式算力与 AI 平台,提供从数据管理、模型训练到部署的完整链路服务,同时结合国产超算硬件和多模态模型生态,让企业和开发者能更高效地使用 AI。 + +#### 链接与文档 +- 官网:[https://www.scnet.cn/](https://www.scnet.cn/) +#### 价格一览 +| 模型 | 上下文长度 | 百万 tokens 输入价格 | 百万 tokens 输出价格 | +|---|---|---|---| +| Qwen3-235B-A22B | 32K | 0.1 元 | 0.1 元 | +| DeepSeek-R1-Distill-Qwen-7B | 32K | 0.1 元 | 0.1 元 | +| DeepSeek-R1-Distill-Qwen-32B | 32K | 1 元 | 4 元 | +| DeepSeek-R1-Distill-Llama-70B | 32K | 0.1 元 | 6 元 | +| QwQ-32B | 32K | 1 元 | 4 元 | +| Qwen3-30B-A3B | 128K | 1 元 | 6 元 | +| Qwen3-Embedding-8B | - | 0.1 元 | - | + +- 文档(计费与说明):[https://www.scnet.cn/ac/openapi/doc/2.0/moduleapi/tutorial/modulefee.html](https://www.scnet.cn/ac/openapi/doc/2.0/moduleapi/tutorial/modulefee.html) + +目前看到的价格最低的 Qwen3-235B-A22B 模型的 API,相比前面的免费模型,性能更强。 +- API 接口使用样例:[https://www.scnet.cn/ac/openapi/doc/2.0/moduleapi/tutorial/apicall.html](https://www.scnet.cn/ac/openapi/doc/2.0/moduleapi/tutorial/apicall.html) + +## 小结 + +把上面这些“零钱包”级别的模型都翻完啦~ +- 百度千帆、讯飞星火、腾讯混元都给出「免费在线额度」,日常轻量问答、摘要、润色完全够用;记得把 Key 藏进环境变量,别手滑推到 GitHub。 +- 如果任务量突然暴涨,SCNet 的 Qwen3-235B-A22B 只要 0.1 元/百万 tokens,性价比直接拉满,当“备胎”也安心。 + +一句话:先薅免费的,薅不动再掏 0.1 元,让荷包和模型一起“稳稳幸福”吧! diff --git a/docs/blog/elysia/elysia_quotation.md b/docs/blog/elysia/elysia_quotation.md new file mode 100644 index 0000000..3a5dc75 --- /dev/null +++ b/docs/blog/elysia/elysia_quotation.md @@ -0,0 +1,298 @@ +--- +title: 爱莉希雅语录 +createTime: 2026/01/08 15:39:17 +cover: /images/elysia/2.png +coverStyle: + layout: left +permalink: /archives/a5b3ea8e-7c3c-40a1-a737-26e911623da8/ +--- +嗨,亲爱的来访者♪ 欢迎来到这片收集了“真我”与“美丽”碎片的园圃。在这里,你会读到执拗花朵在暴雨中的坚持,也会听见逐火英桀们为文明奏响的最后颂歌。请怀着期待慢慢翻阅吧,愿这些如星光般的文字能陪你开启属于自己的闪耀旅程,毕竟……你本身就是这世间最瑰丽的馈赠呢♪ + +![elysia](/images/elysia/1.jpg) +1. 执拗的花朵永远不会因暴雨而褪去颜色,你的决心也一定能在绝境中绽放真我。 + +2. 愿你前行的道路有群星闪耀。愿你留下的足迹有百花绽放。你即是上帝的馈赠,世界因你而瑰丽。 + +3. 悲剧并非终结,而是希望的起始。 + +4. 此后,将有群星闪耀,因为我如今来过。此后,将有百花绽放,因为我从未离去。 + +5. 告别过去,是为了走向未来 + +6. 我名为爱莉希雅……最初的律者,人之律者。 + +7. 某一日,祂从天坠落。人们抬头仰望,于是看见了星空。星月送来神的女儿,她愿成为人的伴侣。长风化作她的轺车,四海落成她的园圃。鸟雀衔来善的种子,百花编织爱的颂歌。她便是这样降生于世,行于大地,与人类一同长大,与世界一起发芽。 + +8. 亲爱的山雀,请将我的箭,我的花,与我的爱,带给那子然独行的旅人。然后,便让它开出永恒而无瑕的…人性之华吧。 + +9. 压力之下的选择才能揭示一个人的真我,也将决定他最终会成为怎样的人。 + +10. 即使未来不能改变,我也要自己决定到达那个结果的过程。 + +11. 这是段漫长的路途,你或许会停滞不前,甚至在很长一段时间里一无所获。但这未必是件坏事,并不是一定要做到了什么,达成了什么才算前进。空虚、迷茫、犹豫、自否,对于一个人的一生,这些过程同样拥有它们的意义——就像这里的十三个人曾经历的那样。 + +12. 天色暗了,接下来就是调皮捣蛋的时间了呢。 + +13. 白天的我也很可爱,晚上的我也很可爱,你更喜欢哪个我呢? + +14. 说起粉色头发的可爱女孩,你第一个会想到谁?321回答! + +15. 你好像有不少问题想问我呢,别心急,我们还有很多很多时间。 + +16. 你喜欢脚踩在落叶或是新雪上的感觉吗?我很喜欢哦。 + +17. 你比我想象中还可爱许多呢。是不是很在意我想象了什么? + +18. 今天的任务都完成啦?真棒,夸夸你哦。 + +19. 嗨!今天天气真好,和我一样闪闪发光呢。 + +20. 嗨,早上好!一天的好心情,从见到你开始。 + +21. 嗨,早上好呀!看见我,有没有很开心呢? + +22. 你该休息啦,约好了,我们明天再见哦。 + +23. 天冷了,小心别着凉哦。我?美少女怎么会冷呢。 + +24. 今天是我的生日哦。要一起庆祝吗?就我们两个人。 + +25. 哎呀,你也睡不着吗?那我们来聊聊天,好不好? + +26. 有些事不用太在意,美丽的少女总有些小秘密,不是吗? + +27. 这么晚了还不睡吗?是在想我,对不对? + +28. 知道吗,今天是个很特别的日子。对啦,就是你的生日♪ + +29. 好啦,冷静一下♪ + +30. 以律者的标准,你的样子还真有些......别致呢♪ + +31. 哎呀,别生气嘛♪ + +32. 真是的......我会哭的哦...... + +33. 抱歉......得让你失望啦♪ + +34. 英桀们的谢幕,必须盛大而壮丽 + +35. 只是你我二人独处,显然有些寂寞了♪ + +36. 你说对不对?我的好·伊·甸♪ + +37. 你明明也很开心嘛♪ + +38. 英桀们也不过是心绪复杂,带有缺陷的普通人,就和当时的每个普通人一样。有自己的私心,也多半谈不上有什么大爱,但也会因为一时感动,或是心血来潮,去做一些冲动,又了不起的事。他们从来不是完美的英雄,只是因为在那个时间,出现在那里的是他们而已。 + +39. 我相信换做其他人,也一定会做出小异大同的选择,甚至做得更好也说不定?这就是[美丽]的永恒,我所相信的[真我]。十三个人生命的全部就是如此纷繁而又美妙的事物,意义在于在这个过程中我想要相信什么。那会决定在抵达终点时你能得到什么。 + +40. 你看,他们曾如此骄傲地活过,贯彻始终,以生命奏响了文明的颂歌,这是被称作英桀的人们的故事,是十三位逐火者未尽的旅途,但来访者,你们的道路仍将延续,不是吗,那就听凭心意前进吧,嘻,都说了要前进啦,沿着脚下的足迹,去见证这段逐火的征程,最后跨越逝者们的终幕,去创造我们所未能迎接的未来吧。 + +41. 要流传给后世的,绝不应该只有憎恨和使命。只有领略过这个时代的光辉和灿烂,未来的人们才能理解我们为之而战的意义。 + +42. 由英桀们来传承的,应当是身为英桀的荣耀,战斗的理由。是在这段逐火的旅途中,我们最终的灵魂所托。 + +43. 而后来的你们,将见证我们生命的足迹,灵魂的刻印,并在其中找到自己寻求的答案。 + +44. 但无论如何 我们的时代已经结束了,而我们也努力完成了各自的使命。 + +45. 不是被推搡,被裹挟着向前,也不是沿着被别人选定的道路行进。而是怀着这样的想法——我想要怎么做,我应该怎么做——去决定自己的命路,自己的刻印。 + +46. 以自我的意志,朝着自身所设下的目标,用自在的方式,竭尽全力活过“我”作为主角的一生。 + +47. 你看,我是这样的,大家也是这样的。我所知晓的那个时代,以及它所孕育出的这十三个人,都是如此。万千的轨迹交织、萦绕,由此诞下百花齐放的奇迹。这就是“美丽”的永恒,我所相信的“真我”。 + +48. 至此,我们的故事结束了。而从今以后,就是“你”的故事了。 + +49. 让无人传颂的歌谣,再度启唱。 + +50. 为历史尘封的故事,续写新章。 + +51. 高洁而纯真的灵魂,踏上旅途。 + +52. 愿掠集之兽爱佑其身,赐予「空梦」的自由。 + +53. 愿渡尘之羽爱佑其身,赐予「浮生」的坚忍。 + +54. 愿绘世之卷爱佑其身,赐予「繁星」的纯真。 + +55. 愿噬界之蛇爱佑其身,赐予「无限」的渴求。 + +56. 愿黎明之哨爱佑其身,赐予「旭光」的意志。 + +57. 愿寸断之刃爱佑其身,赐予「刹那」的决绝。 + +58. 愿善法之瞳爱佑其身,赐予「天慧」的智识。 + +59. 愿坏劫之焱爱佑其身,赐予「鏖灭」的赤诚。 + +60. 愿愚戏之匣爱佑其身,赐予「螺旋」的奇迹。 + +61. 愿璀耀之歌爱佑其身,赐予「黄金」的光辉。 + +62. 愿深罪之槛爱佑其身,赐予「戒律」的慈爱。 + +63. 愿无烬之剑爱佑其身,赐予「救世」的理想。 + +64. 愿无瑕之人爱佑其身,赐予「真我」的回归。 + +65. 我们于此赞颂,始源之律者的诞生 + +66. 我这支歌将抚摸你的前额,犹如那祝福的亲吻 + +67. 当你独自一人时,它会坐在身旁与你耳语 + +68. 当你陷入人群时,它又会保护你远离喧嚣。 + +69. 我的歌将成为你梦想的羽翼,它将载着你的心到那未知的边缘 + +70. 当黑夜遮蔽了你的路时,它又成为了照耀在你头顶的忠实星光 + +71. 于是,「始源」的故事迎来落幕 + +72. 于是,「始源」的故事迎来伊始 + +73. 以我为终…… + +74. 以我……为始。 + +75. 而今,终焉之时将至。而今,归去之时已至。就此告别吧,美丽的世界。 + +76. 不想前进的时候,就暂且停下脚步吧,我们永远都在这里,和当初一模一样,毕竟,美丽的女孩子什么都能做到嘛! + +77. 游云拂风,花染湛空,与你并肩漫步在午后街头,携手美好此刻,共赏岁月温柔。 + +78. 经常会和别的女孩子谈论你哦。内容……是不是很想知道呀~ + +79. 有些事不用太在意,美丽的少女总有些小秘密,不是吗? + +80. 这里有好多和我一样漂亮的女孩子呀,是天堂吗? + +81. 你会不会嫌我话多呢?可我就是有好多话想对你说呀。 + +82. 不许叫错我的名字噢,不然……我会有小情绪的。 + +83. 如此绚丽的花朵,不该在绽放之前就枯萎。我会赠予你璀聚的祝福,而你的灵魂,也将会绽放更耀眼的光辉。 + +84. 嗨,想我了吗? + +85. 不论何时何地,爱莉希雅都会回应你的期待 + +86. 嗨,我又来啦。多夸夸我好吗?我会很开心的~♪ + +87. 你好!新的一天,从一场美妙的邂逅开始。 + +88. 终于轮到我啦,这段时间我可是一直都在构思与你见面的开场白呢。 + +89. 你可以更光明正大的看向我噢,毕竟我也直在看着你嘛。来,让我们更深入地了解彼此吧? + +90. 唉,要做的事好多~但焦虑可是女孩子的大敌,保持优雅得体,从容愉快地前进吧。 + +91. 别看我这样,其实我也是很忙的。不过,我的日程上永远有为你预留的时间。 + +92. 唉,时间真是个讨厌的东西,你不觉得吗?如果不是时间紧迫,我还想留下更多值得纪念的话语。 + +93. 有没有觉得我的话要比别人多一点?多就对啦,我可是有在很认真地准备这件事的。 + +94. 哇,你看那朵白白软软的云,是不是有点像我呢? + +95. 可爱的少女心可是无所不能的噢~♪ + +96. 好啦可以啦,再说下去我就要哭了噢~♪ + +97. 这束鲜花,要心怀感激的收下哦~♪ + +98. 要好好看着我哦~♪ + +99. 这身衣服是伊甸做的噢,喜欢吗,还是说,喜欢的是我呢~♪ + +100. 别动噢,借你的眼睛照照镜子……好啦,我看起来怎么样? + +101. 嗯~和女孩子独处时,可要好好看向对方的眼晴噢~♪ + +102. 有空多来陪陪我好吗,你一定不忍心让可爱的我孤独寂寞吧。 + +103. 这可是你选的衣服,要好好看着,不许移开视线噢。 + +104. 加点浪漫的气氛,如何? + +105. 哇谢谢!我就知道你对我最好啦! + +106. 爱莉希雅的贴心提示!你可以尽情的依赖爱莉希雅,而她,也会以全部的身心回应你! + +107. 爱莉希雅的贴心提示!如果见到凯文在大厅里,多穿点衣服,他很冷的,各种意义上呢。 + +108. 在热情似火这件事上,我可不会输给千劫哦。 + +109. 这一次有你想要的东西吗?没有的话,我就可以再见你一面了。 + +110. 你应该不会嫌我话多吧?还是说,你更喜欢伊甸那种优雅文静的类型? + +111. 如你所见,与那个凯文齐名的第二领袖,竟是一位如花朵般娇羞的少女也就是我啦。 + +112. 爱莉希雅的贴心提示!和樱说话时,别盯着耳朵看太久,她和我不一样,会害羞。 + +113. 想了想我毕竟算半个文职,说“武”也不太合适。那就去掉一个字,叫“女神”吧!你觉得呢? + +114. 你说,我要是把头发留的和樱那么长,会不会更好看呀?嗯? + +115. 你战斗的样子如此绚丽,就如同漫天的飞花一般。让我再为其添点色彩吧。 + +116. 这里埋藏着太多的历史、太多的秘密。但别担心,无论路有多长,我始终都会在你身边。 + +117. 如果我也成为律者,会是什么样子呢?头发会再变多些吗?还是说……裙摆会突然变长? + +118. 说起来,为什么只有我的刻印是金色的伊甸不会生气吧?算啦,她那么好,一定不会生气的。 + +119. 咦,到我了吗?哎呀真可惜,这次的开场白我还没想好呢,原谅我吧,下次一定给你个惊喜。 + +120. 仔细想想,我是女孩子,战力比肩凯文,又有如神明般的聪慧与美貌。这么说来,我不也是“女武神”吗? + +121. 爱莉希雅的贴心提示!如果遇到千劫,千万别问他有关面具的事哦。 + +122. 唉,不知道你见没见到这里的男孩们,他们都内向得很,还是我比较放得开吧? + +123. 爱莉希雅的贴心提示!伊甸就像是天使一样——温柔,美丽,又总会予人以天使般的馈赠。 + +124. 这真是个神奇的地方,不是吗?它让我们的灵魂跨越时空于此相遇,多么浪漫呀。 + +125. 悄悄告诉你哦,我一共准备了40种不同的开场白。 + +126. 咦,你在看哪?哦......很在意这对耳朵?它们很漂亮对吗,我也这么觉得。 + +127. 你一定也在期待和我相遇吧?我知道,因为我的刻印总是很实用嘛。 + +128. 我的抉择与你的抉择,二者相遇会诞下怎样的奇迹,我想见证这一刻的到来。 + +129. 爱莉希雅的贴心提示!如果你不想听苏说话了,悄悄走开也行,他看不见。 + +130. 有我的刻印,你绝对不会输。输了也没关系,我会先一步去大厅等你回来。 + +131. 不要被三次元的女人骗了呀。 + +132. 英桀第二位,爱莉希雅,如你所见是一位像花朵般可爱的美丽少女。 + +133. 我们会留在过去,而你将走向未来。 + +134. 毕竟我向来不习惯太严肃的场合,也不喜欢过于拘谨的人际关系。 + +135. 再打下去我会哭的哦 + +136. 怎么样?喜欢我的记忆吗?有没有一种在和美丽的少女并肩作战的感觉? + +137. 猜猜我为你带来了什么,金色的、闪闪发光的刻印,没有人能拒绝它,不是吗? + +138. 见好就收哦! + +139. 但我永远都会在这里,为你点亮前行的灯火。 + +140. 纵使知道文明已经覆灭,却依旧选择穷尽一切抗争到最后,只是为了将自己骄傲活过的样子永远铭刻在历史之中。 + +141. 悲伤不会凭空消失,但温暖的感情也会永远在心底珍藏。 + +142. 无论过去还是现在,可爱的少女心是无所不能的——只有这一点,无论如何都不会改变。 + +143. 那个白头发的漂亮女孩就是芽衣的...嗯哼哼,被我发现喽。 + +143.那是...华?唉,她交到了新的朋友,太好了。 \ No newline at end of file diff --git a/docs/blog/technology/Deploying_WSL2_on_Windows_10.md b/docs/blog/technology/Deploying_WSL2_on_Windows_10.md new file mode 100644 index 0000000..ea3c21e --- /dev/null +++ b/docs/blog/technology/Deploying_WSL2_on_Windows_10.md @@ -0,0 +1,149 @@ +--- +title: 在 Windows10 上部署 WSL2 并启动 ubuntu 虚拟机 +createTime: 2025/09/29 07:13:17 +cover: /images/elysia/3.jpg +coverStyle: + layout: right +permalink: /article/deploying-wsl2-on-windows-10/ +--- + +嗨呀~让我们在 Windows10 专业版上部署 WSL2 并启动 ubuntu 20.04 虚拟机吧~ + +最好使用 Windows10 专业版,并且在物理机上部署呢,在虚拟机上部署的话可能会有小麻烦,所以不太推荐啦~ + + +## Windows10 镜像 +大家好呀~今天要教大家如何在Windows10上部署WSL2并启动ubuntu虚拟机哦~ + +首先呢,我们需要准备一个Windows10的镜像文件~虽然Microsoft官方有提供,不过很容易下载失败呢,所以建议大家去[MSDN](https://msdn.itellyou.cn/)下载会更稳定哦~ + +在MSDN官网找到「操作系统」→「Window10」→「Windows 10 (Multiple Editions) (x64)」这个版本,它包含了专业版呢~要注意哦,WSL2只支持专业版、企业版或教育版,不支持家庭版呢,所以建议大家直接安装专业版会更方便~ + +## 启用WSL2和虚拟机平台 +接下来,我们需要启用WSL2和虚拟机平台的功能哦~首先以管理员身份打开PowerShell,然后依次运行下面的命令: +```powershell +# 启用 WSL 功能 +dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart + +# 启用虚拟机平台(WSL2 必需) +dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart +``` +运行完成后,记得要重启电脑哦~重启之后,我们还要把WSL2设置为默认版本呢: +```powershell +# 设置 WSL2 为默认版本 +wsl --set-default-version 2 +``` + +## 在 WSL2 中安装 ubuntu 20.04 LTS 虚拟机 +现在到了安装Ubuntu虚拟机的环节啦~还是以管理员身份打开PowerShell,然后依次运行这些命令: +```powershell +# 查看可用的 Ubuntu 版本 +wsl --list --online + +# 安装 Ubuntu 20.04 虚拟机 +wsl --install -d Ubuntu-20.04 +``` +安装过程大概是这样的哦~让我们一起来看看: +```powershell :collapsed-lines +wsl: 使用旧分发注册。请考虑改用基于 tar 的分发。 +正在下载: Ubuntu 20.04 LTS +Ubuntu 20.04 LTS 已下载。 +已成功安装分发。可以通过 “wsl.exe -d Ubuntu 20.04 LTS” 启动它 +正在启动 Ubuntu 20.04 LTS... +Installing, this may take a few minutes... +Please create a default UNIX user account. The username does not need to match your Windows username. +For more information visit: https://aka.ms/wslusers +Enter new UNIX username: simeng +New password: +Retype new password: +passwd: password updated successfully +操作成功完成。 +wsl: Failed to start the systemd user session for 'root'. See journalctl for more details. +Installation successful! +wsl: Failed to start the systemd user session for 'simeng'. See journalctl for more details. +To run a command as administrator (user "root"), use "sudo ". +See "man sudo_root" for details. + +Welcome to Ubuntu 20.04.6 LTS (GNU/Linux 6.6.87.2-microsoft-standard-WSL2 x86_64) + + * Documentation: https://help.ubuntu.com + * Management: https://landscape.canonical.com + * Support: https://ubuntu.com/advantage + + System information as of Tue Sep 30 14:27:51 CST 2025 + + System load: 0.48 Processes: 74 + Usage of /: 0.1% of 1006.85GB Users logged in: 1 + Memory usage: 7% IPv4 address for eth0: 172.31.237.99 + Swap usage: 0% + + +Expanded Security Maintenance for Applications is not enabled. + +0 updates can be applied immediately. + +Enable ESM Apps to receive additional future security updates. +See https://ubuntu.com/esm or run: sudo pro status + + +The list of available updates is more than a week old. +To check for new updates run: sudo apt update + + +This message is shown once a day. To disable it please create the +/home/simeng/.hushlogin file. +simeng@localhost:~$ +``` +这样我们就成功安装好Ubuntu虚拟机啦,可以开始使用了哦~ +### 安装过程中可能会出现的错误 + +在安装过程中,可能会遇到一些小问题呢~不过不用担心,已经帮大家准备好了解决方案哦~ + +#### 错误码 0x800701bc 缺少更新包 +如果看到这样的错误信息: +```txt +Installing, this may take a few minutes... +WslRegisterDistribution failed with error: 0x800701bc +Error: 0x800701bc WSL 2 ?????????????????? https://aka.ms/wsl2kernel + +Press any key to continue... +``` +这说明系统缺少WSL2所需的Linux内核更新包哦~这时候我们可以打开微软官网的[下载 Linux 内核更新包](https://learn.microsoft.com/zh-cn/windows/wsl/install-manual#step-4---download-the-linux-kernel-update-package)页面,下载最新的包安装就可以解决啦~ + +#### 错误码 0x80370102 虚拟化技术没有开启 +如果遇到这个错误,可能是因为虚拟化技术没有开启哦~如果是在真实机上操作的话,需要进入BIOS开启虚拟化技术呢~开启之后,可以在任务管理器 -> 性能 -> CPU 的详情页面中,看到下方的虚拟化状态显示为「已启用」哦~ + +![虚拟化技术启用](https://image.simengweb.com/blog/technology/20250930140716_251_27.png) + +如果是在虚拟机中操作的话,就需要启用嵌套虚拟化技术啦~以VMware为例: + +先关闭虚拟机,然后找到虚拟机的.vmx配置文件(通常在虚拟机目录下),在文件末尾添加一行:`vhv.enable = "TRUE"` + +保存之后再启动虚拟机就可以啦~如果还是失败的话,建议尝试换用WSL1,或者使用Hyper-V来部署Windows10虚拟机哦~ + +## 通过 WSL2 操作 ubuntu 20.04 LTS 虚拟机 +安装完成后,我们该如何操作Ubuntu虚拟机呢?很简单哦~以管理员身份打开PowerShell,然后运行这个命令查看已安装的虚拟机: +```powershell +# 查看已安装的虚拟机 +wsl -l -v +``` +如果前面的步骤都正确的话,这里应该可以看到一个Ubuntu-20.04的虚拟机啦~ + +另外,在文件资源管理器中,会多出一个Linux文件夹,里面有一个Ubuntu-20.04文件夹,这就是虚拟机的根目录哦~ + +想要启动并进入Ubuntu虚拟机的话,可以运行这个命令: +```powershell +wsl -d Ubuntu-20.04 +``` + +如果直接退出终端或者关闭窗口,虚拟机实例就会进入挂起状态,下次需要重新启动才能继续使用哦~当然,也可以通过指令强制终止虚拟机: +```powershell +wsl --terminate Ubuntu-20.04 +``` + +## 通过 VS Code 开发 +接下来,我们还可以通过VS Code来进行开发哦~不过需要先安装一些扩展呢:'Remote - SSH'和'WSL' + +安装好扩展后,在VS Code左侧打开远程资源管理器,就可以看到Ubuntu20.04虚拟机啦~直接点击连接就可以了哦~不过第一次连接可能需要启动一下虚拟机,会有点慢呢,耐心等待一下吧~ +![连接 WSL2 虚拟机](https://image.simengweb.com/blog/technology/20250930144329_252_27.png) +连接成功之后,就可以愉快地进行开发啦~是不是很简单呢~ diff --git a/docs/blog/technology/Operate_WSL2.md b/docs/blog/technology/Operate_WSL2.md new file mode 100644 index 0000000..a8a2e1e --- /dev/null +++ b/docs/blog/technology/Operate_WSL2.md @@ -0,0 +1,120 @@ +--- +title: WSL2 核心操作指南 +createTime: 2025/09/30 16:08:32 +cover: /images/elysia/4.jpg +permalink: /article/operate-wsl2/ +--- +这篇文章主要讲WSL2虚拟机核心操作哦~它基于轻量级Hyper-V运行,像贴心小精灵默默工作~还能用命令行精细控制!接下来讲启动/关闭、实例管理、资源配置、网络操作、备份迁移这五大操作,是不是很期待呢~♪ + + + +## 启动/关闭 WSL2 虚拟机 +WSL2的虚拟机平时是由Windows自动管理的呢,不过我们也可以通过命令手动控制它的生命周期哦~ +``` +# 启动指定的发行版 +wsl -d Ubuntu-20.04 + +# 关闭指定的发行版 +wsl --terminate Ubuntu-20.04 +``` +如果想要完全关闭WSL2的所有虚拟机,也是可以的哦~ + +使用这个命令后,所有的发行版都会被强制终止,内存、网络、文件句柄都会被全部释放呢~ +``` +wsl --shutdown +``` + +## 管理正在运行的 WSL 实例 +想知道当前有哪些WSL实例在运行吗?很简单哦~使用下面这个命令就可以查看啦: +``` +wsl -l -v +``` +输出结果大概是这个样子的哦~ +```text + NAME STATE VERSION +* Ubuntu Running 2 + docker-desktop Running 2 + Ubuntu-20.04 Stopped 2 +``` +看到那个带星号(*)的了吗?那就是当前的默认系统哦~如果想要设置新的默认发行版,可以使用这个命令: +``` +wsl --set-default Ubuntu-20.04 +``` + +嘿嘿~接下来讲讲怎么删除一个 WSL 实例哦~如果想和某个WSL实例说拜拜,就可以用下面这个命令哒~ +``` +wsl --unregister Ubuntu-20.04 +``` +注意,删除后无法恢复哦~请谨慎操作~ + +## 配置 WSL2 资源 +WSL2的资源也是可以自定义配置的哦~我们可以通过编辑`%USERPROFILE%\.wslconfig`文件来设置内存、CPU核心数等参数呢~ +``` +[wsl2] +# 内存限制(默认:80% 物理内存) +memory=4GB + +# CPU 核心数限制(默认:全部核心) +processors=2 + +# 交换空间大小(默认:25% 内存) +swap=2GB + +# 是否启用 localhost 端口转发(默认 true) +localhostForwarding=true +``` +要注意哦~修改完配置后,必须重启WSL2虚拟机才能让这些设置生效呢~ +## 网络相关配置 +WSL2使用的是虚拟NAT网络哦,它和Windows主机是相互隔离的,但又可以互相通信呢~是不是很神奇~ + +| 方向 | 访问方式 | 说明 | +| --- | --- | --- | +| Windows -> WSL2 | localhost:port | 自动端口转发(需要`localhostForwarding=true`) | +| WSL2 -> Windows | `host.docker.internal` 或 `$(cat /etc/resolv.conf \| grep nameserver \| awk '{print $2}')` | 获取主机的IP地址 | +| 外部机器 -> WSL2 | 默认不可达 | 需要手动端口转发或使用 Windows 防火墙规则 | + +想知道WSL2的IP地址吗?可以用这个命令查看哦~(不过要注意,每次启动WSL2后,IP地址可能会变呢~) + +注意哦~这个命令需要进入到WSL2虚拟机内部执行才行呢~ +``` +hostname -I +``` + +如果需要访问WSL2中的服务,多亏了`localhostForwarding`的配置,我们直接访问[localhost:port](http://localhost:port)就可以啦~超方便的~ + +如果需要手动设置端口转发,可以在Powershell中添加防火墙规则和端口转发哦~不过要记得以管理员方式打开Powershell呢~ +``` +# 获取 WSL2 当前IP地址 +$wslIp = (wsl hostname -I).Trim() + +$wslIp + +# 添加端口转发(以 8000 端口为样例) +netsh interface portproxy add v4tov4 listenport=8000 listenaddress=0.0.0.0 connectport=8000 connectaddress=$wslIp + +# 开放 Windows 防火墙 +New-NetFirewallRule -DisplayName "WSL2 Port 8000" -Direction Inbound -LocalPort 8000 -Protocol TCP -Action Allow + +# 撤销端口转发 +netsh interface portproxy delete v4tov4 listenport=8000 listenaddress=0.0.0.0 + +# 撤销开放的防火墙规则 +Remove-NetFirewallRule -DisplayName "WSL2 Port 8000" +``` + +## 备份和迁移 +WSL2发行版也是可以备份和迁移的哦~我们可以把整个发行版导出成tar文件,这样就可以用于备份、迁移或者分享给其他小伙伴啦~ +``` +# 导出指定发行版到 tar 文件 +wsl --export <发行版名称> <输出文件路径.tar> +wsl --export Ubuntu-20.04 D:\backups\ubuntu-2004.tar + +# 导入 tar 文件为新的发行版 +wsl --import <新发行版名称> <安装目录> [选项] +wsl --import Ubuntu-Backup C:\wsl\Ubuntu-Backup D:\backups\ubuntu-2004.tar --version 2 +``` +要注意哦~导入完成后,默认用户会变成root呢~如果想要设置回原来的用户,可以使用这个命令: +``` +ubuntu2004.exe config --default-user username +``` +悄悄告诉大家一个小秘密~WSL2是可以同时存在多个同源发行版的哦~这样我们就可以在不同的环境中进行不同的实验啦~是不是很方便呢~ \ No newline at end of file diff --git a/docs/blog/technology/signed-binary-representations.md b/docs/blog/technology/signed-binary-representations.md new file mode 100644 index 0000000..6ad3b80 --- /dev/null +++ b/docs/blog/technology/signed-binary-representations.md @@ -0,0 +1,118 @@ +--- +title: 原码、反码、补码 +createTime: 2026/01/08 16:34:05 +cover: /images/elysia/6.jpg +coverStyle: + layout: right +permalink: /archives/6f41cabe-41e6-4a09-9f1c-af7dd709a35d/ +--- + +欢迎来到 0 与 1 的魔法派对!这篇文章将带你揭开原码、反码与补码的奥秘,看计算机如何巧妙地用补码化减为加。让我们一起翻开这页,去捕捉二进制底层那份迷人的理性之美吧♪ + + + +## 一、 前置概念 + +计算机底层存储数据的时候使用的是二进制数字,但是计算机在存储一个数字的时候并不是直接存储该数字对应的二进制数,而是存储该数字对应的**二进制数的补码**。 + +在了解原码、反码和补码之前,我们要了解**机器数**和**真值**的概念。 + +### 1) 机器数 +一个数在计算机的存储形式是二进制数,我们称这些二进制数为**机器数**。机器数是有符号的,在计算机中用机器数的最高位存放符号位,`0` 表示正数,`1` 表示负数。 + +### 2) 真值 +因为机器数带有符号位,所以机器数的形式值不等于其真实表示的值(真值)。 +- 以机器数 `1000 0001` 为例,其真正表示的值(首位为符号位)为 `-1`,而形式值(首位就是代表 1)为 `129`。 +- 因此将带符号的机器数的真正表示的值称为机器数的**真值**。 + +## 二、 原码、反码与补码 + +### 1) 原码 +原码的表示与机器数真值表示的一样,即用第一位表示符号,其余位表示数值。 +- **正数**:就是它对应的二进制数。 +- **负数**:将绝对值对应的二进制最左边位变为 `1`。 + +例如十进制的正负 1,用 8 位二进制的原码表示如下: +- `[+1]` = 原: `[ 0000 0001 ]` +- `[-1]` = 原: `[ 1000 0001 ]` + +### 2) 反码 +- **正数**:和原码相同。 +- **负数**:在其原码的基础上,**符号位不变,其余各位取反**。 + +示例: +- `[+1]` = 原: `[ 0000 0001 ]` = 反: `[ 0000 0001 ]` +- `[-1]` = 原: `[ 1000 0001 ]` = 反: `[ 1111 1110 ]` + +### 3) 补码 +- **正数**:补码是其原码本身。 +- **负数**:补码是在其原码的基础上,**符号位不变,其余各位取反后加 1**(即在反码的基础上加 1)。 + +示例: +- `[+1]` = 原: `[ 0000 0001 ]` = 反: `[ 0000 0001 ]` = 补: `[ 0000 0001 ]` +- `[-1]` = 原: `[ 1000 0001 ]` = 反: `[ 1111 1110 ]` = 补: `[ 1111 1111 ]` + +## 三、 数据在计算机中的存储形式 + +计算机实际上只存储**补码**,所以说原码转换为补码的过程,也可以理解为数据存储到计算机内存中的过程。 + +在原、反、补码中,正数的表示是一模一样的,而负数的表示是不相同的。因此对于负数的补码来说,我们不能直接用进制转换将其转换为十进制数值,因为这样是得不到计算机真正存储的十进制数的。**应该将其转换为原码后,再将转换得到的原码进行进制转换为十进制数**(机器数包含符号位)。 + +## 四、 为什么会使用原码、反码、补码 + +对于人脑来说,知道机器数的第一位是符号位是一件很轻松的事情,但对于计算机基础电路设计来说判别第一位是符号位是非常难和复杂的事情。 + +为了让计算机底层设计更加简单,于是设计将符号位参与运算,并且**只保留加法**的方法,通过**加上一个负数的方式来实现减法**。这样让计算机运算更加简单,并且也让符号位参与到运算中去。 + +## 五、 使用原码、反码与补码进行运算 + +### 1) 使用原码运算 +计算十进制表达式:`1 - 1 = 0` +```text +1 - 1 = 1 + (-1) + = 原:[ 0000 0001 ] + 原:[ 1000 0001 ] + = 原:[ 1000 0010 ] = -2 +``` +**结论**:如果用原码表示,让符号位也参与计算,对于减法来说,结果是不正确的。这也是计算机内部在存储数据时不使用原码的原因。为了解决这一问题,出现了反码。 + +### 2) 使用反码运算 +计算十进制表达式:`1 - 1 = 0` +```text +1 - 1 = 1 + (-1) + = 原:[ 0000 0001 ] + 原:[ 1000 0001 ] + = 反:[ 0000 0001 ] + 反:[ 1111 1110 ] + = 反:[ 1111 1111 ] = 原:[ 1000 0000 ] = -0 +``` +**结论**:通过计算我们发现用反码计算减法,结果的真值部分是正确的。唯一的问题出现在 "0" 这个特殊的数值上。虽然人们理解上 `+0` 和 `-0` 是一样的,但是 0 带符号是没有任何意义的,而且会有 `[0000 0000]原` 和 `[1000 0000]原` 两个编码表示 0。为了解决这一问题,出现了补码。 + +### 3) 使用补码运算 +计算十进制表达式:`1 - 1 = 0` +```text +1 - 1 = 1 + (-1) + = 原:[ 0000 0001 ] + 原:[ 1000 0001 ] + = 补:[ 0000 0001 ] + 补:[ 1111 1111 ] + = 补:[ 0000 0000 ] = 原:[ 0000 0000 ] = 0 +``` +**结论**:这样 0 用 `[0000 0000]` 表示,而以前出现问题的 `-0` 则不存在了。而且人们还发现可以用 `[1000 0000]` 表示 `-128`。 + +**-128 的推算过程如下**: +```text +(-1) + (-127) = -128 + = 原:[ 1000 0001 ] + 原:[ 1111 1111 ] + = 补:[ 1111 1111 ] + 补:[ 1000 0001 ] + = 补:[ 1000 0000 ] +``` +> **注意**:因为实际上是使用以前的 `-0` 的补码来表示 `-128`,所以 `-128` 并没有原码和反码表示。只要补码是 `[1000 0000]`,其十进制数值就为 `-128`。 + +### 4) 小结 +因为补码能多存储一个 `-128`,而且在计算机底层中存储的是补码,所以在计算机中一个 8 位的二进制数的存储范围是用补码表示的 `[-128, 127]`,而不是用原码或反码表示的 `[-127, 127]`。这也可以解释为什么计算机中一个字节的取值范围是 `[-128, 127]`。 + +## 六、 总结(牢记) + +- **二进制的最高位是符号位**:`0` 表示正数,`1` 表示负数。 +- **正数三码合一**:正数的原码、反码、补码都一样。 +- **负数反码**:它的原码符号位不变,其它位取反。 +- **负数补码**:它的反码 + 1;反之,负数反码 = 负数补码 - 1。 +- **0 的表示**:`0` 的反码、补码都是 `0`。 +- **运算方式**:在计算机运算的时候都是以 **“补码”** 的方式来运算的。 +- **查看结果**:当我们看运算结果的时候,要看它的**原码**(重点)。 diff --git a/docs/blog/website/EdgeOne_Pages_Images.md b/docs/blog/website/EdgeOne_Pages_Images.md new file mode 100644 index 0000000..ce675f4 --- /dev/null +++ b/docs/blog/website/EdgeOne_Pages_Images.md @@ -0,0 +1,27 @@ +--- +title: 通过 EdgeOne Pages 搭建图床 +createTime: 2025/09/29 02:28:17 +cover: /images/elysia/5.jpg +permalink: /article/8gihio2v/ +--- + +各位~今天要给大家介绍一个超棒的图床搭建方法哦!EdgeOne Pages 是腾讯云提供的静态网站托管服务,而且还有免费额度可以使用呢,对于日常需求来说完全足够啦~ + + + +## 创建一个 Git 项目 + +第一步呢,我们需要先在 Gitee 上创建一个项目,专门用来存放网站里要用的各种图片。当然啦,如果你习惯用 Github 或者 CNB 也没问题,这些平台都是支持的哦~而且要记住,项目的目录结构就是以后图片的访问路径呢~ + +## EdgeOne Page 中导入项目 +接下来打开 EdgeOne Page 的[控制台](https://console.cloud.tencent.com/edgeone/pages),这里可以导入 Github、Gitee 和 CNB 的项目哦~ + +点击「导入项目」,选择 Gitee 项目,找到刚才创建的那个项目,然后就可以直接开始部署啦~ + +等待大概一分钟左右,部署完成后,在项目概览页面点击预览按钮,就可以先看看资源能不能正常访问啦~ + +## 配置域名 + +如果临时链接可以正常访问的话,我们就可以配置自己的域名啦~在项目概览页面点击「自定义域名」就可以进入配置界面哦~ + +在那里输入你想要使用的域名,腾讯云可是提供了50个免费证书的额度呢!而且证书到期后还会自动释放额度,所以完全不用担心证书不够用的问题,可以放心大胆地点击「使用免费证书」按钮哦~ \ No newline at end of file diff --git a/docs/friends.md b/docs/friends.md new file mode 100644 index 0000000..f1dab58 --- /dev/null +++ b/docs/friends.md @@ -0,0 +1,30 @@ +--- +friends: true +title: My Friends +description: 星星划过的时候,要记得许愿哦~♪ +permalink: /friends/ +contentPosition: after +article: false +pageLayout: friends +list: + - + name: pengzhanbo + link: https://github.com/pengzhanbo + avatar: https://github.com/pengzhanbo.png + desc: 即使慢,驰而不息,纵会落后,纵会失败,但必须能够到达他所向的目标。 + - + name: 祀梦 + link: https://github.com/si-meng-spec + avatar: https://github.com/si-meng-spec.png + desc: 嗨~ 新的一天,从一场美妙的邂逅开始。 + - + name: AJohn + link: https://www.ajohn.top/ + avatar: https://github.com/zzyAJohn.png + desc: 我希望正在读这句话的人永远开心 + - + name: 小小夏 + link: https://notes.simengweb.com + avatar: https://image.simengweb.com/images/xxx.jpg + desc: Kawasaki天下第一! +--- diff --git a/docs/notes/ops/blockchain/README.md b/docs/notes/ops/blockchain/README.md new file mode 100644 index 0000000..0b5c125 --- /dev/null +++ b/docs/notes/ops/blockchain/README.md @@ -0,0 +1,28 @@ +--- +title: 区块链运维指南 +createTime: 2025/09/28 07:54:17 +permalink: /ops/blockchain/ +--- + +## 区块链简介 +区块链就像是一本神奇的共享账本哦~它由许许多多的"区块"连接而成,每个区块里都记录着各种交易信息~最特别的是,这本账本不是由某一个人或组织保管的,而是由网络里的所有人一起维护呢~ + +想象一下,当有新的交易发生时,网络里的每个人都会收到一份拷贝,大家一起验证这份交易的真实性,然后把它添加到账本里~这样一来,就没有人能够偷偷篡改账本啦~是不是很神奇呢~♪ + +区块链还有一个超棒的特点哦~它不需要中间人的帮忙,就能让互不相识的人们安全地进行交易~就像魔法一样,让信任在数字世界里自然生长~ + +## 区块链的理论基础 + +呜呜~在网上找关于完整区块链原理的资料好难呀,现在就只看到一些比较基础的课程和书籍呢。 + +嘿嘿,在B站的话,发现有一个课程超棒哒,就是肖臻老师的[《区块链技术与应用》](https://www.bilibili.com/video/BV1Vt411X7JF/)呢! + +在Youtube上也可以去看看[Binance Academy](https://www.youtube.com/@BinanceAcademy)的视频哟,感觉也很不错哒! + +至于书籍嘛,目前还没找到特别好的,不过没关系,会继续努力找找哒!如果有好的课程的话,可以评论留言分享一下哦~ + +## 区块链的运维实践 + +嘿嘿~区块链的搭建呀,主要就是通过 [FISCO BCOS](https://fisco-bcos-documentation.readthedocs.io/zh-cn/latest/docs/introduction.html) 来实现哒! + +它呢,是一个开源的、基于Java的区块链平台哟~还支持智能合约的部署和执行呢,超厉害的! diff --git a/docs/notes/ops/blockchain/practice/basic-deployment.md b/docs/notes/ops/blockchain/practice/basic-deployment.md new file mode 100644 index 0000000..8839657 --- /dev/null +++ b/docs/notes/ops/blockchain/practice/basic-deployment.md @@ -0,0 +1,70 @@ +--- +title: 区块链产品设计和基础部署 +description: 详细介绍区块链产品设计和基础部署 +createTime: 2025/09/28 20:15:00 +permalink: /ops/blockchain/practice/basic-deployment/ +--- + +## 区块链产品方案设计 + +### 区块链产品需求分析 + +区块链产品分析主要是以下几个步骤: + +1. 明确业务需求 + +围绕指定业务分析区块链落地解决的痛点,提出围绕业务的功能概述。 + +2. 搜集业务相关信息 + +针对设计功能,分析收集数据的方向、类型和具体维度 + +3. 分析搜集数据 + +借助数据分析工具整合收集数据,并能根据收集数据得出初步结论 + +能够保证收集数据的准确性和安全性 + +4. 确定应用需求 + +根据业务需求和收集数据,细化产品具体功能需求 + +5. 落地区块链平台 + +形成具体平台的设计需求报告 + +形成平台验收的准则 + +### 区块链平台设计方案 + +区块链平台包括:区块链底层平台、智能合约层、业务层、应用层和用户层 + +![区块链平台设计](https://image.simengweb.com/notes/ops/blockchain/practice/basic-deployment/2025-10-02-150534.png) + +### 业务功能模块设计 + +业务功能模块设计包括三层:功能平台、功能模块、详细功能 + +![业务功能模块设计](https://image.simengweb.com/notes/ops/blockchain/practice/basic-deployment/23f38723fcc79a2a91ea317f4c467755.png) + +### 业务流程图 + +关于业务流程图的一些常见符号: + +![业务流程图常见符号](https://image.simengweb.com/notes/ops/blockchain/practice/basic-deployment/d2c1a8bbe17c0cfef0314d0d1ba9ab45.png) + +有一些好用的在线绘制流程图的网站: + +1. [Draw.io](https://app.diagrams.net/) + +### ER 图设计 + +E-R 图(实体-关系图)是数据库设计中常用的一种工具,E 是实体,拥有一组属性,R 是关系,用于找到实体之间的联系。 + +实体与实体之间的关系,可能是一对一(1:1),一对多(1:n),多对多(m:n) + +实体:通常用矩形表示,代表系统中的一个对象或概念,如"学生","课程","老师" + +属性:通常用椭圆形表示,表示实体的特征,如"学生"的"姓名","班级" + +关系:用菱形表示,用于不同实体间的联系,如"课程"和"学生"之间的"选修"关系 \ No newline at end of file diff --git a/docs/notes/ops/blockchain/practice/console-operator.md b/docs/notes/ops/blockchain/practice/console-operator.md new file mode 100644 index 0000000..d89a8e7 --- /dev/null +++ b/docs/notes/ops/blockchain/practice/console-operator.md @@ -0,0 +1,59 @@ +--- +title: Console 控制台操作 +createTime: 2025/10/03 02:55:49 +permalink: /ops/blockchain/practice/console-operator/ +--- + +## Console 控制台是什么? +Console 是 FISCO BCOS 官方提供的一个交互式命令行工具,用于直接与区块链节点交互。 +主要功能包括: +- 查询区块链状态(如区块链高度、节点列表、群组信息) +- 部署和调用智能合约(支持 Solidity) +- 管理节点(如查看节点共识状态、动态添加节点) +- 调试交易和查看回执 + +## 部署 Console 控制台 +获取下载脚本:`wget https://gitee.com/FISCO-BCOS/console/releases/download/v2.8.0/console.tar.gz` +解压控制台安装包:`tar -zxf console.tar.gz console/` + +复制配置文件:`cp conf/config-example.toml conf/config.toml` +编辑配置文件:`vim conf/config.toml` +```bash +# enSslKey = "conf/gm/gmensdk.key" # GM ssl cert file path + # default load the GM SSL encryption privateKey from ${certPath}/gm/gmensdk.key + +[network] +# 请确保这里的连接地址都有节点 +peers=["127.0.0.1:20200", "127.0.0.1:20201"] # The peer list to connect [!code warning] + +# Configure a private topic as a topic message sender. + +``` + +复制节点证书到 Console 的配置目录下 +```bash +cp -r ../nodes/127.0.0.1/sdk/* conf/ +``` + +通过 `bash start.sh` 就可以启动 Console 控制台啦! +![启动Console控制台](https://image.simengweb.com/notes/ops/blockchain/practice/console-operator/2025-10-03-161500.png) + +## 常用控制台命令 + +这里的区块链的搭建是根据前一篇文章中的多机构多群组多节点的关系 + +### 合约相关命令 +### 其他命令 +- 查询区块高度:`getBlockNumber` +```bash title='output_example' +[group:1]> getBlockNumber +0 +``` +- 查看共识节点列表:`getSealerList` +```bash title='output_example' +[group:1]> getSealerList +[ + d036a22f16909cba4c8521cd3c31db3be381e673c9749e3fd2848ab25eca134ef917cb9306f41893295c535078bce77bdc241eba3f92549a73efe4699d3c0df8, + f0535616759000b473a285d60814bc2c5927a9cb897644da46890de71e59df590cd6fe1b226a95e19a566b6fc127fd85032de0d9fdd3d529e5e50cd96ad51f28 +] +``` \ No newline at end of file diff --git a/docs/notes/ops/blockchain/practice/node-deployment.md b/docs/notes/ops/blockchain/practice/node-deployment.md new file mode 100644 index 0000000..26febfd --- /dev/null +++ b/docs/notes/ops/blockchain/practice/node-deployment.md @@ -0,0 +1,122 @@ +--- +title: 区块链网络部署与管理 +createTime: 2025/10/02 04:13:08 +permalink: /ops/blockchain/practice/node-deployment/ +--- + +## FISCO BCOS 简介 + +嘿呀~FISCO BCOS 可是金链盟开源工作组超用心牵头打造的企业级金融区块链底层平台哟!它就像一个超级厉害的小能手,有着高性能、高可用、安全可控这些超棒的特点呢。还支持多群组架构喔,能轻轻松松满足不同业务场景下的数据隔离和隐私保护需求,简直太赞啦! + +而且呢,FISCO BCOS 还准备了好多丰富的开发工具和组件,就像给开发者们准备了一个魔法百宝箱,帮助大家能快速搭建区块链应用。现在在金融、政务、供应链这些好多好多领域都能看到它活跃的身影,应用可广泛啦! + +## FISCO BCOS 网络部署 + +FICSO BCOS 提供了一个 build_chain.sh 来部署区块链,下面的步骤都是通过这个脚本来部署的区块链网络 +``` +# 可以通过这个指令下载脚本并赋予执行权限 +curl -#LO https://github.com/FISCO-BCOS/FISCO-BCOS/releases/download/v2.11.0/build_chain.sh && chmod u+x build_chain.sh +``` + +### 部署单群组4节点联盟链 +这里要确保机器的30300-30303,20200-20203,8545-8548端口都没有被占用 + +``` +# 部署单群组4节点联盟链 +bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545 -e ./fisco-bcos +``` + +如果是国密版本,执行下面的命令 +``` +# 部署单群组4节点联盟链(国密版本) +bash build_chain.sh -l 127.0.0.1:4 -p 30300,20200,8545 -g -G -e ./fisco-bcos +``` + +参数解析: +- -l:指定节点的IP地址和节点数 +- -p:指定节点的端口号 +- -g 和 -G:使用国密sm算法 +- -e:使用指定的 fisco-bcos 文件 + +默认情况下脚本会去 github 上下载 fisco-bcos 二进制文件,这一步在国内很有可能失败,建议提前下载好,然后直接使用本地的 + +部署完成之后就可以启动节点了 + +``` +bash nodes/127.0.0.1/start_all.sh +``` + +检查节点进程是否存在 +``` +ps -ef | grep fisco-bcos +``` + +检查节点之间是否互相链接了 +``` +# 这里是检查 node0 的日志文件 +tail -f nodes/127.0.0.1/node0/log/log* | grep connected +``` +输出样例如下: +``` +info|2025-10-02 17:06:40.006979|[P2P][Service] heartBeat,connected count=3 +... +``` +这里可以看到 count=3,说明 node0 已经链接了另外的三个节点 + +检查节点之间是否存在共识 +``` +# 这里是检查 node0 的日志文件 +tail -f nodes/127.0.0.1/node0/log/log* | grep +++ +``` +输出样例如下: +``` +info|2025-10-02 17:08:29.795822|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=0,hash=5b5f44f4... +info|2025-10-02 17:08:33.807504|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=0,hash=50fec464... +... +``` +不断输出带有 `++++Generating seal` 的日志,说明共识正常 + +检查群组之间的共识 +```bash +tail -f nodes/127.0.0.1/node0/log/log* | grep 'g:1.*+++' +``` +输出样例如下: +```bash +info|2025-10-02 17:59:59.194525|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=1,hash=fdb2da54... +info|2025-10-02 18:59:59.225102|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=1,hash=b7d87997... +info|2025-10-02 19:59:59.327677|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=1,hash=38dea43f... +info|2025-10-02 20:59:59.462059|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=1,hash=cb0e89fa... +info|2025-10-02 21:59:59.284218|[g:1][CONSENSUS][SEALER]++++++++++++++++ Generating seal on,blkNum=1,tx=0,nodeIdx=1,hash=721e8904... +``` + +### 部署多机构多群组多节点 + +在很多时候,我们需要部署多机构多群组多节点的联盟链,来满足不同业务场景下的需求。 + +现在有需求如下: + +|IP|节点数|所属机构|所属群组|P2P端口|Channel端口|RPC端口| +| --- | --- | --- | --- | --- | --- | --- | +| 127.0.0.1 | 2 | agencyA | 1,2 | 30300 | 20200 | 8545 | +| 127.0.0.2 | 2 | agencyB | 2,3 | 30400 | 20300 | 8645 | +| 127.0.0.3 | 2 | agencyC | 3 | 30500 | 20400 | 8745 | +| 127.0.0.4 | 2 | agencyD | 4 | 30600 | 20500 | 8845 | + +这种时候建议直接编辑配置文件,参考样例如下: +```bash title='ipconf' +127.0.0.1:2 agencyA 1,2 30300,20200,8545 +127.0.0.1:2 agencyB 2,3 30400,20300,8645 +127.0.0.1:2 agencyC 3 30500,20400,8745 +127.0.0.1:2 agencyD 4 30600,20500,8845 +``` + +通过配置文件部署多机构多群组多节点联盟链 +``` +bash build_chain.sh -f ipconf -p 30300,20200,8545 -e ./fisco-bcos +``` +这里查看一下输出信息,应当如下图所示: +![多机构多群组多节点部署](https://image.simengweb.com/notes/ops/blockchain/practice/node-deployment/2025-10-02-172916.png) + +## 参考文章 +- [搭建第一个区块链网络](https://fisco-bcos-documentation.readthedocs.io/zh-cn/latest/docs/installation.html) +- [开发部署工具](https://fisco-bcos-documentation.readthedocs.io/zh-cn/release-2.7.0/docs/manual/build_chain.html) diff --git a/docs/notes/ops/blockchain/theory/basic-principles.md b/docs/notes/ops/blockchain/theory/basic-principles.md new file mode 100644 index 0000000..41119b9 --- /dev/null +++ b/docs/notes/ops/blockchain/theory/basic-principles.md @@ -0,0 +1,6 @@ +--- +title: 区块链的基本原理 +createTime: 2025/09/28 12:39:11 +permalink: /ops/blockchain/theory/basic-principles/ +--- + diff --git a/docs/notes/ops/blockchain/theory/fisco-bcos-node-type.md b/docs/notes/ops/blockchain/theory/fisco-bcos-node-type.md new file mode 100644 index 0000000..6a79541 --- /dev/null +++ b/docs/notes/ops/blockchain/theory/fisco-bcos-node-type.md @@ -0,0 +1,342 @@ +--- +title: 区块链的节点 +createTime: 2025/10/05 13:07:05 +permalink: /ops/blockchain/theory/fisco-bcos-node-type/ +--- + +## 节点的基础概念 + +FISCO BCOS 引入了[游离节点、观察者节点和共识节点](https://fisco-bcos-documentation.readthedocs.io/zh-cn/latest/docs/design/security_control/node_management.html#id6),这三种节点类型可以通过控制台互相转换。 + +组员: +- 共识节点:参与共识的节点,拥有群组的所有数据(搭链时默认都生成共识节点)。 +- 观察者节点:不参与共识,但能实时同步链上数据的节点。 + +非组员: +- 游离节点:已启动,等待加入群组的节点。处在一种暂时的节点状态,不能获取链上的数据。 + +## 节点配置文件详解 + +节点搭建完成之后会有`config.ini`、`conf/group.%group_id.genesis`、`conf/group.%group_id.ini`、`node.nodeid` 等配置文件 + +::: code-tabs +@tab config.ini +```bash +# RPC (Remote Proceduce Call 远程过程调用) +# 用于配置节点对外提供的 RPC 服务,包括 JSON-RPC ( 用于 Web3.js,控制台等 )和 Channel 通信( 用于 SDK,Java 应用等 ) +[rpc] + # 允许外部访问 + channel_listen_ip=0.0.0.0 + channel_listen_port=20200 + # 只允许内部访问 + jsonrpc_listen_ip=127.0.0.1 + jsonrpc_listen_port=8545 + +# P2P (Peer-to-Peer 点对点通信) +# 用于配置节点之间的 P2P 通信 +[p2p] + listen_ip=0.0.0.0 + listen_port=30300 + ; nodes to connect + node.0=127.0.0.1:30300 + node.1=127.0.0.1:30301 + node.2=127.0.0.1:30400 + node.3=127.0.0.1:30401 + node.4=127.0.0.1:30500 + node.5=127.0.0.1:30501 + node.6=127.0.0.1:30600 + node.7=127.0.0.1:30601 + +# 证书的黑白名单控制 +[certificate_blacklist] + ; crl.0 should be nodeid, nodeid's length is 128 + ;crl.0= + +[certificate_whitelist] + ; cal.0 should be nodeid, nodeid's length is 128 + ;cal.0= + +# 群组的配置目录和数据目录 +# 启动的时候会自动加载 group_config_path 下的所有群组 +[group] + group_data_path=data/ + group_config_path=conf/ + +# 配置网络安全 +[network_security] + ; directory the certificates located in + # 网络部分的配置文件目录 + data_path=conf/ + ; the node private key file + # 节点的私钥文件 + key=node.key + ; the node certificate file + # 节点的证书文件 + cert=node.crt + ; the ca certificate file + # CA 的证书文件 + ca_cert=ca.crt + +# 配置加密存储 +# 用于对接 KMS ,实现落盘数据加密 +# 具体的可以查看参考文献中的第2篇文章,落盘加密 +[storage_security] + enable=false + key_manager_ip= + key_manager_port= + cipher_data_key= + +# 链的基本信息 +[chain] + # 链的 ID ,不同链ID的节点无法通信 + id=1 + ; use SM crypto or not, should nerver be changed + # 是否启动国密算法,这一步在创建的时候就应该规划好 + # 一旦设定,不可更改,否则无法和其他节点通信 + sm_crypto=false + # cannel 是否启用国密,需和 SDK 一致 + sm_crypto_channel=false + +# 兼容性配置 +[compatibility] + ; supported_version should nerver be changed + # 指定节点兼容的 FISCO BCOS 的版本 + # 默认值即可,不应手动修改 + supported_version=2.8.0 + +# 日志配置 +[log] + # 启用配置 + enable=true + # 日志配置目录 + log_path=./log + ; enable/disable the statistics function + # 是否启用统计功能 + enable_statistic=false + ; network statistics interval, unit is second, default is 60s + # 统计信息刷新间隔(单位:秒) + stat_flush_interval=60 + ; info debug trace + # 日志级别,可选值(trace < debug < info < warning < error) + level=info + ; MB + # 单个日志文件最大大小(单位:MB) + max_log_file_size=200 + # 是否实时刷盘 + flush=true + +# 流量控制 +[flow_control] + ; restrict QPS of the node + # 限制 QPS 每秒请求数,防止 DDOS + ;limit_req=1000 + ; restrict the outgoing bandwidth of the node + ; Mb, can be a decimal + ; when the outgoing bandwidth exceeds the limit, the block synchronization operation will not proceed + # 限制节点出带宽(单位Mbps) + # 超出之后会暂停区块同步,避免网络拥塞 + ;outgoing_bandwidth_limit=2 +``` +@tab group.1.genesis +```bash +# 共识机制配置 +[consensus] + ; consensus algorithm now support PBFT(consensus_type=pbft), Raft(consensus_type=raft) + ; rpbft(consensus_type=rpbft) + # 共识算法 + consensus_type=pbft + ; the max number of transactions of a block + # 每个区块的最大打包量,超出的部分会留在交易池,等待下一次打包 + max_trans_num=1000 + ; in seconds, block consensus timeout, at least 3s + # 共识算法的超时时间 + consensus_timeout=3 + ; rpbft related configuration + ; the working sealers num of each consensus epoch + # 仅在 rpbft 的时候生效,每轮共识 epoch 中参与打包的共识节点数。 + epoch_sealer_num=2 + ; the number of generated blocks each epoch + # 仅在 rpbft 的时候生效,每轮 epoch 持续的区块数。 + epoch_block_num=1000 + ; the node id of consensusers + # 群组中共识节点的列表 + node.0=f0535616759000b473a285d60814bc2c5927a9cb897644da46890de71e59df590cd6fe1b226a95e19a566b6fc127fd85032de0d9fdd3d529e5e50cd96ad51f28 + node.1=d036a22f16909cba4c8521cd3c31db3be381e673c9749e3fd2848ab25eca134ef917cb9306f41893295c535078bce77bdc241eba3f92549a73efe4699d3c0df8 + +# 存储区块链的状态信息 +# 支持 storage state 和 MPT state +# storage state 效率高 +# MPT state 效率低,但是包含完整的历史信息 +[state] + type=storage +# transaction (交易)相关配置 +# gas 是一种计算智能合约执行过程中消耗的计算和存储资源,包括交易的gas的最大值的限制和区块的gas最大值的限制 +# 如果交易或区块执行消耗的 gas 超过限制,则会丢弃交易区块 +# FISCO BCOS 是联盟链,简化了 gas 的设计,仅保留交易最大 gas 限制,区块最大 gas 是通过共识配置的 +[tx] + ; transaction gas limit + gas_limit=300000000 +# 群组的配置 +[group] + # 群组 ID + id=1 + # 群组的创世区块的时间戳(ms) + timestamp=1759397321000 + +# 群组的 EVM 配置 +# 是否开启 free storage +# 这里具体的内容,可以查看参考文献中的第4篇文章,【教程】如何修改FISCO-BCOS内的EVM的gas... +[evm] + enable_free_storage=false +``` +@tab group.1.ini +```bash +# 共识运行参数(PBFT 优化) +[consensus] + ; the ttl for broadcasting pbft message + # PBFT 消息在网络中最多转发 2 跳 + ttl=2 + ; min block generation time(ms) + # 最小出块时间 500ms + min_block_generation_time=500 + # 动态调整区块大小 genesis 中的 max_trans_num + enable_dynamic_block_size=true + # 优化 TLL 转发逻辑,提升 PBFT 在大规模网络中的效率 + enable_ttl_optimization=true + # Prepare 消息中只包含交易哈希,减少网络传输量 + # 大幅提示大区块场景下的共识效率 + enable_prepare_with_txsHash=true + ; The following is the relevant configuration of rpbft + ; set true to enable broadcast prepare request by tree + # 使用树状拓扑广播 Prepare 广播(而非全网广播) + # 适合节点多的场景 + # 仅在 rpbft 或优化版 PBFT 中有效 + broadcast_prepare_by_tree=true + ; percent of nodes that broadcast prepare status to, must be between 25 and 100 + # 广播 Prepare 状态给33%的节点,必须在 25%~100% 之间 + prepare_status_broadcast_percent=33 + ; max wait time before request missed transactions, ms, must be between 5ms and 1000ms + # 请求缺失交易前,最多等待 100ms(收集更多交易) + # 范围 5 ~ 1000ms + max_request_missedTxs_waitTime=100 + ; maximum wait time before requesting a prepare, ms, must be between 10ms and 1000ms + # 请求缺失 Prepare 消息前,最多等待 100ms + # 范围 10ms ~ 1000ms + max_request_prepare_waitTime=100 + +[storage] + ; storage db type, rocksdb / mysql / scalable, rocksdb is recommended + # 存储引擎 + # 推荐使用 rocksdb (高性能,嵌入式 KV 数据库) + # 支持 mysql ( 不推荐,性能差 ) , scalable (分布式存储,实验性) + type=rocksdb + ; set true to turn on binary log + # 开启二进制日志,默认关闭,开启会增加IO + binary_log=false + ; scroll_threshold=scroll_threshold_multiple*1000, only for scalable + # 仅在 scalable 存储引擎下生效 + scroll_threshold_multiple=2 + ; set fasle to disable CachedStorage + # 启用缓存层(非常推荐) + cached_storage=true + ; max cache memeory, MB + # 缓存最大内容,32MB + max_capacity=32 + # 允许节点最多超前同步10个区块 + max_forward_block=10 + ; only for external, deprecated in v2.3.0 + # 最大重试次数,默认 60 次 + max_retry=60 + topic=DB + ; only for mysql + db_ip=127.0.0.1 + db_port=3306 + db_username= + db_passwd= + db_name= +# 交易池 +[tx_pool] + # 交易池最大容量,默认 150000 + limit=150000 + ; transaction pool memory size limit, MB + # 交易池最大内存占用:512 MB + memory_limit=512 + ; number of threads responsible for transaction notification, + ; default is 2, not recommended for more than 8 + # 用于通知 SDK 交易上链结果的线程数 + notify_worker_num=2 +# 区块同步优化 +[sync] + ; max memory size used for block sync, must >= 32MB + # 区块同步最大内存:512MB,必须大于等于 32 MB + max_block_sync_memory_size=512 + # 同步空闲时,等待 200ms 再检查新块 + idle_wait_ms=200 + ; send block status by tree-topology, only supported when use pbft + # 使用树状拓扑同步区块 + # 可以大幅度降低网络带宽 + # 仅在 PBFT 下支持 + sync_block_by_tree=true + ; send transaction by tree-topology, only supported when use pbft + ; recommend to use when deploy many consensus nodes + # 交易广播也使用树状拓扑 + send_txs_by_tree=true + ; must between 1000 to 3000 + ; only enabled when sync_by_tree is true + # Gossip 协议心跳间隔 + gossip_interval_ms=1000 + # 每个节点维护 3 个gossip邻居 + gossip_peers_number=3 + ; max number of nodes that broadcast txs status to, recommended less than 5 + # 交易状态最多广播给5个节点 + txs_max_gossip_peers_num=5 + +# 群组级的流量控制 +[flow_control] + ; restrict QPS of the group + # 限制群组的 QPS 为 1000 + ;limit_req=1000 + ; restrict the outgoing bandwidth of the group + ; Mb, can be a decimal + ; when the outgoing bandwidth exceeds the limit, the block synchronization operation will not proceed + # 限制群组的出链带宽为 2Mbps/s + ;outgoing_bandwidth_limit=2 + +# SDK 连接白名单 +[sdk_allowlist] + ; When sdk_allowlist is empty, all SDKs can connect to this node + ; when sdk_allowlist is not empty, only the SDK in the allowlist can connect to this node + ; public_key.0 should be nodeid, nodeid's length is 128 + ;public_key.0= +``` +@tab node.nodeid +```bash +# 节点的 ID +f0535616759000b473a285d60814bc2c5927a9cb897644da46890de71e59df590cd6fe1b226a95e19a566b6fc127fd85032de0d9fdd3d529e5e50cd96ad51f28 +``` +::: + +## 节点操作命令 + +- `addSealer`:将节点转换为共识节点。 +- `addObserver`:将节点转换为观察节点。 +- `removeNode`:将节点设置为游离节点。 + +- `getSealerList`:查询当前的共识节点的列表 +- `getObserverList`:查询当前的观察者节点的列表· +- `getNodeList`:查询当前的所有节点的列表 + +操作节点的时候是通过节点ID进行操作的,节点ID可以在节点目录的`conf/node.nodeid`中获取 + +请确保节点加入的区块链所有节点共识正常:正常的节点会输出`+++`日志 + + +## 参考文章: + +1. [组员节点管理](https://fisco-bcos-documentation.readthedocs.io/zh-cn/latest/docs/manual/node_management.html) + +2. [落盘加密](https://fisco-bcos-documentation.readthedocs.io/zh-cn/latest/docs/design/features/storage_security.html) + +3. [【全网首发】FISCO-BCOS从底层讲起链从配置文件开始解析...](https://blog.csdn.net/LforikQ/article/details/130920092) + +4. [【教程】如何修改FISCO-BCOS内的EVM的gas值,让区块链预防DOS攻击...](https://blog.csdn.net/qq_57309855/article/details/126334115) \ No newline at end of file diff --git a/docs/notes/ops/docker/ETLCloud.md b/docs/notes/ops/docker/ETLCloud.md new file mode 100644 index 0000000..8ad9400 --- /dev/null +++ b/docs/notes/ops/docker/ETLCloud.md @@ -0,0 +1,78 @@ +--- +title: ETLCloud +createTime: 2025/12/24 17:13:36 +permalink: /ops/docker/other/ETLCloud/ +--- + +## 前置环境 +这里安装之前,需要先安装 mongodb 数据库,可以参考 [使用 Docker 部署 MongoDB](mongodb.md) + +## 安装 ETLCloud + +拉取社区版本镜像: +```bash +docker pull ccr.ccs.tencentyun.com/restcloud/restcloud-etl:V4.0 +``` + +### 部署容器 + +如果您已经运行过同名容器,请先删除: +```bash +docker rm -f restcloud-etl-V4.0 +``` + +使用以下命令进行部署(包含授权绑定、数据持久化和端口映射): +```bash +docker run -d \ + --restart=always \ + --privileged=true \ + --name restcloud-etl-V4.0 \ + --mac-address=01:D2:F4:18:B8:67 \ + -v /data/tomcat:/usr/tomcat \ + -p 9527:8080 \ + ccr.ccs.tencentyun.com/restcloud/restcloud-etl:V4.0 +``` + +**参数说明:** +- `--restart=always`: 容器退出时总是重启(如系统重启)。 +- `--privileged=true`: 赋予容器特权模式,确保初始化正常。 +- `--mac-address`: 固定 MAC 地址,用于绑定 License 授权(**注意:第一个字节必须为偶数,建议使用 02 开头**)。 +- `-v /data/tomcat:/usr/tomcat`: 将 Tomcat 目录挂载到宿主机,实现数据持久化。 +- `-p 9527:8080`: 访问端口映射,宿主机访问端口为 9527。 + +拷贝容器中的 tomcat 目录到主机上 +```bash +docker cp e0419ad8a2bf31743ec17368cf4098e293c36761842a7dcff8280fbc34195fba:/usr/tomcat /data/ +``` +删除之前创建的简单容器 +```bash +docker rm -f e0419ad8a2bf31743ec17368cf4098e293c36761842a7dcff8280fbc34195fba +``` +在 /data/tomcat 路径下,编辑ETLCloud mongo相关的配置文件,这里的信息参考之前创建的 MongoDB 实例。 +这里我额外修改了 server.port ,这里太容易和其他的服务端口冲突,所以这里修改为 9527。 +```bash +sudo vim ./webapps/ROOT/WEB-INF/classes/application.properties + +server.port=9527 +... +#集群服务器之间同步用的公共配置数据库,空表示和配置库一起 +spring.data.mongodb.host=127.0.0.1:27018 +spring.data.mongodb.repositories.enabled=true +#MongoDb的数据库认证用户名及密码,没有可以为空 +spring.data.mongodb.username=admin +spring.data.mongodb.password=admin +... +``` +然后可以启动容器,样例如下: +```bash +docker run -d --restart=always --restart=on-failure:5 --privileged=true --name restcloud-etl-V4.0 --mac-address=自定义mac地址 -v /home/tomcat:/usr/tomcat -p 8080:8080 镜像id +``` +具体命令,这里的MAC地址参数一定是要有的,不然每次重新创建之后MAC地址会变就需要重新生成SN码 + +这里的MAC地址不要和博主写一样的...自己随机一个或者随便写一个就行 +```bash +docker run -d --restart=always --restart=on-failure:5 --privileged=true --name restcloud-etl-V4.0 --mac-address=02:D2:00:00:00:67 -v /data/tomcat:/usr/tomcat -p 9527:8080 4a5c0ed2a5b2 +``` +然后访问 服务器IP:9527/restcloud/admin/login 就可以啦 + +后面的话就是去官网申请一个SN码,然后就可以开始使用啦。 \ No newline at end of file diff --git a/docs/notes/ops/docker/Postgres.md b/docs/notes/ops/docker/Postgres.md new file mode 100644 index 0000000..78dbb52 --- /dev/null +++ b/docs/notes/ops/docker/Postgres.md @@ -0,0 +1,69 @@ +--- +title: 使用 Docker 部署 Postgres +createTime: 2025/12/25 10:52:34 +permalink: /ops/docker/db/postgres/ +--- + +## 在 Ubuntu 上部署 Postgres 实例 + +拉取 Postgres 镜像: +```bash +docker pull postgres +``` + +> [!IMPORTANT] 注意事项 +> 从 **PostgreSQL 18+** 版本开始,官方镜像建议将数据目录挂载到 `/var/lib/postgresql` 而非 `/var/lib/postgresql/data`。如果你是从旧版本升级镜像,直接挂载旧目录会导致启动失败。 + +### 极简运行 Postgres 实例 +```bash +docker run --restart=always -itd --name postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres postgres +``` +解析: +- `--restart=always`:容器重启时自动启动。 +- `-itd`:交互式模式运行容器,后台模式。 +- `--name postgres`:为容器命名为 postgres。 +- `-p 5432:5432`:将主机的 5432 端口映射到容器的 5432 端口。 +- `-e POSTGRES_PASSWORD=postgres`:设置 Postgres 数据库的密码为 postgres。 +- `postgres`:使用 Postgres 镜像。 + +### 配置 Postgres 持久化实例 + +#### 方案一:使用最新版本 (18+) +创建一个目录用于存储 Postgres 数据: +```bash +mkdir -p /data/postgres/ +``` +运行 Postgres 容器: +```bash +docker run --restart=always -itd \ + --name postgres \ + -p 5432:5432 \ + -e POSTGRES_PASSWORD=postgres \ + -v /data/postgres/:/var/lib/postgresql \ + postgres +``` + +#### 方案二:固定使用旧版本 (如 17) +如果你有现存的 `/var/lib/postgresql/data` 格式数据,建议固定版本: +```bash +docker run --restart=always -itd \ + --name postgres \ + -p 5432:5432 \ + -e POSTGRES_PASSWORD=postgres \ + -v /data/postgres/:/var/lib/postgresql/data \ + postgres:17 +``` +解析: +- `-v /data/postgres/:/var/lib/postgresql/data`:将主机的 /data/postgres/ 目录挂载到容器的 /var/lib/postgresql/data 目录,用于持久化存储数据。 + +#### 进入容器之后修改 postgres 用户密码 +进入 Postgres 容器: +```bash +docker exec -it postgres psql -U postgres +``` +解析: +- `docker exec -it postgres psql -U postgres`:进入 Postgres 容器的 psql 命令行界面,使用 postgres 用户进行登录。 +修改 postgres 用户密码为 postgres: +```sql +ALTER USER postgres PASSWORD 'postgres'; +``` diff --git a/docs/notes/ops/docker/README.md b/docs/notes/ops/docker/README.md new file mode 100644 index 0000000..8b92f51 --- /dev/null +++ b/docs/notes/ops/docker/README.md @@ -0,0 +1,39 @@ +--- +title: Docker 部署运维 +createTime: 2025/12/24 16:39:34 +permalink: /ops/docker/ +--- + +欢迎来到 Docker 运维笔记!✨ + +在这里,我们将一起探索那些神奇的“小盒子”——Docker 容器。它们就像是装满惊喜的礼盒,把复杂的程序都整整齐齐地收纳在一起,是不是很有趣呢?♪ + +不管是部署数据库,还是搭建各种好玩的应用,只要有了这些小盒子,一切都会变得像魔法一样简单又优雅呢~真期待看到你在运维的道路上,也能像花朵一样绽放光彩呢。🌸 + +好啦,让我们开始这段美妙的旅程吧~如果遇到困难,这里会一直提供帮助的哦~ + +## 常用基础命令 🛠️ + +为了更顺畅地开启这段旅程,这里准备了一些常用的魔法指令: + +### 容器管理 +- `docker ps`:查看正在运行的小盒子。 +- `docker ps -a`:查看所有的小盒子(包括休息中的)。 +- `docker stop `:让小盒子暂时休息一下。 +- `docker start `:唤醒休息中的小盒子。 +- `docker rm `:送走不再需要的小盒子。 + +### 镜像管理 +- `docker images`:查看我们收集的所有魔法镜像。 +- `docker pull `:从云端下载新的魔法镜像。 +- `docker rmi `:清理不再需要的魔法镜像。 + +### 日志与调试 +- `docker logs -f `:实时查看小盒子里的悄悄话。 +- `docker exec -it /bin/bash`:亲自钻进小盒子里面看看。 + +## 部署清单 📋 + +- [MongoDB 部署魔法](./mongodb.md) +- 更多惊喜,敬请期待~✨ + diff --git a/docs/notes/ops/docker/mongodb.md b/docs/notes/ops/docker/mongodb.md new file mode 100644 index 0000000..2f22ed6 --- /dev/null +++ b/docs/notes/ops/docker/mongodb.md @@ -0,0 +1,69 @@ +--- +title: 使用 Docker 部署 MongoDB +createTime: 2025/12/24 16:34:00 +permalink: /ops/docker/db/mongodb/ +--- + +本教程将介绍如何使用 Docker 快速部署一个 MongoDB 实例。 + +## 在 Ubuntu 上部署 MongoDB:4.2 实例 + +我们先拉取 MongoDB:4.2 镜像: + +```bash +docker pull mongo:4.2 +``` + +创建一个目录用于存储 MongoDB 数据: + +```bash +mkdir -p /data/mongo/ +``` + +启动 MongoDB 容器: +```bash :wrap +sudo docker run --restart=always -itd --name mongo -p 27018:27017 -v /data/mongo/:/data/db mongo:4.2 --auth +``` +命令详解: +- `--restart=always`:容器重启时自动启动。 +- `-itd`:交互式模式运行容器,后台模式。 +- `--name mongo`:为容器命名为 mongo。 +- `-p 27018:27017`:将主机的 27018 端口映射到容器的 27017 端口。 +- `-v /data/mongo/:/data/db`:将主机的 /data/mongo/ 目录挂载到容器的 /data/db 目录,用于持久化存储数据。 +- `mongo:4.2`:使用 MongoDB:4.2 镜像。 +- `--auth`:启用身份验证功能。 + +进入 MongoDB 容器: +```bash +docker exec -it mongo mongo admin +``` + +### 在 MongoDB 容器中创建管理员用户 +先进入 admin 数据库 +```bash +use admin; +``` +创建管理员用户 admin, 密码 root, 角色为 root。 +```bash +db.createUser( { user: "root", pwd: "root", roles:['root'] }); +``` +退出 MongoDB 容器: +```bash +exit +``` +使用 root 用户进行登录 +```bash +docker exec -it mongo mongo admin -u root -p root +``` +这里还能创建一个 admin 用户,用密码 admin,角色为 readWriteAnyDatabase, dbAdminAnyDatabase。 +```bash +db.createUser( { user: "admin", pwd: "admin", roles:['readWriteAnyDatabase','dbAdminAnyDatabase'] } ); +``` +验证用户,这里会登录到 admin +```bash +db.auth("admin","admin"); +``` +删除用户的话可以使用,注意这里要切换回 root 用户 +```bash +db.dropUser("admin"); +``` \ No newline at end of file diff --git a/docs/notes/ops/linux/README.md b/docs/notes/ops/linux/README.md new file mode 100644 index 0000000..19c8f3c --- /dev/null +++ b/docs/notes/ops/linux/README.md @@ -0,0 +1,31 @@ +--- +title: Linux 运维笔记 +createTime: 2025/09/28 10:30:00 +permalink: /ops/linux/ +--- + +# Linux 运维笔记 + +你好呀,这里是祀梦的 Linux 运维笔记小天地~ 🌟 + +在这片神奇的天地里,我们将一起探索 Linux 操作系统的奥秘,学习各种实用的运维技巧。无论你是刚开始接触 Linux 的新手,还是已经有一定经验的运维工程师,相信这里都能为你提供一些有用的知识和见解哦~ + +## 为什么选择 Linux? + +Linux 就像是一个宝藏盒子,里面装满了各种强大的工具和功能。它稳定、安全、高效,是服务器领域的佼佼者。而且最重要的是,它是开源的!这意味着我们可以自由地探索它的内部结构,甚至可以根据自己的需求进行定制~ + +## 笔记内容概览 + +这里的笔记将会涵盖以下几个方面: + +- **Linux 基础命令**:从最基本的文件操作到系统管理,一步步带你熟悉 Linux 的常用命令 +- **系统管理**:学习如何管理用户、进程、服务和网络 +- **Shell 脚本编程**:掌握 Shell 脚本的编写技巧,让你的工作更加自动化 +- **系统性能优化**:了解如何监控和优化 Linux 系统的性能 +- **安全防护**:学习 Linux 系统的安全配置和防护措施 + +## 学习建议 + +学习 Linux 最好的方法就是**多实践**!不要害怕犯错,每一次错误都是成长的机会。如果你在学习过程中遇到了问题,记得多查阅文档,多和社区交流~ + +让我们一起开启这段精彩的 Linux 运维之旅吧! 💪 diff --git a/docs/notes/ops/linux/basic-commands.md b/docs/notes/ops/linux/basic-commands.md new file mode 100644 index 0000000..6a1afef --- /dev/null +++ b/docs/notes/ops/linux/basic-commands.md @@ -0,0 +1,210 @@ +--- +title: Linux 基础命令详解 +createTime: 2025/09/28 10:45:00 +permalink: /ops/linux/basic-commands/ +--- + +# Linux 基础命令详解 + +Hello~ 欢迎来到 Linux 命令的奇妙世界!今天,爱莉希雅将带着祀梦一起探索那些最常用、最实用的 Linux 基础命令哦~ 准备好了吗?Let's go!🚀 + +## 文件与目录操作 + +### ls - 查看目录内容 + +`ls` 命令就像是你的眼睛,可以帮你查看当前目录下有哪些文件和文件夹~ + +```bash +# 查看当前目录内容 +ls + +# 查看详细信息(包括权限、大小、修改时间等) +ls -l + +# 显示所有文件(包括隐藏文件) +ls -a + +# 以人类可读的方式显示文件大小 +ls -lh +``` + +### cd - 切换目录 + +`cd` 命令是你的小脚丫,可以带你在不同的目录之间穿梭~ + +```bash +# 进入指定目录 +cd /path/to/directory + +# 回到上一级目录 +cd .. + +# 回到主目录 +cd ~ + +# 回到上一次所在的目录 +cd - +``` + +### pwd - 显示当前路径 + +有时候我们可能会迷路,这时候 `pwd` 命令就像是指南针,可以告诉我们当前所在的位置~ + +```bash +# 显示当前工作目录的绝对路径 +pwd +``` + +### mkdir - 创建目录 + +想要创建新的文件夹?`mkdir` 命令可以帮你实现这个愿望~ + +```bash +# 创建一个新目录 +mkdir new_directory + +# 递归创建多级目录 +mkdir -p parent/child/grandchild +``` + +### rm - 删除文件或目录 + +`rm` 命令可以帮你清理不需要的文件和目录,但要小心使用哦,删除后可是很难恢复的~ + +```bash +# 删除文件 +rm filename.txt + +# 强制删除文件(不提示) +rm -f filename.txt + +# 删除目录 +rm -r directory + +# 强制删除目录(不提示) +rm -rf directory +``` + +## 文件内容查看 + +### cat - 查看文件全部内容 + +`cat` 命令就像是一个快速阅读器,可以帮你一次性查看整个文件的内容~ + +```bash +# 查看文件内容 +cat filename.txt + +# 显示行号 +cat -n filename.txt +``` + +### less - 分页查看长文件 + +如果文件太长,一次性看不完怎么办?`less` 命令可以帮你分页查看~ + +```bash +# 分页查看文件内容 +less filename.txt + +# 在 less 模式下,可以使用方向键上下滚动,按 q 退出 +``` + +### head 和 tail - 查看文件开头和结尾 + +只想看文件的开头或结尾部分?`head` 和 `tail` 命令可以满足你的需求~ + +```bash +# 查看文件前 10 行 +head filename.txt + +# 查看文件前 20 行 +head -20 filename.txt + +# 查看文件最后 10 行 +tail filename.txt + +# 实时查看文件更新(常用于查看日志) +tail -f filename.log +``` + +## 文本搜索 + +### grep - 搜索文本内容 + +`grep` 命令就像是一个侦探,可以帮你在文件中搜索特定的文本~ + +```bash +# 在文件中搜索特定文本 +grep "search_text" filename.txt + +# 忽略大小写搜索 +grep -i "search_text" filename.txt + +# 显示匹配行及前后几行 +grep -A 5 -B 5 "search_text" filename.txt + +# 递归搜索目录下所有文件 +grep -r "search_text" directory/ +``` + +## 系统信息查看 + +### uname - 查看系统信息 + +想要了解你的 Linux 系统是什么版本?`uname` 命令可以告诉你~ + +```bash +# 查看系统内核信息 +uname -a +``` + +### top - 查看进程信息 + +`top` 命令就像是系统的仪表盘,可以实时显示系统的运行状态和进程信息~ + +```bash +# 查看系统进程信息 +top + +# 在 top 模式下,可以按 q 退出 +``` + +## 网络命令 + +### ping - 测试网络连接 + +想知道你的电脑能不能连接到某个网站?`ping` 命令可以帮你测试~ + +```bash +# 测试网络连接 +ping www.example.com +``` + +### ifconfig/ip - 查看网络接口信息 + +想了解你的网络配置?`ifconfig` 或 `ip` 命令可以帮你查看~ + +```bash +# 查看网络接口信息 +ifconfig +# 或者 +ip addr +``` + +## 小练习 + +现在,让我们来做一个小练习吧!尝试使用今天学到的命令完成以下任务: + +1. 在家目录下创建一个名为 `practice` 的文件夹 +2. 进入 `practice` 文件夹,创建一个名为 `notes.txt` 的文件 +3. 使用 `cat` 命令查看该文件(虽然现在它是空的) +4. 返回上一级目录,然后使用 `ls -la` 查看所有文件和目录的详细信息 + +怎么样?你都完成了吗?如果遇到了问题,不要着急,多试几次就会熟悉啦~ 😊 + +## 小结 + +今天我们学习了很多实用的 Linux 基础命令,这些命令就像是 Linux 世界的积木,只要你熟练掌握它们,就可以搭建出各种各样的奇妙作品~ 记得要多多练习哦,实践出真知嘛! + +下次我们将学习更多高级的 Linux 命令和技巧,敬请期待~ 拜拜~ 👋 diff --git a/docs/notes/ops/linux/other.md b/docs/notes/ops/linux/other.md new file mode 100644 index 0000000..443e857 --- /dev/null +++ b/docs/notes/ops/linux/other.md @@ -0,0 +1,12 @@ +--- +title: 一些零散的命令 +createTime: 2025/12/31 10:00:30 +permalink: /ops/linux/other/ +--- + +## 文件处理相关 + +统计当前目录下的所有文件加起来有多少行 +``` +wc -l * | tail -n 1 +``` diff --git a/docs/notes/programming/c++/README.md b/docs/notes/programming/c++/README.md new file mode 100644 index 0000000..cecfc63 --- /dev/null +++ b/docs/notes/programming/c++/README.md @@ -0,0 +1,49 @@ +--- +title: C++ 学习笔记 +description: 记录C++编程语言的学习心得和基础知识 +createTime: 2025/09/22 09:00:00 +permalink: /programming/cplusplus/ +--- + +# C++ 学习笔记 + +这里是我在学习C++编程语言过程中记录的学习心得、基础知识和实战经验。通过整理这些笔记,希望能够帮助自己和他人更好地掌握C++这门强大的编程语言。 + +## 学习路径 + +C++是一门复杂而强大的编程语言,学习路径建议如下: + +1. **基础语法** - 掌握C++的基本语法和编程概念 +2. **面向对象编程** - 学习C++的类、继承、多态等OOP特性 +3. **STL标准库** - 熟悉常用的容器和算法 +4. **高级特性** - 模板、异常处理、智能指针等 +5. **实战项目** - 通过实际项目巩固所学知识 + +## 笔记分类 + +### 基础语法 + +- 数据类型 +- 运算符和表达式 +- 控制流语句 +- 函数 + +### 面向对象编程 + +- 类和对象 +- 继承与多态 +- 封装与抽象 +- 构造函数与析构函数 + +### STL标准库 + +- 容器(vector, list, map等) +- 迭代器 +- 算法 +- 函数对象 + +## 学习资源推荐 + +- [C++ Primer Plus:中文版(第六版)](https://101su.ru/book/5442395/430bc1/c-primer-plus%E4%B8%AD%E6%96%87%E7%89%88%E7%AC%AC%E5%85%AD%E7%89%88.html) - 很好的C++入门教材 + +开始你的C++学习之旅吧!坚持学习,你会发现C++的魅力所在! diff --git a/docs/notes/programming/c++/basis.md b/docs/notes/programming/c++/basis.md new file mode 100644 index 0000000..8532198 --- /dev/null +++ b/docs/notes/programming/c++/basis.md @@ -0,0 +1,10 @@ +--- +title: C++ 简介与环境配置 +createTime: 2025/09/22 09:06:00 +permalink: /programming/cplusplus/basis/ +--- + +## C++的简介 +欢迎来到C++的奇妙世界~(๑>◡<๑) 如果你之前接触过C语言的话,那真是太棒啦!C++就像是C语言穿上了漂亮的新衣裳,不仅保留了原来的优点,还添加了面向对象和泛型编程的魔法哦~不过呢,可能需要稍微调整一下之前的编程习惯呢。就算你是第一次接触C++也完全不用担心,我会用最简单可爱的方式,带着你一步一步探索这个神奇的编程世界哒! + +## 环境配置 diff --git a/docs/notes/programming/leetcode/README.md b/docs/notes/programming/leetcode/README.md new file mode 100644 index 0000000..a2c9fbe --- /dev/null +++ b/docs/notes/programming/leetcode/README.md @@ -0,0 +1,40 @@ +--- +title: LeetCode 题解笔记 +description: 记录LeetCode算法题的解题思路和代码实现 +createTime: 2025/09/22 08:09:52 +permalink: /programming/leetcode/ +--- + +# LeetCode 题解笔记 + +这里是我在LeetCode刷题过程中记录的解题思路和代码实现。通过整理这些题解,希望能够提高自己的算法水平和编程能力。 + +## 题解分类 + +### 数组与字符串 + +- [两数之和](https://leetcode-cn.com/problems/two-sum/) +- [三数之和](https://leetcode-cn.com/problems/3sum/) + +### 链表 + +- [反转链表](https://leetcode-cn.com/problems/reverse-linked-list/) +- [合并两个有序链表](https://leetcode-cn.com/problems/merge-two-sorted-lists/) + +### 动态规划 + +- [爬楼梯](https://leetcode-cn.com/problems/climbing-stairs/) +- [最长回文子串](https://leetcode-cn.com/problems/longest-palindromic-substring/) + +## 解题技巧 + +1. **双指针法**:常用于数组、链表问题,如两数之和、反转链表等 +2. **滑动窗口**:处理字符串子串问题 +3. **动态规划**:将原问题分解为子问题,自底向上求解 +4. **分治法**:将问题分成若干子问题,分别求解后合并结果 + +## 学习资源 + +- [LeetCode官方题解](https://leetcode-cn.com/problemset/all/) +- [代码随想录](https://programmercarl.com/) +- [算法导论](https://mitpress.mit.edu/books/introduction-algorithms) diff --git a/docs/notes/programming/leetcode/beginner.md b/docs/notes/programming/leetcode/beginner.md new file mode 100644 index 0000000..36b1375 --- /dev/null +++ b/docs/notes/programming/leetcode/beginner.md @@ -0,0 +1,13 @@ +--- +title: LeetCode 入门题单~(≧∇≦)ノ +description: 给算法初学者的题目推荐和学习路径 +createTime: 2025年9月22日 08:52:52 +permalink: /programming/leetcode/question_sheet/beginner/ +--- +# LeetCode 入门题单~(๑>◡<๑) + +作为算法初学者,选择合适的题目开始练习真的超~级重要哦!这里给大家推荐一份超棒的入门题单——[「新」动计划 · 编程入门](https://leetcode.cn/studyplan/primers-list/) ~这份题单就像给小树苗精心准备的阳光和雨露一样,特别适合刚开始算法之旅的你~(悄悄告诉你,里面有两题是数据库基础,暂时可以跳过哦~) + +我的小建议是:先自己试着挑战一下,如果遇到困难了,再来看题解也没关系~重要的是享受这个成长的过程呀~(♡˙︶˙♡) + +## 基础语法 & 数据类型 ٩(๑>◡<๑)۶ diff --git a/docs/notes/programming/solidity/README.md b/docs/notes/programming/solidity/README.md new file mode 100644 index 0000000..6f88247 --- /dev/null +++ b/docs/notes/programming/solidity/README.md @@ -0,0 +1,21 @@ +--- +title: Solidity 学习笔记 +description: 记录Solidity智能合约开发的学习心得和基础知识 +createTime: 2025/09/28 19:39:00 +permalink: /programming/solidity/ +--- + +## Solidity 智能合约概述 + +Solidity 是一种用于编写智能合约的静态类型编程语言,它运行在以太坊虚拟机(EVM)上。 + +## 推荐的资料 +推荐的编辑器 + +Remix IDE:[https://remix.ethereum.org/](https://remix.ethereum.org/) + +有在线版本,也可以下载之后使用,而且可以通过 Docker 部署,很方便 + +Solidity 学习资料: +- [Solidity 官方文档](https://docs.soliditylang.org/zh-cn/latest/index.html) +- [cryptozombies](https://cryptozombies.io/zh/course) diff --git a/docs/notes/programming/solidity/basic-syntax.md b/docs/notes/programming/solidity/basic-syntax.md new file mode 100644 index 0000000..74e9b66 --- /dev/null +++ b/docs/notes/programming/solidity/basic-syntax.md @@ -0,0 +1,88 @@ +--- +title: Solidity 基础语法与数据类型 +createTime: 2025/09/22 10:30:00 +permalink: /programming/solidity/basic-syntax/ +--- + +# Solidity 基础语法与数据类型~(≧∇≦)ノ + +## Solidity 文件基础框架 + +Solidity 文件的基础框架通常包含以下几个部分: + +1. **SPDX 许可证标识符 (SPDX License Identifier)**:为了避免法律问题和明确智能合约的开源许可证,建议在合约的开头添加 SPDX 许可证标识符。 +2. **Solidity 版本声明 (Pragma)**:这会告诉编译器您希望使用哪个版本的 Solidity 来编译您的代码。 +3. **ABI编码编译指示**:通过`pragma abicoder v1`或`pragma abicoder v2`来指定ABI编码版本。 +4. **合约定义 (Contract Definition)**:这是您编写智能合约代码的主体部分。 + +下面是一个基础的 Solidity 文件框架示例,您可以直接使用: + +```solidity +// SPDX-License-Identifier: MIT +pragma solidity ^0.8.20; +pragma experimental ABIEncoderV2; + +contract MyContract { + // 在这里编写您的合约代码 +} +``` + +## Solidity 基础数据类型 + +- 布尔类型(bool):值为 `true` 和 `false` + - 运算符:`!`(逻辑非)、`&&`(逻辑与)、`||`(逻辑或)、`==`(等于)、`!=`(不等于) +- 整形(int/uint): + - 有符号整数(int):可以表示负数和零。 + - 无符号整数(uint):只能表示非负数。 + - 整数类型可以是8位、16位、32位、64位或256位。(只要是八的倍数都可以) + - 例如:`int8`、`uint256`等。 + - 运算符: + - 比较运算符:`<=`,`<`,`>=`,`>` + - 位运算符:`&`(按位与)、`|`(按位或)、`^`(按位异或)、`~`(按位取反) + - 移位运算符:`<<`(左移)、`>>`(右移) + - 算数运算符:`+`(加法)、`-`(减法)、`*`(乘法)、`/`(除法)、`%`(取余) + - 对于一个整数类型`X`,可以使用`type(X).min`和`type(X).max`来获取其最小值和最大值。 + + + +## Solidity 基础语法结构 + +## Solidity 基础操作 + +### 导入其他源文件 + +Solidity 支持导入其他源文件,使用`import`语句。例如: + +```solidity +import "filename.sol"; +``` + +这将导入`filename.sol`文件中的合约代码。 + +还可以创建一个新的全局符号 + +```solidity +import * as NewName from "filename.sol" +``` + +这将创建一个新的全局符号`NewName`,您可以在合约中使用它来引用`filename.sol`文件中的合约,例如`NewName.ContractName`。 + +还可以在导入的同时重命名符号:`import {symbol1 as alias, symbol2} from "filename";` + +### 注释 + +Solidity 支持两种类型的注释: + +1. **行注释**:使用`//`来注释单行代码。 +2. **块注释**:使用`/*`和`*/`来注释多行代码。 + +例如: + +```solidity +// 这是一个行注释 + +/* +这是一个 +块注释 +*/ +``` \ No newline at end of file diff --git a/docs/notes/programming/solidity/case-analysis.md b/docs/notes/programming/solidity/case-analysis.md new file mode 100644 index 0000000..8f0d52b --- /dev/null +++ b/docs/notes/programming/solidity/case-analysis.md @@ -0,0 +1,922 @@ +--- +title: 十份代码实例 +createTime: 2025/10/10 11:07:11 +permalink: /programming/solidity/analysis/case-analysis/ +password: simeng +--- + +## 题目一 + +原题: + +1.食品信息(FoodInfoItem)的接口编码 + +(1)编写食品信息实体的接口,完成可溯源食品信息初始化,实现可追溯的原始生产商食品信息上链功能 + +(2)编写分销商食品上链信息接口,根据食品溯源智能合约地址获取分销商上链食品的信息 + +(3)编写超市进行食品上链信息的接口,根据食品溯源智能合约地址获取超市上链食品信息。 + +2.食品溯源(Trace)的接口编码 + +(1)编写食品溯源智能合约生产商Producer添加食品接口,必须生产商才能添加可溯源的食品,实现溯源功能 + +(2)编写食品溯源智能合约分销商Distributor添加食品接口,必须分销商才能添加可溯源的食品,实现溯源功能 + +(3)编写食品溯源智能合约超市Retailer添加食品接口,必须超市才能添加可溯源的食品,实现溯源功能 + +3.角色(Role)管理的接口编码 + +(1)编写食品溯源增加角色接口,必须是未增加的角色才能被添加,实现添加角色的功能 + +(2)编写食品溯源移除角色接口,必须是已增加的角色才能被移除,实现移除角色的功能 + +(3)编写食品溯源角色授权接口,必须是授权的角色地址,实现角色权限管理功能 + +::: code-tabs +@tab Distributor.sol +```solidity +pragma solidity ^0.4.25; + +import "./Roles.sol"; + +//中间商角色 +contract Distributor { + using Roles for Roles.Role; + + event DistributorAdded(address indexed account); + event DistributorRemoved(address indexed account); + + Roles.Role private _distributors; + + constructor (address distributor ) public { + _addDistributor(distributor); + } + + modifier onlyDistributor() { + require(isDistributor(msg.sender), "DistributorRole: caller does not have the Distributor role"); + _; + } + + function isDistributor(address account) public view returns (bool) { + return _distributors.has(account); + } + + function addDistributor(address account) public onlyDistributor { + _addDistributor(account); + } + + function renounceDistributor() public { + _removeDistributor(msg.sender); + } + + function _addDistributor(address account) internal { + _distributors.add(account); + emit DistributorAdded(account); + } + + function _removeDistributor(address account) internal { + _distributors.remove(account); + emit DistributorRemoved(account); + } +} +``` +@tab FoodInfoItem.sol +```solidity +pragma solidity >=0.4.22 <0.5.0; +pragma experimental ABIEncoderV2; + +//食品信息管理合约 +// 1. 保存食品基本信息:时间戳(流转过程中),用户名(流转过程中),用户地址信息(流转过程中),食品质量(流转过程中),食物名称,当前用户名称,质量,状态. +// 2. 对食品基本信息进行初始化 +// 3. 实现两个方法:中间商添加食品信息;超市添加食品信息 +// 4. 实现显示食品信息的方法 + +contract FoodInfoItem{ + uint[] _timestamp;//①保存食品流转过程中各个阶段的时间戳 + string[] _traceName;//②保存食品流转过程各个阶段的用户名 + address[] _traceAddress;//③保存食品流转过程各个阶段的用户地址信息(和用户一一对应) + uint8[] _traceQuality;//④保存食品流转过程中各个阶段的质量 + string _name;//⑤食品名称 + string _currentTraceName;//⑥当前用户名称 + uint8 _quality;//⑦质量(0=优质 1=合格 2=不合格) + uint8 _status;//⑧状态(0:生产 1:分销 2:出售) + address _owner;//⑨初始化owner + + constructor (string name, string traceName, uint8 quality, address producer) public { + _timestamp.push(now); + _traceName.push(traceName); + _traceAddress.push(producer); + _traceQuality.push(quality); + _name = name; + _currentTraceName = traceName; + _quality = quality; + _status = 0; + _owner = msg.sender; + } + + function addTraceInfoByDistributor(string traceName,address distributor, uint8 quality) public returns(bool) { + require(_status == 0 , "status must be producing"); + require(_owner == msg.sender,"only trace contract can invoke") + //② + _timestamp.push(now); + _traceName.push(traceName); + _currentTraceName = traceName; + _traceAddress.push(distributor); + _quality = quality; + //③ + //④ + _traceQuality.push(_quality); + _status = 1; + return true; + } + + function addTraceInfoByRetailer(string traceName,address retailer, uint8 quality) public returns(bool) { + require(_status == 1 , "status must be distributing"); + require(_owner == msg.sender,"only trace contract can invoke") + //② + _timestamp.push(now); + _traceName.push(traceName); + _currentTraceName = traceName; + _traceAddress.push(retailer); + _quality = quality; + //③ + //④ + _traceQuality.push(_quality); + _status = 2; + return true; + } + function getTraceInfo() public constant returns(uint[], string[], address[], uint8[]) { + return(_timestamp, _traceName, _traceAddress, _traceQuality); + } + + function getFood() public constant returns(uint, string, string, string, address, uint8) { + return(_timestamp[0], _traceName[0], _name, _currentTraceName, _traceAddress[0], _quality); + } + +} +``` +@tab Producer.sol +```solidity +pragma solidity ^0.4.25; + +import "./Roles.sol"; + +//生产者角色 +contract Producer { + using Roles for Roles.Role; + + event ProducerAdded(address indexed account); + event ProducerRemoved(address indexed account); + + Roles.Role private _producers; + + constructor (address producer) public { + _addProducer(producer); + } + + modifier onlyProducer() { + require(isProducer(msg.sender), "ProducerRole: caller does not have the Producer role"); + _; + } + + function isProducer(address account) public view returns (bool) { + return _producers.has(account); + } + + function addProducer(address account) public onlyProducer { + _addProducer(account); + } + + function renounceProducer() public { + _removeProducer(msg.sender); + } + + function _addProducer(address account) internal { + _producers.add(account); + emit ProducerAdded(account); + } + + function _removeProducer(address account) internal { + _producers.remove(account); + emit ProducerRemoved(account); + } +} +``` +@tab Retailer.sol +```solidity +pragma solidity ^0.4.25; + +import "./Roles.sol"; + +//零售商角色(超市) +contract Retailer { + using Roles for Roles.Role; + + event RetailerAdded(address indexed account); + event RetailerRemoved(address indexed account); + + Roles.Role private _retailers; + + constructor (address retailer) public { + _addRetailer(retailer); + } + + modifier onlyRetailer() { + require(isRetailer(msg.sender), "RetailerRole: caller does not have the Retailer role"); + _; + } + + function isRetailer(address account) public view returns (bool) { + return _retailers.has(account); + } + + function addRetailer(address account) public onlyRetailer { + _addRetailer(account); + } + + function renounceRetailer() public { + _removeRetailer(msg.sender); + } + + function _addRetailer(address account) internal { + _retailers.add(account); + emit RetailerAdded(account); + } + + function _removeRetailer(address account) internal { + _retailers.remove(account); + emit RetailerRemoved(account); + } +} +``` +@tab Roles.sol +```solidity +pragma solidity ^0.4.25; +//角色库(管理所有角色地址) +// 1. 实现增加角色地址 +// 2. 移除角色地址 +// 3. 判断角色地址是否被授权 +library Roles { + struct Role { + mapping (address => bool) bearer; + } + function add(Role storage role, address account) internal { + require(!has(role, account), "Roles: account already has role"); + role.bearer[account] = true; + } + function remove(Role storage role, address account) internal { + require(has(role, account), "Roles: account does not have role"); + role.bearer[account] = false; + } + function has(Role storage role, address account) internal returns (bool) { + require(account != address(0), "Roles: account is the zero address"); + return role.bearer[account]; + } + +} +``` +@tab Trace.sol +```solidity +pragma solidity >=0.4.22 <0.7.0; +pragma experimental ABIEncoderV2; +import "./FoodInfoItem.sol"; +import "./Distributor.sol"; +import "./Producer.sol"; +import "./Retailer.sol"; + +//食品溯源合约(负责具体食品溯源信息的生成) +// 1.实现生产食品的方法(新建食品信息) +// 2.实现食品分销过程中增加溯源信息的接口 +// 3.实现食品出售过程中增加溯源信息的接口 +// 4.实现获取食品溯源信息接口 + +contract Trace is Producer, Distributor, Retailer{ + + mapping (uint256 => address) foods;//食品溯源id到具体食品溯源合约的映射表 + uint[] foodList; + + //构造函数 + constructor(address producer, address distributor, address retailer) + public Producer(producer) + Distributor(distributor) + Retailer(retailer){ + + } + //生成食品溯源信息接口 + //只有Producer能调用 + //name 食品名称 + //traceNumber 食品溯源id + //traceName 当前用户名称 + //quality 当前食品质量 + function newFood(string name,uint256 traceNumber, string traceName, uint8 quality) + public onlyProducer returns(uint) + { + require(foods[traceNumber] == address(0),"traceName already exist");//④ + FoodInfoItem food = new FoodInfoItem(name,traceName,quality,msg.sender);//⑤ + foods[traceNumber] = food;//⑥ + foodList.push(traceNumber);//⑦ + retur food;//⑧ + } + + //食品分销过程中增加溯源信息的接口 + //只有Distributor能调用 + //traceNumber 食品溯源id + //traceName 当前用户名称 + //quality 当前食品质量 + function addTraceInfoByDistributor(uint256 traceNumber,string traceName, uint8 quality) + public onlyRetailer returns(bool) { + require(foods[traceNumber] != address(0),"traceNumber does not exist"); + //③ + return FoodInfoItem(foods[traceNumber]).addTraceInfoByDistributor(traceName,msg.sender, quality); + } + + //食品出售过程中增加溯源信息的接口 + //只有Retailer能调用 + //traceNumber 食品溯源id + //traceName 当前用户名称 + //quality 当前食品质量 + function addTraceInfoByRetailer(uint256 traceNumber,string traceName, uint8 quality) + public onlyRetailer returns(bool) { + require(foods[traceNumber != address(0)], "traceNumber does not exist"); + return FoodInfoItem(foods[traceNumber]).addTraceInfoByRetailer(traceName,msg.sender, quality); + } + + //获取食品溯源信息接口 + //string[] 保存食品流转过程中各个阶段的相关信息 + //address[] 保存食品流转过程各个阶段的用户地址信息(和用户一一对应) + //uint8[] 保存食品流转过程中各个阶段的状态变化 + function getTraceInfo(uint256 traceNumber) public constant returns(uint[], string[], address[], uint8[]) { + require(foods[traceNumber] != address(0), "traceNumber does not exist"); + return FoodInfoItem(foods[traceNumber]).getTraceInfo(); + } + + function getFood(uint256 traceNumber) public constant returns(uint, string, string, string, address, uint8) { + require(foods[traceNumber] != address(0), "traceNumber does not exist"); + return FoodInfoItem(foods[traceNumber]).getFood(); + } + + function getAllFood() public constant returns (uint[]) { + return foodList; + } +} +``` +::: +## 题目二 + +题目: + +1.供应链金融实体信息编码(6分) + +(1)编写供应链金融智能合约的实体接口,完成实体通用数据的初始化,实现企业和票据实体信息上链的功能;(2分) + +(2)编写企业上链信息接口,实现供应链金融的企业信息上链;(2分) + +(3)基于给定的智能合约代码以及注释,完成银行向企业交易的接口函数;(2分) + +2.供应链金融公司与公司接口编码(6分) + +(1)编写公司与公司之间进行交易的历史存证上链接口,实现公司与公司之间的交易功能;(2分) + +(2)编写创建存证的接口,实现创建存证的功能;(2分) + +(3)编写交易金额数量变化的接口,实现凭证交易双方资金的变化功能;(2分) + +3.供应链金融公司与银行交易的接口编码(4分) + +(1)编写公司与银行之间进行交易的历史存证上链接口,实现公司与银行之间的交易功能;(2分) + +(2)编写创建存证的接口,实现创建存证的功能;(1分) + +(3)编写交易金额数量变化的接口,实现凭证交易双方资金的变化功能;(1分) + +::: code-tabs +@tab xxx.sol +```solidity +``` +@tab xxx.sol +```solidity +``` +@tab xxx.sol +```solidity +``` +::: +## 题目三 + +题目: + +子任务2-2-1:太阳能板管理接口编码 + +1. 根据文档要求,编写太阳能板新增接口功能,必须将新增太阳能板数据存入指定表中,在存储完成后需触发后事件并返回存储与否的标识; + +2. 根据文档要求,编写太阳能板修改接口,必须通过指定表修改完成数据更新,在完成更新后需触发事件并返回更新与否的标识。 + +子任务2-2-2:能源管理接口编码 + +1. 根据文档要求,编写能源新增接口功能,必须将新增能源数据存入指定表中,在存储完成后需触发后事件并返回存储与否的标识; + +2. 根据文档要求,编写能源修改接口,必须通过指定表修改完成数据更新,在完成更新后需触发事件并返回更新与否的标识。 + +子任务2-2-3:合约部署和调用 + +1. 解决代码错误和警告,正确编译并部署合约,成功获取部署的合约地址和ABI; + +2. 调用太阳能板查询合约接口,完整验证业务流程; + +3. 调用能源查询合约接口,完整验证业务流程。 + +::: code-tabs +@tab xxx.sol +```solidity +``` +@tab xxx.sol +```solidity +``` +@tab xxx.sol +```solidity +``` +::: +## 题目四 + +原题: + +1.编写原材料接口newMaterial,初始化原材料信息,返回合约地址,并实现原材料信息上链功能。 + +2.编写获取存原材料接口getMaterial,根据合约地址获取原材料信息 + +3.编写食品物流上链接口addLogistic,实现食品物流信息上链功能 + +4.编写获取食品物流信息的接口getLogistics,根据食品产品编号获取物流信息 + +::: code-tabs +@tab Logistics.sol +```solidity +pragma solidity 0.6.10; + +pragma experimental ABIEncoderV2; + +contract Logistics { + + struct LogisticsData { + address cargo; //货物合约地址 + address orgin; //货物上级合约地址 + address destination; //货物下级合约地址 + string memo; //备注信息 + uint createdAt; //创建时间 + uint queryCount; //已查询次数 + } + + LogisticsData[] private _logisticsData; //全部物流信息数组 + + uint public recordCount;//所有记录条数 + uint public queryCount;//所有查询次数 + + //可自行添加形参和返回值 + function addLogistics(address _cargo,address _orgin,【请补充】) public { + //TODO:”请补充缺失代码 + } + + //可自行添加形参和返回值 + function getLogisticsInfo(address _cargo) public returns(LogisticsData[] memory _cargoLogisticsData) { + + //TODO:”请补充缺失代码 + + } + +} +``` +@tab Material.sol +```solidity +pragma solidity 0.6.10; + +contract Material { + struct Material { + address owner; + string name; + string id; + string memo; + uint createdAt; + bool exist; + } + + mapping(string => Material) public materials; + //可自行添加形参和返回值 + function newMaterial(string memory _name,string memory _id,【请补充】) public { + + //TODO:”请补充缺失代码 + } + + + //可自行添加形参和返回值 + function getMaterial(string memory id) public view returns(【请补充】) { + + //TODO:”请补充缺失代码 + } + +} +``` +::: + +参考答案: + +::: code-tabs +@tab Logistics.sol +```solidity +pragma solidity 0.6.10; + +pragma experimental ABIEncoderV2; + +contract Logistics { + + struct LogisticsData { + address cargo; //货物合约地址 + address orgin; //货物上级合约地址 + address destination; //货物下级合约地址 + string memo; //备注信息 + uint createdAt; //创建时间 + uint queryCount; //已查询次数 + } + + LogisticsData[] private _logisticsData; //全部物流信息数组 + + uint public recordCount;//所有记录条数 + uint public queryCount;//所有查询次数 + + //可自行添加形参和返回值 + function addLogistics(address _cargo,address _orgin,【请补充】) public { + //TODO:”请补充缺失代码 + } + + //可自行添加形参和返回值 + function getLogisticsInfo(address _cargo) public returns(LogisticsData[] memory _cargoLogisticsData) { + + //TODO:”请补充缺失代码 + + } + +} +``` +@tab Material.sol +```solidity +pragma solidity 0.6.10; + +contract Material { + struct Material { + address owner; + string name; + string id; + string memo; + uint createdAt; + bool exist; + } + + mapping(string => Material) public materials; + //可自行添加形参和返回值 + function newMaterial(string memory _name,string memory _id,【请补充】) public { + + //TODO:”请补充缺失代码 + } + + + //可自行添加形参和返回值 + function getMaterial(string memory id) public view returns(【请补充】) { + + //TODO:”请补充缺失代码 + } + +} +``` +::: + +## 题目五 + +题目: + +1.个人签章信息接口编码 + +(1)编写个人签章智能合约的实体接口,完成实体通用数据的初始化,实现签章和用户实体信息上链的功能 + +(2)编写签章信息上链的接口,实现Seal合约的构造函数; + +(3)基于给定的智能合约代码以及注释,完成ElectronicSeal合约判断多人签章文件编号是否存在的函数。 + +2.电子印章接口编码 + +(1)基于给定的智能合约代码以及注释,完成ElectronicSeal合约获取多人签章信息函数; + +(2)基于给定的智能合约代码以及注释,完成ElectronicSeal合约多人签章函数。 + +::: code-tabs +@tab xxx.sol +```solidity +``` +::: +## 题目六 + +题目: + +1.食品信息(Food)、成员信息(Member)、生产订单信息(Productions)的结构体功能编码(6分) + +(1)编写食品信息实体功能。(2分) + +(2)完善智能合约中用户结构体内容(2分) + +(3)编写生产订单(Productions)结构体信息。(2分) + +2.食品溯源(Trace)的接口编码(6分) + +(1)根据食品信息结构体,完成食品信息添加相应功能(2分) + +(2)编写食品溯源收购商创建收购订单功能。 + +(3)编写食品溯源创建运输订单功能。 + +3.角色(Role)管理的接口编码(4分) + +(1)编写食品溯源增加角色接口,实现添加角色的功能。(1分) + +(2)编写食品溯源获取角色功能。(1分) + +(3)编写食品溯源修改角色功能。(2分) + +::: code-tabs +@tab xxx.sol +``` +``` +::: +## 题目七 + +原题: +**子任务2-2-1:航班延误保险购买合约编码(5分)** + +(1)编写航班保险购买上链接口,完成只有购买机票的用户可以购买保险、必须缴纳正确的保费金额、购买保险的时间不能超过购买机票后的0.5小时的功能,符合条件则用户可以购买保险,将用户购买保险状态上链;(3分) + +(2)编写退保接口,完成保险公司预存赔偿金后,用户无法退保,反之用户可退保的功能,将用户退保状态上链,并退还用户保费功能。(2分) + +**子任务2-2-2:航班信息存证上链合约编码** + +(1)编写获取航班信息接口,实现依据航班号获得航班号对应的计划起飞时间、实际起飞时间、到达时间、是否延误状态的功能; + +(2)编写判断航班是否延误接口,实现依据航班号获得航班号对应的航班是否延误,得到航班是否延误的结果功能。 + +**子任务2-2-3:航班延误险理赔合约编码** + +(1)编写客户理赔接口,实现如果航班延误超过4小时,将赔偿金赔偿给乘客的功能; + +(2)编写保险公司收取保费接口,实现如果航班没有延误或者延误时间少于4小时,将保费转账给保险公司,并退还赔偿金的功能。 + +::: code-tabs +@tab Claims.sol +```solidity +pragma solidity ^0.6.10; + +import "./FlightDelayInsurance.sol"; + +contract Claims is FlightDelayInsurance{ + + // 定义航班信息结构体 + struct Flight { + uint256 departureTime; // 航班出发时间 + uint256 delayTime; // 航班延误时间 + bool isDelayed; // 航班是否延误 + bool isInsured; // 航班是否购买保险 + } + + // 定义保险公司地址 + address public insuranceCompany; + + // 定义航班信息映射 + mapping(bytes32 => Flight) public flights; + + // 定义购买保险事件 + event BuyInsurance(bytes32 flightKey, address passenger, uint256 premium); + + // 定义航班延误事件 + event FlightDelay(bytes32 flightKey, uint256 delayTime); + + // 定义理赔事件 + event Claim(bytes32 flightKey, address passenger, uint256 amount); + + // 定义保险公司预存的赔偿金 + uint256 public compensationNew; + + // 构造函数,初始化保险公司地址和赔偿金 + constructor() FlightDelayInsurance(platformS,airlineV,insuranceCompanyC,premium,compensation) public { + insuranceCompany = msg.sender; + compensationNew = compensation; + } + + // 更新航班信息函数 + function updateFlight(bytes32 flightKey, uint256 departureTime, uint256 delayTime, bool isDelayed) payable public { + // 判断调用者是否为保险公司 + require(msg.sender == insuranceCompany, "Only insurance company can update flight information"); + // 更新航班信息 + flights[flightKey].departureTime = departureTime; + flights[flightKey].isDelayed = isDelayed; + +/*********** 客户理赔接口 **********/ + //任务2-2-3,请编写合约代码 + + + +/********** 客户理赔接口 ***********/ + +/*********** 保险公司收取保费接口开发 **********/ + //任务2-2-3,请编写合约代码 + + + + +/********** 保险公司收取保费接口开发 ***********/ + // 触发航班延误事件 + emit FlightDelay(flightKey, delayTime); + } +} + +``` +@tab FlightDelayInsurance.sol +```solidity +pragma solidity ^0.6.10; + +contract FlightDelayInsurance { + address public platformS; // 平台S的地址 + address public airlineV; // 航空公司V的地址 + address public insuranceCompanyC; // 保险公司C的地址 + uint public premium; // 保险费 + uint public compensation; // 赔偿金额 + uint public purchaseTime; // 购买保险的时间 + uint public depositTime; // 存入赔偿金额的时间 + bool public purchased; // 是否购买了保险 + bool public deposited; // 是否存入了赔偿金额 + mapping(address => bool) public insured; // 已退保的用户 + mapping(address => bool) public policy; // 已生成保单的用户 + mapping(address => bool) public purchasedTicket; // 已购买机票的用户 + + constructor(address _platformS, address _airlineV, address _insuranceCompanyC, uint _premium, uint _compensation) public { + platformS = _platformS; // 初始化平台S的地址 + airlineV = _airlineV; // 初始化航空公司V的地址 + insuranceCompanyC = _insuranceCompanyC; // 初始化保险公司C的地址 + premium = _premium; // 初始化保险费 + compensation = _compensation; // 初始化赔偿金额 + } + + function purchaseTicket() public { + require(!purchasedTicket[msg.sender], "Ticket has already been purchased"); // 该用户已购买机票 + purchasedTicket[msg.sender] = true; // 标记该用户已购买机票 + purchaseTime = block.timestamp; + } +/*********** 航班保险购买上链接口开发 **********/ + //任务2-2-1,请编写合约代码 + + + + +/********** 航班保险购买上链接口开发 ***********/ + function depositCompensation() public payable { + require(msg.sender == insuranceCompanyC, "Only insurance company C can deposit compensation"); // 只有保险公司C可以存入赔偿金额 + require(msg.value == compensation, "Compensation amount is incorrect"); // 赔偿金额不正确 + require(block.timestamp < depositTime + 2 hours, "Deposit time has expired"); // 存入赔偿金额的时间已过期 + deposited = true; // 标记已存入赔偿金额 + } + +/*********** 退保接口开发 **********/ + //任务2-2-1,请编写合约代码 + + + + + +/********** 退保接口开发 ***********/ + + function generatePolicy() public { + require(deposited, "Compensation has not been deposited"); // 赔偿金额未存入,无法生成保单 + require(msg.sender == platformS, "Only platform S can generate policy"); // 只有平台S可以生成保单 + require(!policy[msg.sender], "Policy has already been generated"); // 该用户已生成保单 + policy[msg.sender] = true; // 标记该用户已生成保单 + } +} + +``` +@tab FlightManagement.sol +```solidity +pragma solidity ^0.6.10; + +contract FlightManagement { + + // 航班结构体 + struct Flight { + string flightNumber; // 航班号 + uint256 scheduledDepartureTime; // 计划起飞时间 + uint256 actualDepartureTime; // 实际起飞时间 + uint256 arrivalTime; // 到达时间 + bool delayed; // 是否延误 + } + + // 航班号到航班信息的映射 + mapping(string => Flight) flights; + + // 添加航班 + function addFlight(string memory _flightNumber, uint256 _scheduledDepartureTime, uint256 _arrivalTime) public { + flights[_flightNumber] = Flight(_flightNumber, _scheduledDepartureTime, 0, _arrivalTime, false); + } + + // 更新实际起飞时间 + function updateActualDepartureTime(string memory _flightNumber, uint256 _actualDepartureTime) public { + flights[_flightNumber].actualDepartureTime = _actualDepartureTime; + } + +/*********** 获取航班信息接口开发 **********/ + //任务2-2-2,请编写合约代码 + + + + +/********** 获取航班信息接口开发 ***********/ + +/*********** 编写判断航班是否延误接口开发 **********/ + //任务2-2-2,请编写合约代码 + + + + +/********** 编写判断航班是否延误接口开发 ***********/ +} + +``` +::: +## 题目八 + +题目: +子任务2-2-1:信息管理合约编码 +1. 编写检索个人信息接口,完成患者通过身份证号检索其姓名、性别、年龄的功能; +2. 编写信息管理接口,完成允许患者与医院和科室进行信息管理,通过身份证号检索到患者的个人信息,将预约信息显示给患者,并发送到患者的账户地址中的功能; +子任务2-2-2:病历管理合约编码 +1. 编写新建病历接口,实现检索病人对应科室既往病历,授权医生查看,如果没有既往病历则创建一个新的病历功能; +2. 编写结束就诊接口,实现检查病历是否已经填写,并结束病历咨询的功能。 +子任务2-2-3:病历查看合约编码 +根据需求用例文档在待补充源码中完成病历查看合约的编码,解决代码错误和警告,正确编译合约,功能调试正确,运行合约中的检查退款请求状态、自动批准退款请求接口功能。 +1.编写查看病人个人信息接口,实现获取指定病人个人信息功能; +2.编写查看病人病情描述接口,实现获取指定病人病情描述功能。 +::: code-tabs +@tab xxx.sol +``` +``` +::: +## 题目九 + +题目: + +子任务2-2-1:合同管理合约编码 + +(1)编写房东签署合同接口,完成本合同位置只允许房东签署,通过合同中的信息生成租赁合同的链上哈希,触发协议签署合同的功能,其中合同中的信息包括房东链上账户、租客链上账户、租赁开始时间、租赁结束时间、月租金额、押金金额、交租时间; + +(2)编写租金支付接口,完成只允许租客支付租金的规则,检查支付的租金金额是否正确,触发记录租金支付情况的功能。 + +子任务2-2-2:违约管理合约编码 + +(1)编写房东终止合同接口,实现房东终止合同判断,如果租客已经终止合同则合同无效,如果合同有效,对合同终止状态进行标记,将剩余押金退还给租客的功能; + +(2)编写租客终止合同接口,实现租客终止合同判断,如果房东已经终止合同则合同无效,如果合同有效,对合同终止状态进行标记,将剩余押金退还给房东的功能。 + +子任务2-2-3:押金管理合约编码 + +根据需求用例文档在待补充源码中完成押金管理合约的编码,解决代码错误和警告,正确编译合约,功能调试正确,运行合约中的租客缴纳押金情况查询、房东收取押金情况查询接口功能。 + +(1)编写租客缴纳押金情况查询接口,实现查询租客是狗已缴纳押金功能; + +(2)编写房东收取押金情况查询接口,实现房东是否已收到押金的功能。 + +::: code-tabs +@tab xxx.sol +``` +``` +::: +## 题目十 + +题目: + +子任务2-2-1:账户管理合约编码 + +根据需求用例文档在待补充源码中完成账户管理合约的编码,解决代码错误和警告,正确编译合约,功能调试正确。需要编写生成账户接口,完成从外部部门检索姓名、年龄、雇主、开始日期、工资、缴费基数,将人员信息进行综合存储功能。 + +子任务2-2-2:费用管理合约编码 + +根据需求用例文档在待补充源码中完成费用管理合约的编码,解决代码错误和警告,正确编译合约,功能调试正确,运行添加新职工账户、添加新雇主账户。 + +1.编写添加新职工账户接口,实现当账户不存在,只有管理员可以添加职工账户,职工新账户中账户余额为0,未被赞助的功能; + +2.编写添加新雇主账户接口,实现当账户不存在,只有管理员可以添加雇主账户,雇主新账户中账户余额为0,已被赞助的功能; + +子任务2-2-3:保险转移合约编码 + +根据需求用例文档在待补充源码中完成保险转移合约的编码,解决代码错误和警告,正确编译合约,功能调试正确,运行合约中的申请转移关系、接收账户转移接口。 + +1.编写申请转移关系接口,实现创建申请、添加到申请列表功能,其中创建申请需要设置申请人地址、原城市、目标城市、停缴状态、批准状态; + +2.编写接收账户转移接口,实现获取账户,进行账户授权状态、接收状态、个人账户基金、统筹账户基金、养老保险账户的信息设置; + +::: code-tabs +@tab xxx.sol +``` +``` +::: diff --git a/docs/notes/programming/solidity/other/hardhat.md b/docs/notes/programming/solidity/other/hardhat.md new file mode 100644 index 0000000..b602ccf --- /dev/null +++ b/docs/notes/programming/solidity/other/hardhat.md @@ -0,0 +1,56 @@ +--- +title: Hardhat 相关知识 +createTime: 2025/10/14 14:57:06 +permalink: /programming/solidity/other/hardhat/ +--- + +## HardHat2 部署 +### Node.js v16 安装 +HardHat2 需要 Node.js v16 及以上的版本 +这里给出的是通过 npm 来将旧版本升级到 Node.js v16 的,如果想要直接安装的话通过 `yum install nodejs` 或者 `apt install nodejs` 来即可。 +```bash +npm config set registry https://registry.npmmirror.com +sudo npm install -g n +sudo n 16 +``` +安装完成之后可以查看版本,如果没有更新可以重新刷新一下环境(直接退出重连最简单) +```bash +node -v +# v16.20.2 +npm -v +# 6.14.15 +``` +### 安装 Hardhat2 +创建一个 hardhat2-project 目录,初始化 npm 项目,注意这里不要用 hardhat 作为项目名 +```bash +mkdir ~/hardhat2-project +cd ~/hardhat2-project +npm init -y +``` +安装 Hardhat 2 +```bash +npm install --save-dev hardhat@^2.23.0 +``` +初始化 Hardhat2 项目 +```bash +npx hardhat init +``` +选择 +```bash +✔ What do you want to do? · Create a JavaScript project +✔ Hardhat project root: · /root/hardhat2-project +✔ Do you want to add a .gitignore? (Y/n) · y +✔ Help us improve Hardhat with anonymous crash reports & basic usage data? (Y/n) · y +✔ Do you want to install this sample project's dependencies with npm (@nomicfoundation/hardhat-toolbox)? (Y/n) · y +``` +## 使用 Hardhat2 编译测试合约 +在 hardhat2-project 目录下,执行以下命令来编译合约 +合约都会放在 `contracts` 目录下,这里我们选择了一个默认的合约,因此可以直接编译 +```bash +# 测试编译 +npx hardhat compile +# 运行测试 +npx hardhat test +# 查看可用任务 +npx hardhat help +``` diff --git a/docs/notes/programming/solidity/other/miscellaneous.md b/docs/notes/programming/solidity/other/miscellaneous.md new file mode 100644 index 0000000..89b710b --- /dev/null +++ b/docs/notes/programming/solidity/other/miscellaneous.md @@ -0,0 +1,88 @@ +--- +title: 一些没分类的小知识 +createTime: 2025/10/12 15:34:38 +permalink: /programming/solidity/other/miscellaneous/ +--- + +## 关于 memory 和 storage 存储类型 + +- `storage`:合约的持久化状态数据,保存在链上状态。对 `storage` 的写入最昂贵,读取也比内存贵;修改会永久生效。 +- `memory`:函数调用期间的临时数据,函数返回后即释放。对 `memory` 的更改不会持久化。 +- (补充)`calldata`:外部函数参数的只读数据位置,零拷贝、不可修改,用于节省 gas。 + +### 生命周期与成本 +- `storage` 写入昂贵、读取较贵;适合保存需要长期存在的状态。 +- `memory` 在函数结束时释放,读取/写入相对便宜;适合临时计算与返回值。 +- 复杂引用类型(数组、`struct`、`mapping`、`string`、`bytes`)在函数参数或局部变量处通常必须显式标注数据位置。 + +### 默认与必须声明 +- 状态变量总是位于 `storage`(例如 `User[] public users;`)。 +- 外部函数(`external`)的复杂类型参数默认是 `calldata`;内部/公共函数需要显式标注 `memory` 或 `storage`。 +- 局部变量的复杂类型必须指定数据位置,否则编译报错。 + +### 拷贝与引用语义 +- 从 `storage` 读取到 `memory` 会“复制”数据;修改 `memory` 副本不影响原始 `storage`。 +- 使用 `storage` 局部变量可以得到对状态数据的“引用”,对其赋值会持久化。 + +```solidity +pragma solidity ^0.8.20; + +contract Users { + struct User { string name; uint age; } + User[] public users; + + function add(string memory name, uint age) external { + users.push(User(name, age)); // 写入 storage + } + + function updateName(uint i, string memory newName) external { + User storage u = users[i]; // storage 引用(指向链上状态) + u.name = newName; // 修改持久化生效 + } + + function tryUpdate(uint i) external { + User memory u = users[i]; // 从 storage 复制到 memory + u.age = 99; // 仅修改副本,不会影响链上状态 + } +} +``` + +### 在内部函数传递 storage 引用 +- 仅内部/私有函数可以接收 `storage` 引用参数,从而直接修改状态;外部函数参数不能是 `storage`。 + +```solidity +pragma solidity ^0.8.20; + +contract Users2 { + struct User { string name; uint age; } + User[] public users; + + function _inc(User storage u) internal { u.age += 1; } + + function birthday(uint i) external { + _inc(users[i]); // 传递 storage 引用,持久化修改 + } +} +``` + +### 动态 memory 数组与限制 +- 可在 `memory` 中构造动态数组:`new uint[](n)`;适合作为返回值或临时计算。 +- `mapping` 只能存在于 `storage`,不能在 `memory` 中创建或拷贝。 + +```solidity +pragma solidity ^0.8.20; + +contract Arrays { + function make(uint n) external pure returns (uint[] memory a) { + a = new uint[](n); + for (uint i = 0; i < n; i++) a[i] = i; + } +} +``` + +### 常见坑与实践建议 +- 给 `storage` 变量整体赋值会进行深拷贝或引用变更(依据类型),要明确拷贝成本与语义。 +- 修改 `memory` 副本不会持久化;要修改链上状态请使用 `storage` 引用。 +- 大型 `string/bytes/数组` 在 `memory↔storage` 间复制成本高,尽量减少不必要的复制。 +- 外部函数能用 `calldata` 的地方尽量使用(只读参数),节省 gas。 + diff --git a/docs/notes/programming/web/README.md b/docs/notes/programming/web/README.md new file mode 100644 index 0000000..6903f09 --- /dev/null +++ b/docs/notes/programming/web/README.md @@ -0,0 +1,90 @@ +--- +title: Web 概览与学习路径 +permalink: /programming/web/ +createTime: 2025/10/28 22:20:00 +--- + +# Web 是什么? + +Web(万维网)是一个基于浏览器与服务器的“信息与应用平台”。用户通过浏览器访问网站,浏览器通过 **HTTP/HTTPS** 与服务器交互,服务器返回页面或数据,最终在浏览器中呈现并产生交互。 + +- 浏览器:渲染页面(HTML/CSS/JS)、执行脚本、发起网络请求。 +- 服务器:处理业务逻辑、读写数据库、对外提供 API。 +- 数据库:持久化存储(MySQL/PostgreSQL/MongoDB 等)。 + +简而言之:浏览器负责“看与用”,服务器负责“算与存”。 + +## 前端基础概念 + +- HTML:结构与语义(页面“骨架”)。 +- CSS:表现与布局(页面“外观”)。 +- JavaScript:交互与逻辑(页面“大脑”)。 +- 现代前端:模块化、构建工具、组件化框架(Vue/React/Svelte 等)。 + +入门建议:先掌握原生 HTML/CSS/JS,再学习框架。你可以从本站文章开始: +- 基础教程 → `/programming/web/basic-syntax/html-css-js/` + +## 后端基础概念 + +- 服务器与框架:Node.js(Express/NestJS)、Python(Flask/Django/FastAPI)、Java(Spring Boot)、Go(Gin/Fiber)。 +- API 风格:REST(常见)、GraphQL(灵活查询)。 +- 数据库与 ORM:MySQL/PostgreSQL(关系型)、MongoDB(文档型);ORM 如 Prisma/TypeORM/SQLAlchemy。 +- 常见能力:认证授权(Session/JWT/OAuth)、文件上传、任务队列、缓存、日志与监控。 + +## 前后端如何协作 + +- 约定接口:路径、方法(GET/POST/PUT/DELETE)、参数与返回 JSON。 +- 跨域与安全:CORS、CSRF/XSS/SQL 注入防护、HTTPS。 +- 开发流程: + 1) 需求与原型 → 2) API 设计 → 3) 前端页面与交互 → 4) 后端实现与测试 → 5) 联调与验收 → 6) 部署与监控。 + +## 学习路径(从 0 到 1) + +1. 基础三件套:HTML + CSS + JavaScript(建议用 VSCode + Live Server)。 +2. 工具与方法:Git/GitHub、浏览器开发者工具、HTTP/REST、请求调试(Postman/Insomnia)。 +3. 进阶前端:布局(Flex/Grid)、响应式、ES6+、模块化、打包与构建(Vite/Webpack)。 +4. 后端入门:选择一种语言与框架(如 Node.js + Express),完成 CRUD 与认证。 +5. 数据库:会建表、会写基本查询;理解事务与索引。 +6. 部署与上线:Nginx 反向代理、Docker、环境变量、日志与监控。 + +建议开发一个“待办清单 + 登录 + 数据持久化”的完整小项目,贯穿前后端与部署。 + +## 推荐学习资源 + +通用与入门: +- [MDN Web Docs(HTML/CSS/JS 全面权威)](https://developer.mozilla.org/) +- [freeCodeCamp(系统课程与练习)](https://www.freecodecamp.org/) +- [Roadmap.sh(前端/后端学习路径图)](https://roadmap.sh/) + +前端: +- [HTML/CSS 基础(MDN)](https://developer.mozilla.org/en-US/docs/Learn) +- [CSS-Tricks(样式与布局技巧)](https://css-tricks.com/) +- [JavaScript 基础与进阶(MDN)](https://developer.mozilla.org/en-US/docs/Web/JavaScript) +- [Vue 官方文档](https://vuejs.org/) + +后端: +- [Node.js 文档](https://nodejs.org/en/docs) +- [Express](https://expressjs.com/) +- [NestJS](https://docs.nestjs.com/) +- [Spring Boot](https://spring.io/projects/spring-boot) +- [Django](https://docs.djangoproject.com/) +- [Flask](https://flask.palletsprojects.com/) +- [FastAPI](https://fastapi.tiangolo.com/) + +数据库与 ORM: +- [MySQL](https://dev.mysql.com/doc/) +- [PostgreSQL](https://www.postgresql.org/docs/) +- [MongoDB](https://www.mongodb.com/docs/) +- [Prisma(Node.js ORM)](https://www.prisma.io/docs) +- [TypeORM](https://typeorm.io/) + +工具: +- [VSCode](https://code.visualstudio.com/) +- [Postman](https://www.postman.com/) +- [Insomnia](https://insomnia.rest/) +- [Docker](https://docs.docker.com/) + +## 本站相关内容 + +- Web 前端基础讲解 → `/programming/web/basic-syntax/html-css-js/` +- 后续将补充:前端工程化、接口联调、部署与运维实战等专题。 diff --git a/docs/notes/programming/web/basic-syntax/html-css-js.md b/docs/notes/programming/web/basic-syntax/html-css-js.md new file mode 100644 index 0000000..18ef782 --- /dev/null +++ b/docs/notes/programming/web/basic-syntax/html-css-js.md @@ -0,0 +1,535 @@ +--- +title: Web 前端基础讲解 +createTime: 2025/10/28 21:23:48 +permalink: /programming/web/basic-syntax/html-css-js/ +--- + +## 前端开发到底是什么? + +前端开发,简单来说,就是**你能在网页上看到和互动的一切**。 + +想象一下你正在看一个网站: + +* **文字、图片、按钮、菜单**:这些都是前端开发人员用代码“画”出来的。 +* **点击按钮会发生什么、输入框能打字、图片能放大缩小**:这些互动效果也是前端开发人员用代码实现的。 + +所以,前端开发就是负责把设计师画好的网站样子,用代码变成用户可以在浏览器里真实看到、摸到、用的东西。它主要涉及三种技术: + +1. **HTML**:就像网页的“骨架”,决定了网页上有什么内容(标题、段落、图片等)。 +2. **CSS**:就像网页的“衣服”,决定了网页看起来怎么样(颜色、字体、布局等)。 +3. **JavaScript**:就像网页的“大脑”,决定了网页能做什么(动画、交互、数据处理等)。 + +总而言之,前端开发就是让网站变得好看、好用、能互动。 + +## 开发工具 + +进行前端开发,我们需要一个好用的“工具箱”。其中,**Visual Studio Code (VS Code)** 是一个非常受欢迎且功能强大的选择。 + +VsCode 官网:[https://code.visualstudio.com/](https://code.visualstudio.com/) + +**为什么推荐 VS Code?** + +* **免费且开源**:你可以免费使用它,并且它的代码是公开的,有很多人一起维护和改进。 +* **轻量级但功能强大**:它启动速度快,占用资源少,但通过安装各种“插件”,可以实现非常多的功能,比如代码高亮、智能提示、调试、版本控制等等。 +* **支持多种语言**:不仅对 HTML、CSS、JavaScript 有很好的支持,也支持其他很多编程语言。 +* **丰富的生态系统**:有大量的插件可以帮助你提高开发效率,比如 Live Server(实时预览网页)、Prettier(代码格式化)等。 +* **跨平台**:无论你使用 Windows、macOS 还是 Linux,都可以安装和使用 VS Code。 + +### VsCode 前端开发插件推荐 +- **Chinese (Simplified) Language Pack for Visual Studio Code**:中文语言包,方便中文用户使用。 +- **Live Server**:实时预览网页,修改代码后自动刷新。 +- **Prettier**:代码格式化,保持代码风格统一。 +- **HTML CSS Support**:HTML 和 CSS 代码智能提示。 + +参考文章: +1. [VSCode安装配置使用教程(最新版超详细保姆级含插件)一文就够了](https://blog.csdn.net/2303_82176667/article/details/137193809) +2. [快速上手web前端开发(超详细教程)](https://blog.csdn.net/2303_82176667/article/details/137193809) + +## HTML5 基础知识讲解 + +HTML 是一种用来描述网页的语言,用于描述网页的结构和内容。 + +HTML 并不是一种编程语言,而是一种标记语言。它使用标签来描述网页上的不同元素,比如标题、段落、图片、链接等。 + +标签指的是由尖括号 `<` 和 `>` 包围的关键词,通常成对出现,用来表示元素的开始和结束。 + +一个简单的 HTML 实例,用于初步的了解效果: +```html title='index.html' + + + + +仲夏夜之梦(notes.simengweb.com) + + +

我的第一个标题

+

我的第一个段落。

+ + +``` + +小提示:可以将代码复制到 VsCode 中,然后使用 Live Server 插件就可以实时预览效果啦。 + +### HTML5 文档分析 +我们以前面的样例代码为例,来对 HTML 文档进行讲解 + +第一行:``,这是一个文档类型声明,用于告诉浏览器这是一个 HTML5 文档。 + +第二行:``,这是 HTML 文档的根元素,所有其他元素都必须嵌套在这个元素中,`` 和 `` 之间的内容就是文档的主体。 + +第三行到第六行:``,这是文档的头部元素,用于包含文档的元数据(比如标题、字符编码、外部资源引用等)。 + +第四行:``,这是一个元数据标签,用于指定文档的字符编码为 UTF-8。UTF-8 是一种常用的字符编码,能够表示世界上几乎所有的字符。如果不写的话可能会导致中文乱码的问题。 + +第五行:`仲夏夜之梦(notes.simengweb.com)`,这是文档的标题,会显示在浏览器的标题栏或标签页上。 + +第七行:``,这是文档的主体元素,用于包含文档的可见内容(比如文字、图片、按钮等),`` 和 `` 之间的内容就是文档的主体内容。 + +第八行:`

我的第一个标题

`,这是一个一级标题元素,用于表示文档的主要主题。`h1` 元素的内容会显示为较大的字体,通常用于页面的主标题。 + +第九行:`

我的第一个段落。

`,这是一个段落元素,用于表示文档中的一个段落。`p` 元素的内容会显示为普通的段落文本。 + +小提示:在浏览器中打开 F12 开启开发者工具,就可以查看和调试 HTML 文档啦。 + +## CSS3 基础知识讲解 + +CSS 是一种用来描述 HTML 文档“长什么样”的语言,专门负责网页的样式、排版与视觉效果。 + +CSS 也不是编程语言,而是一种“样式表”语言。它通过“选择器”找到 HTML 元素,再给它挂上一条或多条“声明”,告诉浏览器“这个元素应该是什么颜色、多大字号、放在哪里”。 + +一条 CSS 声明由“属性”和“值”组成,用冒号分隔,以分号结尾;多条声明放在花括号里,就组成了一条“样式规则”。 + +一个最简单的 CSS 示例,让页面里的标题变成红色、居中显示: +::: code-tabs +@tab index.html +```html + + + + +仲夏夜之梦(notes.simengweb.com) + + + +

我的第一个标题

+

我的第一个段落。

+ + +``` +@tab style.css +```css +body { + background-color:#d0e4fe; +} +h1 { + color:orange; + text-align:center; +} +p { + font-family:"Times New Roman"; + font-size:20px; +} +``` +::: +这里的 index.html 中需要添加一条语句,用于引入 CSS 样式表。 +```html + +``` +然后通过浏览器打开 index.html 就可以看到效果啦。 + +### CSS 文档分析 + +我们以前面的样例代码为例,来对 CSS 文档进行讲解 + +第一到三行:`body { background-color:#d0e4fe; }`,这是一条针对 `` 元素的样式规则。 +- `body` 是“选择器”,表示要把样式应用到整个网页主体。 +- `background-color` 是属性,用来设置背景颜色;`#d0e4fe` 是一个淡蓝色色值,因此整个页面会呈现淡蓝色背景。 + +第四行到第七行:`h1 { color:orange; text-align:center; }`,这是一条针对 `

` 元素的样式规则。 +- `h1` 是“选择器”,对应 HTML 中的一级标题。 +- `color:orange;` 把标题文字设为橙色。 +- `text-align:center;` 让标题在水平方向上居中显示。 + +第八行到第十一行:`p { font-family:"Times New Roman"; font-size:20px; }`,这是一条针对 `

` 元素的样式规则。 +- `p` 是“选择器”,对应 HTML 中的段落。 +- `font-family:"Times New Roman";` 指定段落使用 Times New Roman 字体。 +- `font-size:20px;` 把段落文字大小设为 20 像素,让文字看起来更大、更清晰。 + +小提示:在 VsCode 中安装“Live Server”插件后,修改并保存 CSS 文件,浏览器会自动刷新,立即看到样式变化,方便调试。 + +## JavaScript 基础知识讲解 + +JavaScript(简称 JS)是让网页“动起来、能互动”的语言。它可以: +- 响应用户操作(点击、输入、滚动等) +- 修改页面内容与样式(增删节点、改文字/颜色) +- 与服务器通信、处理数据与状态 +- 实现动画与复杂交互逻辑 + +下面用一个小示例,演示 JS 如何让页面产生交互效果: +::: code-tabs +@tab index.html +```html + + + + + 仲夏夜之梦(notes.simengweb.com) + + + + + + +

我的第一个标题

+

我的第一个段落。

+ + + + + + + +``` +@tab script.js +```js +// 等页面元素加载完成后再执行(避免找不到节点) +document.addEventListener('DOMContentLoaded', () => { + const msg = document.getElementById('message'); // 选择段落节点 + const btn = document.getElementById('btn'); // 选择按钮 + const nameInput = document.getElementById('name'); // 选择输入框 + + // 点击按钮,修改段落文本与颜色 + btn.addEventListener('click', () => { + msg.textContent = '你点击了按钮!'; + msg.style.color = 'green'; + console.log('按钮被点击'); // 打开浏览器控制台可见 + }); + + // 输入时,实时更新欢迎语 + nameInput.addEventListener('input', (e) => { + const name = e.target.value.trim(); + msg.textContent = name ? `你好,${name}!` : '我的第一个段落。'; + }); +}); +``` +::: + +### JavaScript 文档分析 +我们以前面的样例代码为例,来对 JS 的关键点进行讲解: + +- ``:在 HTML 中通过 `script` 标签引入外部 JS 文件。常见放置位置是 `` 之前,避免脚本执行时页面元素尚未加载。 +- `document.addEventListener('DOMContentLoaded', ...)`:等待文档结构加载完成再运行 JS,确保能获取到页面元素。 +- `document.getElementById('...')`:选择页面中的元素节点,便于后续读写或绑定事件。 +- `addEventListener('click'/'input', ...)`:给元素绑定事件监听器,描述“发生什么事时要做什么”。 +- `textContent / style`:修改文本与内联样式,从而即时改变页面显示效果。 +- `console.log(...)`:在开发者工具控制台输出调试信息,便于观察程序执行。 + +### 小提示 +- 打开浏览器开发者工具(F12),切到“Console”能查看 `console.log` 输出;在 “Elements”/“Inspector” 面板能查看并调试 DOM 结构与样式。 +- 在 VSCode 中使用 “Live Server”,保存 `script.js` 后浏览器会自动刷新,方便快速迭代。 +- 现代 JS 推荐使用 `const` 与 `let` 替代 `var`;多用箭头函数与模板字符串(如 `` `你好,${name}` ``)让代码更简洁。 + +到这里,我们已经分别了解了 HTML(结构)、CSS(样式)与 JavaScript(交互)三者如何协同工作。接下来可以尝试把它们组合起来,做一个小页面练手。 + +## 动手练习:小作业(只改 HTML/CSS,JS 已提供) + +目标:做一个“欢迎卡片”,包含标题、说明文字、输入框与按钮。 +- 点击按钮时切换页面主题(浅色/深色),JS 会自动完成; +- 输入名字时实时显示欢迎语; +- 你只需要修改 HTML 和 CSS 来达到视觉与布局效果。 + +### 作业要求(验收标准) +- 卡片居中显示,具有圆角、阴影与内边距; +- 标题居中,段落有合适的行高与间距; +- 按钮有悬停(hover)与按下(active)的视觉反馈; +- 输入框获得焦点(focus)时有明显强调样式; +- 在移动端(窄屏)不溢出,布局能自适应; +- 深色主题下文字可读、对比度合理。提示:JS 会在 `` 上切换 `theme-dark` 类,你可以在 CSS 中基于该类进行主题覆盖。 + +### 起步模板 +将以下三份代码保存为同目录下的 `index.html`、`style.css` 与 `script.js`,用 VSCode 的 Live Server 打开 `index.html` 进行预览。完成作业时,请只修改 HTML 和 CSS(保留 JS 的 id 与类名依赖)。 + +::: code-tabs +@tab index.html +```html + + + + + 小作业:欢迎卡片 + + + +
+
+

欢迎来到我的页面

+

请点击按钮或输入你的名字

+
+ + +
+
+
+ + + + + +``` +@tab style.css +```css +/* 目标:只通过 CSS 实现卡片的视觉与响应式,并支持深色主题 */ +/* 建议:使用 CSS 变量管理主题;在 .theme-dark 上覆盖变量 */ + +:root { + --bg: #f7f9fc; + --text: #222; + --primary: #ff7a45; /* 可调整为你的品牌色 */ + --card-bg: #fff; + --card-shadow: 0 10px 20px rgba(0,0,0,0.08); +} + +body { + margin: 0; + background: var(--bg); + color: var(--text); + font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial; +} + +.page { + min-height: 100vh; + display: grid; + place-items: center; + padding: 24px; +} + +.card { + width: min(640px, 100%); + background: var(--card-bg); + border-radius: 16px; + box-shadow: var(--card-shadow); + padding: 24px; +} + +.card__title { + margin: 0 0 12px; + text-align: center; +} + +.card__text { + margin: 0 0 16px; + line-height: 1.6; + text-align: center; +} + +.card__actions { + display: flex; + gap: 12px; + justify-content: center; + flex-wrap: wrap; +} + +.input { + padding: 10px 12px; + border: 1px solid #ddd; + border-radius: 8px; + outline: none; + min-width: 220px; +} + +.input:focus { + border-color: var(--primary); + box-shadow: 0 0 0 3px rgba(255, 122, 69, 0.2); +} + +.btn { + padding: 10px 16px; + border: none; + border-radius: 999px; + cursor: pointer; + transition: transform .08s ease, box-shadow .2s ease, background-color .2s ease; +} + +.btn--primary { + background: var(--primary); + color: #fff; + box-shadow: 0 6px 12px rgba(255, 122, 69, .3); +} + +.btn--primary:hover { + transform: translateY(-1px); + box-shadow: 0 8px 16px rgba(255, 122, 69, .4); +} + +.btn--primary:active { + transform: translateY(0); + box-shadow: 0 4px 8px rgba(255, 122, 69, .3); +} + +/* 任务:为深色主题定义样式。JS 会在 上切换 `.theme-dark` 类。*/ +body.theme-dark { + --bg: #0f172a; + --text: #e5e7eb; + --primary: #60a5fa; /* 深色下可更柔和 */ + --card-bg: #1f2937; + --card-shadow: none; +} + +/* 可选:为移动端优化 */ +@media (max-width: 480px) { + .card { padding: 18px; } + .input { min-width: 100%; } +} +``` +@tab script.js +```js +// JS 已提供:负责交互逻辑,切换主题与显示欢迎语 +// 你只需要改 HTML 和 CSS 即可达成作业要求 +document.addEventListener('DOMContentLoaded', () => { + const msg = document.getElementById('message'); + const btn = document.getElementById('btn'); + const nameInput = document.getElementById('name'); + + // 切换深色主题(在 上切换 theme-dark 类) + btn.addEventListener('click', () => { + document.body.classList.toggle('theme-dark'); + const dark = document.body.classList.contains('theme-dark'); + msg.textContent = dark ? '深色主题已开启' : '浅色主题已开启'; + }); + + // 实时欢迎语 + nameInput.addEventListener('input', (e) => { + const name = e.target.value.trim(); + msg.textContent = name ? `你好,${name}!` : '请点击按钮或输入你的名字'; + }); +}); +``` +::: + +### 提示与加分项 +- 可以用 `:root`+CSS 变量统一管理主题色,在 `.theme-dark` 中覆盖变量即可完成切换; +- 尝试为按钮增加平滑过渡与阴影层次感; +- 在移动端下让输入框占满一行,按钮在下一行显示; +- 可自行优化字体、字号与间距,让视觉更加舒适; +- 加分:实现卡片在深色主题下的微动效(例如背景色淡入)。 + +## 入门版(更简单,建议先做这个) + +目标:做一个“欢迎卡片”,内容包括标题、说明文字、一个输入框和一个按钮。 +- 点击按钮时高亮卡片(JS 已完成,你只需让 `.card.highlight` 在 CSS 里更显眼)。 +- 输入名字时实时显示欢迎语(JS 已完成)。 +- 你只需要修改 HTML 和 CSS,让页面好看、布局合理即可。 + +验收标准(入门) +- 卡片居中、圆角、阴影、内边距,整体观感舒适。 +- 按钮有 `hover/active` 反馈,输入框 `focus` 有强调样式。 +- 窄屏下不溢出,内容能自适应。 + +::: code-tabs +@tab index.html +```html + + + + + 入门版小作业 + + + + +
+
+

欢迎

+

在输入框里写下你的名字

+ + +
+
+ + + + + + +``` +@tab style.css +```css +/* 极简样式:你可以在此基础上美化与调整 */ +body { + margin: 0; + background: #f5f7fa; + font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; +} + +.page { + min-height: 100vh; + display: grid; + place-items: center; + padding: 16px; +} + +.card { + width: min(360px, 100%); + background: #fff; + border-radius: 12px; + box-shadow: 0 6px 12px rgba(0,0,0,0.08); + padding: 16px; + text-align: center; +} + +input { + width: 100%; + padding: 8px 10px; + border: 1px solid #ddd; + border-radius: 8px; + outline: none; + margin-bottom: 12px; +} + +input:focus { + border-color: #1677ff; + box-shadow: 0 0 0 2px rgba(22,119,255,.2); +} + +button { + padding: 8px 12px; + border: none; + border-radius: 8px; + background: #1677ff; + color: #fff; + cursor: pointer; +} + +button:hover { filter: brightness(1.05); } +button:active { filter: brightness(0.95); } + +/* JS 点击按钮时会在卡片上切换 .highlight 类 */ +.card.highlight { + background: #fffbe6; /* 浅黄色高亮 */ + box-shadow: 0 8px 16px rgba(0,0,0,0.10); +} +``` +@tab script.js +```js +// JS 已提供:负责简单交互。请只改 HTML/CSS。 +document.addEventListener('DOMContentLoaded', () => { + const msg = document.getElementById('message'); + const btn = document.getElementById('btn'); + const nameInput = document.getElementById('name'); + const card = document.getElementById('card'); + + // 实时欢迎语 + nameInput.addEventListener('input', (e) => { + const name = e.target.value.trim(); + msg.textContent = name ? `你好,${name}!` : '在输入框里写下你的名字'; + }); + + // 切换卡片高亮 + btn.addEventListener('click', () => { + card.classList.toggle('highlight'); + }); +}); +``` +::: + + diff --git a/docs/notes/programming/web/basic-syntax/html-lists-and-semantic-layout.md b/docs/notes/programming/web/basic-syntax/html-lists-and-semantic-layout.md new file mode 100644 index 0000000..a393cf9 --- /dev/null +++ b/docs/notes/programming/web/basic-syntax/html-lists-and-semantic-layout.md @@ -0,0 +1,468 @@ +--- +title: html 列表与语义布局 +createTime: 2025/11/02 20:47:50 +permalink: /programming/web/basic-syntax/html-lists-and-semantic-layout/ +--- +## 四、列表(UL/OL/LI) + +无序列表(圆点): +```html title="index.html" +
    +
  • 学习笔记
  • +
  • 工具推荐
  • +
  • 友情链接
  • +
+``` + +有序列表(数字): +```html title="index.html" +
    +
  1. 需求与原型
  2. +
  3. API 设计
  4. +
  5. 联调与验收
  6. +
+``` + +**小案例:展示清单与步骤** +::: code-tabs +@tab index.html +```html + + + + + 列表案例 + + + + +

我的清单

+
    +
  • 学习笔记
  • +
  • 工具推荐
  • +
  • 友情链接
  • +
+

项目步骤

+
    +
  1. 需求与原型
  2. +
  3. API 设计
  4. +
  5. 联调与验收
  6. +
+ + +``` +@tab style.css +```css +ul, ol { margin: .5rem 0 1rem; padding-left: 1.5rem; } +li { margin: .25rem 0; } +``` +@tab app.js +```js +document.querySelectorAll('li').forEach(li => li.addEventListener('click', () => li.classList.toggle('done'))); +``` +::: + +**小作业:做一个“今日任务清单”** +::: code-tabs +@tab index.html +```html + + + + + 今日任务清单 + + + +

今天要做的事

+
    +
  • 阅读 30 分钟
  • +
  • 练习 1 个算法题
  • +
  • 整理房间
  • +
+ + +``` +@tab style.css +```css +body { font-family: system-ui; margin: 2rem; } +li { cursor: pointer; } +.done { text-decoration: line-through; color: #888; } +``` +::: + +## 五、语义化布局(Header/Nav/Main/Section/Article/Aside/Footer) + +语义化标签让结构更清晰,搜索引擎更友好: +```html title="index.html" +
+

我的网站

+ + + + + + + + + + + + +``` + +> 语义化标签的要点:这些标签表达了“这是什么内容”,而不是“怎么显示”。更容易被搜索引擎和读屏工具理解。 + +**小案例:语义化布局入门** +::: code-tabs +@tab index.html +```html + + + + + 语义化布局案例 + + + + +
+

我的网站

+ +
+
+
+

最新文章

+
+

用语义标签改造你的页面

+

示例段落:用 header/nav/main/section/article/aside/footer 组织结构。

+
+
+ +
+
© 2025 祀梦
+ + +``` +@tab style.css +```css +body { font-family: system-ui; margin: 0; } +header, footer { padding: 1rem 2rem; background: #f7f7f7; } +nav { display: flex; gap: 1rem; } +main { display: grid; grid-template-columns: 1fr 240px; gap: 1rem; padding: 1rem 2rem; } +article { background: #fff; padding: 1rem; border: 1px solid #eee; border-radius: 8px; } +aside { background: #fff; padding: 1rem; border: 1px solid #eee; border-radius: 8px; } +``` +@tab app.js +```js +document.querySelectorAll('nav a').forEach(a => a.addEventListener('click', () => { + document.querySelectorAll('nav a').forEach(x => x.classList.remove('active')); + a.classList.add('active'); +})); +``` +::: + +**小作业:用语义标签搭一个博客首页** +::: code-tabs +@tab index.html +```html + + + + + 博客首页 + + + +
+

博客名称

+ +
+
+
+
+

第一篇文章标题

+

摘要内容……

+
+
+

第二篇文章标题

+

摘要内容……

+
+
+ +
+
© 2025 你的名字
+ + +``` +@tab style.css +```css +/* 与案例类似的栅格布局样式 */ +main { display: grid; grid-template-columns: 1fr 240px; gap: 1rem; padding: 1rem 2rem; } +article { background: #fff; padding: 1rem; border: 1px solid #eee; border-radius: 8px; } +aside { background: #fff; padding: 1rem; border: 1px solid #eee; border-radius: 8px; } +``` +::: + +## 六、表格(Table/TR/TH/TD) + +```html title="index.html" + + + + + + + + + + + + + +
姓名职业
祀梦开发者
+``` +小提示:表格样式通常用 CSS 来美化(边框、间距、对齐等)。 + +**小案例:信息表格** +::: code-tabs +@tab index.html +```html + + + + + 信息表格案例 + + + + + + + + + + + + + +
姓名职业城市
祀梦开发者上海
小李产品经理杭州
小王设计师北京
+ + +``` +@tab style.css +```css +table { border-collapse: collapse; width: 100%; } +th, td { border: 1px solid #ddd; padding: .5rem .75rem; text-align: left; } +thead th { background: #f7f7f7; } +tbody tr:nth-child(odd) { background: #fafafa; } +``` +@tab app.js +```js +document.querySelectorAll('tbody tr').forEach(tr => tr.addEventListener('click', () => tr.classList.toggle('highlight'))); +``` +::: + +**小作业:制作“课程表”** +::: code-tabs +@tab index.html +```html + + + + + 课程表 + + + + + + + + + + + + +
时间课程教室
周一 9:00数学A101
周三 14:00英语B302
周五 10:00计算机C210
+ + +``` +@tab style.css +```css +table { border-collapse: collapse; width: 100%; } +th, td { border: 1px solid #ddd; padding: .5rem .75rem; } +thead th { background: #f0f0f0; } +``` +::: + + +## 七、媒体(Audio/Video/Source) + +```html title="index.html" + + + + +``` + +补充说明: +- `controls` 提供播放控制;一般不建议隐藏,保证可用性。 +- `autoplay` 可能被浏览器限制;若需自动播放,通常需同时设置 `muted`。 +- `preload` 控制预加载策略(`none`/`metadata`/`auto`),根据页面性能需求选择。 +- `poster` 为视频未播放时的封面图;音频没有封面属性。 +- 使用 `` 指定多种格式与 MIME 类型,提升兼容性:``。 + +**小案例:嵌入音视频** +::: code-tabs +@tab index.html +```html + + + + + 媒体案例 + + + +

背景音乐

+ +

介绍视频

+ + + +``` +@tab style.css +```css +video { display: block; margin-top: .5rem; } +``` +::: + +**小作业:添加一段你喜欢的音乐与视频** +::: code-tabs +@tab index.html +```html + + + + + 我的媒体 + + + + + + + +``` +@tab style.css +```css +audio, video { display: block; margin: .5rem 0; } +``` +::: + + +## 八、全局常用属性(任何标签几乎都能用) + +- `id`:唯一标识,用于 JS/CSS 精确选择。 +- `class`:分组与样式选择(上一课已讲)。 +- `style`:内联样式(不推荐大量使用,建议写到 CSS 文件)。 +- `title`:悬停提示文字。 +- `data-*`:自定义数据属性(如 `data-user-id="42"`)。 +- `aria-*`:无障碍相关属性,帮助读屏工具理解(如 `aria-label`)。 + +**小案例:使用 id/class/data/title/aria** +::: code-tabs +@tab index.html +```html + + + + + 全局属性案例 + + + + + +

点击按钮试试。

+ + +``` +@tab style.css +```css +.btn { padding: .5rem .75rem; border: 1px solid #ccc; border-radius: 6px; background: #fff; } +.note { color: #555; } +``` +@tab app.js +```js +const btn = document.getElementById('likeBtn'); +const msg = document.getElementById('msg'); +btn.addEventListener('click', () => { + const count = Number(btn.dataset.count || 0) + 1; + btn.dataset.count = String(count); + msg.textContent = `已点赞 ${count} 次`; +}); +``` +::: + +**小作业:做一个带计数的按钮** +::: code-tabs +@tab index.html +```html + + + + + 计数按钮 + + + + + +

当前计数:0

+ + +``` +@tab style.css +```css +.btn { padding: .5rem .75rem; border: 1px solid #ccc; border-radius: 6px; background: #fff; } +.note { margin-top: .5rem; } +``` +@tab app.js +```js +const counter = document.getElementById('counter'); +const statusEl = document.getElementById('status'); +counter.addEventListener('click', () => { + const count = Number(counter.dataset.count || 0) + 1; + counter.dataset.count = String(count); + statusEl.textContent = `当前计数:${count}`; +}); +``` +::: + +## 结尾:先结构清晰,再上样式与交互 + +写网页像搭房子:先把房间(结构标签)安排好,再选家具颜色(CSS),最后加智能设备(JS)。 + +建议你先用这些常用标签做一个“个人名片页”,含标题、段落、头像图片、导航链接和一个简单表单。练熟后再加样式与交互。 + +**延伸阅读**: +- HTML 规范与参考(MDN):https://developer.mozilla.org/en-US/docs/Web/HTML +- 无障碍与语义化:https://developer.mozilla.org/en-US/docs/Glossary/Semantics \ No newline at end of file diff --git a/docs/notes/programming/web/basic-syntax/html-tags-attributes.md b/docs/notes/programming/web/basic-syntax/html-tags-attributes.md new file mode 100644 index 0000000..91ed3e3 --- /dev/null +++ b/docs/notes/programming/web/basic-syntax/html-tags-attributes.md @@ -0,0 +1,424 @@ +--- +title: HTML 常用标签与属性 +createTime: 2025/11/2 19:30:00 +permalink: /programming/web/basic-syntax/html-tags-attributes/ +--- + +## 文本与标题(H/P/Span/Strong/Em/Div) + +**标题**:从重要到不重要,`

` ~ `

`。 +```html title="index.html" +

我的网站

+

关于我

+

联系方式

+``` + +### 认识div标签 + +**什么是 `
`?** + +`
` 是 "division"(分区)的缩写,可以理解为网页中的"容器"或"盒子"。 + +想象一下搬家时的纸箱: + +* 网页 = 整个房间 +* `
` = 一个个纸箱 +* 箱子里 = 可以放各种物品(文字、图片、按钮等) + +### `
` 的基本特点 + +1. 块级元素 +`
` 是块级元素,这意味着: + +* 默认会占据整行的宽度 +* 前后会自动换行 +* 就像段落一样,每个`
`都会从新的一行开始 + +**`
` 本身没有特定含义,它只是用来分组和布局。** + +### 为什么要使用 `
`? + +没有`
`的情况: +```html title='index.html' + + + + +仲夏夜之梦 + + +

我的网站

+

欢迎来到我的个人网站!

+我的照片 +

这是我的个人介绍...

+ + + +``` + +所有元素都堆在一起,很难分别控制样式。 + +使用 `
` 的情况: +```html title='index.html' + + + + +仲夏夜之梦 + + +
+

我的网站

+

欢迎来到我的个人网站!

+
+
+ 我的照片 +

这是我的个人介绍...

+
+ + + +``` +这样我就可以分别控制每个部分的样式啦! + +这个时候又有聪明的小朋友问了:这个class是什么呀?难道说?!是**起的名字!!** + +太好了,恭喜你答对了,那么我们为什么要用class呢? + +### Class + +Class 可以理解为给 HTML 元素起的"组名"或"类别名",让 CSS 能够精确地找到并美化特定的元素。 + +想象一个学校: +* HTML 元素 = 学生 +* Class = 学生的身份(如"三年级一班"、"篮球队员") +* CSS = 老师,根据身份给学生安排不同的任务和服装 + +class基本用法此处就不举例了,详情参照上面的代码。 + +如果没有class的情况: +```html title='index.html' + + + + +仲夏夜之梦 + + +

我的网站

+

普通段落

+

个人介绍

+

重要提示

+ + + + +``` + +如果我们想给"重要提示"和"重要按钮"设置特殊样式,很难精确选择!像之前我教的一样css直接用p或者h1来选择的话就无法区分具体每一段的区别了。 + +这时候就可以用class了! +::: code-tabs +@tab index.html +```html + + + + +仲夏夜之梦 + + +

我的网站

+

普通段落

+

个人介绍

+

重要提示

+ + + + +``` +@tab style.css +```css +.warning { + color: red; + font-weight: bold; +} +.important-btn { + background-color: red; + color: white; +} +``` +::: +**现在自己动手尝试一下** + +## 动手练习:小作业 + +运用所学的 HTML 和 CSS 知识,创建一个美观的个人名片页面。不确定的时候翻翻文档 + +```html title='index.html' + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + + + + + +``` + +css样式自定,发挥自己的创作力,创建一个独特的个人名片页面。 + +**段落与换行**: +```html title="index.html" +

这是一个段落,里面可以有加粗强调

+

这是另一个段落。
需要换行时用 <br>

+
+``` + +**行内 vs 块级**: +- `
` 是块级元素(换行占整行),用于分区布局; +- `` 是行内元素(不换行),用于强调局部文字。 + +使用建议与解释: +- 语义优先:`` 表示“语义上的重点”,`` 仅表示“加粗外观”;`` 表示“语气强调”,`` 仅表示“斜体外观”。优先使用语义标签,样式交给 CSS。 +- 标题层级:通常一个页面只有一个 `

`,下面按层级组织为 `

/

...`。不要为求大小随意跳级或用标题替代普通文本。 +- 段落与换行:换行请优先使用分段(`

`),只有在同段内需要视觉换行时使用 `
`。`


` 适合用于内容分隔或主题切换。 + +**小案例:文本与标题** +::: code-tabs +@tab index.html +```html + + + + + 文本与标题案例 + + + +

我的网站

+

关于我

+

我是一名前端开发者,喜欢简洁的设计与清晰的结构。

+
+

联系方式

+

Email: hello@example.com

+ + +``` +@tab style.css +```css +body { font-family: system-ui; margin: 2rem; } +h1 { font-size: 2rem; margin-bottom: .5rem; } +h2 { margin-top: 1.5rem; } +p { margin: .5rem 0; } +``` +::: + +**小作业:写一段个人简介** +::: code-tabs +@tab index.html +```html + + + + + 个人简介 + + + +

你的名字

+

一句话介绍

+

用两段文字,分别写你现在在做什么、你感兴趣的方向。

+

使用 strongem 做重点强调。

+ + +``` +@tab style.css +```css +body { font-family: system-ui; margin: 2rem; line-height: 1.8; } +p { max-width: 60ch; } +``` +::: + +## 三、链接与图片(A/IMG) + +### 什么是 `` 标签 + +`` 标签用于在网页中插入图片,它是自闭合标签(不需要结束标签)。 + +### `` 标签的基本属性 + +* src:指定图片的路径(必填) +* alt:指定图片的替代文本(必填,用于图片加载失败时显示) +* width:指定图片的宽度(可选) +* height:指定图片的高度(可选) + +基本语法: +```html title='index.html' +我的照片 +``` + +### HTML 超链接 + +HTML 链接(Anchor)是网页之间跳转的核心部分。 + +HTML 使用链接与网络上的另一个文档相连。 + +HTML中的链接是一种用于在不同网页之间导航的元素。 + +链接通常用于将一个网页与另一个网页或资源(如文档、图像、音频文件等)相关联。 + +链接允许用户在浏览网页时单击文本或图像来跳转到其他位置,从而实现网页之间的互联。 + +HTML 链接 通过 `` 标签创建,通常用于将用户从一个页面导航到另一个页面、从一个部分跳转到页面中的另一个部分、下载文件、打开电子邮件应用程序或执行 JavaScript 函数等。 + +超链接可以是一个字,一个词,或者一组词,也可以是一幅图像,可以点击这些内容来跳转到新的文档或者当前文档中的某个部分。 + +当把鼠标指针移动到网页中的某个链接上时,箭头会变为**一只小手**。 + +## `` 标签的基本属性 + +* href:指定链接的目标 URL(必填) +* target:指定链接在何处打开(可选) + * _blank:在新窗口或标签页中打开链接 + * _self:在当前窗口或标签页中打开链接(默认) + * _parent:在父框架中打开链接 + * _top:在顶部框架中打开链接 + +基本语法: +```html title='index.html' +链接文本 +``` +- `` 标签:定义了一个超链接(anchor)。它是 HTML 中用来创建可点击链接的主要标签。 +- href 属性:指定目标 URL,当点击链接时,浏览器将导航到此 URL。 + +**这里还有一个target 属性**: +- _blank:在新窗口或标签页中打开链接 +- _self:在当前窗口或标签页中打开链接(默认) +- _parent:在父框架中打开链接 +- _top:在顶部框架中打开链接 + +```html title='index.html' + + + + target属性示例 + + +

target属性示例

+ + +
当前窗口打开 + + + 新窗口打开 + + + 父窗口打开 + + + + 外部网站(安全的新窗口) + + + +``` +复制代码到自己的html文件中,尝试一下不同的target属性值。 + +常用属性: +- `href`:目标地址; +- `target="_blank"`:新窗口打开; +- `rel="noopener"`:安全与性能(避免旧窗口被新页面控制)。 + +补充说明: +- 链接安全:外链新窗口打开时同时设置 `rel="noopener"` 或 `rel="noreferrer"`,避免安全与性能问题。 +- 图片可使用 `loading="lazy"` 懒加载,减少首屏资源压力;`alt` 请写出图片用途或内容摘要。 +- 设定 `width/height` 可以预留占位,减少页面布局抖动(CLS)。复杂场景可考虑 `` + `` 做响应式图片。 +- 与图片相关的配套标签:`
` + `
` 用于图片与说明文字的组合。 + +**小案例:链接与图片** +::: code-tabs +@tab index.html +```html + + + + + 链接与图片案例 + + + + + 我的头像 + + +``` +@tab style.css +```css +nav { display: flex; gap: 1rem; margin-bottom: 1rem; } +nav a { color: #06c; text-decoration: none; } +nav a:hover { text-decoration: underline; } +img { border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.1); } +``` +::: + +**小作业:做一个“友链”与头像区块** +::: code-tabs +@tab index.html +```html + + + + + 友链与头像 + + + +
+

友情链接

+

+ 祀梦笔记 + · + Vue.js +

+
+
+

头像

+ 你的头像 +
+ + +``` +@tab style.css +```css +section { margin-bottom: 1rem; } +img { border: 2px solid #eee; border-radius: 50%; } +``` +::: + diff --git a/docs/notes/programming/web/basic-syntax/javascript-basics.md b/docs/notes/programming/web/basic-syntax/javascript-basics.md new file mode 100644 index 0000000..31d4f37 --- /dev/null +++ b/docs/notes/programming/web/basic-syntax/javascript-basics.md @@ -0,0 +1,606 @@ +--- +title: JavaScript 基础知识 +createTime: 2025/11/2 21:30:00 +permalink: /programming/web/basic-syntax/javascript-basics/ +--- + +## JavaScript 是什么? + +JavaScript 是一种广泛用于网页开发的脚本语言,它使网页能够实现交互式功能。与 HTML(负责结构)和 CSS(负责样式)不同,JavaScript 专注于**行为**,可以让网页变得动态和响应式。 + + +## 第一个 JavaScript 程序 + +JavaScript 代码可以直接写在 HTML 文件中,通常放在 `` 标签的底部,使用 ` + + +``` + +**提示**:你可以在浏览器中按下 F12 打开开发者工具,然后切换到 "Console" 标签查看 `console.log()` 的输出。 + +`console.log()` 是 JavaScript 中最常用、最重要的调试工具,可以说是每个开发者的"最佳朋友"! + +### 基本输出 ### + +```javascript +// 输出字符串 +console.log("Hello World!"); + +// 输出变量 +const name = "小明"; +console.log(name); + +// 输出多个值 +const age = 18; +const isStudent = true; +console.log("学生信息:", name, age, isStudent); +``` + +### 输出不同类型的数据 ### + +```javascript +// 各种数据类型 +console.log("字符串:", "Hello"); +console.log("数字:", 42); +console.log("布尔值:", true); +console.log("数组:", [1, 2, 3]); +console.log("对象:", {name: "李华", age: 20}); +console.log("函数:", function() {}); +console.log("undefined:", undefined); +console.log("null:", null); +``` + +### 字符串插值 ### + +```javascript +const userName = "张三"; +const userAge = 25; +const score = 95.5; + +// 传统方式 +console.log("用户 " + userName + " 年龄 " + userAge + " 分数 " + score); + +// 模板字符串(推荐) +console.log(`用户 ${userName} 年龄 ${userAge} 分数 ${score}`); + +// 带表达式的插值 +console.log(`${userName} 是 ${userAge >= 18 ? "成年人" : "未成年人"}`); +``` + +### 格式化输出 ### + +```javascript +const product = { + name: "笔记本电脑", + price: 5999, + brand: "Dell", + inStock: true +}; + +// %s - 字符串 +console.log("产品名称: %s", product.name); + +// %d - 数字 +console.log("价格: %d 元", product.price); + +// %f - 浮点数 +console.log("折扣价: %f", product.price * 0.9); + +// %o - 对象 +console.log("完整产品信息: %o", product); + +// %c - CSS样式 +console.log("%c重要信息!", "color: red; font-size: 20px; font-weight: bold;"); +``` + +## JavaScript 变量 + +变量是用来存储信息的容器。在 JavaScript 中,我们使用 `let`、`const` 或 `var` 关键字来声明变量。 + +### 变量声明方式 + +```javascript +// 使用 let 声明可变变量 +let name = "小明"; +name = "小红"; // 可以修改 + +// 使用 const 声明常量(不可变) +const PI = 3.14159; +// PI = 3.14; // 错误!常量不能修改 + +// 使用 var 声明变量(旧方式,现在推荐使用 let 和 const) +var age = 25; +``` + +**注意**: +- 使用 `let` 声明的变量可以重新赋值 +- 使用 `const` 声明的变量不能重新赋值(常量) +- 尽量避免使用 `var`,因为它有一些奇怪的作用域规则 + + +## 数据类型 + +JavaScript 有几种基本数据类型: + +### 1. 字符串(String) + +用于表示文本,可以使用单引号或双引号。 + +```javascript +const greeting = "你好"; +const name = 'JavaScript'; +const message = `${greeting}, ${name}!`; // 使用模板字符串(ES6 特性) +console.log(message); // 输出:你好, JavaScript! +``` + +### 2. 数字(Number) + +用于表示数值。 + +```javascript +const age = 25; +const price = 99.99; +const PI = 3.14159; +``` + +### 3. 布尔值(Boolean) + +用于表示真或假,只有两个值:`true` 和 `false`。 + +```javascript +const isStudent = true; +const hasGraduated = false; +``` + +### 4. 数组(Array) + +用于存储多个值的集合。 + +```javascript +const fruits = ["苹果", "香蕉", "橙子"]; +console.log(fruits[0]); // 输出:苹果(数组索引从0开始) + +// 添加元素 +fruits.push("葡萄"); +console.log(fruits); // 输出:["苹果", "香蕉", "橙子", "葡萄"] +``` + +### 5. 对象(Object) + +用于存储键值对集合。 + +```javascript +const person = { + name: "小明", + age: 25, + isStudent: true, + greet: function() { + console.log(`你好,我是${this.name}!`); + } +}; + +console.log(person.name); // 输出:小明 +person.greet(); // 输出:你好,我是小明! +``` + +## 运算符 + +### 算术运算符 + +```javascript +const a = 10; +const b = 5; + +console.log(a + b); // 15 加法 +console.log(a - b); // 5 减法 +console.log(a * b); // 50 乘法 +console.log(a / b); // 2 除法 +console.log(a % b); // 0 取余 +console.log(a ** b); // 100000 幂运算(ES6) +``` + +### 赋值运算符 + +```javascript +const x = 10; + +x += 5; // 等同于 x = x + 5 +console.log(x); // 15 + +x -= 3; // 等同于 x = x - 3 +console.log(x); // 12 +``` + +### 比较运算符 + +```javascript +const a = 10; +const b = 5; + +console.log(a > b); // true +console.log(a < b); // false +console.log(a >= b); // true +console.log(a <= b); // false +console.log(a === b); // false(严格相等,比较值和类型) +console.log(a == b); // false(宽松相等,只比较值) +console.log(a !== b); // true(严格不相等) +``` + +## 条件语句 + +### if 语句 + +```javascript +const age = 18; + +if (age >= 18) { + console.log("你已经成年了!"); +} else if (age >= 13) { + console.log("你是青少年。"); +} else { + console.log("你还是个孩子。"); +} +``` + + +## 循环 + +### for 循环 + +```javascript +// 打印1到5 +for (const i = 1; i <= 5; i++) { + console.log(i); +} + +// 遍历数组 +const fruits = ["苹果", "香蕉", "橙子"]; +for (const i = 0; i < fruits.length; i++) { + console.log(fruits[i]); +} + +// 使用 for...of 遍历(ES6) +for (const fruit of fruits) { + console.log(fruit); +} +``` + +### while 循环 + +```javascript +const count = 1; +while (count <= 5) { + console.log(count); + count++; +} +``` + +## 函数 + +函数是一段可重复使用的代码块,可以接受输入(参数),执行操作,并返回输出(返回值)。 + +### 函数声明 + +```javascript +function greet(name) { + return `你好,${name}!`; +} + +const message = greet("小明"); +console.log(message); // 输出:你好,小明! +``` + +格式如下 + +```javascript +function 函数名(参数1, 参数2, ...参数N) { + // 函数体:要执行的代码 + return 返回值; // 可选 +} +``` + +### 箭头函数(ES6) + +```javascript +const sum = (a, b) => { + return a + b; +}; + +// 简化写法(当只有一行返回语句时) +const multiply = (a, b) => a * b; + +console.log(sum(3, 4)); // 7 +console.log(multiply(3, 4)); // 12 +``` + +## DOM 操作 + +DOM(文档对象模型)是 HTML 和 XML 文档的编程接口。JavaScript 可以通过 DOM 来操作网页元素。 + +### 选择元素 + +```javascript +// 通过 id 选择元素 +const title = document.getElementById("title"); + +// 通过 class 选择元素(返回元素集合) +const items = document.getElementsByClassName("item"); + +// 通过标签名选择元素 +const paragraphs = document.getElementsByTagName("p"); + +// 通过 CSS 选择器选择元素(ES5+) +const header = document.querySelector("header"); // 选择第一个匹配的元素 +const allLinks = document.querySelectorAll("a"); // 选择所有匹配的元素 +``` + +### 修改元素内容 + +```javascript +// 修改文本内容 +const title = document.getElementById("title"); +title.textContent = "新标题"; + +// 修改 HTML 内容 +title.innerHTML = "加粗的新标题"; +``` + +### 修改元素样式 + +```javascript +const element = document.getElementById("box"); +element.style.color = "red"; +element.style.fontSize = "20px"; +element.style.backgroundColor = "#f0f0f0"; +``` + +### 添加事件监听器 + +```javascript +const button = document.getElementById("myButton"); + +button.addEventListener("click", function() { + console.log("按钮被点击了!"); + alert("你好,欢迎使用!"); +}); +``` + +## 小案例:交互式计算器 + +下面是一个简单的交互式计算器示例,演示如何结合 HTML、CSS 和 JavaScript。 + +::: code-tabs +@tab index.html +```html + + + + + 简易计算器 + + + +
+

简易计算器

+ + + + +
结果将显示在这里
+
+ + + + +``` +@tab style.css +```css +.calculator { + max-width: 300px; + margin: 2rem auto; + padding: 1.5rem; + border: 1px solid #ddd; + border-radius: 8px; + text-align: center; + font-family: system-ui; +} + +input, select, button { + margin: 0.5rem 0; + padding: 0.5rem; + width: 100%; + box-sizing: border-box; +} + +button { + background: #007bff; + color: white; + border: none; + cursor: pointer; + border-radius: 4px; +} + +button:hover { + background: #0056b3; +} + +#result { + margin-top: 1rem; + padding: 1rem; + background: #f8f9fa; + border-radius: 4px; +} +``` +@tab script.js +```javascript +// 获取DOM元素 +const num1Input = document.getElementById('num1'); +const num2Input = document.getElementById('num2'); +const operationSelect = document.getElementById('operation'); +const calculateButton = document.getElementById('calculate'); +const resultDiv = document.getElementById('result'); + +// 添加点击事件监听器 +calculateButton.addEventListener('click', function() { + // 获取输入值 + const num1 = parseFloat(num1Input.value); + const num2 = parseFloat(num2Input.value); + const operation = operationSelect.value; + const result; + + // 检查输入是否有效 + if (isNaN(num1) || isNaN(num2)) { + resultDiv.textContent = '请输入有效的数字!'; + return; + } + + // 执行计算 + switch (operation) { + case 'add': + result = num1 + num2; + break; + case 'subtract': + result = num1 - num2; + break; + case 'multiply': + result = num1 * num2; + break; + case 'divide': + // 检查除数是否为0 + if (num2 === 0) { + resultDiv.textContent = '除数不能为0!'; + return; + } + result = num1 / num2; + break; + } + + // 显示结果 + resultDiv.textContent = `计算结果:${result}`; +}); +``` +::: + +## JavaScript 的异步编程 + +JavaScript 是单线程的,但它可以通过异步编程模型来处理耗时操作,如网络请求、定时器等。 + +### setTimeout 和 setInterval + +```javascript +// setTimeout - 延迟执行一次 +setTimeout(function() { + console.log('2秒后执行'); +}, 2000); + +// setInterval - 定期重复执行 +const count = 0; +const timer = setInterval(function() { + count++; + console.log(`执行第 ${count} 次`); + + if (count >= 5) { + clearInterval(timer); // 清除定时器 + console.log('定时器已停止'); + } +}, 1000); +``` + +### Promise(ES6) + +Promise 是异步编程的一种解决方案,用于处理异步操作。 + +```javascript +// 创建一个Promise +const fetchData = new Promise((resolve, reject) => { + // 模拟网络请求 + setTimeout(() => { + const success = true; + if (success) { + resolve('数据获取成功'); + } else { + reject('数据获取失败'); + } + }, 2000); +}); + +// 使用Promise +fetchData + .then(data => { + console.log(data); + }) + .catch(error => { + console.error(error); + }); +``` + +## 常见错误和调试技巧 + +### 常见错误 + +1. **语法错误**:代码不符合 JavaScript 语法规则 +2. **引用错误**:使用了未定义的变量或函数 +3. **类型错误**:对错误类型的值进行操作 +4. **范围错误**:数值超出有效范围 + +### 调试技巧 + +1. **使用 console.log()**:在控制台输出变量值或执行流程 +2. **使用断点**:在浏览器开发者工具中设置断点,逐步执行代码 +3. **检查错误信息**:仔细阅读错误提示,找出问题所在 +4. **检查变量类型**:使用 `typeof` 操作符检查变量类型 + +```javascript +console.log(typeof "hello"); // "string" +console.log(typeof 42); // "number" +console.log(typeof true); // "boolean" +console.log(typeof {}); // "object" +console.log(typeof []); // "object"(数组也是对象的一种) +``` + +## 实践练习 + +### 练习1:创建一个简单的待办事项列表 + +使用 HTML、CSS 和 JavaScript 创建一个待办事项列表,包含添加、删除和标记完成功能。 + +提示: +- 使用数组存储待办事项 +- 使用 DOM 操作动态更新列表 +- 为按钮添加事件监听器 + +### 练习2:实现一个数字猜谜游戏 + +计算机随机生成一个1到100之间的数字,玩家通过输入框猜测,程序提示"猜大了"或"猜小了",直到猜对为止。 + +提示: +- 使用 `Math.random()` 生成随机数 +- 使用条件语句判断猜测结果 +- 记录并显示猜测次数 + +## 总结 + +JavaScript 是现代 web 开发的核心技术之一,它可以让网页变得动态和交互。通过学习变量、数据类型、运算符、条件语句、循环、函数和 DOM 操作等基础知识,你已经迈出了学习 JavaScript 的第一步。 + +继续练习和探索,你会发现 JavaScript 的强大功能和灵活性! \ No newline at end of file diff --git a/docs/notes/subject/english/README.md b/docs/notes/subject/english/README.md new file mode 100644 index 0000000..3beaff2 --- /dev/null +++ b/docs/notes/subject/english/README.md @@ -0,0 +1,22 @@ +--- +title: 英语学习笔记 +createTime: 2025/10/20 16:34:20 +permalink: /subject/english/ +--- + +# 英语学习笔记 + +这是一个英语学习笔记的总览页。下面是目录与分区入口: + +## 目录 +- 学习环境与工具 → `/subject/english/basis/` +- 词汇与记忆 → `/subject/english/vocabulary/` +- 语法与句法 → `/subject/english/grammar/` +- 听力与口语 → `/subject/english/listening-speaking/` +- 阅读 → `/subject/english/reading-writing/` +- 考试与备考(含四级) → `/subject/english/exam/cet-4/` +- 学习资源与工具 → `/subject/english/resources/` +- 写译 → `/subject/english/writing-translation/` + + +你可以从以上入口进入对应的专题,随时扩展各章节内容。 \ No newline at end of file diff --git a/docs/notes/subject/english/basis/README.md b/docs/notes/subject/english/basis/README.md new file mode 100644 index 0000000..ffde8ad --- /dev/null +++ b/docs/notes/subject/english/basis/README.md @@ -0,0 +1,15 @@ +--- +title: 英语环境配置 +createTime: 2025/10/20 16:34:20 +permalink: /subject/english/basis/ +--- + +# 英语环境配置 + +这里是英语学习的入门环境配置示例模版: + +- 推荐词典与工具 +- 输入法与语音资源 +- 常用学习网站与 App + +你可以按需补充具体内容。 \ No newline at end of file diff --git a/docs/notes/subject/english/exam/cet-4.md b/docs/notes/subject/english/exam/cet-4.md new file mode 100644 index 0000000..69c0e1c --- /dev/null +++ b/docs/notes/subject/english/exam/cet-4.md @@ -0,0 +1,42 @@ +--- +title: 英语四级 (CET-4) 备考指南 +createTime: 2025/10/20 16:42:00 +permalink: /subject/english/exam/cet-4/ +--- + +# 英语四级 (CET-4) 备考指南 + +## 考试结构概览 +- 听力 (25%):新闻、长对话、讲座/采访 +- 阅读 (35%):仔细阅读、选词填空 +- 翻译 (15%):汉译英 +- 写作 (25%):应用文与观点写作 + +## 核心备考策略 +- 词汇:高频词与真题语块,使用 SRS 间隔重复 +- 语法:时态、非谓语、从句,针对写作与翻译的准确表达 +- 听力:精听 + 跟读(shadowing),积累场景表达 +- 阅读:结构化分析段落逻辑,题型定位与干扰项识别 +- 写作:模板+素材库+改写练习,关注连贯与准确 + +## 时间分配建议 +- 写作 30 分钟:审题→列纲→写作→快速校对 +- 阅读 40 分钟:定位→分析→作答→标记不确定 +- 听力 按机考节奏:提前熟悉说明与做题界面 +- 翻译 20 分钟:分句翻译→语法检查→润色 + +## 真题与模拟 +- 使用近 3-5 年真题按套训练;分析错因并归档到词汇/语法/方法类别 +- 每周至少一次全真模拟,记录分配与状态调整 + +## 考场技巧 +- 先易后难;不确定题目标记后回看 +- 注意题干限制词与语义线索(especially/only/not/except 等) +- 写作与翻译建议使用简单准确句式,避免长难句错误 + +## 推荐资源 +- 真题:教育部考试中心官方题库与解析 +- 听力:BBC 6 Minute English、VOA Learning English +- 写作:常用应用文格式与常见开头结尾句 + +> 后续我会补充各模块的详细练习清单与示例。 diff --git a/docs/notes/subject/english/grammar/README.md b/docs/notes/subject/english/grammar/README.md new file mode 100644 index 0000000..e302b15 --- /dev/null +++ b/docs/notes/subject/english/grammar/README.md @@ -0,0 +1,84 @@ +--- +title: 核心语法与句型 +createTime: 2025/10/20 16:40:00 +permalink: /subject/english/grammar/ +--- + +# 核心语法与句型 + +## 时态与语态 +- 16 种时态的构成与用法(一般/进行/完成/完成进行 × 现在/过去/将来/过去将来) +- 被动语态的转换规则与适用场景 +- 时态一致原则(主将从现、过去时一致等) +- 情态动词 + 完成体(must have done / should have done 等)的推测与虚拟含义 + +## 从句 +### 名词性从句 +- 主语从句(That he failed surprised us. / Whether she comes matters.) +- 宾语从句(I think (that) you are right.) +- 表语从句(The truth is that he lied.) +- 同位语从句(The fact that he lied shocked us.) + +### 定语从句 +- 限定性 vs. 非限定性 +- 关系代词(who / whom / whose / which / that)与关系副词(when / where / why) +- 介词 + 关系代词(the house in which I live) +- 省略与替代(the book (that) I bought; the place (where) we met) + +### 状语从句 +- 时间(when / while / before / after / as soon as / until) +- 条件(if / unless / provided that / on condition that) +- 让步(though / although / even if / while) +- 原因(because / since / as / now that) +- 结果(so...that / such...that) +- 目的(so that / in order that) +- 比较(than / as...as / the more...the more) + +## 非谓语动词 +- 不定式(to do):作主语、宾语、定语、状语、补语 +- 动名词(doing):作主语、宾语、表语、定语 +- 现在分词(doing)与过去分词(done):作定语、状语、补语、表语 +- 独立主格结构(with + O + OC; N + doing / done...) +- 非谓语动词的时态与语态(to be doing / to have done / being done / having been done) + +## 倒装与虚拟 +### 倒装 +- 否定副词置前(Never have I seen...) +- Only + 状语置前(Only then did I realize...) +- So / Such 置前(So fast did he run that...) +- 方位/时间副词置前(Out rushed the children.) +- 虚拟条件句省略 if(Were I you... / Had I known...) + +### 虚拟语气 +- 与现在事实相反(If I were you, I would...) +- 与过去事实相反(If I had known, I would have...) +- 与将来事实相反(If it should rain tomorrow...) +- 省略 if 的倒装(Were / Should / Had...) +- 含蓄虚拟(without / but for / otherwise) +- 名词性从句中的虚拟(insist that... (should) do; It is important that... (should) do) + +## 句式与信息焦点 +### 强调结构 +- It is / was...that / who...(It was John that/who broke the window.) +- 助动词 do / does / did(She did tell me the truth.) +- 副词强调(absolutely / definitely / simply) + +### 分裂句(Cleft Sentence) +- 主语分裂(What I need is time.) +- 宾语分裂(What he bought was a Ferrari.) +- 状语分裂(Where we met was in Paris.) + +### 平行与省略 +- 并列结构中的省略(He likes tea and she coffee.) +- 比较结构中的省略(I like her better than him.) +- 替代(do / so / one / that / those) + +### 插入语与同位语 +- 破折号、括号、逗号插入(The book—which I bought yesterday—is amazing.) +- 同位语短语(Mr. Smith, CEO of the company, will attend.) + +### 长难句拆解策略 +- 找谓语,定主干 +- 划从句,标连接词 +- 去插入,还省略 +- 调语序,还原文 diff --git a/docs/notes/subject/english/listening-speaking/README.md b/docs/notes/subject/english/listening-speaking/README.md new file mode 100644 index 0000000..2479694 --- /dev/null +++ b/docs/notes/subject/english/listening-speaking/README.md @@ -0,0 +1,89 @@ +--- +title: 听力口语训练 +createTime: 2025/10/20 16:40:00 +permalink: /subject/english/listening-speaking/ +--- + +# 听力口语训练 + +- 音素与连读弱读 +- 听力材料选择与精听泛听 +- 跟读与复述(shadowing & retelling) +- 场景对话与表达 + +## 自然拼读法Phonics + +Phonics自然拼音,或叫“英语自然拼读法”更容易理解。拼读什么?就是看到英文字母或字母的组合能自然地读出、读对它的发音。这里,首先要区分“读音”(Name)与“发音”(Sound)。A-Z的26个字母几乎大家都认识、都能念出来,而念出来的就是字母本身的“读音”;而自然发音指的是字母的“发音”。发音不同于读音。看到字母后,不管读音,找对发音。这就Phonics要学的。理论可以讲很多很深,但Phonics注重的是方法与实践。因此,知道怎么正确发音就行了。 + +下面给你放一个基本发音规则的表,虽然看不到完整版但是足够了也足够大致理解发音规律了 + +``` +https://wenku.so.com/tfd/b97611df865df13967a3b93a66d9e904?src=360ss&ocpc_id=139916&plan_id=2327941041&group_id=687803892&keyword=%E8%8B%B1%E8%AF%AD%E8%87%AA%E7%84%B6%E6%8B%BC%E8%AF%BB%E5%AD%97%E6%AF%8D%E7%BB%84%E5%90%88%E5%8F%91%E9%9F%B3&qhclickid=2ee0322320520786 +``` + +英文的26个字母,分为元音和辅音,其中元音只有5个,即a,e,i,o,u,其余字母均为辅音。 + +对于大多数辅音来说,它们的发音是一对一的,而有少数几个辅音字母,每个字母有两个或以上的发音。 + +### 二、有多个发音的辅音 + +#### c 字母 +c后面接a,o,u的时候,c的发音与字母k发音相同,叫做“hard c sound”: +``` +cat, cap,call,coat,cup +``` + +当字母c后面接e,i,或y的时候,通常c的发音与字母s发音相同,叫做“soft c sound” : +``` +city, ice, rice, face, cell, cent, voice, pencil, juice +``` + +有时在e或i前面,c会发/sh/音: +``` +ocean, racial, social +``` + +#### g 字母 +g后面接a,o,u的时候,所发的音叫做“hard g sound”: +``` +girl, gas, get, give, go +``` + +当字母g后面接e,i,或y的时候,有时g的发音与字母j的发音相同,叫做“soft g sound” +``` +age, change, ginger, Egypt, gentle, giraffe, badge +``` + +特例:forget, give, girl中的g发hard sound。 + +#### x 字母 +x在单词中间或结尾时发/ks/音: +``` +box, next, fix, mix, tax +``` + +x在单词中间时有时发/gz/音: +``` +exit, exam, exact +``` + +x在单词起始位置时发/z/音: +``` +xylophone, xerox。 +``` + +#### y 字母 +y在单词起始位置时发音为辅音: +``` +yes, you, yard, year, yell +``` + +y在单词或音节中间或结尾时被当做元音; + +y在结尾,单词只有一个音节时y发长/i/音,y在结尾,单词有两个或以上音节时y发长/e/音,y在单词或音节中间时,发短/i/音。 + +- 小测试: +- my, cry, fly, sky, baby, happy +- puppy, hurrygym, nymph + + diff --git a/docs/notes/subject/english/reading-writing/README.md b/docs/notes/subject/english/reading-writing/README.md new file mode 100644 index 0000000..5364928 --- /dev/null +++ b/docs/notes/subject/english/reading-writing/README.md @@ -0,0 +1,11 @@ +--- +title: 阅读提升 +createTime: 2025/10/20 16:40:00 +permalink: /subject/english/reading-writing/ +--- + +# 阅读提升 + +- 阅读策略(略读、扫读、精读) +- 篇章结构与逻辑(指代、连接、修饰) + diff --git a/docs/notes/subject/english/vocabulary/README.md b/docs/notes/subject/english/vocabulary/README.md new file mode 100644 index 0000000..2d58a0b --- /dev/null +++ b/docs/notes/subject/english/vocabulary/README.md @@ -0,0 +1,12 @@ +--- +title: 词汇学习与记忆法 +createTime: 2025/10/20 16:40:00 +permalink: /subject/english/vocabulary/ +--- + +# 词汇学习与记忆法 + +- 高频词与词根词缀 +- 主题词汇(校园、科技、社会等) +- 间隔重复(SRS)与记忆曲线 +- 固定搭配与语块(collocations & chunks) diff --git a/docs/notes/subject/english/writing-translation/README.md b/docs/notes/subject/english/writing-translation/README.md new file mode 100644 index 0000000..1b42020 --- /dev/null +++ b/docs/notes/subject/english/writing-translation/README.md @@ -0,0 +1,11 @@ +--- +title: 写译 +createTime: 2025/10/22 10:26:07 +permalink: /subject/english/writing-translation/ +--- + +# 写译 + +- 写作模板与常用句式 +- 改写与润色(句式多样化、语法准确性) +- 翻译(语法、词汇、上下文) diff --git a/docs/notes/theory/cryptography/README.md b/docs/notes/theory/cryptography/README.md new file mode 100644 index 0000000..0ce9650 --- /dev/null +++ b/docs/notes/theory/cryptography/README.md @@ -0,0 +1,193 @@ +--- +title: 密码学基础 +createTime: 2025/10/27 10:38:57 +permalink: /theory/cryptography/ +--- + +# 密码学基础 + +## 1. 密码学的定义 + +### 1.1 基本概念 + +**密码学(Cryptography)** 是一门研究信息安全的学科,主要关注如何在不安全的环境中实现安全通信。其核心是通过数学方法对信息进行变换,使得只有授权方能够理解信息内容。 + +### 1.2 核心目标 + +密码学追求以下四个主要安全目标: + +- **机密性(Confidentiality)**:确保信息只能被授权的人访问 +- **完整性(Integrity)**:确保信息在传输过程中不被篡改 +- **认证性(Authentication)**:确认通信双方的身份真实性 +- **不可否认性(Non-repudiation)**:防止发送方事后否认发送过信息 + +### 1.3 重要作用 + +密码学在现代信息安全中扮演着至关重要的角色: + +- 保护个人隐私和商业机密 +- 确保金融交易的安全性 +- 维护国家安全和军事通信 +- 支撑互联网基础设施的安全运行 + +### 1.4 主要应用场景 + +- **网络安全**:HTTPS、VPN、SSL/TLS协议 +- **数字身份认证**:数字证书、数字签名、双因素认证 +- **区块链技术**:加密货币、智能合约、分布式账本 +- **移动通信**:SIM卡加密、移动支付安全 +- **物联网安全**:设备身份认证、数据传输加密 + +### 1.5 基础概念与术语(入门) + +为方便初学者快速建立直觉,先认识密码学中最核心的几个概念: + +**明文(Plaintext)与密文(Ciphertext)** +- 明文:未加密的原始消息,例如“HELLO”。 +- 密文:加密后的消息,人类或未授权系统难以直接理解。 + +**加密(Encryption)与解密(Decryption)** +- 加密:用密钥将明文转换为密文,记为: + +$$ +C = E_k(P) +$$ + +- 解密:用密钥将密文还原为明文,记为: + +$$ +P = D_k(C) +$$ + +其中,$P$ 表示明文,$C$ 表示密文,$k$ 表示密钥,$E$ 为加密算法,$D$ 为解密算法。 + +**密钥(Key):对称密钥 vs 非对称密钥** +- 对称密钥:加密和解密使用相同的密钥,速度快,但密钥分发与管理是难点。 +- 非对称密钥(公钥密码):加密使用“公钥”,解密使用“私钥”,便于密钥分发,还能支持数字签名。 + +对称加密流程示意(同一把密钥): + +```mermaid +flowchart LR + S[发送者] -- 使用共享密钥 K 加密 --> C[(密文)] + C -- 使用共享密钥 K 解密 --> R[接收者] +``` + +非对称加密流程示意(公钥/私钥): + +```mermaid +flowchart LR + S[发送者] -- 使用接收者公钥加密 --> C[(密文)] + C -- 使用接收者私钥解密 --> R[接收者] +``` + +在典型的 RSA 公钥体制中,还可以用一个简洁的数学表达式表示加解密: + +$$ +\begin{aligned} + c &= m^{e} \bmod n,\\ + m &= c^{d} \bmod n, +\end{aligned} +$$ + +其中 $(e, n)$ 为公钥,$(d, n)$ 为私钥,$m$ 为明文,$c$ 为密文。 + +**常见攻击模型简介(只需直观理解)** +- 唯密文攻击(COA):攻击者只有密文,尝试恢复明文或密钥。 +- 已知明文攻击(KPA):攻击者拥有部分“明文-密文”对,用于分析算法或密钥。 +- 选择明文攻击(CPA):攻击者可选择明文并获取其密文,用于推断密钥或算法结构。 +- 选择密文攻击(CCA):攻击者可选择密文并得到其解密结果,进一步分析系统弱点。 + +直观结论:设计良好的现代密码系统,应当在这些攻击模型下仍保持安全(在合理的参数与假设下)。 + +## 2. 密码学历史简述 + +### 2.1 古代密码学(公元前-15世纪) + +**凯撒密码(Caesar Cipher)** +- 时间:公元前1世纪 +- 原理:字母移位加密 +- 示例:将字母向后移动3位,A→D,B→E + +**斯巴达密码棒(Scytale)** +- 时间:公元前5世纪 +- 原理:缠绕在特定直径木棒上的皮条 + +古典密码简述: +- 核心思路:替换或移位(重新排列)字符。 +- 代表示例:凯撒(替换)、栅栏(移位)、维吉尼亚(多表替换)。 +- 直觉目标:混淆结构、增加猜测难度;但易受频率分析。 + +### 2.2 文艺复兴时期(15-18世纪) + +**维吉尼亚密码(Vigenère Cipher)** +- 时间:16世纪 +- 原理:多表替换密码 +- 特点:比单表替换更安全 + +**博福特密码(Beaufort Cipher)** +- 时间:18世纪 +- 原理:改进的维吉尼亚密码 + +### 2.3 近代密码学(19-20世纪中期) + +**恩尼格玛密码机(Enigma)** +- 时间:二战时期 +- 原理:机械转子密码机 +- 重要性:推动了现代密码分析的发展 + +**香农的信息论** +- 时间:1949年 +- 贡献:为密码学奠定了数学理论基础 + +### 2.4 现代密码学(1970年代至今) + +**DES算法** +- 时间:1977年 +- 意义:第一个公开的加密标准 + +**RSA算法** +- 时间:1977年 +- 意义:第一个实用的公钥密码系统 + +**AES算法** +- 时间:2001年 +- 意义:取代DES的新一代加密标准 + +现代密码简述: +- 对称加密:同一密钥加解密,适合大量数据(示例:AES/DES/3DES)。 + +$$ +C = E_k(P), \quad P = D_k(C) +$$ + +- 非对称加密:公钥加密、私钥解密,便于密钥分发与数字签名(示例:RSA/ECC)。 + +$$ +c = m^{e} \bmod n, \quad m = c^{d} \bmod n +$$ + +- 密钥交换:Diffie–Hellman 在不安全信道建立共享密钥。 +- 数字签名:私钥签名、公钥验证,保障真实性与不可否认性。 + +### 2.5 关键历史时间线 + +``` +公元前5世纪:斯巴达密码棒 +公元前1世纪:凯撒密码 +16世纪:维吉尼亚密码 +1918年:一次一密密码本 +1949年:香农信息论 +1977年:DES和RSA算法 +2001年:AES标准 +``` + + + +## 总结 + +密码学作为信息安全的基石,经历了从简单替换到复杂数学算法的漫长发展历程。现代密码学建立在严格的数学基础之上,通过对称加密、非对称加密等多种技术手段,为数字世界提供了可靠的安全保障。 + +理解密码学的基本原理和分类,有助于我们更好地应用这些技术来保护信息安全,同时也为深入学习更高级的密码学概念奠定基础。 + +本篇笔记的所有代码开源于:[https://gitea.simengweb.com/si-meng-spec/cryptography-example-code](https://gitea.simengweb.com/si-meng-spec/cryptography-example-code) \ No newline at end of file diff --git a/docs/notes/theory/cryptography/classical-encryption/permutation-encryption.md b/docs/notes/theory/cryptography/classical-encryption/permutation-encryption.md new file mode 100644 index 0000000..90bb4d8 --- /dev/null +++ b/docs/notes/theory/cryptography/classical-encryption/permutation-encryption.md @@ -0,0 +1,107 @@ +--- +title: 置换密码 - 等待完善 +createTime: 2025/10/29 13:50:49 +permalink: /theory/cryptography/permutation-encryption/ +--- + +# 置换密码(Permutation / Transposition Ciphers) + +置换密码的核心思想不是“把字母换成别的字母”(替换),而是**重新排列明文字符的位置**。也就是说: +- 明文字母的集合不变,顺序发生了改变; +- 由于字母频率不变,置换密码依然会暴露统计特征,但单词的结构与位置模式被打散。 + +与“替换密码”相比,置换密码更像是“洗牌”:把原本顺序排列的牌重新打乱。单独使用时并不安全,但与替换联合使用(乘积密码)能显著增强安全性。 + +```mermaid +flowchart LR + P[明文] --> A{根据密钥生成位置} + A --> B[重新排列字符] + B --> C[密文] +``` + +## 一、栅栏密码(Rail Fence Cipher) + +**工作原理**: +将明文按“Z字形”写入若干行(称为“栅栏/轨道”),再按行依次读出即得到密文。轨道数即为密钥。 + +**示意**(以 3 轨为例): +``` +轨1: 0 4 8 ... +轨2: 1 3 5 7 9 ... +轨3: 2 6 ... +``` + +**示例**: +明文:`HELLOWORLD` +轨道数:`3` +- 轨1(索引 0,4,8):`H O L` +- 轨2(索引 1,3,5,7,9):`E L W R D` +- 轨3(索引 2,6):`L O` + +密文为各轨串联:`HOL` + `ELWRD` + `LO` → `HOLELWRDLO` + +**数学表示**: +设明文 $P = p_0 p_1 \dots p_{n-1}$,根据密钥生成一个位置序列 $s_0, s_1, \dots, s_{n-1}$(即置换次序),则: +$$ +C_j = p_{s_j}, \quad j = 0,1,\dots,n-1 +$$ +解密使用逆序列 $t = s^{-1}$: +$$ +p_i = C_{t_i}, \quad i = 0,1,\dots,n-1 +$$ + +**特点**: +- 实现简单,直观“打乱顺序” +- 频率不变,难以抵抗纯统计分析;但位置模式被破坏,较难直接猜词 +- 作为教学与与替换密码的组合(乘积密码)更有价值 + +## 二、列移位置换(Columnar Transposition) + +**工作原理**: +选择一个关键词,将明文按列填入表格,再按关键词的字母排序对列进行重排,最终按列或按行读出密文。 + +```mermaid +flowchart LR + A[明文填入表格] --> B{按关键词排序列} + B --> C[重排读取] + C --> D[密文] +``` + +**简例(概念演示)**: +明文:`ATTACKATDAWN` +关键词:`ZEBRA`(按字母表排序为 `A B E R Z`) +1) 将明文逐行填入 5 列表格; +2) 按关键词排序(A→B→E→R→Z)重排列; +3) 按重排后的列依次读出密文。 + +(实际实现时需要处理明文长度不足一整行的填充策略,如使用 `X` 或留空。) + +**数学表示(一般置换模型)**: +关键词决定一个列置换 $\pi$,其作用是重新排列列索引。若把明文按列读取为序列 $P$,加密可抽象为: +$$ +C = \operatorname{Permute}_{\pi}(P), \quad P = \operatorname{Permute}_{\pi^{-1}}(C) +$$ + +**特点**: +- 比栅栏更灵活,关键词让置换更“难猜” +- 仍保留频率分布,易受已知明文/选择明文的结构分析攻击 +- 常与替换结合形成更强的乘积密码(如 ADFGX/ADFGVX 密码) + +## 三、联合与加固:置换 × 替换 + +将“替换”与“置换”组合(先替换后置换,或多轮交替)能显著增强安全性: +- 替换打乱统计特征(字母频率分布变平) +- 置换打乱位置结构(模式与相邻关系被破坏) + +这种思路在现代密码设计中仍然常见(“混淆与扩散”理念),尽管算法形式已经大为不同。 + +## 四、安全性与弱点(直观理解) +- 单独的置换密码不改变字母频率,抵抗统计攻击能力有限 +- 容易受到已知明文/选择明文攻击(通过结构猜测置换) +- 多轮、复杂置换能提高攻击成本,但不建议单独用于实际安全场景 + +## 五、小练习(可选) +试着把你自己的名字用 3 轨栅栏加密;然后写出解密过程(先确定轨道索引,再按逆序重建原文)。 + +## 附件: +具体的使用样例代码请参考:[https://gitea.simengweb.com/si-meng-spec/cryptography-example-code](https://gitea.simengweb.com/si-meng-spec/cryptography-example-code) diff --git a/docs/notes/theory/cryptography/classical-encryption/substitution-ciphers.md b/docs/notes/theory/cryptography/classical-encryption/substitution-ciphers.md new file mode 100644 index 0000000..e9ecffb --- /dev/null +++ b/docs/notes/theory/cryptography/classical-encryption/substitution-ciphers.md @@ -0,0 +1,170 @@ +--- +title: 替换密码 +createTime: 2025/10/27 10:47:42 +permalink: /theory/cryptography/substitution-ciphers/ +--- + +# 替换密码(Substitution Ciphers) + +我们一起来系统梳理古典加密算法(Classical Ciphers)。这些算法虽然在现代已不再安全,但它们是密码学发展的基石,蕴含了替换、置换、密钥等核心思想,非常适合理解密码学的基本原理。 + +替换密码的核心思想是“一对一”或“多对一”的字符映射:把明文中的每一个字母(或符号)按照事先约定好的规则,替换成另一个字母(或符号)。 + +这种映射可以是固定不变的(如凯撒密码的“统一移位”),也可以是依赖密钥动态变化的(如维吉尼亚密码的“周期移位”)。 + +由于密文保留了原始字母的出现频率,只是“换了一张皮”,所以替换密码在本质上没有改变字母的统计特性,这也为频率分析攻击留下了突破口。 + +替换操作可以手工完成,也可以通过查表、转盘、甚至机械电路实现,是后续更复杂多表替换与乘积密码的雏形。 + +## 一、凯撒密码(Caesar Cipher) + +**工作原理**: +凯撒密码是一种循环移位密码,将字母表视为一个环形结构。加密时每个字母向后移动固定位置 $k$,解密时向前移动相同位置。 + +**数学表示**: +设字母 A-Z 对应数字 0-25,则: + +加密公式: +$$E(x) = (x + k) \mod 26$$ + +解密公式: +$$D(x) = (x - k) \mod 26$$ + +其中 $x$ 是明文字母编号,$k$ 是密钥(0 ≤ k ≤ 25)。 + +**特点**: +- 实现简单,易于理解 +- 密钥空间仅 $26$ 种可能,安全性极低 +- 易受频率分析攻击 +- 主要具有教学价值 + + +## 二、单表替换密码(Simple Substitution Cipher) + +**工作原理**: +单表替换密码是凯撒密码的泛化形式,它使用一个随机的字母替换表,而不是固定的移位。每个明文字母都被唯一地映射到一个密文字母,形成一对一的替换关系。 + +```mermaid +graph LR + A[明文字母] --> B{替换表} + B --> C[密文字母] +``` + +**数学表示**: +设字母表 $\Sigma = \{A,B,C,...,Z\}$,替换函数 $f: \Sigma \rightarrow \Sigma$ 是一个双射(一一对应),则: + +加密公式: +$$E(x) = f(x)$$ + +解密公式: +$$D(y) = f^{-1}(y)$$ + +其中 $f^{-1}$ 是 $f$ 的逆函数。 + +**密钥空间**: +单表替换密码的密钥空间是所有可能的字母排列,大小为: +$$|K| = 26! \approx 4.03 \times 10^{26}$$ + +这个巨大的密钥空间使得暴力破解在计算上不可行。 + +**示例**: +假设替换表为: +``` +A→Q, B→W, C→E, D→R, E→T, F→Y, G→U, H→I, I→O, J→P, +K→A, L→S, M→D, N→F, O→G, P→H, Q→J, R→K, S→L, T→Z, +U→X, V→C, W→V, X→B, Y→N, Z→M +``` + +```mermaid +flowchart LR + A[明文: HELLO] --> B[替换加密] + B --> C[密文: ITSSG] + C --> D[逆替换解密] + D --> E[明文: HELLO] +``` + +**安全性分析**: +虽然单表替换密码的密钥空间巨大,但它仍然易受**频率分析攻击**。因为: + +1. **字母频率保留**:高频字母(如E、T、A)在密文中仍然是高频 +2. **单词模式保留**:常见单词模式(如"THE"、"ING")在密文中保持相同模式 +3. **双字母频率**:常见字母对(如"TH"、"ER")的频率特征仍然存在 + +**攻击方法**: +- 单字母频率分析 +- 双字母频率分析 +- 单词长度和模式分析 +- 已知明文攻击 + +**特点**: +- 密钥空间巨大($26!$),理论上难以暴力破解 +- 仍然易受统计攻击 +- 是密码学历史上重要的里程碑 +- 为现代密码学提供了重要启示 + + + +## 三、维吉尼亚密码(Vigenère Cipher) + +**工作原理**: +维吉尼亚密码是一种多表替换密码,它使用一个关键词来决定每次替换的凯撒密码移位量。关键词的每个字母对应一个移位量,明文的每个字母根据关键词的循环使用进行替换。 + +```mermaid +graph LR + A[明文] --> B{关键词循环扩展} + B --> C[明文与关键词按位组合] + C --> D{多表替换} + D --> E[密文] +``` + +**数学表示**: +设字母 A-Z 对应数字 0-25。 +明文 $P = p_0 p_1 ... p_{n-1}$ +关键词 $K = k_0 k_1 ... k_{m-1}$ (长度为 $m$) + +加密公式: +$$E(p_i) = (p_i + k_{i \pmod m}) \mod 26$$ + +解密公式: +$$D(c_i) = (c_i - k_{i \pmod m}) \mod 26$$ + +其中 $p_i$ 是明文第 $i$ 个字母的数字表示,$k_{i \pmod m}$ 是关键词循环后对应第 $i$ 个字母的数字表示,$c_i$ 是密文第 $i$ 个字母的数字表示。 + +**示例**: +明文:`ATTACKATDAWN` +关键词:`LEMON` + +1. **关键词循环扩展**: + 将关键词 `LEMON` 循环扩展至与明文等长:`LEMONLEMONLE` + +2. **明文与关键词按位组合(数字表示)**: + 将明文和扩展后的关键词转换为数字 (A=0, B=1, ..., Z=25)。 + 明文数字: `0 19 19 0 2 10 0 19 3 0 22 13` + 关键词数字: `11 4 12 14 13 11 4 12 14 13 11 4` + +3. **加密运算**: + 对每对明文数字 $p_i$ 和关键词数字 $k_{i \pmod m}$ 执行 $(p_i + k_{i \pmod m}) \mod 26$ 运算。 + 例如: + - 第一个字母:明文 A (0) + 关键词 L (11) = $(0 + 11) \mod 26 = 11 \rightarrow L$ + - 第二个字母:明文 T (19) + 关键词 E (4) = $(19 + 4) \mod 26 = 23 \rightarrow X$ + - 第三个字母:明文 T (19) + 关键词 M (12) = $(19 + 12) \mod 26 = 5 \rightarrow F$ + ... + 最终密文:`LXFOPVEFRNHR` + + +**安全性分析**: +维吉尼亚密码比单表替换密码更安全,因为它引入了**多表替换**,使得密文的字母频率分布趋于平坦,从而抵抗了简单的频率分析攻击。 + +然而,它并非绝对安全,主要弱点在于**关键词的周期性**: +1. **Kasiski 测试**:通过分析密文中重复出现的字母组,可以推断出关键词的长度。 +2. **频率分析(针对子密码)**:一旦关键词长度确定,密文可以被分成若干个凯撒密码,然后对每个子密码进行频率分析。 + +**特点**: +- 多表替换,比单表替换密码更安全 +- 引入了关键词的概念,增强了密钥的复杂性 +- 易受Kasiski测试和频率分析的组合攻击 +- 在历史上曾被认为是“牢不可破的密码” + + +## 附件: +具体的使用样例代码请参考:[https://gitea.simengweb.com/si-meng-spec/cryptography-example-code](https://gitea.simengweb.com/si-meng-spec/cryptography-example-code) \ No newline at end of file diff --git a/docs/tools.md b/docs/tools.md new file mode 100644 index 0000000..5f34d6c --- /dev/null +++ b/docs/tools.md @@ -0,0 +1,48 @@ +--- +title: 常用Web工具 +description: 一些我常用的在线工具集合 +hideInBlogList: true +article: false +createTime: 2025/09/22 07:45:30 +permalink: /tools/ +--- + +# 常用Web工具 + +以下是我平时工作和学习中经常使用的一些Web工具,分享给大家: + +## 开发工具 + +- [面向开发人员的便捷工具](https://it-tools.simengweb.com/) - 一个比较好的工具箱 +- [算法可视化工具 - Visualgo](https://visualgo.net/zh) - 算法和数据结构可视化学习平台 +- [程序员速查手册](https://quickref.cn/) - 程序员常用开发知识速查 +- [Jupyter在线环境](https://jupyter.org/try-jupyter/lab/) - 在线Jupyter笔记本环境,支持多种编程语言 + +## 设计工具 + +- [iconfont-阿里巴巴矢量图标库](https://www.iconfont.cn/) - 阿里妈妈MUX倾力打造的矢量图标管理、交流平台 + +## 教育的平台 + +- [中国大学MOOC](https://www.icourse163.org/) - 国内优质在线课程平台 +- [学堂在线](https://www.xuetangx.com/) - 清华大学发起的大规模开放在线教育平台 +- [GeoGebra](https://www.geogebra.org/) - 数学教学与学习的动态几何软件 +- [编程学习平台](https://noobdream.com/index/) - 编程学习资源与算法题库 + +## 在线工具 + +- [极简工具 - Jyshare](https://www.jyshare.com/) - 提供各种在线实用工具的平台 +- [在线文件转换](https://onlineconvertfree.com/zh/) - 免费在线文件格式转换工具 +- [工具库 - Enncy](https://tk.enncy.cn/) - 实用工具集合 + +## 资源平台 + +- [Z-Library](https://z-lib.life/) - 电子书资源库 + +## 自己常玩的一些游戏攻略 + +- [碧蓝航线WIKI大型作战成就记录地图](https://wiki.biligame.com/blhx/%E5%A4%A7%E5%9E%8B%E4%BD%9C%E6%88%98%E6%88%90%E5%B0%B1%E8%AE%B0%E5%BD%95%E5%9C%B0%E5%9B%BE) - 碧蓝航线大型作战成就记录地图 +- [海岛奇兵数据大全](https://bb.heiyu100.cn/shuju.aspx) - 海岛奇兵升级数据、设施、游戏数据查询 +- [Minecraft种子地图工具](https://www.chunkbase.com/apps/seed-map#seed=-7426240975919748310&platform=java_1_20&dimension=overworld&x=-119&z=881&zoom=0.27) - Minecraft种子地图查看工具 +- [元气骑士中文维基](https://yqqs.huijiwiki.com/wiki/%E9%A6%96%E9%A1%B5) - 元气骑士游戏中文维基百科 + diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1a786b3 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8232 @@ +{ + "name": "si-meng-web-site-notes", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "si-meng-web-site-notes", + "version": "1.0.0", + "license": "MIT", + "dependencies": { + "@waline/client": "^3.6.0", + "mermaid": "^11.12.1" + }, + "devDependencies": { + "@vuepress/bundler-vite": "2.0.0-rc.24", + "@vuepress/plugin-umami-analytics": "^2.0.0-rc.112", + "artalk": "^2.9.1", + "http-server": "^14.1.1", + "typescript": "^5.9.2", + "vue": "^3.5.21", + "vuepress": "2.0.0-rc.24", + "vuepress-theme-plume": "1.0.0-rc.164" + }, + "engines": { + "node": "^20.6.0 || >=22.0.0" + } + }, + "node_modules/@algolia/abtesting": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/@algolia/abtesting/-/abtesting-1.3.0.tgz", + "integrity": "sha512-KqPVLdVNfoJzX5BKNGM9bsW8saHeyax8kmPFXul5gejrSPN3qss7PgsFH5mMem7oR8tvjvNkia97ljEYPYCN8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.17.9", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.17.9.tgz", + "integrity": "sha512-O7BxrpLDPJWWHv/DLA9DRFWs+iY1uOJZkqUwjS5HSZAGcl0hIVCQ97LTLewiZmZ402JYUrun+8NqFP+hCknlbQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.17.9", + "@algolia/autocomplete-shared": "1.17.9" + } + }, + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.17.9", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.9.tgz", + "integrity": "sha512-u1fEHkCbWF92DBeB/KHeMacsjsoI0wFhjZtlCq2ddZbAehshbZST6Hs0Avkc0s+4UyBGbMDnSuXHLuvRWK5iDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.9" + }, + "peerDependencies": { + "search-insights": ">= 1 < 3" + } + }, + "node_modules/@algolia/autocomplete-preset-algolia": { + "version": "1.17.9", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.9.tgz", + "integrity": "sha512-Na1OuceSJeg8j7ZWn5ssMu/Ax3amtOwk76u4h5J4eK2Nx2KB5qt0Z4cOapCsxot9VcEN11ADV5aUSlQF4RhGjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.9" + }, + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/autocomplete-shared": { + "version": "1.17.9", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.9.tgz", + "integrity": "sha512-iDf05JDQ7I0b7JEA/9IektxN/80a2MZ1ToohfmNS3rfeuQnIKI3IJlIafD0xu4StbtQTghx9T3Maa97ytkXenQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/client-abtesting": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-abtesting/-/client-abtesting-5.37.0.tgz", + "integrity": "sha512-Dp2Zq+x9qQFnuiQhVe91EeaaPxWBhzwQ6QnznZQnH9C1/ei3dvtmAFfFeaTxM6FzfJXDLvVnaQagTYFTQz3R5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-5.37.0.tgz", + "integrity": "sha512-wyXODDOluKogTuZxRII6mtqhAq4+qUR3zIUJEKTiHLe8HMZFxfUEI4NO2qSu04noXZHbv/sRVdQQqzKh12SZuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-common": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-common/-/client-common-5.37.0.tgz", + "integrity": "sha512-GylIFlPvLy9OMgFG8JkonIagv3zF+Dx3H401Uo2KpmfMVBBJiGfAb9oYfXtplpRMZnZPxF5FnkWaI/NpVJMC+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-insights": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-insights/-/client-insights-5.37.0.tgz", + "integrity": "sha512-T63afO2O69XHKw2+F7mfRoIbmXWGzgpZxgOFAdP3fR4laid7pWBt20P4eJ+Zn23wXS5kC9P2K7Bo3+rVjqnYiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-5.37.0.tgz", + "integrity": "sha512-1zOIXM98O9zD8bYDCJiUJRC/qNUydGHK/zRK+WbLXrW1SqLFRXECsKZa5KoG166+o5q5upk96qguOtE8FTXDWQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-query-suggestions": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-query-suggestions/-/client-query-suggestions-5.37.0.tgz", + "integrity": "sha512-31Nr2xOLBCYVal+OMZn1rp1H4lPs1914Tfr3a34wU/nsWJ+TB3vWjfkUUuuYhWoWBEArwuRzt3YNLn0F/KRVkg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-search": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-search/-/client-search-5.37.0.tgz", + "integrity": "sha512-DAFVUvEg+u7jUs6BZiVz9zdaUebYULPiQ4LM2R4n8Nujzyj7BZzGr2DCd85ip4p/cx7nAZWKM8pLcGtkTRTdsg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/ingestion": { + "version": "1.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/ingestion/-/ingestion-1.37.0.tgz", + "integrity": "sha512-pkCepBRRdcdd7dTLbFddnu886NyyxmhgqiRcHHaDunvX03Ij4WzvouWrQq7B7iYBjkMQrLS8wQqSP0REfA4W8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/monitoring": { + "version": "1.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/monitoring/-/monitoring-1.37.0.tgz", + "integrity": "sha512-fNw7pVdyZAAQQCJf1cc/ih4fwrRdQSgKwgor4gchsI/Q/ss9inmC6bl/69jvoRSzgZS9BX4elwHKdo0EfTli3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/recommend/-/recommend-5.37.0.tgz", + "integrity": "sha512-U+FL5gzN2ldx3TYfQO5OAta2TBuIdabEdFwD5UVfWPsZE5nvOKkc/6BBqP54Z/adW/34c5ZrvvZhlhNTZujJXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.37.0.tgz", + "integrity": "sha512-Ao8GZo8WgWFABrU7iq+JAftXV0t+UcOtCDL4mzHHZ+rQeTTf1TZssr4d0vIuoqkVNnKt9iyZ7T4lQff4ydcTrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-fetch": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/requester-fetch/-/requester-fetch-5.37.0.tgz", + "integrity": "sha512-H7OJOXrFg5dLcGJ22uxx8eiFId0aB9b0UBhoOi4SMSuDBe6vjJJ/LeZyY25zPaSvkXNBN3vAM+ad6M0h6ha3AA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-node-http": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-5.37.0.tgz", + "integrity": "sha512-npZ9aeag4SGTx677eqPL3rkSPlQrnzx/8wNrl1P7GpWq9w/eTmRbOq+wKrJ2r78idlY0MMgmY/mld2tq6dc44g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@antfu/install-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/@antfu/install-pkg/-/install-pkg-1.1.0.tgz", + "integrity": "sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==", + "license": "MIT", + "dependencies": { + "package-manager-detector": "^1.3.0", + "tinyexec": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@antfu/utils": { + "version": "9.2.1", + "resolved": "https://registry.npmmirror.com/@antfu/utils/-/utils-9.2.1.tgz", + "integrity": "sha512-TMilPqXyii1AsiEii6l6ubRzbo76p6oshUSYPaKsmXDavyMLqjzVDkcp3pHp5ELMUNJHATcEOGxKTTsX9yYhGg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.4", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.28.4.tgz", + "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.4" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.4", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.28.4.tgz", + "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@braintree/sanitize-url": { + "version": "7.1.1", + "resolved": "https://registry.npmmirror.com/@braintree/sanitize-url/-/sanitize-url-7.1.1.tgz", + "integrity": "sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==", + "license": "MIT" + }, + "node_modules/@chevrotain/cst-dts-gen": { + "version": "11.0.3", + "resolved": "https://registry.npmmirror.com/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.0.3.tgz", + "integrity": "sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==", + "license": "Apache-2.0", + "dependencies": { + "@chevrotain/gast": "11.0.3", + "@chevrotain/types": "11.0.3", + "lodash-es": "4.17.21" + } + }, + "node_modules/@chevrotain/gast": { + "version": "11.0.3", + "resolved": "https://registry.npmmirror.com/@chevrotain/gast/-/gast-11.0.3.tgz", + "integrity": "sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==", + "license": "Apache-2.0", + "dependencies": { + "@chevrotain/types": "11.0.3", + "lodash-es": "4.17.21" + } + }, + "node_modules/@chevrotain/regexp-to-ast": { + "version": "11.0.3", + "resolved": "https://registry.npmmirror.com/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.0.3.tgz", + "integrity": "sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==", + "license": "Apache-2.0" + }, + "node_modules/@chevrotain/types": { + "version": "11.0.3", + "resolved": "https://registry.npmmirror.com/@chevrotain/types/-/types-11.0.3.tgz", + "integrity": "sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==", + "license": "Apache-2.0" + }, + "node_modules/@chevrotain/utils": { + "version": "11.0.3", + "resolved": "https://registry.npmmirror.com/@chevrotain/utils/-/utils-11.0.3.tgz", + "integrity": "sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==", + "license": "Apache-2.0" + }, + "node_modules/@docsearch/css": { + "version": "3.9.0", + "resolved": "https://registry.npmmirror.com/@docsearch/css/-/css-3.9.0.tgz", + "integrity": "sha512-cQbnVbq0rrBwNAKegIac/t6a8nWoUAn8frnkLFW6YARaRmAQr5/Eoe6Ln2fqkUCZ40KpdrKbpSAmgrkviOxuWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@docsearch/js": { + "version": "3.9.0", + "resolved": "https://registry.npmmirror.com/@docsearch/js/-/js-3.9.0.tgz", + "integrity": "sha512-4bKHcye6EkLgRE8ze0vcdshmEqxeiJM77M0JXjef7lrYZfSlMunrDOCqyLjiZyo1+c0BhUqA2QpFartIjuHIjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@docsearch/react": "3.9.0", + "preact": "^10.0.0" + } + }, + "node_modules/@docsearch/react": { + "version": "3.9.0", + "resolved": "https://registry.npmmirror.com/@docsearch/react/-/react-3.9.0.tgz", + "integrity": "sha512-mb5FOZYZIkRQ6s/NWnM98k879vu5pscWqTLubLFBO87igYYT4VzVazh4h5o/zCvTIZgEt3PvsCOMOswOUo9yHQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-core": "1.17.9", + "@algolia/autocomplete-preset-algolia": "1.17.9", + "@docsearch/css": "3.9.0", + "algoliasearch": "^5.14.2" + }, + "peerDependencies": { + "@types/react": ">= 16.8.0 < 20.0.0", + "react": ">= 16.8.0 < 20.0.0", + "react-dom": ">= 16.8.0 < 20.0.0", + "search-insights": ">= 1 < 3" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "search-insights": { + "optional": true + } + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", + "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.25.10.tgz", + "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", + "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.25.10.tgz", + "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", + "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", + "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", + "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", + "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", + "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", + "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", + "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", + "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", + "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", + "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", + "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", + "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", + "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", + "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", + "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", + "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", + "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", + "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", + "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", + "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", + "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", + "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "license": "MIT" + }, + "node_modules/@iconify/utils": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/@iconify/utils/-/utils-3.0.2.tgz", + "integrity": "sha512-EfJS0rLfVuRuJRn4psJHtK2A9TqVnkxPpHY6lYHiB9+8eSuudsxbwMiavocG45ujOo6FJ+CIRlRnlOGinzkaGQ==", + "license": "MIT", + "dependencies": { + "@antfu/install-pkg": "^1.1.0", + "@antfu/utils": "^9.2.0", + "@iconify/types": "^2.0.0", + "debug": "^4.4.1", + "globals": "^15.15.0", + "kolorist": "^1.8.0", + "local-pkg": "^1.1.1", + "mlly": "^1.7.4" + } + }, + "node_modules/@iconify/vue": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/@iconify/vue/-/vue-5.0.0.tgz", + "integrity": "sha512-C+KuEWIF5nSBrobFJhT//JS87OZ++QDORB6f2q2Wm6fl2mueSTpFBeBsveK0KW9hWiZ4mNiPjsh6Zs4jjdROSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@iconify/types": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/cyberalien" + }, + "peerDependencies": { + "vue": ">=3" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@lit-labs/ssr-dom-shim": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.4.0.tgz", + "integrity": "sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@lit/reactive-element": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/@lit/reactive-element/-/reactive-element-2.1.1.tgz", + "integrity": "sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.4.0" + } + }, + "node_modules/@mdit-vue/plugin-component": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-component/-/plugin-component-2.1.4.tgz", + "integrity": "sha512-fiLbwcaE6gZE4c8Mkdkc4X38ltXh/EdnuPE1hepFT2dLiW6I4X8ho2Wq7nhYuT8RmV4OKlCFENwCuXlKcpV/sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/plugin-frontmatter": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-frontmatter/-/plugin-frontmatter-2.1.4.tgz", + "integrity": "sha512-mOlavV176njnozIf0UZGFYymmQ2LK5S1rjrbJ1uGz4Df59tu0DQntdE7YZXqmJJA9MiSx7ViCTUQCNPKg7R8Ow==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/types": "2.1.4", + "@types/markdown-it": "^14.1.2", + "gray-matter": "^4.0.3", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/plugin-headers": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-headers/-/plugin-headers-2.1.4.tgz", + "integrity": "sha512-tyZwGZu2mYkNSqigFP1CK3aZYxuYwrqcrIh8ljd8tfD1UDPJkAbQeayq62U572po2IuWVB1BqIG8JIXp5POOTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/shared": "2.1.4", + "@mdit-vue/types": "2.1.4", + "@types/markdown-it": "^14.1.2", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/plugin-sfc": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-sfc/-/plugin-sfc-2.1.4.tgz", + "integrity": "sha512-oqAlMulkz280xUJIkormzp6Ps0x5WULZrwRivylWJWDEyVAFCj5VgR3Dx6CP2jdgyuPXwW3+gh2Kzw+Xe+kEIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/types": "2.1.4", + "@types/markdown-it": "^14.1.2", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/plugin-title": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-title/-/plugin-title-2.1.4.tgz", + "integrity": "sha512-uuF24gJvvLVIWG/VBtCDRqMndfd5JzOXoBoHPdKKLk3PA4P84dsB0u0NnnBUEl/YBOumdCotasn7OfFMmco9uQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/shared": "2.1.4", + "@mdit-vue/types": "2.1.4", + "@types/markdown-it": "^14.1.2", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/plugin-toc": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/plugin-toc/-/plugin-toc-2.1.4.tgz", + "integrity": "sha512-vvOU7u6aNmvPwKXzmoHion1sv4zChBp20LDpSHlRlXc3btLwdYIA0DR+UiO5YeyLUAO0XSHQKBpsIWi57K9/3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/shared": "2.1.4", + "@mdit-vue/types": "2.1.4", + "@types/markdown-it": "^14.1.2", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/shared": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/shared/-/shared-2.1.4.tgz", + "integrity": "sha512-Axd8g2iKQTMuHcPXZH5JY3hbSMeLyoeu0ftdgMrjuPzHpJnWiPSAnA0dAx5NQFQqZkXHhyIrAssLSrOWjFmPKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/types": "2.1.4", + "@types/markdown-it": "^14.1.2", + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit-vue/types": { + "version": "2.1.4", + "resolved": "https://registry.npmmirror.com/@mdit-vue/types/-/types-2.1.4.tgz", + "integrity": "sha512-QiGNZslz+zXUs2X8D11UQhB4KAMZ0DZghvYxa7+1B+VMLcDtz//XHpWbcuexjzE3kBXSxIUTPH3eSQCa0puZHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@mdit/helper": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/helper/-/helper-0.22.1.tgz", + "integrity": "sha512-lDpajcdAk84aYCNAM/Mi3djw38DJq7ocLw5VOSMu/u2YKX3/OD37a6Qb59in8Uyp4SiAbQoSHa8px6hgHEpB5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-alert": { + "version": "0.22.2", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-alert/-/plugin-alert-0.22.2.tgz", + "integrity": "sha512-n2oVSeg3yeZBCjqfAqbnJxeu4PGq+CXwUWsiwrrARj39z23QZ62FbgL5WGNyP/WFnDAeHMedLDYtipC9OgIOgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-attrs": { + "version": "0.23.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-attrs/-/plugin-attrs-0.23.1.tgz", + "integrity": "sha512-KY05v0DIBMItOxoniyDxxtyYIiT+0JTQ2Ke0mzyCyvPplqCv4Avus7/uAZ3+IGcaI2oOTlYEHdU288VBFgXjAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-container": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-container/-/plugin-container-0.22.1.tgz", + "integrity": "sha512-UY1NRRb/Su9YxQerkCF8bWG0fY/V24b9f/jVWh5DhD+Dw4MifVbV6p5TlaeQ854Xz9prkhyXSugiWbjhju6BgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-figure": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-figure/-/plugin-figure-0.22.1.tgz", + "integrity": "sha512-z7uqtKsQ/ILkdM4pLrfuvz2eAhtwNzRPT9xnixFosrMgF7CEHbBtFTF6nc2ht1mOqCTRqoIL+FWg8InYMiBPhQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-footnote": { + "version": "0.22.2", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-footnote/-/plugin-footnote-0.22.2.tgz", + "integrity": "sha512-lHB6AV61QruvrWXIu/oWncltH2ED8cBUuvX4IO+5TvtWSyyc6wOm3ErPqqTFJqy1SJ1p21oLNcqRGdPF+S3N4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + } + }, + "node_modules/@mdit/plugin-img-lazyload": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-img-lazyload/-/plugin-img-lazyload-0.22.1.tgz", + "integrity": "sha512-ombpBQqR1zYjtr4/7s8EvIVx/ymtiflWksXropYz81o0I9Bm9Os1UPuNgjwfT/DEhIit4HMaJhjpKhGkYrOKgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-img-mark": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-img-mark/-/plugin-img-mark-0.22.1.tgz", + "integrity": "sha512-C6i9Tl39pKetoH83XBkj5/hfN+uK6N8Fw8ltyERNki916vzUCci/09NfrT92MF/AfJPoDJQYALy7qdgOVjnT9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-img-size": { + "version": "0.22.2", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-img-size/-/plugin-img-size-0.22.2.tgz", + "integrity": "sha512-+2+HpV5wZ3ZvFAs2alOiftDO635UbbOTr9uRQ0LZi/1lIZzKa0GE8sxYmtAZXRkdbGCj1uN6puoT7Bc7fdBs7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-include": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-include/-/plugin-include-0.22.1.tgz", + "integrity": "sha512-ylP4euox7PDH+Vg9XXuLwDIWpy/HHzeHaO+V8GEnu/QS8PgBEJ0981wLtIik53Fq8FdHgQ2rKRRhBaJ04GNUjQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@types/markdown-it": "^14.1.2", + "upath": "^2.0.1" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-katex-slim": { + "version": "0.23.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-katex-slim/-/plugin-katex-slim-0.23.1.tgz", + "integrity": "sha512-oNao/gmUrtNSCFffGhCPWxZ9UHR2jpbB+GRXB7UQabl9ijIV6LZgUM3vjSda1c47s7c7ac+9P0J/GYaxC1GHFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@mdit/plugin-tex": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "katex": "^0.16.9", + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "katex": { + "optional": true + }, + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-mark": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-mark/-/plugin-mark-0.22.1.tgz", + "integrity": "sha512-2blMM/gGyqPARvaal44mt0pOi+8phmFpj7D4suG4qMd1j8aGDZl9R7p8inbr3BePOady1eloh0SWSCdskmutZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-mathjax-slim": { + "version": "0.23.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-mathjax-slim/-/plugin-mathjax-slim-0.23.1.tgz", + "integrity": "sha512-32FkYqLrL6YXbtXUU8tJFRTVwu+bZJo50mCFcVt+b5UA1AWSc7UY3qsyG7iY/4dho7qU/NdB2ABTadGOR9EgsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-tex": "0.22.1", + "@types/markdown-it": "^14.1.2", + "upath": "^2.0.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0", + "mathjax-full": "^3.2.2" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + }, + "mathjax-full": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-plantuml": { + "version": "0.22.2", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-plantuml/-/plugin-plantuml-0.22.2.tgz", + "integrity": "sha512-PjfYAKaPhnip2f51lYSiKz9cJWvMw+JfZZp/Yzdmmdtfi/la5uzilZfxVRDboJJ6qZ1qnp0pxNTVIcDb65s6DA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-uml": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-sub": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-sub/-/plugin-sub-0.22.1.tgz", + "integrity": "sha512-ZEEcxk2cB0mRHwBijxCwG8xf3LH/ax2WH+0yMMVaQ4fZuszZzAnHGOlEn/ijLVl2gmSF0lwlJXCz6q7rzi3r0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-sup": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-sup/-/plugin-sup-0.22.1.tgz", + "integrity": "sha512-B0ez+dt1tjX2gxcS6ShF+ddXU6X7wDwVnz1rB4aXo5PhvCRkBWpuXbFJT2gy5TIAG7/B4AHQww2KeEYhd56NUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-tab": { + "version": "0.22.2", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-tab/-/plugin-tab-0.22.2.tgz", + "integrity": "sha512-3BbC3GTCiws2HsFG+BsXhuss6O90OLIvnBRrKP4IQtMIWlcEaxDf1nNvYYFt3sWipSGI4JuO3S7BxQ1dZkabKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-tasklist": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-tasklist/-/plugin-tasklist-0.22.1.tgz", + "integrity": "sha512-mn09Sm0fMV6ql3wb6TuoAai4gmnybvq09KeHa2ckBKKO/fwqVqCvOUI2yvZc3IrYMR+4B2WlBtyCBk5v11H9Uw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-tex": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-tex/-/plugin-tex-0.22.1.tgz", + "integrity": "sha512-sCoOHznJjECeWCd0SggYpiZfwDfGGZ5mN3sKQA9PCHVRRXHh0dEl3wwNNvp/L8f6jZ4SpG5mxtPqBvxlPbE5nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mdit/plugin-uml": { + "version": "0.22.1", + "resolved": "https://registry.npmmirror.com/@mdit/plugin-uml/-/plugin-uml-0.22.1.tgz", + "integrity": "sha512-ioSQ1HKfbBgf/euOtJjVCHlxgvx6UStuy6J4ftLEUHT4S1Jl22d1UrhEf0yZ/tMlYpWKgjh9pGUL68T4ze+VSA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/helper": "0.22.1", + "@types/markdown-it": "^14.1.2" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "markdown-it": "^14.1.0" + }, + "peerDependenciesMeta": { + "markdown-it": { + "optional": true + } + } + }, + "node_modules/@mermaid-js/parser": { + "version": "0.6.3", + "resolved": "https://registry.npmmirror.com/@mermaid-js/parser/-/parser-0.6.3.tgz", + "integrity": "sha512-lnjOhe7zyHjc+If7yT4zoedx2vo4sHaTmtkl1+or8BRTnCtDmcTpAjpzDSfCZrshM5bCoz0GyidzadJAH1xobA==", + "license": "MIT", + "dependencies": { + "langium": "3.3.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pengzhanbo/utils": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/@pengzhanbo/utils/-/utils-2.1.0.tgz", + "integrity": "sha512-mdcNoYZ6S9EhRqAIpjnD2dcFxaP7E9JdMrP2z5uXuEesddNcmQ4GvEs/wcyxKmFXqeFdL88fJu7l8a6hNN4zPQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@pkgr/core": { + "version": "0.2.9", + "resolved": "https://registry.npmmirror.com/@pkgr/core/-/core-0.2.9.tgz", + "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/pkgr" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.29", + "resolved": "https://registry.npmmirror.com/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.29.tgz", + "integrity": "sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.0.tgz", + "integrity": "sha512-VxDYCDqOaR7NXzAtvRx7G1u54d2kEHopb28YH/pKzY6y0qmogP3gG7CSiWsq9WvDFxOQMpNEyjVAHZFXfH3o/A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.0.tgz", + "integrity": "sha512-pqDirm8koABIKvzL59YI9W9DWbRlTX7RWhN+auR8HXJxo89m4mjqbah7nJZjeKNTNYopqL+yGg+0mhCpf3xZtQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.0.tgz", + "integrity": "sha512-YCdWlY/8ltN6H78HnMsRHYlPiKvqKagBP1r+D7SSylxX+HnsgXGCmLiV3Y4nSyY9hW8qr8U9LDUx/Lo7M6MfmQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.0.tgz", + "integrity": "sha512-z4nw6y1j+OOSGzuVbSWdIp1IUks9qNw4dc7z7lWuWDKojY38VMWBlEN7F9jk5UXOkUcp97vA1N213DF+Lz8BRg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.0.tgz", + "integrity": "sha512-Q/dv9Yvyr5rKlK8WQJZVrp5g2SOYeZUs9u/t2f9cQ2E0gJjYB/BWoedXfUT0EcDJefi2zzVfhcOj8drWCzTviw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.0.tgz", + "integrity": "sha512-kdBsLs4Uile/fbjZVvCRcKB4q64R+1mUq0Yd7oU1CMm1Av336ajIFqNFovByipciuUQjBCPMxwJhCgfG2re3rg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.0.tgz", + "integrity": "sha512-aL6hRwu0k7MTUESgkg7QHY6CoqPgr6gdQXRJI1/VbFlUMwsSzPGSR7sG5d+MCbYnJmJwThc2ol3nixj1fvI/zQ==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.0.tgz", + "integrity": "sha512-BTs0M5s1EJejgIBJhCeiFo7GZZ2IXWkFGcyZhxX4+8usnIo5Mti57108vjXFIQmmJaRyDwmV59Tw64Ap1dkwMw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.0.tgz", + "integrity": "sha512-uj672IVOU9m08DBGvoPKPi/J8jlVgjh12C9GmjjBxCTQc3XtVmRkRKyeHSmIKQpvJ7fIm1EJieBUcnGSzDVFyw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.0.tgz", + "integrity": "sha512-/+IVbeDMDCtB/HP/wiWsSzduD10SEGzIZX2945KSgZRNi4TSkjHqRJtNTVtVb8IRwhJ65ssI56krlLik+zFWkw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.0.tgz", + "integrity": "sha512-U1vVzvSWtSMWKKrGoROPBXMh3Vwn93TA9V35PldokHGqiUbF6erSzox/5qrSMKp6SzakvyjcPiVF8yB1xKr9Pg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.0.tgz", + "integrity": "sha512-X/4WfuBAdQRH8cK3DYl8zC00XEE6aM472W+QCycpQJeLWVnHfkv7RyBFVaTqNUMsTgIX8ihMjCvFF9OUgeABzw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.0.tgz", + "integrity": "sha512-xIRYc58HfWDBZoLmWfWXg2Sq8VCa2iJ32B7mqfWnkx5mekekl0tMe7FHpY8I72RXEcUkaWawRvl3qA55og+cwQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.0.tgz", + "integrity": "sha512-mbsoUey05WJIOz8U1WzNdf+6UMYGwE3fZZnQqsM22FZ3wh1N887HT6jAOjXs6CNEK3Ntu2OBsyQDXfIjouI4dw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.0.tgz", + "integrity": "sha512-qP6aP970bucEi5KKKR4AuPFd8aTx9EF6BvutvYxmZuWLJHmnq4LvBfp0U+yFDMGwJ+AIJEH5sIP+SNypauMWzg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.0.tgz", + "integrity": "sha512-nmSVN+F2i1yKZ7rJNKO3G7ZzmxJgoQBQZ/6c4MuS553Grmr7WqR7LLDcYG53Z2m9409z3JLt4sCOhLdbKQ3HmA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.0.tgz", + "integrity": "sha512-2d0qRo33G6TfQVjaMR71P+yJVGODrt5V6+T0BDYH4EMfGgdC/2HWDVjSSFw888GSzAZUwuska3+zxNUCDco6rQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.0.tgz", + "integrity": "sha512-A1JalX4MOaFAAyGgpO7XP5khquv/7xKzLIyLmhNrbiCxWpMlnsTYr8dnsWM7sEeotNmxvSOEL7F65j0HXFcFsw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.0.tgz", + "integrity": "sha512-YQugafP/rH0eOOHGjmNgDURrpYHrIX0yuojOI8bwCyXwxC9ZdTd3vYkmddPX0oHONLXu9Rb1dDmT0VNpjkzGGw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.0.tgz", + "integrity": "sha512-zYdUYhi3Qe2fndujBqL5FjAFzvNeLxtIqfzNEVKD1I7C37/chv1VxhscWSQHTNfjPCrBFQMnynwA3kpZpZ8w4A==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.0.tgz", + "integrity": "sha512-fGk03kQylNaCOQ96HDMeT7E2n91EqvCDd3RwvT5k+xNdFCeMGnj5b5hEgTGrQuyidqSsD3zJDQ21QIaxXqTBJw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.0.tgz", + "integrity": "sha512-6iKDCVSIUQ8jPMoIV0OytRKniaYyy5EbY/RRydmLW8ZR3cEBhxbWl5ro0rkUNe0ef6sScvhbY79HrjRm8i3vDQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/core/-/core-3.13.0.tgz", + "integrity": "sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.13.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.5" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/engine-javascript/-/engine-javascript-3.13.0.tgz", + "integrity": "sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.13.0", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^4.3.3" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/engine-oniguruma/-/engine-oniguruma-3.13.0.tgz", + "integrity": "sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.13.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/langs/-/langs-3.13.0.tgz", + "integrity": "sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.13.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/themes/-/themes-3.13.0.tgz", + "integrity": "sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "3.13.0" + } + }, + "node_modules/@shikijs/transformers": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/transformers/-/transformers-3.13.0.tgz", + "integrity": "sha512-833lcuVzcRiG+fXvgslWsM2f4gHpjEgui1ipIknSizRuTgMkNZupiXE5/TVJ6eSYfhNBFhBZKkReKWO2GgYmqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "3.13.0", + "@shikijs/types": "3.13.0" + } + }, + "node_modules/@shikijs/types": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/@shikijs/types/-/types-3.13.0.tgz", + "integrity": "sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmmirror.com/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@types/d3": { + "version": "7.4.3", + "resolved": "https://registry.npmmirror.com/@types/d3/-/d3-7.4.3.tgz", + "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/@types/d3-array/-/d3-array-3.2.2.tgz", + "integrity": "sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==", + "license": "MIT" + }, + "node_modules/@types/d3-axis": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/@types/d3-axis/-/d3-axis-3.0.6.tgz", + "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-brush": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/@types/d3-brush/-/d3-brush-3.0.6.tgz", + "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-chord": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/@types/d3-chord/-/d3-chord-3.0.6.tgz", + "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-contour": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/@types/d3-contour/-/d3-contour-3.0.6.tgz", + "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", + "license": "MIT", + "dependencies": { + "@types/d3-array": "*", + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmmirror.com/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==", + "license": "MIT" + }, + "node_modules/@types/d3-dispatch": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/@types/d3-dispatch/-/d3-dispatch-3.0.7.tgz", + "integrity": "sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==", + "license": "MIT" + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-dsv": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", + "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-fetch": { + "version": "3.0.7", + "resolved": "https://registry.npmmirror.com/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", + "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", + "license": "MIT", + "dependencies": { + "@types/d3-dsv": "*" + } + }, + "node_modules/@types/d3-force": { + "version": "3.0.10", + "resolved": "https://registry.npmmirror.com/@types/d3-force/-/d3-force-3.0.10.tgz", + "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==", + "license": "MIT" + }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", + "license": "MIT" + }, + "node_modules/@types/d3-geo": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@types/d3-geo/-/d3-geo-3.1.0.tgz", + "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/d3-hierarchy": { + "version": "3.1.7", + "resolved": "https://registry.npmmirror.com/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz", + "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/@types/d3-path/-/d3-path-3.1.1.tgz", + "integrity": "sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==", + "license": "MIT" + }, + "node_modules/@types/d3-polygon": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", + "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==", + "license": "MIT" + }, + "node_modules/@types/d3-quadtree": { + "version": "3.0.6", + "resolved": "https://registry.npmmirror.com/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", + "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==", + "license": "MIT" + }, + "node_modules/@types/d3-random": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/@types/d3-random/-/d3-random-3.0.3.tgz", + "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.9", + "resolved": "https://registry.npmmirror.com/@types/d3-scale/-/d3-scale-4.0.9.tgz", + "integrity": "sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmmirror.com/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==", + "license": "MIT" + }, + "node_modules/@types/d3-selection": { + "version": "3.0.11", + "resolved": "https://registry.npmmirror.com/@types/d3-selection/-/d3-selection-3.0.11.tgz", + "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==", + "license": "MIT" + }, + "node_modules/@types/d3-shape": { + "version": "3.1.7", + "resolved": "https://registry.npmmirror.com/@types/d3-shape/-/d3-shape-3.1.7.tgz", + "integrity": "sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@types/d3-time/-/d3-time-3.0.4.tgz", + "integrity": "sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==", + "license": "MIT" + }, + "node_modules/@types/d3-time-format": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", + "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/d3-transition": { + "version": "3.0.9", + "resolved": "https://registry.npmmirror.com/@types/d3-transition/-/d3-transition-3.0.9.tgz", + "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==", + "license": "MIT", + "dependencies": { + "@types/d3-selection": "*" + } + }, + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmmirror.com/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "license": "MIT", + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" + } + }, + "node_modules/@types/debug": { + "version": "4.1.12", + "resolved": "https://registry.npmmirror.com/@types/debug/-/debug-4.1.12.tgz", + "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/ms": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/fs-extra": { + "version": "11.0.4", + "resolved": "https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-11.0.4.tgz", + "integrity": "sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/jsonfile": "*", + "@types/node": "*" + } + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://registry.npmmirror.com/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, + "node_modules/@types/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/@types/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-UP28RddqY8xcU0SCEp9YKutQICXpaAq9N8U2klqF5hegGha7KzTOL8EdhIIV3bOSGBzjEpN9bU/d+nNZBdJYVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/jsonfile": { + "version": "6.1.4", + "resolved": "https://registry.npmmirror.com/@types/jsonfile/-/jsonfile-6.1.4.tgz", + "integrity": "sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/markdown-it": { + "version": "14.1.2", + "resolved": "https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-14.1.2.tgz", + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/linkify-it": "^5", + "@types/mdurl": "^2" + } + }, + "node_modules/@types/markdown-it-emoji": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/@types/markdown-it-emoji/-/markdown-it-emoji-3.0.1.tgz", + "integrity": "sha512-cz1j8R35XivBqq9mwnsrP2fsz2yicLhB8+PDtuVkKOExwEdsVBNI+ROL3sbhtR5occRZ66vT0QnwFZCqdjf3pA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/markdown-it": "^14" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@types/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/ms": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/@types/ms/-/ms-2.1.0.tgz", + "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.5.2", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-24.5.2.tgz", + "integrity": "sha512-FYxk1I7wPv3K2XBaoyH2cTnocQEu8AOZ60hPbsyukMPLv5/5qr7V1i8PLHdl6Zf87I+xZXFvPCXYjiTFq+YSDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.12.0" + } + }, + "node_modules/@types/sax": { + "version": "1.2.7", + "resolved": "https://registry.npmmirror.com/@types/sax/-/sax-1.2.7.tgz", + "integrity": "sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmmirror.com/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.21", + "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", + "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-6.0.1.tgz", + "integrity": "sha512-+MaE752hU0wfPFJEUAIxqw18+20euHHdxVtMvbFcOEpjEyfqXH/5DCoTHiVJ0J29EhTJdoTkjEv5YBKU9dnoTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rolldown/pluginutils": "1.0.0-beta.29" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.21.tgz", + "integrity": "sha512-8i+LZ0vf6ZgII5Z9XmUvrCyEzocvWT+TeR2VBUVlzIH6Tyv57E20mPZ1bCS+tbejgUgmjrEh7q/0F0bibskAmw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.3", + "@vue/shared": "3.5.21", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.21.tgz", + "integrity": "sha512-jNtbu/u97wiyEBJlJ9kmdw7tAr5Vy0Aj5CgQmo+6pxWNQhXZDPsRr1UWPN4v3Zf82s2H3kF51IbzZ4jMWAgPlQ==", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.21", + "@vue/shared": "3.5.21" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.21.tgz", + "integrity": "sha512-SXlyk6I5eUGBd2v8Ie7tF6ADHE9kCR6mBEuPyH1nUZ0h6Xx6nZI29i12sJKQmzbDyr2tUHMhhTt51Z6blbkTTQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.3", + "@vue/compiler-core": "3.5.21", + "@vue/compiler-dom": "3.5.21", + "@vue/compiler-ssr": "3.5.21", + "@vue/shared": "3.5.21", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.18", + "postcss": "^8.5.6", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.21.tgz", + "integrity": "sha512-vKQ5olH5edFZdf5ZrlEgSO1j1DMA4u23TVK5XR1uMhvwnYvVdDF0nHXJUblL/GvzlShQbjhZZ2uvYmDlAbgo9w==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.21", + "@vue/shared": "3.5.21" + } + }, + "node_modules/@vue/devtools-api": { + "version": "7.7.7", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.7.tgz", + "integrity": "sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-kit": "^7.7.7" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.7.7", + "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.7.tgz", + "integrity": "sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-shared": "^7.7.7", + "birpc": "^2.3.0", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.2" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.7.7", + "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.7.tgz", + "integrity": "sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.21.tgz", + "integrity": "sha512-3ah7sa+Cwr9iiYEERt9JfZKPw4A2UlbY8RbbnH2mGCE8NwHkhmlZt2VsH0oDA3P08X3jJd29ohBDtX+TbD9AsA==", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.21" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.21.tgz", + "integrity": "sha512-+DplQlRS4MXfIf9gfD1BOJpk5RSyGgGXD/R+cumhe8jdjUcq/qlxDawQlSI8hCKupBlvM+3eS1se5xW+SuNAwA==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.21", + "@vue/shared": "3.5.21" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.21.tgz", + "integrity": "sha512-3M2DZsOFwM5qI15wrMmNF5RJe1+ARijt2HM3TbzBbPSuBHOQpoidE+Pa+XEaVN+czbHf81ETRoG1ltztP2em8w==", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.21", + "@vue/runtime-core": "3.5.21", + "@vue/shared": "3.5.21", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.21.tgz", + "integrity": "sha512-qr8AqgD3DJPJcGvLcJKQo2tAc8OnXRcfxhOJCPF+fcfn5bBGz7VCcO7t+qETOPxpWK1mgysXvVT/j+xWaHeMWA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.21", + "@vue/shared": "3.5.21" + }, + "peerDependencies": { + "vue": "3.5.21" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.21.tgz", + "integrity": "sha512-+2k1EQpnYuVuu3N7atWyG3/xoFWIVJZq4Mz8XNOdScFI0etES75fbny/oU4lKWk/577P1zmg0ioYvpGEDZ3DLw==", + "license": "MIT" + }, + "node_modules/@vuepress-plume/plugin-fonts": { + "version": "1.0.0-rc.164", + "resolved": "https://registry.npmmirror.com/@vuepress-plume/plugin-fonts/-/plugin-fonts-1.0.0-rc.164.tgz", + "integrity": "sha512-DJVXo5lxHf3rNXfhXxTocCARnKs8X2if4dfTKsArIdY4je7LnB4YoIohy8broHoxUGNkiBNfS8cpdZfSdn5DwQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress-plume/plugin-search": { + "version": "1.0.0-rc.164", + "resolved": "https://registry.npmmirror.com/@vuepress-plume/plugin-search/-/plugin-search-1.0.0-rc.164.tgz", + "integrity": "sha512-hWaDW6lCqF1oBaemcOrL5axm+hSxHwoUtxKW7cUv/mtrFQ3T7zhkH9Fu37W5lggPJWhfBTTt6Uc62FJlYHn0aw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.9.0", + "@vueuse/integrations": "^13.9.0", + "chokidar": "4.0.3", + "focus-trap": "^7.6.5", + "mark.js": "^8.11.1", + "minisearch": "^7.2.0", + "p-map": "^7.0.3", + "vue": "^3.5.21" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress-plume/plugin-search/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@vuepress-plume/plugin-search/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@vuepress/bundler-vite": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/bundler-vite/-/bundler-vite-2.0.0-rc.24.tgz", + "integrity": "sha512-prgT3f6xOBC43rhfvzlfXY0wJKsI+oV5RC4s0YyVPZ0s5VQKI3RRD1aY+euiVFPks3Mjx+DxEtKBOLsJ7I6crA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitejs/plugin-vue": "^6.0.0", + "@vuepress/bundlerutils": "2.0.0-rc.24", + "@vuepress/client": "2.0.0-rc.24", + "@vuepress/core": "2.0.0-rc.24", + "@vuepress/shared": "2.0.0-rc.24", + "@vuepress/utils": "2.0.0-rc.24", + "autoprefixer": "^10.4.21", + "connect-history-api-fallback": "^2.0.0", + "postcss": "^8.5.6", + "postcss-load-config": "^6.0.1", + "rollup": "^4.44.1", + "vite": "~7.0.0", + "vue": "^3.5.17", + "vue-router": "^4.5.1" + } + }, + "node_modules/@vuepress/bundlerutils": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/bundlerutils/-/bundlerutils-2.0.0-rc.24.tgz", + "integrity": "sha512-gtO0zhb57SyDotgdSI+TMAwJKg7KC75/G4UoWRwkyAHREsbWUInHQfXzzaFMnKmkdcB9YeXXbOnWGwZjRn74ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/client": "2.0.0-rc.24", + "@vuepress/core": "2.0.0-rc.24", + "@vuepress/shared": "2.0.0-rc.24", + "@vuepress/utils": "2.0.0-rc.24", + "vue": "^3.5.17", + "vue-router": "^4.5.1" + } + }, + "node_modules/@vuepress/cli": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/cli/-/cli-2.0.0-rc.24.tgz", + "integrity": "sha512-3IJtADHg67U6q3i1n3klbBtm5TZZI3uO+MkEDq8efgK7kk27LAt+7GhxqxZCq5xJ+GPNZqElc+t3+eG9biDNFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/core": "2.0.0-rc.24", + "@vuepress/shared": "2.0.0-rc.24", + "@vuepress/utils": "2.0.0-rc.24", + "cac": "^6.7.14", + "chokidar": "^3.6.0", + "envinfo": "^7.14.0", + "esbuild": "^0.25.5" + }, + "bin": { + "vuepress-cli": "bin/vuepress.js" + } + }, + "node_modules/@vuepress/client": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/client/-/client-2.0.0-rc.24.tgz", + "integrity": "sha512-7W1FbrtsNDdWqkNoLfZKpZl8hv+j6sGCdmKtq90bRwzbaM+P2FJ6WYQ4Px4o/N0pqvr70k1zQe3A42QIeH0Ybw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^7.7.7", + "@vue/devtools-kit": "^7.7.7", + "@vuepress/shared": "2.0.0-rc.24", + "vue": "^3.5.17", + "vue-router": "^4.5.1" + } + }, + "node_modules/@vuepress/core": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/core/-/core-2.0.0-rc.24.tgz", + "integrity": "sha512-NfNg6+vo5BJHBsLpoiXO8pU0zKaYCZxQinidW9r4KclNfZzC8PMkeBMeCT0uxcrb+XCaiHOrW19pF0/6NYNs0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/client": "2.0.0-rc.24", + "@vuepress/markdown": "2.0.0-rc.24", + "@vuepress/shared": "2.0.0-rc.24", + "@vuepress/utils": "2.0.0-rc.24", + "vue": "^3.5.17" + } + }, + "node_modules/@vuepress/helper": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/helper/-/helper-2.0.0-rc.112.tgz", + "integrity": "sha512-gj19xHyYbG0wygcoJ6YypCNS+nybVt2AEJFyHTFvl+KiB2BfBhKWuCpWufp4c4Od1xkru4y56I+pSU2b8CGIBQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/shared": "^3.5.17", + "@vueuse/core": "^13.5.0", + "cheerio": "^1.1.0", + "fflate": "^0.8.2", + "gray-matter": "^4.0.3", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/highlighter-helper": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/highlighter-helper/-/highlighter-helper-2.0.0-rc.112.tgz", + "integrity": "sha512-gDNGSOFR6yXS567ObWqn7vc8O8ZqCl1kn5wDdBfa0qe011CQgsJKQbGH6tFxfbi0JznZ1bjpKZmEaUKxsFRbtg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@vueuse/core": "^13.5.0", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "@vueuse/core": { + "optional": true + } + } + }, + "node_modules/@vuepress/markdown": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/markdown/-/markdown-2.0.0-rc.24.tgz", + "integrity": "sha512-yYSo89cFbti2F/JWX3Odx9jbPje20PuVO+0SLkZX9AP5wuOv79Mx5QeRVEUS1YfD3faM98ya5LoIyuYWjPjJHw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/plugin-component": "^2.1.4", + "@mdit-vue/plugin-frontmatter": "^2.1.4", + "@mdit-vue/plugin-headers": "^2.1.4", + "@mdit-vue/plugin-sfc": "^2.1.4", + "@mdit-vue/plugin-title": "^2.1.4", + "@mdit-vue/plugin-toc": "^2.1.4", + "@mdit-vue/shared": "^2.1.4", + "@mdit-vue/types": "^2.1.4", + "@types/markdown-it": "^14.1.2", + "@types/markdown-it-emoji": "^3.0.1", + "@vuepress/shared": "2.0.0-rc.24", + "@vuepress/utils": "2.0.0-rc.24", + "markdown-it": "^14.1.0", + "markdown-it-anchor": "^9.2.0", + "markdown-it-emoji": "^3.0.0", + "mdurl": "^2.0.0" + } + }, + "node_modules/@vuepress/plugin-cache": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-cache/-/plugin-cache-2.0.0-rc.112.tgz", + "integrity": "sha512-CgTxOKQk4JYIRJ9464J0p98I5Kb0LG5Sz38zaIcopf9GlE6AeOnevyz2ywWVNHxD+4+DljLacRy6dhmQOciI2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ci-info": "^4.3.0", + "lru-cache": "^11.1.0" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-comment": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-comment/-/plugin-comment-2.0.0-rc.112.tgz", + "integrity": "sha512-Ty7HE6oUI5Inlth4ykAWf7sug8kY7LD5t77p9zKLpITffRN6eIRipgAEyWRnogmwYYu6lj8THjrAj6Jc7+ACJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "giscus": "^1.6.0", + "vue": "^3.5.17" + }, + "peerDependencies": { + "@waline/client": "^3.5.5", + "artalk": "^2.9.1", + "twikoo": "^1.6.41", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "@waline/client": { + "optional": true + }, + "artalk": { + "optional": true + }, + "twikoo": { + "optional": true + } + } + }, + "node_modules/@vuepress/plugin-copy-code": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-copy-code/-/plugin-copy-code-2.0.0-rc.112.tgz", + "integrity": "sha512-P0wrNU5O95/1s8LgXHNoMka66VhaJ9K9xiqVI8afJxJKtKOaanQ15pXqlJlhYIjnxMfV9Rh3YvM5qwiB9WSEyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-docsearch": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-docsearch/-/plugin-docsearch-2.0.0-rc.112.tgz", + "integrity": "sha512-78R6bY2vtRAmY/UyzqU4SOiVCM5HKUcHl33FtwIilDQktKQt1oX3Jx7txvHhQZIvgtq/lbIKM/oLpR80IxCFJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@docsearch/css": "^3.9.0", + "@docsearch/js": "^3.9.0", + "@docsearch/react": "^3.9.0", + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "ts-debounce": "^4.0.0", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-git": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-git/-/plugin-git-2.0.0-rc.112.tgz", + "integrity": "sha512-OKnw1wSgJuKFE6z2aFoqg+ldjUSRuTahzW8DVC9jOy32Uss0LDo0zXiL4UCk+XAkJXfERUOc2pXYOMs5seGDmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "rehype-parse": "^9.0.1", + "rehype-sanitize": "^6.0.0", + "rehype-stringify": "^10.0.1", + "unified": "^11.0.5", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-markdown-chart": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-markdown-chart/-/plugin-markdown-chart-2.0.0-rc.112.tgz", + "integrity": "sha512-mvmtYKSwD9m5B0ElrLHhqlwudkJbKtz9NstS5CmZ2exFOBkOGQBDeE9kbZGf2vUxHYbCZQQzjqAJB2bIIb+VZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-container": "^0.22.1", + "@mdit/plugin-plantuml": "^0.22.2", + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "vue": "^3.5.17" + }, + "peerDependencies": { + "chart.js": "^4.4.7", + "echarts": "^5.6.0", + "flowchart.ts": "^3.0.1", + "markmap-lib": "^0.18.11", + "markmap-toolbar": "^0.18.10", + "markmap-view": "^0.18.10", + "mermaid": "^11.8.0", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "chart.js": { + "optional": true + }, + "echarts": { + "optional": true + }, + "flowchart.ts": { + "optional": true + }, + "markmap-lib": { + "optional": true + }, + "markmap-toolbar": { + "optional": true + }, + "markmap-view": { + "optional": true + }, + "mermaid": { + "optional": true + } + } + }, + "node_modules/@vuepress/plugin-markdown-hint": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-markdown-hint/-/plugin-markdown-hint-2.0.0-rc.112.tgz", + "integrity": "sha512-H4QCUIF3gvTh+/Etz0g3MBGCk48MLm9Dep/hJl2//Ke56lNSmldMac059itL8rzPQ4ntl0HoI55060e4zOprxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-alert": "^0.22.2", + "@mdit/plugin-container": "^0.22.1", + "@types/markdown-it": "^14.1.2", + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-markdown-image": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-markdown-image/-/plugin-markdown-image-2.0.0-rc.112.tgz", + "integrity": "sha512-E2Qju3SKtCLvRkBM1ZvtBWvOZW+eoIr2n1ZBawxcj9k1Zt74vvEy0BP7pKOSP5Qu9bwY6W1MAnT3H+R3QaDP+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-figure": "^0.22.1", + "@mdit/plugin-img-lazyload": "^0.22.1", + "@mdit/plugin-img-mark": "^0.22.1", + "@mdit/plugin-img-size": "^0.22.2", + "@types/markdown-it": "^14.1.2", + "@vuepress/helper": "2.0.0-rc.112" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-markdown-include": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-markdown-include/-/plugin-markdown-include-2.0.0-rc.112.tgz", + "integrity": "sha512-zea8MlrUKbgAJm35Aqf/lDLz5Nu4LhVFV1C/IY0OlcvLwEbdyifPi/l1ZB+b2kfrW81GiuEb24a5Nr1JpDx2Gg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-include": "^0.22.1", + "@types/markdown-it": "^14.1.2", + "@vuepress/helper": "2.0.0-rc.112" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-markdown-math": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-markdown-math/-/plugin-markdown-math-2.0.0-rc.112.tgz", + "integrity": "sha512-ZsIT3UKokslL+NUrdV5xTaOfuqEn41ZIlIL4PfCCgCpvUap/ziHbpQizU3sVgciq88mDsYYteVqgBqXcQzNiig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-katex-slim": "^0.23.1", + "@mdit/plugin-mathjax-slim": "^0.23.1", + "@types/markdown-it": "^14.1.2", + "@vuepress/helper": "2.0.0-rc.112", + "vue": "^3.5.17" + }, + "peerDependencies": { + "katex": "^0.16.21", + "mathjax-full": "^3.2.2", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "katex": { + "optional": true + }, + "mathjax-full": { + "optional": true + } + } + }, + "node_modules/@vuepress/plugin-nprogress": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-nprogress/-/plugin-nprogress-2.0.0-rc.112.tgz", + "integrity": "sha512-kNz7SvVx7Z09aQFf4iwQ3C9h1WZBuefa7cKyYpSrWYFciFU2do98SUg3C5Wi8ttJ7oPcM+NmSiGbjJrjwpncig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-photo-swipe": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-photo-swipe/-/plugin-photo-swipe-2.0.0-rc.112.tgz", + "integrity": "sha512-WkkPC9rjwAQCMuVwUqCl14hO8z2Odv5k1yF2pWH2XGBja5VyBJK5t+XUmS1ak7zcjTz40+AYmauglbXo06RUSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "photoswipe": "^5.4.4", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-reading-time": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-reading-time/-/plugin-reading-time-2.0.0-rc.112.tgz", + "integrity": "sha512-76t64Uvr+1ADAq1z/DbU9ftAXKhVOBjxGKplRkbffobyTQ0mrDjDBM2rArytQiK+8utDgGPTjblCt+oJkxovzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-replace-assets": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-replace-assets/-/plugin-replace-assets-2.0.0-rc.112.tgz", + "integrity": "sha512-i502eqHUhZU+9kBALOHQ81t/aoJU10i6IegztXE+/ZOnKh8ryeW5q4o8b1uDUQqfEazo4kM4tjGC+l2n//5T3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "magic-string": "^0.30.17", + "unplugin": "^2.3.5" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-seo": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-seo/-/plugin-seo-2.0.0-rc.112.tgz", + "integrity": "sha512-WWZ0Dx1MxF9Mj6UVdB8TP5GozTNv51ZQQP6EAKYzprKCw0RVQYg5/tXWlg7IWcSw72go5iFiMBj5wZQigN+t4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-shiki": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-shiki/-/plugin-shiki-2.0.0-rc.112.tgz", + "integrity": "sha512-jXPJuAl9zNrYqdMgLRdAakrYCJcHJJCoIJ/73ODtejfU1+78s7PL6HheFEyakWC8MGyReGw+e0vJs+9NisXxIQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/transformers": "^3.7.0", + "@vuepress/helper": "2.0.0-rc.112", + "@vuepress/highlighter-helper": "2.0.0-rc.112", + "nanoid": "^5.1.5", + "shiki": "^3.7.0", + "synckit": "^0.11.8" + }, + "peerDependencies": { + "@vuepress/shiki-twoslash": "2.0.0-rc.112", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "@vuepress/shiki-twoslash": { + "optional": true + } + } + }, + "node_modules/@vuepress/plugin-shiki/node_modules/nanoid": { + "version": "5.1.5", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.5.tgz", + "integrity": "sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/@vuepress/plugin-sitemap": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-sitemap/-/plugin-sitemap-2.0.0-rc.112.tgz", + "integrity": "sha512-64a/Kpu+2zY8r7o5AqFbZ1M3VKp44Z3RR6mGcr/747BEzVSl7ULk5ctx7Smtqm6Z2sSLEEU1aC6ZAtV5I+jqeQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "sitemap": "^8.0.0" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-umami-analytics": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-umami-analytics/-/plugin-umami-analytics-2.0.0-rc.112.tgz", + "integrity": "sha512-Y0ZTdmX8oayiz+y1NbJ6+LyHXV9IoP4lBu+lwSNK+Y7fo+KE96grOzvjeYJK4DzNFYjuNk+KqR8W1DgOih6anw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "vue": "^3.5.17" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/plugin-watermark": { + "version": "2.0.0-rc.112", + "resolved": "https://registry.npmmirror.com/@vuepress/plugin-watermark/-/plugin-watermark-2.0.0-rc.112.tgz", + "integrity": "sha512-80oklpp8u4embZ/pgpuS4nsVuXq3xpB23upEvAi605K82M0TyBJKXWle1tUtKkgyMY3BUl51CnUmAmjF28cQhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.5.0", + "vue": "^3.5.17", + "watermark-js-plus": "^1.6.2" + }, + "peerDependencies": { + "vuepress": "2.0.0-rc.24" + } + }, + "node_modules/@vuepress/shared": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/shared/-/shared-2.0.0-rc.24.tgz", + "integrity": "sha512-CAmJGMcDV5DnFEJ74f7IdCms2CBl8Md62uWbgAW8wEYiYanjRM8Rr1oIrz+cWoBSnWPf1HyPR3JoKYgw7OW4bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit-vue/types": "^2.1.4" + } + }, + "node_modules/@vuepress/utils": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/@vuepress/utils/-/utils-2.0.0-rc.24.tgz", + "integrity": "sha512-7D6o12Y64efevSdp+k84ivMZ3dSkZjQwbn79ywbHVbYtoZikvnpTE5GuG7lFOLcF3qZWQVqi7sRJVJdZnH9DuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/debug": "^4.1.12", + "@types/fs-extra": "^11.0.4", + "@types/hash-sum": "^1.0.2", + "@vuepress/shared": "2.0.0-rc.24", + "debug": "^4.4.1", + "fs-extra": "^11.3.0", + "globby": "^14.1.0", + "hash-sum": "^2.0.0", + "ora": "^8.2.0", + "picocolors": "^1.1.1", + "upath": "^2.0.1" + } + }, + "node_modules/@vueuse/core": { + "version": "13.9.0", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-13.9.0.tgz", + "integrity": "sha512-ts3regBQyURfCE2BcytLqzm8+MmLlo5Ln/KLoxDVcsZ2gzIwVNnQpQOL/UKV8alUqjSZOlpFZcRNsLRqj+OzyA==", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.21", + "@vueuse/metadata": "13.9.0", + "@vueuse/shared": "13.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vue": "^3.5.0" + } + }, + "node_modules/@vueuse/integrations": { + "version": "13.9.0", + "resolved": "https://registry.npmmirror.com/@vueuse/integrations/-/integrations-13.9.0.tgz", + "integrity": "sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vueuse/core": "13.9.0", + "@vueuse/shared": "13.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "async-validator": "^4", + "axios": "^1", + "change-case": "^5", + "drauu": "^0.4", + "focus-trap": "^7", + "fuse.js": "^7", + "idb-keyval": "^6", + "jwt-decode": "^4", + "nprogress": "^0.2", + "qrcode": "^1.5", + "sortablejs": "^1", + "universal-cookie": "^7 || ^8", + "vue": "^3.5.0" + }, + "peerDependenciesMeta": { + "async-validator": { + "optional": true + }, + "axios": { + "optional": true + }, + "change-case": { + "optional": true + }, + "drauu": { + "optional": true + }, + "focus-trap": { + "optional": true + }, + "fuse.js": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "jwt-decode": { + "optional": true + }, + "nprogress": { + "optional": true + }, + "qrcode": { + "optional": true + }, + "sortablejs": { + "optional": true + }, + "universal-cookie": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "13.9.0", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-13.9.0.tgz", + "integrity": "sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "13.9.0", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-13.9.0.tgz", + "integrity": "sha512-e89uuTLMh0U5cZ9iDpEI2senqPGfbPRTHM/0AaQkcxnpqjkZqDYP8rpfm7edOz8s+pOCOROEy1PIveSW8+fL5g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vue": "^3.5.0" + } + }, + "node_modules/@waline/api": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/@waline/api/-/api-1.0.0.tgz", + "integrity": "sha512-o0lWjt+/oZH1/4q3DJxTf5kdkgNbSmoLRXIiGznW225A6hq9/9IkOO1DiAijIsxGYJS6psFC+58+IzkD1EerBA==", + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@waline/client": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/@waline/client/-/client-3.6.0.tgz", + "integrity": "sha512-GzRHOpyveRlJamS/QOQ6OItYzvU6px4wtb9enGiwtWcODHSgU+21GZd++czjLwwiyiEgMNOCe8Wqll4ianI38w==", + "license": "MIT", + "dependencies": { + "@vueuse/core": "^13.5.0", + "@waline/api": "1.0.0", + "autosize": "^6.0.1", + "marked": "^16.0.0", + "marked-highlight": "^2.2.2", + "recaptcha-v3": "^1.11.3", + "vue": "^3.5.17" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@waline/client/node_modules/marked": { + "version": "16.3.0", + "resolved": "https://registry.npmmirror.com/marked/-/marked-16.3.0.tgz", + "integrity": "sha512-K3UxuKu6l6bmA5FUwYho8CfJBlsUWAooKtdGgMcERSpF7gcBUrCGsLH7wDaaNOzwq18JzSUDyoEb/YsrqMac3w==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 20" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmmirror.com/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/algoliasearch": { + "version": "5.37.0", + "resolved": "https://registry.npmmirror.com/algoliasearch/-/algoliasearch-5.37.0.tgz", + "integrity": "sha512-y7gau/ZOQDqoInTQp0IwTOjkrHc4Aq4R8JgpmCleFwiLl+PbN2DMWoDUWZnrK8AhNJwT++dn28Bt4NZYNLAmuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.3.0", + "@algolia/client-abtesting": "5.37.0", + "@algolia/client-analytics": "5.37.0", + "@algolia/client-common": "5.37.0", + "@algolia/client-insights": "5.37.0", + "@algolia/client-personalization": "5.37.0", + "@algolia/client-query-suggestions": "5.37.0", + "@algolia/client-search": "5.37.0", + "@algolia/ingestion": "1.37.0", + "@algolia/monitoring": "1.37.0", + "@algolia/recommend": "5.37.0", + "@algolia/requester-browser-xhr": "5.37.0", + "@algolia/requester-fetch": "5.37.0", + "@algolia/requester-node-http": "5.37.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/artalk": { + "version": "2.9.1", + "resolved": "https://registry.npmmirror.com/artalk/-/artalk-2.9.1.tgz", + "integrity": "sha512-IFo9XqWDalsHy8BsmMA5SSB9bozBa/sBhTm/+O5KwA6DnC95lFKv7C6ScMx/Xa4ue5qSQ7VV5vxRgCh/raohkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "marked": "^14.1.2" + }, + "peerDependencies": { + "marked": "^14.1.0" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmmirror.com/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==", + "dev": true, + "license": "MIT" + }, + "node_modules/autoprefixer": { + "version": "10.4.21", + "resolved": "https://registry.npmmirror.com/autoprefixer/-/autoprefixer-10.4.21.tgz", + "integrity": "sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4", + "caniuse-lite": "^1.0.30001702", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.1.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/autosize": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/autosize/-/autosize-6.0.1.tgz", + "integrity": "sha512-f86EjiUKE6Xvczc4ioP1JBlWG7FKrE13qe/DxBCpe8GCipCq2nFw73aO8QEBKHfSbYGDN5eB9jXWKen7tspDqQ==", + "license": "MIT" + }, + "node_modules/bail": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/bail/-/bail-2.0.2.tgz", + "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/baseline-browser-mapping": { + "version": "2.8.6", + "resolved": "https://registry.npmmirror.com/baseline-browser-mapping/-/baseline-browser-mapping-2.8.6.tgz", + "integrity": "sha512-wrH5NNqren/QMtKUEEJf7z86YjfqW/2uw3IL3/xpqZUC95SSVIFXYQeeGjL6FT/X68IROu6RMehZQS5foy2BXw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/bcrypt-ts": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/bcrypt-ts/-/bcrypt-ts-7.1.0.tgz", + "integrity": "sha512-t/Dqr9YzYmn/+oPQBgotBPUuezpZD5CPBwapM5Ep1p3zsLmEycMdXOfZpWbztSBWJ41DlB7EluJBUDsAGSiUeQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/birpc": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.5.0.tgz", + "integrity": "sha512-VSWO/W6nNQdyP520F1mhf+Lc2f8pjGQOtoHHm7Ze8Go1kX7akpVIrtTa0fn+HB0QJEDVacl6aO08YE0PgXfdnQ==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "license": "ISC" + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.26.2", + "resolved": "https://registry.npmmirror.com/browserslist/-/browserslist-4.26.2.tgz", + "integrity": "sha512-ECFzp6uFOSB+dcZ5BK/IBaGWssbSYBHvuMeMt3MMFyhI0Z8SqGgEkBLARgpRH3hutIgPVsALcMwbDrJqPxQ65A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.8.3", + "caniuse-lite": "^1.0.30001741", + "electron-to-chromium": "^1.5.218", + "node-releases": "^2.0.21", + "update-browserslist-db": "^1.1.3" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmmirror.com/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/call-bound": { + "version": "1.0.4", + "resolved": "https://registry.npmmirror.com/call-bound/-/call-bound-1.0.4.tgz", + "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "get-intrinsic": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001743", + "resolved": "https://registry.npmmirror.com/caniuse-lite/-/caniuse-lite-1.0.30001743.tgz", + "integrity": "sha512-e6Ojr7RV14Un7dz6ASD0aZDmQPT/A+eZU+nuTNfjqmRrmkmQlnTNWH0SKmqagx9PeW87UVqapSurtAXifmtdmw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/cheerio": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/cheerio/-/cheerio-1.1.2.tgz", + "integrity": "sha512-IkxPpb5rS/d1IiLbHMgfPuS0FgiWTtFIm/Nj+2woXDLTZ7fOT2eqzgYbdMlLweqlHbsZjxEChoVK+7iph7jyQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cheerio-select": "^2.1.0", + "dom-serializer": "^2.0.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.2", + "encoding-sniffer": "^0.2.1", + "htmlparser2": "^10.0.0", + "parse5": "^7.3.0", + "parse5-htmlparser2-tree-adapter": "^7.1.0", + "parse5-parser-stream": "^7.1.2", + "undici": "^7.12.0", + "whatwg-mimetype": "^4.0.0" + }, + "engines": { + "node": ">=20.18.1" + }, + "funding": { + "url": "https://github.com/cheeriojs/cheerio?sponsor=1" + } + }, + "node_modules/cheerio-select": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/cheerio-select/-/cheerio-select-2.1.0.tgz", + "integrity": "sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-select": "^5.1.0", + "css-what": "^6.1.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/chevrotain": { + "version": "11.0.3", + "resolved": "https://registry.npmmirror.com/chevrotain/-/chevrotain-11.0.3.tgz", + "integrity": "sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==", + "license": "Apache-2.0", + "dependencies": { + "@chevrotain/cst-dts-gen": "11.0.3", + "@chevrotain/gast": "11.0.3", + "@chevrotain/regexp-to-ast": "11.0.3", + "@chevrotain/types": "11.0.3", + "@chevrotain/utils": "11.0.3", + "lodash-es": "4.17.21" + } + }, + "node_modules/chevrotain-allstar": { + "version": "0.3.1", + "resolved": "https://registry.npmmirror.com/chevrotain-allstar/-/chevrotain-allstar-0.3.1.tgz", + "integrity": "sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==", + "license": "MIT", + "dependencies": { + "lodash-es": "^4.17.21" + }, + "peerDependencies": { + "chevrotain": "^11.0.0" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/ci-info": { + "version": "4.3.0", + "resolved": "https://registry.npmmirror.com/ci-info/-/ci-info-4.3.0.tgz", + "integrity": "sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmmirror.com/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmmirror.com/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "license": "MIT", + "engines": { + "node": ">= 12" + } + }, + "node_modules/confbox": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.2.2.tgz", + "integrity": "sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==", + "license": "MIT" + }, + "node_modules/connect-history-api-fallback": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", + "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-what": "^4.1.8" + }, + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/corser": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/corser/-/corser-2.0.1.tgz", + "integrity": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/cose-base": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/cose-base/-/cose-base-1.0.3.tgz", + "integrity": "sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==", + "license": "MIT", + "dependencies": { + "layout-base": "^1.0.0" + } + }, + "node_modules/create-filter": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/create-filter/-/create-filter-1.1.0.tgz", + "integrity": "sha512-mSHedS8IpVElLHvTFY9Bg+P0Fs5EyOypkoAWQRhSDyl1c2kzzFJVPv9o7ueOaYxmx/Cn4Cl3HWMLny6pE1b/aA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^4.0.2" + } + }, + "node_modules/create-filter/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/css-select": { + "version": "5.2.2", + "resolved": "https://registry.npmmirror.com/css-select/-/css-select-5.2.2.tgz", + "integrity": "sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-what": { + "version": "6.2.2", + "resolved": "https://registry.npmmirror.com/css-what/-/css-what-6.2.2.tgz", + "integrity": "sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/cytoscape": { + "version": "3.33.1", + "resolved": "https://registry.npmmirror.com/cytoscape/-/cytoscape-3.33.1.tgz", + "integrity": "sha512-iJc4TwyANnOGR1OmWhsS9ayRS3s+XQ185FmuHObThD+5AeJCakAAbWv8KimMTt08xCCLNgneQwFp+JRJOr9qGQ==", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/cytoscape-cose-bilkent": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/cytoscape-cose-bilkent/-/cytoscape-cose-bilkent-4.1.0.tgz", + "integrity": "sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==", + "license": "MIT", + "dependencies": { + "cose-base": "^1.0.0" + }, + "peerDependencies": { + "cytoscape": "^3.2.0" + } + }, + "node_modules/cytoscape-fcose": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/cytoscape-fcose/-/cytoscape-fcose-2.2.0.tgz", + "integrity": "sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==", + "license": "MIT", + "dependencies": { + "cose-base": "^2.2.0" + }, + "peerDependencies": { + "cytoscape": "^3.2.0" + } + }, + "node_modules/cytoscape-fcose/node_modules/cose-base": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/cose-base/-/cose-base-2.2.0.tgz", + "integrity": "sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==", + "license": "MIT", + "dependencies": { + "layout-base": "^2.0.0" + } + }, + "node_modules/cytoscape-fcose/node_modules/layout-base": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/layout-base/-/layout-base-2.0.1.tgz", + "integrity": "sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==", + "license": "MIT" + }, + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "license": "ISC", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "license": "ISC", + "dependencies": { + "d3-path": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", + "license": "ISC", + "dependencies": { + "d3-array": "^3.2.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", + "license": "ISC", + "dependencies": { + "delaunator": "5" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-selection": "3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", + "license": "ISC", + "dependencies": { + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-dsv/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", + "license": "ISC", + "dependencies": { + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-sankey": { + "version": "0.12.3", + "resolved": "https://registry.npmmirror.com/d3-sankey/-/d3-sankey-0.12.3.tgz", + "integrity": "sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-array": "1 - 2", + "d3-shape": "^1.2.0" + } + }, + "node_modules/d3-sankey/node_modules/d3-array": { + "version": "2.12.1", + "resolved": "https://registry.npmmirror.com/d3-array/-/d3-array-2.12.1.tgz", + "integrity": "sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==", + "license": "BSD-3-Clause", + "dependencies": { + "internmap": "^1.0.0" + } + }, + "node_modules/d3-sankey/node_modules/d3-path": { + "version": "1.0.9", + "resolved": "https://registry.npmmirror.com/d3-path/-/d3-path-1.0.9.tgz", + "integrity": "sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==", + "license": "BSD-3-Clause" + }, + "node_modules/d3-sankey/node_modules/d3-shape": { + "version": "1.3.7", + "resolved": "https://registry.npmmirror.com/d3-shape/-/d3-shape-1.3.7.tgz", + "integrity": "sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==", + "license": "BSD-3-Clause", + "dependencies": { + "d3-path": "1" + } + }, + "node_modules/d3-sankey/node_modules/internmap": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/internmap/-/internmap-1.0.1.tgz", + "integrity": "sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==", + "license": "ISC" + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale-chromatic": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" + } + }, + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", + "license": "ISC", + "dependencies": { + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/dagre-d3-es": { + "version": "7.0.13", + "resolved": "https://registry.npmjs.org/dagre-d3-es/-/dagre-d3-es-7.0.13.tgz", + "integrity": "sha512-efEhnxpSuwpYOKRm/L5KbqoZmNNukHa/Flty4Wp62JRvgH2ojwVgPgdYyr4twpieZnyRDdIH7PY2mopX26+j2Q==", + "license": "MIT", + "dependencies": { + "d3": "^7.9.0", + "lodash-es": "^4.17.21" + } + }, + "node_modules/dayjs": { + "version": "1.11.18", + "resolved": "https://registry.npmmirror.com/dayjs/-/dayjs-1.11.18.tgz", + "integrity": "sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==", + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmmirror.com/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", + "license": "ISC", + "dependencies": { + "robust-predicates": "^3.0.2" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/dompurify": { + "version": "3.3.0", + "resolved": "https://registry.npmmirror.com/dompurify/-/dompurify-3.3.0.tgz", + "integrity": "sha512-r+f6MYR1gGN1eJv0TVQbhA7if/U7P87cdPl3HN5rikqaBSBxLiCb/b9O+2eG0cxz0ghyU+mU1QkbsOwERMYlWQ==", + "license": "(MPL-2.0 OR Apache-2.0)", + "optionalDependencies": { + "@types/trusted-types": "^2.0.7" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.222", + "resolved": "https://registry.npmmirror.com/electron-to-chromium/-/electron-to-chromium-1.5.222.tgz", + "integrity": "sha512-gA7psSwSwQRE60CEoLz6JBCQPIxNeuzB2nL8vE03GK/OHxlvykbLyeiumQy1iH5C2f3YbRAZpGCMT12a/9ih9w==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "10.5.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-10.5.0.tgz", + "integrity": "sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==", + "dev": true, + "license": "MIT" + }, + "node_modules/encoding-sniffer": { + "version": "0.2.1", + "resolved": "https://registry.npmmirror.com/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz", + "integrity": "sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "^0.6.3", + "whatwg-encoding": "^3.1.1" + }, + "funding": { + "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" + } + }, + "node_modules/encoding-sniffer/node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmmirror.com/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/envinfo": { + "version": "7.14.0", + "resolved": "https://registry.npmmirror.com/envinfo/-/envinfo-7.14.0.tgz", + "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", + "dev": true, + "license": "MIT", + "bin": { + "envinfo": "dist/cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.25.10", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.25.10.tgz", + "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.10", + "@esbuild/android-arm": "0.25.10", + "@esbuild/android-arm64": "0.25.10", + "@esbuild/android-x64": "0.25.10", + "@esbuild/darwin-arm64": "0.25.10", + "@esbuild/darwin-x64": "0.25.10", + "@esbuild/freebsd-arm64": "0.25.10", + "@esbuild/freebsd-x64": "0.25.10", + "@esbuild/linux-arm": "0.25.10", + "@esbuild/linux-arm64": "0.25.10", + "@esbuild/linux-ia32": "0.25.10", + "@esbuild/linux-loong64": "0.25.10", + "@esbuild/linux-mips64el": "0.25.10", + "@esbuild/linux-ppc64": "0.25.10", + "@esbuild/linux-riscv64": "0.25.10", + "@esbuild/linux-s390x": "0.25.10", + "@esbuild/linux-x64": "0.25.10", + "@esbuild/netbsd-arm64": "0.25.10", + "@esbuild/netbsd-x64": "0.25.10", + "@esbuild/openbsd-arm64": "0.25.10", + "@esbuild/openbsd-x64": "0.25.10", + "@esbuild/openharmony-arm64": "0.25.10", + "@esbuild/sunos-x64": "0.25.10", + "@esbuild/win32-arm64": "0.25.10", + "@esbuild/win32-ia32": "0.25.10", + "@esbuild/win32-x64": "0.25.10" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmmirror.com/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "license": "MIT" + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmmirror.com/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "dev": true, + "license": "MIT" + }, + "node_modules/exsolve": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/exsolve/-/exsolve-1.0.7.tgz", + "integrity": "sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==", + "license": "MIT" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmmirror.com/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true, + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fflate": { + "version": "0.8.2", + "resolved": "https://registry.npmmirror.com/fflate/-/fflate-0.8.2.tgz", + "integrity": "sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==", + "dev": true, + "license": "MIT" + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmmirror.com/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/focus-trap": { + "version": "7.6.5", + "resolved": "https://registry.npmmirror.com/focus-trap/-/focus-trap-7.6.5.tgz", + "integrity": "sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tabbable": "^6.2.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmmirror.com/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs-extra": { + "version": "11.3.2", + "resolved": "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.2.tgz", + "integrity": "sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.4.0", + "resolved": "https://registry.npmmirror.com/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz", + "integrity": "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/giscus": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/giscus/-/giscus-1.6.0.tgz", + "integrity": "sha512-Zrsi8r4t1LVW950keaWcsURuZUQwUaMKjvJgTCY125vkW6OiEBkatE7ScJDbpqKHdZwb///7FVC21SE3iFK3PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "lit": "^3.2.1" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "15.15.0", + "resolved": "https://registry.npmmirror.com/globals/-/globals-15.15.0.tgz", + "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "14.1.0", + "resolved": "https://registry.npmmirror.com/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmmirror.com/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/hachure-fill": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/hachure-fill/-/hachure-fill-0.5.2.tgz", + "integrity": "sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==", + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", + "dev": true, + "license": "MIT" + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/hast-util-from-html": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/hast-util-from-html/-/hast-util-from-html-2.0.3.tgz", + "integrity": "sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "devlop": "^1.1.0", + "hast-util-from-parse5": "^8.0.0", + "parse5": "^7.0.0", + "vfile": "^6.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-from-parse5": { + "version": "8.0.3", + "resolved": "https://registry.npmmirror.com/hast-util-from-parse5/-/hast-util-from-parse5-8.0.3.tgz", + "integrity": "sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "devlop": "^1.0.0", + "hastscript": "^9.0.0", + "property-information": "^7.0.0", + "vfile": "^6.0.0", + "vfile-location": "^5.0.0", + "web-namespaces": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-parse-selector": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/hast-util-parse-selector/-/hast-util-parse-selector-4.0.0.tgz", + "integrity": "sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-sanitize": { + "version": "5.0.2", + "resolved": "https://registry.npmmirror.com/hast-util-sanitize/-/hast-util-sanitize-5.0.2.tgz", + "integrity": "sha512-3yTWghByc50aGS7JlGhk61SPenfE/p1oaFeNwkOOyrscaOkMGrcW9+Cy/QAIOBpZxP1yqDIzFMR0+Np0i0+usg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@ungap/structured-clone": "^1.0.0", + "unist-util-position": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmmirror.com/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hastscript": { + "version": "9.0.1", + "resolved": "https://registry.npmmirror.com/hastscript/-/hastscript-9.0.1.tgz", + "integrity": "sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-parse-selector": "^4.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/html-encoding-sniffer": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/html-encoding-sniffer/-/html-encoding-sniffer-3.0.0.tgz", + "integrity": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/htmlparser2": { + "version": "10.0.0", + "resolved": "https://registry.npmmirror.com/htmlparser2/-/htmlparser2-10.0.0.tgz", + "integrity": "sha512-TwAZM+zE5Tq3lrEHvOlvwgj1XLWQCtaaibSN11Q+gGBAS7Y1uZSWwXXRe4iF6OXnaq1riyQAPFOBtYc77Mxq0g==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3", + "domutils": "^3.2.1", + "entities": "^6.0.0" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmmirror.com/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-server": { + "version": "14.1.1", + "resolved": "https://registry.npmmirror.com/http-server/-/http-server-14.1.1.tgz", + "integrity": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==", + "dev": true, + "license": "MIT", + "dependencies": { + "basic-auth": "^2.0.1", + "chalk": "^4.1.2", + "corser": "^2.0.1", + "he": "^1.2.0", + "html-encoding-sniffer": "^3.0.0", + "http-proxy": "^1.18.1", + "mime": "^1.6.0", + "minimist": "^1.2.6", + "opener": "^1.5.1", + "portfinder": "^1.0.28", + "secure-compare": "3.0.1", + "union": "~0.5.0", + "url-join": "^4.0.1" + }, + "bin": { + "http-server": "bin/http-server" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://registry.npmmirror.com/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/image-size/-/image-size-2.0.2.tgz", + "integrity": "sha512-IRqXKlaXwgSMAMtpNzZa1ZAe8m+Sa1770Dhk8VkSsP9LS+iHD62Zd8FQKs8fbPiagBE7BzoFX23cxFnwshpV6w==", + "dev": true, + "license": "MIT", + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=16.x" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmmirror.com/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsonfile": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/katex": { + "version": "0.16.22", + "resolved": "https://registry.npmmirror.com/katex/-/katex-0.16.22.tgz", + "integrity": "sha512-XCHRdUw4lf3SKBaJe4EvgqIuWwkPSo9XoeO8GjQW94Bp7TWv9hNhzZjZ+OH9yf1UmLygb7DIT5GSFQiyt16zYg==", + "funding": [ + "https://opencollective.com/katex", + "https://github.com/sponsors/katex" + ], + "license": "MIT", + "dependencies": { + "commander": "^8.3.0" + }, + "bin": { + "katex": "cli.js" + } + }, + "node_modules/khroma": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/khroma/-/khroma-2.1.0.tgz", + "integrity": "sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==" + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "license": "MIT" + }, + "node_modules/langium": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/langium/-/langium-3.3.1.tgz", + "integrity": "sha512-QJv/h939gDpvT+9SiLVlY7tZC3xB2qK57v0J04Sh9wpMb6MP1q8gB21L3WIo8T5P1MSMg3Ep14L7KkDCFG3y4w==", + "license": "MIT", + "dependencies": { + "chevrotain": "~11.0.3", + "chevrotain-allstar": "~0.3.0", + "vscode-languageserver": "~9.0.1", + "vscode-languageserver-textdocument": "~1.0.11", + "vscode-uri": "~3.0.8" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/layout-base": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/layout-base/-/layout-base-1.0.2.tgz", + "integrity": "sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==", + "license": "MIT" + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmmirror.com/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "node_modules/lit": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/lit/-/lit-3.3.1.tgz", + "integrity": "sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@lit/reactive-element": "^2.1.0", + "lit-element": "^4.2.0", + "lit-html": "^3.3.0" + } + }, + "node_modules/lit-element": { + "version": "4.2.1", + "resolved": "https://registry.npmmirror.com/lit-element/-/lit-element-4.2.1.tgz", + "integrity": "sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.4.0", + "@lit/reactive-element": "^2.1.0", + "lit-html": "^3.3.0" + } + }, + "node_modules/lit-html": { + "version": "3.3.1", + "resolved": "https://registry.npmmirror.com/lit-html/-/lit-html-3.3.1.tgz", + "integrity": "sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "@types/trusted-types": "^2.0.2" + } + }, + "node_modules/local-pkg": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/local-pkg/-/local-pkg-1.1.2.tgz", + "integrity": "sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==", + "license": "MIT", + "dependencies": { + "mlly": "^1.7.4", + "pkg-types": "^2.3.0", + "quansync": "^0.2.11" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmmirror.com/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/log-symbols/-/log-symbols-6.0.0.tgz", + "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^5.3.0", + "is-unicode-supported": "^1.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "5.6.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lru-cache": { + "version": "11.2.1", + "resolved": "https://registry.npmmirror.com/lru-cache/-/lru-cache-11.2.1.tgz", + "integrity": "sha512-r8LA6i4LP4EeWOhqBaZZjDWwehd1xUJPCJd9Sv300H0ZmcUER4+JPh7bqqZeqs1o5pgtgvXm+d9UGrB5zZGDiQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/magic-string": { + "version": "0.30.19", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.19.tgz", + "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmmirror.com/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmmirror.com/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "node_modules/markdown-it-anchor": { + "version": "9.2.0", + "resolved": "https://registry.npmmirror.com/markdown-it-anchor/-/markdown-it-anchor-9.2.0.tgz", + "integrity": "sha512-sa2ErMQ6kKOA4l31gLGYliFQrMKkqSO0ZJgGhDHKijPf0pNFM9vghjAh3gn26pS4JDRs7Iwa9S36gxm3vgZTzg==", + "dev": true, + "license": "Unlicense", + "peerDependencies": { + "@types/markdown-it": "*", + "markdown-it": "*" + } + }, + "node_modules/markdown-it-container": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/markdown-it-container/-/markdown-it-container-4.0.0.tgz", + "integrity": "sha512-HaNccxUH0l7BNGYbFbjmGpf5aLHAMTinqRZQAEQbMr2cdD3z91Q6kIo1oUn1CQndkT03jat6ckrdRYuwwqLlQw==", + "dev": true, + "license": "MIT" + }, + "node_modules/markdown-it-emoji": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/markdown-it-emoji/-/markdown-it-emoji-3.0.0.tgz", + "integrity": "sha512-+rUD93bXHubA4arpEZO3q80so0qgoFJEKRkRbjKX8RTdca89v2kfyF+xR3i2sQTwql9tpPZPOQN5B+PunspXRg==", + "dev": true, + "license": "MIT" + }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/marked": { + "version": "14.1.4", + "resolved": "https://registry.npmmirror.com/marked/-/marked-14.1.4.tgz", + "integrity": "sha512-vkVZ8ONmUdPnjCKc5uTRvmkRbx4EAi2OkTOXmfTDhZz3OFqMNBM1oTTWwTr4HY4uAEojhzPf+Fy8F1DWa3Sndg==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/marked-highlight": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/marked-highlight/-/marked-highlight-2.2.2.tgz", + "integrity": "sha512-KlHOP31DatbtPPXPaI8nx1KTrG3EW0Z5zewCwpUj65swbtKOTStteK3sNAjBqV75Pgo3fNEVNHeptg18mDuWgw==", + "license": "MIT", + "peerDependencies": { + "marked": ">=4 <17" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/mermaid": { + "version": "11.12.1", + "resolved": "https://registry.npmjs.org/mermaid/-/mermaid-11.12.1.tgz", + "integrity": "sha512-UlIZrRariB11TY1RtTgUWp65tphtBv4CSq7vyS2ZZ2TgoMjs2nloq+wFqxiwcxlhHUvs7DPGgMjs2aeQxz5h9g==", + "license": "MIT", + "dependencies": { + "@braintree/sanitize-url": "^7.1.1", + "@iconify/utils": "^3.0.1", + "@mermaid-js/parser": "^0.6.3", + "@types/d3": "^7.4.3", + "cytoscape": "^3.29.3", + "cytoscape-cose-bilkent": "^4.1.0", + "cytoscape-fcose": "^2.2.0", + "d3": "^7.9.0", + "d3-sankey": "^0.12.3", + "dagre-d3-es": "7.0.13", + "dayjs": "^1.11.18", + "dompurify": "^3.2.5", + "katex": "^0.16.22", + "khroma": "^2.1.0", + "lodash-es": "^4.17.21", + "marked": "^16.2.1", + "roughjs": "^4.6.6", + "stylis": "^4.3.6", + "ts-dedent": "^2.2.0", + "uuid": "^11.1.0" + } + }, + "node_modules/mermaid/node_modules/marked": { + "version": "16.4.1", + "resolved": "https://registry.npmmirror.com/marked/-/marked-16.4.1.tgz", + "integrity": "sha512-ntROs7RaN3EvWfy3EZi14H4YxmT6A5YvywfhO+0pm+cH/dnSQRmdAmoFIc3B9aiwTehyk7pESH4ofyBY+V5hZg==", + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 20" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmmirror.com/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmmirror.com/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmmirror.com/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minisearch": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/minisearch/-/minisearch-7.2.0.tgz", + "integrity": "sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==", + "dev": true, + "license": "MIT" + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true, + "license": "MIT" + }, + "node_modules/mlly": { + "version": "1.8.0", + "resolved": "https://registry.npmmirror.com/mlly/-/mlly-1.8.0.tgz", + "integrity": "sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==", + "license": "MIT", + "dependencies": { + "acorn": "^8.15.0", + "pathe": "^2.0.3", + "pkg-types": "^1.3.1", + "ufo": "^1.6.1" + } + }, + "node_modules/mlly/node_modules/confbox": { + "version": "0.1.8", + "resolved": "https://registry.npmmirror.com/confbox/-/confbox-0.1.8.tgz", + "integrity": "sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==", + "license": "MIT" + }, + "node_modules/mlly/node_modules/pkg-types": { + "version": "1.3.1", + "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-1.3.1.tgz", + "integrity": "sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==", + "license": "MIT", + "dependencies": { + "confbox": "^0.1.8", + "mlly": "^1.7.4", + "pathe": "^2.0.1" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.21", + "resolved": "https://registry.npmmirror.com/node-releases/-/node-releases-2.0.21.tgz", + "integrity": "sha512-5b0pgg78U3hwXkCM8Z9b2FJdPZlr9Psr9V2gQPESdGHqbntyFJKFW4r5TeWGFzafGY3hzs1JC62VEQMbl1JFkw==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmmirror.com/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-inspect": { + "version": "1.13.4", + "resolved": "https://registry.npmmirror.com/object-inspect/-/object-inspect-1.13.4.tgz", + "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/onetime": { + "version": "7.0.0", + "resolved": "https://registry.npmmirror.com/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-function": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/oniguruma-parser": { + "version": "0.12.1", + "resolved": "https://registry.npmmirror.com/oniguruma-parser/-/oniguruma-parser-0.12.1.tgz", + "integrity": "sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/oniguruma-to-es": { + "version": "4.3.3", + "resolved": "https://registry.npmmirror.com/oniguruma-to-es/-/oniguruma-to-es-4.3.3.tgz", + "integrity": "sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==", + "dev": true, + "license": "MIT", + "dependencies": { + "oniguruma-parser": "^0.12.1", + "regex": "^6.0.1", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmmirror.com/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "dev": true, + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/ora": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/ora/-/ora-8.2.0.tgz", + "integrity": "sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^5.3.0", + "cli-cursor": "^5.0.0", + "cli-spinners": "^2.9.2", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^2.0.0", + "log-symbols": "^6.0.0", + "stdin-discarder": "^0.2.2", + "string-width": "^7.2.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "5.6.2", + "resolved": "https://registry.npmmirror.com/chalk/-/chalk-5.6.2.tgz", + "integrity": "sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/p-map": { + "version": "7.0.3", + "resolved": "https://registry.npmmirror.com/p-map/-/p-map-7.0.3.tgz", + "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-manager-detector": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/package-manager-detector/-/package-manager-detector-1.3.0.tgz", + "integrity": "sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==", + "license": "MIT" + }, + "node_modules/parse5": { + "version": "7.3.0", + "resolved": "https://registry.npmmirror.com/parse5/-/parse5-7.3.0.tgz", + "integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^6.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz", + "integrity": "sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "domhandler": "^5.0.3", + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5-parser-stream": { + "version": "7.1.2", + "resolved": "https://registry.npmmirror.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz", + "integrity": "sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse5": "^7.0.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, + "node_modules/parse5/node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/path-data-parser": { + "version": "0.1.0", + "resolved": "https://registry.npmmirror.com/path-data-parser/-/path-data-parser-0.1.0.tgz", + "integrity": "sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "license": "MIT" + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/photoswipe": { + "version": "5.4.4", + "resolved": "https://registry.npmmirror.com/photoswipe/-/photoswipe-5.4.4.tgz", + "integrity": "sha512-WNFHoKrkZNnvFFhbHL93WDkW3ifwVOXSW3w1UuZZelSmgXpIGiZSNlZJq37rR8YejqME2rHs9EhH9ZvlvFH2NA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pkg-types": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/pkg-types/-/pkg-types-2.3.0.tgz", + "integrity": "sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==", + "license": "MIT", + "dependencies": { + "confbox": "^0.2.2", + "exsolve": "^1.0.7", + "pathe": "^2.0.3" + } + }, + "node_modules/points-on-curve": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/points-on-curve/-/points-on-curve-0.2.0.tgz", + "integrity": "sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==", + "license": "MIT" + }, + "node_modules/points-on-path": { + "version": "0.2.1", + "resolved": "https://registry.npmmirror.com/points-on-path/-/points-on-path-0.2.1.tgz", + "integrity": "sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==", + "license": "MIT", + "dependencies": { + "path-data-parser": "0.1.0", + "points-on-curve": "0.2.0" + } + }, + "node_modules/portfinder": { + "version": "1.0.38", + "resolved": "https://registry.npmmirror.com/portfinder/-/portfinder-1.0.38.tgz", + "integrity": "sha512-rEwq/ZHlJIKw++XtLAO8PPuOQA/zaPJOZJ37BVuN97nLpMJeuDVLVGRwbFoBgLudgdTMP2hdRJP++H+8QOA3vg==", + "dev": true, + "license": "MIT", + "dependencies": { + "async": "^3.2.6", + "debug": "^4.3.6" + }, + "engines": { + "node": ">= 10.12" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-load-config": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/postcss-load-config/-/postcss-load-config-6.0.1.tgz", + "integrity": "sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.1.1" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "jiti": ">=1.21.0", + "postcss": ">=8.0.9", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + }, + "postcss": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmmirror.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/preact": { + "version": "10.27.2", + "resolved": "https://registry.npmmirror.com/preact/-/preact-10.27.2.tgz", + "integrity": "sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmmirror.com/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.14.0", + "resolved": "https://registry.npmmirror.com/qs/-/qs-6.14.0.tgz", + "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/quansync": { + "version": "0.2.11", + "resolved": "https://registry.npmmirror.com/quansync/-/quansync-0.2.11.tgz", + "integrity": "sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/antfu" + }, + { + "type": "individual", + "url": "https://github.com/sponsors/sxzz" + } + ], + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmmirror.com/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recaptcha-v3": { + "version": "1.11.3", + "resolved": "https://registry.npmmirror.com/recaptcha-v3/-/recaptcha-v3-1.11.3.tgz", + "integrity": "sha512-sEE6J0RzUkS+sKEBpgCD/AqCU0ffrAVOADGjvAx9vcttN+VLK42SWMkj/J/I6vHu3Kew+xcfbBqDVb65N0QGDw==", + "license": "Apache-2.0" + }, + "node_modules/regex": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/regex/-/regex-6.0.1.tgz", + "integrity": "sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "dev": true, + "license": "MIT" + }, + "node_modules/rehype-parse": { + "version": "9.0.1", + "resolved": "https://registry.npmmirror.com/rehype-parse/-/rehype-parse-9.0.1.tgz", + "integrity": "sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-from-html": "^2.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-sanitize": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/rehype-sanitize/-/rehype-sanitize-6.0.0.tgz", + "integrity": "sha512-CsnhKNsyI8Tub6L4sm5ZFsme4puGfc6pYylvXo1AeqaGbjOYyzNv3qZPwvs0oMJ39eryyeOdmxwUIo94IpEhqg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-sanitize": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/rehype-stringify": { + "version": "10.0.1", + "resolved": "https://registry.npmmirror.com/rehype-stringify/-/rehype-stringify-10.0.1.tgz", + "integrity": "sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "hast-util-to-html": "^9.0.0", + "unified": "^11.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/restore-cursor": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==", + "license": "Unlicense" + }, + "node_modules/rollup": { + "version": "4.52.0", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.52.0.tgz", + "integrity": "sha512-+IuescNkTJQgX7AkIDtITipZdIGcWF0pnVvZTWStiazUmcGA2ag8dfg0urest2XlXUi9kuhfQ+qmdc5Stc3z7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.52.0", + "@rollup/rollup-android-arm64": "4.52.0", + "@rollup/rollup-darwin-arm64": "4.52.0", + "@rollup/rollup-darwin-x64": "4.52.0", + "@rollup/rollup-freebsd-arm64": "4.52.0", + "@rollup/rollup-freebsd-x64": "4.52.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.52.0", + "@rollup/rollup-linux-arm-musleabihf": "4.52.0", + "@rollup/rollup-linux-arm64-gnu": "4.52.0", + "@rollup/rollup-linux-arm64-musl": "4.52.0", + "@rollup/rollup-linux-loong64-gnu": "4.52.0", + "@rollup/rollup-linux-ppc64-gnu": "4.52.0", + "@rollup/rollup-linux-riscv64-gnu": "4.52.0", + "@rollup/rollup-linux-riscv64-musl": "4.52.0", + "@rollup/rollup-linux-s390x-gnu": "4.52.0", + "@rollup/rollup-linux-x64-gnu": "4.52.0", + "@rollup/rollup-linux-x64-musl": "4.52.0", + "@rollup/rollup-openharmony-arm64": "4.52.0", + "@rollup/rollup-win32-arm64-msvc": "4.52.0", + "@rollup/rollup-win32-ia32-msvc": "4.52.0", + "@rollup/rollup-win32-x64-gnu": "4.52.0", + "@rollup/rollup-win32-x64-msvc": "4.52.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/roughjs": { + "version": "4.6.6", + "resolved": "https://registry.npmmirror.com/roughjs/-/roughjs-4.6.6.tgz", + "integrity": "sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==", + "license": "MIT", + "dependencies": { + "hachure-fill": "^0.5.2", + "path-data-parser": "^0.1.0", + "points-on-curve": "^0.2.0", + "points-on-path": "^0.2.1" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/sax": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/sax/-/sax-1.4.1.tgz", + "integrity": "sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==", + "dev": true, + "license": "ISC" + }, + "node_modules/search-insights": { + "version": "2.17.3", + "resolved": "https://registry.npmmirror.com/search-insights/-/search-insights-2.17.3.tgz", + "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/secure-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/secure-compare/-/secure-compare-3.0.1.tgz", + "integrity": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==", + "dev": true, + "license": "MIT" + }, + "node_modules/shiki": { + "version": "3.13.0", + "resolved": "https://registry.npmmirror.com/shiki/-/shiki-3.13.0.tgz", + "integrity": "sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "3.13.0", + "@shikijs/engine-javascript": "3.13.0", + "@shikijs/engine-oniguruma": "3.13.0", + "@shikijs/langs": "3.13.0", + "@shikijs/themes": "3.13.0", + "@shikijs/types": "3.13.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/side-channel": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/side-channel/-/side-channel-1.1.0.tgz", + "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3", + "side-channel-list": "^1.0.0", + "side-channel-map": "^1.0.1", + "side-channel-weakmap": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-list": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/side-channel-list/-/side-channel-list-1.0.0.tgz", + "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-map": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/side-channel-map/-/side-channel-map-1.0.1.tgz", + "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel-weakmap": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", + "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bound": "^1.0.2", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.5", + "object-inspect": "^1.13.3", + "side-channel-map": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sitemap": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/sitemap/-/sitemap-8.0.0.tgz", + "integrity": "sha512-+AbdxhM9kJsHtruUF39bwS/B0Fytw6Fr1o4ZAIAEqA6cke2xcoO2GleBw9Zw7nRzILVEgz7zBM5GiTJjie1G9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "^17.0.5", + "@types/sax": "^1.2.1", + "arg": "^5.0.0", + "sax": "^1.2.4" + }, + "bin": { + "sitemap": "dist/cli.js" + }, + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, + "node_modules/sitemap/node_modules/@types/node": { + "version": "17.0.45", + "resolved": "https://registry.npmmirror.com/@types/node/-/node-17.0.45.tgz", + "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==", + "dev": true, + "license": "MIT" + }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/stdin-discarder": { + "version": "0.2.2", + "resolved": "https://registry.npmmirror.com/stdin-discarder/-/stdin-discarder-0.2.2.tgz", + "integrity": "sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dev": true, + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stylis": { + "version": "4.3.6", + "resolved": "https://registry.npmmirror.com/stylis/-/stylis-4.3.6.tgz", + "integrity": "sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==", + "license": "MIT" + }, + "node_modules/superjson": { + "version": "2.2.2", + "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.2.tgz", + "integrity": "sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "copy-anything": "^3.0.2" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/synckit": { + "version": "0.11.11", + "resolved": "https://registry.npmmirror.com/synckit/-/synckit-0.11.11.tgz", + "integrity": "sha512-MeQTA1r0litLUf0Rp/iisCaL8761lKAZHaimlbGK4j0HysC4PLfqygQj9srcs0m2RdtDYnF8UuYyKpbjHYp7Jw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pkgr/core": "^0.2.9" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/synckit" + } + }, + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/tinyexec/-/tinyexec-1.0.1.tgz", + "integrity": "sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==", + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmmirror.com/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/tm-grammars": { + "version": "1.24.13", + "resolved": "https://registry.npmmirror.com/tm-grammars/-/tm-grammars-1.24.13.tgz", + "integrity": "sha512-ELNKpM77iMZRUQ9t9e2Gel/2z7euiskFJM8QOx/GPqyc2fZZ2ZaeNzDo3qNWTR/OGFpjsBu4lYCawPurhP/0Ww==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/tm-themes": { + "version": "1.10.9", + "resolved": "https://registry.npmmirror.com/tm-themes/-/tm-themes-1.10.9.tgz", + "integrity": "sha512-2pBK8ZHXFibHOoKmi1aE2VF1ISsMpqTU+RS3+YS8LGNEm4WSkmnDqdylbtsmZIfFTxy/8KbsiBKbrmnHYVTZFw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/trough": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/trough/-/trough-2.2.0.tgz", + "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/ts-debounce": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/ts-debounce/-/ts-debounce-4.0.0.tgz", + "integrity": "sha512-+1iDGY6NmOGidq7i7xZGA4cm8DAa6fqdYcvO5Z6yBevH++Bdo9Qt/mN0TzHUgcCcKv1gmh9+W5dHqz8pMWbCbg==", + "dev": true, + "license": "MIT" + }, + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://registry.npmmirror.com/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "license": "MIT", + "engines": { + "node": ">=6.10" + } + }, + "node_modules/typescript": { + "version": "5.9.2", + "resolved": "https://registry.npmmirror.com/typescript/-/typescript-5.9.2.tgz", + "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/ufo": { + "version": "1.6.1", + "resolved": "https://registry.npmmirror.com/ufo/-/ufo-1.6.1.tgz", + "integrity": "sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==", + "license": "MIT" + }, + "node_modules/undici": { + "version": "7.16.0", + "resolved": "https://registry.npmmirror.com/undici/-/undici-7.16.0.tgz", + "integrity": "sha512-QEg3HPMll0o3t2ourKwOeUAZ159Kn9mx5pnzHRQO8+Wixmh88YdZRiIwat0iNzNNXn0yoEtXJqFpyW7eM8BV7g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, + "node_modules/undici-types": { + "version": "7.12.0", + "resolved": "https://registry.npmmirror.com/undici-types/-/undici-types-7.12.0.tgz", + "integrity": "sha512-goOacqME2GYyOZZfb5Lgtu+1IDmAlAEu5xnD3+xTzS10hT0vzpf0SPjkXwAw9Jm+4n/mQGDP3LO8CPbYROeBfQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unified": { + "version": "11.0.5", + "resolved": "https://registry.npmmirror.com/unified/-/unified-11.0.5.tgz", + "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "bail": "^2.0.0", + "devlop": "^1.0.0", + "extend": "^3.0.0", + "is-plain-obj": "^4.0.0", + "trough": "^2.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/union": { + "version": "0.5.0", + "resolved": "https://registry.npmmirror.com/union/-/union-0.5.0.tgz", + "integrity": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==", + "dev": true, + "dependencies": { + "qs": "^6.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.0", + "resolved": "https://registry.npmmirror.com/unist-util-is/-/unist-util-is-6.0.0.tgz", + "integrity": "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/unist-util-visit/-/unist-util-visit-5.0.0.tgz", + "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz", + "integrity": "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unplugin": { + "version": "2.3.10", + "resolved": "https://registry.npmmirror.com/unplugin/-/unplugin-2.3.10.tgz", + "integrity": "sha512-6NCPkv1ClwH+/BGE9QeoTIl09nuiAt0gS28nn1PvYXsGKRwM2TCbFA2QiilmehPDTXIe684k4rZI1yl3A1PCUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "acorn": "^8.15.0", + "picomatch": "^4.0.3", + "webpack-virtual-modules": "^0.6.2" + }, + "engines": { + "node": ">=18.12.0" + } + }, + "node_modules/unplugin/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/upath": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmmirror.com/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/url-join": { + "version": "4.0.1", + "resolved": "https://registry.npmmirror.com/url-join/-/url-join-4.0.1.tgz", + "integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/uuid": { + "version": "11.1.0", + "resolved": "https://registry.npmmirror.com/uuid/-/uuid-11.1.0.tgz", + "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist/esm/bin/uuid" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-location": { + "version": "5.0.3", + "resolved": "https://registry.npmmirror.com/vfile-location/-/vfile-location-5.0.3.tgz", + "integrity": "sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.0.8.tgz", + "integrity": "sha512-cJBdq0/u+8rgstg9t7UkBilf8ipLmeXJO30NxD5HAHOivnj10ocV8YtR/XBvd2wQpN3TmcaxNKaHX3tN7o5F5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.4.6", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.40.0", + "tinyglobby": "^0.2.14" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.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": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmmirror.com/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/vscode-jsonrpc": { + "version": "8.2.0", + "resolved": "https://registry.npmmirror.com/vscode-jsonrpc/-/vscode-jsonrpc-8.2.0.tgz", + "integrity": "sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/vscode-languageserver": { + "version": "9.0.1", + "resolved": "https://registry.npmmirror.com/vscode-languageserver/-/vscode-languageserver-9.0.1.tgz", + "integrity": "sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==", + "license": "MIT", + "dependencies": { + "vscode-languageserver-protocol": "3.17.5" + }, + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" + } + }, + "node_modules/vscode-languageserver-protocol": { + "version": "3.17.5", + "resolved": "https://registry.npmmirror.com/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.17.5.tgz", + "integrity": "sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==", + "license": "MIT", + "dependencies": { + "vscode-jsonrpc": "8.2.0", + "vscode-languageserver-types": "3.17.5" + } + }, + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmmirror.com/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==", + "license": "MIT" + }, + "node_modules/vscode-languageserver-types": { + "version": "3.17.5", + "resolved": "https://registry.npmmirror.com/vscode-languageserver-types/-/vscode-languageserver-types-3.17.5.tgz", + "integrity": "sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==", + "license": "MIT" + }, + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmmirror.com/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "license": "MIT" + }, + "node_modules/vue": { + "version": "3.5.21", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.21.tgz", + "integrity": "sha512-xxf9rum9KtOdwdRkiApWL+9hZEMWE90FHh8yS1+KJAiWYh+iGWV1FquPjoO9VUHQ+VIhsCXNNyZ5Sf4++RVZBA==", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.21", + "@vue/compiler-sfc": "3.5.21", + "@vue/runtime-dom": "3.5.21", + "@vue/server-renderer": "3.5.21", + "@vue/shared": "3.5.21" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-router": { + "version": "4.5.1", + "resolved": "https://registry.npmmirror.com/vue-router/-/vue-router-4.5.1.tgz", + "integrity": "sha512-ogAF3P97NPm8fJsE4by9dwSYtDwXIY1nFY9T6DyQnGHd1E2Da94w9JIolpe42LJGIl0DwOHBi8TcRPlPGwbTtw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.6.4" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/vue-router/node_modules/@vue/devtools-api": { + "version": "6.6.4", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-6.6.4.tgz", + "integrity": "sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==", + "dev": true, + "license": "MIT" + }, + "node_modules/vuepress": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmmirror.com/vuepress/-/vuepress-2.0.0-rc.24.tgz", + "integrity": "sha512-56O9fAj3Fr1ezngeHDGyp5I1fWxBnP6gaGerjYjPNtr2RteSZtnqL/fQDzmiw5rFpuMVlfOTXESvQjQUlio8PQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vuepress/cli": "2.0.0-rc.24", + "@vuepress/client": "2.0.0-rc.24", + "@vuepress/core": "2.0.0-rc.24", + "@vuepress/markdown": "2.0.0-rc.24", + "@vuepress/shared": "2.0.0-rc.24", + "@vuepress/utils": "2.0.0-rc.24", + "vue": "^3.5.17" + }, + "bin": { + "vuepress": "bin/vuepress.js", + "vuepress-vite": "bin/vuepress-vite.js", + "vuepress-webpack": "bin/vuepress-webpack.js" + }, + "engines": { + "node": "^20.9.0 || >=22.0.0" + }, + "peerDependencies": { + "@vuepress/bundler-vite": "2.0.0-rc.24", + "@vuepress/bundler-webpack": "2.0.0-rc.24", + "vue": "^3.5.17" + }, + "peerDependenciesMeta": { + "@vuepress/bundler-vite": { + "optional": true + }, + "@vuepress/bundler-webpack": { + "optional": true + } + } + }, + "node_modules/vuepress-plugin-md-power": { + "version": "1.0.0-rc.164", + "resolved": "https://registry.npmmirror.com/vuepress-plugin-md-power/-/vuepress-plugin-md-power-1.0.0-rc.164.tgz", + "integrity": "sha512-VkezpqUzFvPaG+ZDNh4V1PfOGHt7ky0qwy2G12b9k/QHjXJpYfOH2pXDYBpU7m4i7stSd1a2hPB2Y0/CcoeaPQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdit/plugin-attrs": "^0.23.1", + "@mdit/plugin-footnote": "^0.22.2", + "@mdit/plugin-mark": "^0.22.1", + "@mdit/plugin-sub": "^0.22.1", + "@mdit/plugin-sup": "^0.22.1", + "@mdit/plugin-tab": "^0.22.2", + "@mdit/plugin-tasklist": "^0.22.1", + "@pengzhanbo/utils": "^2.1.0", + "@vuepress/helper": "2.0.0-rc.112", + "@vueuse/core": "^13.9.0", + "chokidar": "4.0.3", + "image-size": "^2.0.2", + "local-pkg": "^1.1.2", + "lru-cache": "^11.2.1", + "markdown-it-container": "^4.0.0", + "nanoid": "^5.1.5", + "shiki": "^3.13.0", + "tinyglobby": "^0.2.13", + "tm-grammars": "^1.24.12", + "tm-themes": "^1.10.9", + "vue": "^3.5.21" + }, + "peerDependencies": { + "artplayer": "^5.3.0", + "dashjs": "^5.0.3", + "esbuild": "^0.25.10", + "hls.js": "^1.6.12", + "less": "^4.4.1", + "markdown-it": "^14.1.0", + "mpegts.js": "^1.7.3", + "pyodide": "^0.28.2", + "sass": "^1.93.0", + "sass-embedded": "^1.93.0", + "stylus": "^0.64.0", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "artplayer": { + "optional": true + }, + "dashjs": { + "optional": true + }, + "hls.js": { + "optional": true + }, + "less": { + "optional": true + }, + "markdown-it": { + "optional": true + }, + "mpegts.js": { + "optional": true + }, + "pyodide": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + } + } + }, + "node_modules/vuepress-plugin-md-power/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/vuepress-plugin-md-power/node_modules/nanoid": { + "version": "5.1.5", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.5.tgz", + "integrity": "sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/vuepress-plugin-md-power/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/vuepress-theme-plume": { + "version": "1.0.0-rc.164", + "resolved": "https://registry.npmmirror.com/vuepress-theme-plume/-/vuepress-theme-plume-1.0.0-rc.164.tgz", + "integrity": "sha512-ZObmNZvQFtNMGSbMhm3LI67SvsZlaVOl5cD3svSOIKmXT8BPhAHJKiGHWegvGaDZ6TGdPSS6arViEWv77Nld4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@iconify/utils": "^3.0.2", + "@iconify/vue": "^5.0.0", + "@pengzhanbo/utils": "^2.1.0", + "@vuepress-plume/plugin-fonts": "1.0.0-rc.164", + "@vuepress-plume/plugin-search": "1.0.0-rc.164", + "@vuepress/helper": "2.0.0-rc.112", + "@vuepress/plugin-cache": "2.0.0-rc.112", + "@vuepress/plugin-comment": "2.0.0-rc.112", + "@vuepress/plugin-copy-code": "2.0.0-rc.112", + "@vuepress/plugin-docsearch": "2.0.0-rc.112", + "@vuepress/plugin-git": "2.0.0-rc.112", + "@vuepress/plugin-markdown-chart": "2.0.0-rc.112", + "@vuepress/plugin-markdown-hint": "2.0.0-rc.112", + "@vuepress/plugin-markdown-image": "2.0.0-rc.112", + "@vuepress/plugin-markdown-include": "2.0.0-rc.112", + "@vuepress/plugin-markdown-math": "2.0.0-rc.112", + "@vuepress/plugin-nprogress": "2.0.0-rc.112", + "@vuepress/plugin-photo-swipe": "2.0.0-rc.112", + "@vuepress/plugin-reading-time": "2.0.0-rc.112", + "@vuepress/plugin-replace-assets": "2.0.0-rc.112", + "@vuepress/plugin-seo": "2.0.0-rc.112", + "@vuepress/plugin-shiki": "2.0.0-rc.112", + "@vuepress/plugin-sitemap": "2.0.0-rc.112", + "@vuepress/plugin-watermark": "2.0.0-rc.112", + "@vueuse/core": "^13.9.0", + "bcrypt-ts": "^7.1.0", + "chokidar": "4.0.3", + "create-filter": "^1.1.0", + "dayjs": "^1.11.18", + "esbuild": "^0.25.10", + "fast-glob": "^3.3.3", + "gray-matter": "^4.0.3", + "js-yaml": "^4.1.0", + "katex": "^0.16.22", + "local-pkg": "^1.1.2", + "nanoid": "^5.1.5", + "package-manager-detector": "^1.3.0", + "vue": "^3.5.21", + "vuepress-plugin-md-power": "1.0.0-rc.164" + }, + "engines": { + "node": "^20.6.0 || >=22.0.0" + }, + "peerDependencies": { + "@iconify/json": "^2.2.386", + "@vuepress/shiki-twoslash": "2.0.0-rc.112", + "mathjax-full": "^3.2.2", + "swiper": "^12.0.2", + "vuepress": "2.0.0-rc.24" + }, + "peerDependenciesMeta": { + "@iconify/json": { + "optional": true + }, + "@vuepress/shiki-twoslash": { + "optional": true + }, + "mathjax-full": { + "optional": true + }, + "swiper": { + "optional": true + } + } + }, + "node_modules/vuepress-theme-plume/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/vuepress-theme-plume/node_modules/chokidar": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-4.0.3.tgz", + "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/vuepress-theme-plume/node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/vuepress-theme-plume/node_modules/nanoid": { + "version": "5.1.5", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-5.1.5.tgz", + "integrity": "sha512-Ir/+ZpE9fDsNH0hQ3C68uyThDXzYcim2EqcZ8zn8Chtt1iylPT9xXJB0kPCnqzgcEGikO9RxSrh63MsmVCU7Fw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.js" + }, + "engines": { + "node": "^18 || >=20" + } + }, + "node_modules/vuepress-theme-plume/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmmirror.com/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/watermark-js-plus": { + "version": "1.6.3", + "resolved": "https://registry.npmmirror.com/watermark-js-plus/-/watermark-js-plus-1.6.3.tgz", + "integrity": "sha512-iCLOGf70KacIwjGF9MDViYxQcRiVwOH7l42qDHLeE2HeUsQD1EQuUC9cKRG/4SErTUmdqV3yf5WnKk2dRARHPQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/web-namespaces": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/web-namespaces/-/web-namespaces-2.0.1.tgz", + "integrity": "sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.6.2", + "resolved": "https://registry.npmmirror.com/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/whatwg-encoding": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/whatwg-encoding/-/whatwg-encoding-2.0.0.tgz", + "integrity": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..20af2c6 --- /dev/null +++ b/package.json @@ -0,0 +1,31 @@ +{ + "name": "si-meng-web-site-notes", + "type": "module", + "version": "1.0.0", + "description": "祀梦的笔记网站", + "license": "MIT", + "engines": { + "node": "^20.6.0 || >=22.0.0" + }, + "scripts": { + "docs:dev": "vuepress dev docs", + "docs:dev-clean": "vuepress dev docs --clean-cache --clean-temp", + "docs:build": "vuepress build docs --clean-cache --clean-temp", + "docs:preview": "http-server docs/.vuepress/dist", + "vp-update": "npx vp-update" + }, + "devDependencies": { + "@vuepress/bundler-vite": "2.0.0-rc.24", + "@vuepress/plugin-umami-analytics": "^2.0.0-rc.112", + "artalk": "^2.9.1", + "http-server": "^14.1.1", + "typescript": "^5.9.2", + "vue": "^3.5.21", + "vuepress": "2.0.0-rc.24", + "vuepress-theme-plume": "1.0.0-rc.164" + }, + "dependencies": { + "@waline/client": "^3.6.0", + "mermaid": "^11.12.1" + } +} diff --git a/script/build-and-publish.bat b/script/build-and-publish.bat new file mode 100644 index 0000000..a2989e1 --- /dev/null +++ b/script/build-and-publish.bat @@ -0,0 +1,153 @@ +@echo off +setlocal EnableExtensions EnableDelayedExpansion + +REM ========================================== +REM Configuration +REM ========================================== +chcp 65001 >nul + +REM Move to project root +cd /d "%~dp0.." +set "PROJECT_DIR=%CD%\" + +set "DIST_DIR=%PROJECT_DIR%docs\.vuepress\dist" +set "CACHE_DIR=%PROJECT_DIR%docs\.vuepress\.cache" +set "TEMP_DIR=%PROJECT_DIR%docs\.vuepress\.temp" +set "PUBLISH_DIR=%PROJECT_DIR%_publish" +set "REMOTE_URL=https://gitea.simengweb.com/si-meng-spec/build_notes_simengweb.git" +set "BRANCH=main" + +REM High memory limit for better performance/stability (8GB) +set "NODE_OPTIONS=--max-old-space-size=8192" + +REM Disable Git SSL Verification for this session +git config --global http.sslVerify false +git config --global http.sslBackend openssl + +REM Args +set "COMMIT_MSG=%~1" +if "%COMMIT_MSG%"=="" set "COMMIT_MSG=Build: %DATE% %TIME%" + +echo ========================================== +echo Start Build and Publish +echo Project Dir: %PROJECT_DIR% +echo Memory Limit: 8192 MB +echo ========================================== + +REM ========================================== +REM 1. Cleanup +REM ========================================== +echo [1/5] Cleaning up old artifacts... + +if exist "%DIST_DIR%" ( + echo - Removing %DIST_DIR% + rd /s /q "%DIST_DIR%" +) +if exist "%CACHE_DIR%" ( + echo - Removing %CACHE_DIR% + rd /s /q "%CACHE_DIR%" +) +if exist "%TEMP_DIR%" ( + echo - Removing %TEMP_DIR% + rd /s /q "%TEMP_DIR%" +) +REM Clean node_modules for a fresh install every time (Ensures clean state) +if exist "%PROJECT_DIR%node_modules" ( + echo - Removing node_modules (Fresh Install Mode) + rd /s /q "%PROJECT_DIR%node_modules" +) + +REM ========================================== +REM 2. Install Dependencies +REM ========================================== +echo [2/5] Installing dependencies (npm ci)... +call npm ci +if %ERRORLEVEL% NEQ 0 ( + echo [Error] npm ci failed. + exit /b 1 +) + +REM ========================================== +REM 3. Build +REM ========================================== +echo [3/5] Building docs... +call npm run docs:build +if %ERRORLEVEL% NEQ 0 ( + echo [Error] Build failed. + exit /b 1 +) + +if not exist "%DIST_DIR%" ( + echo [Error] Dist directory not found after build. + exit /b 1 +) + +REM ========================================== +REM 4. Prepare Publish Directory +REM ========================================== +echo [4/5] Preparing publish directory... + +if not exist "%PUBLISH_DIR%\.git" ( + echo - Cloning publish repo... + if exist "%PUBLISH_DIR%" rd /s /q "%PUBLISH_DIR%" + git clone "%REMOTE_URL%" "%PUBLISH_DIR%" + if !ERRORLEVEL! NEQ 0 exit /b 1 +) else ( + echo - Updating publish repo... + pushd "%PUBLISH_DIR%" + git fetch --all + git checkout "%BRANCH%" + git reset --hard "origin/%BRANCH%" + popd +) + +echo - Cleaning publish directory content (preserving .git)... +pushd "%PUBLISH_DIR%" +for /f "delims=" %%F in ('dir /a /b') do ( + if /I not "%%F"==".git" ( + if exist "%%F" ( + attrib -R "%%F" >nul 2>&1 + rd /s /q "%%F" 2>nul + del /f /q "%%F" 2>nul + ) + ) +) +popd + +echo - Copying new build artifacts... +robocopy "%DIST_DIR%" "%PUBLISH_DIR%" *.* /E /NFL /NDL /NP /NJH /NJS >nul +if %ERRORLEVEL% GEQ 8 ( + echo [Error] Robocopy failed. + exit /b 1 +) + +REM ========================================== +REM 5. Push to Remote +REM ========================================== +echo [5/5] Pushing changes... +pushd "%PUBLISH_DIR%" + +if defined GIT_USERNAME git config user.name "%GIT_USERNAME%" +if defined GIT_EMAIL git config user.email "%GIT_EMAIL%" + +git add -A +git diff --cached --quiet +if %ERRORLEVEL% EQU 0 ( + echo [Info] No changes to commit. +) else ( + git commit -m "%COMMIT_MSG%" + echo - Pushing to %BRANCH%... + git push origin "%BRANCH%" + if !ERRORLEVEL! NEQ 0 ( + echo [Error] Git push failed. + popd + exit /b 1 + ) + echo [Success] Pushed successfully. +) +popd + +echo ========================================== +echo All Done! +echo ========================================== +exit /b 0 diff --git a/script/start.bat b/script/start.bat new file mode 100644 index 0000000..0a233cb --- /dev/null +++ b/script/start.bat @@ -0,0 +1,3 @@ +@echo off +cd /d "%~dp0.." +npm run docs:dev -- --host 0.0.0.0 --port 8888 diff --git a/script/start.sh b/script/start.sh new file mode 100644 index 0000000..d67d4b7 --- /dev/null +++ b/script/start.sh @@ -0,0 +1,2 @@ +cd "$(dirname "$0")/.." +npm run docs:dev -- --host 0.0.0.0 --port 8888