From 9a387f3eec89f4b484a831314fe2708eaedcbe91 Mon Sep 17 00:00:00 2001 From: XuJiacheng Date: Wed, 18 Mar 2026 14:03:35 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=BB=93=E6=9E=84=E5=B9=B6=E6=B7=BB=E5=8A=A0=E5=9F=BA?= =?UTF-8?q?=E7=A1=80=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加前后端基础项目结构,包括.gitignore、package.json等配置文件 实现前端基础功能模块,包括路由、状态管理、API请求封装等 添加前端UI组件库和样式体系 配置开发环境Mock系统和构建工具链 --- .gitignore | 1 + .trae/rules/bai.md | 30 + back-end/.env | 15 + back-end/package-lock.json | 2039 +++ back-end/package.json | 26 + back-end/spec/openapi.yaml | 48 + back-end/src/index.js | 35 + docs/project.md | 86 + front-end/.browserslistrc | 4 + front-end/.editorconfig | 12 + front-end/.env | 104 + front-end/.env.development | 4 + front-end/.env.production | 4 + front-end/.env.test | 4 + front-end/.eslintignore | 7 + front-end/.eslintrc.js | 81 + front-end/.gitattributes | 17 + front-end/.gitignore | 46 + front-end/.npmrc | 1 + front-end/.prettierignore | 4 + front-end/.stylelintrc.js | 18 + front-end/AI-Coding/00-Quick-Profile.md | 9 + front-end/AI-Coding/01-Directory-Map.md | 51 + front-end/AI-Coding/02-Boot-Sequence.md | 28 + front-end/AI-Coding/03-Mock-System.md | 23 + front-end/AI-Coding/04-Router-and-Views.md | 46 + front-end/AI-Coding/05-Store.md | 16 + front-end/AI-Coding/06-i18n.md | 17 + front-end/AI-Coding/07-API.md | 17 + front-end/AI-Coding/08-Alias-and-Types.md | 20 + front-end/AI-Coding/09-Plop.md | 15 + front-end/AI-Coding/10-Theme-System.md | 38 + front-end/AI-Coding/11-Plugins-System.md | 29 + front-end/AI-Coding/12-Settings-Store.md | 35 + front-end/AI-Coding/13-Component-Inventory.md | 70 + front-end/AI-Coding/14-Store-Modules.md | 32 + front-end/AI-Coding/15-Snippet-Map.md | 115 + front-end/AI-Coding/16-Config-Keys.md | 76 + front-end/AI-Coding/AI-Reuse-Playbook.md | 54 + front-end/AI-Coding/Pitfalls.md | 8 + front-end/AI-Coding/README.md | 56 + front-end/AI-Coding/Search-Anchors.md | 40 + front-end/AI-Coding/Validation.md | 104 + .../AI-Coding/openspec-lite/manifest.yaml | 414 + .../openspec-lite/modules/access-control.yaml | 27 + .../openspec-lite/modules/api-system.yaml | 34 + .../openspec-lite/modules/config-system.yaml | 31 + .../openspec-lite/modules/icons.yaml | 20 + .../openspec-lite/modules/layouts.yaml | 40 + .../AI-Coding/openspec-lite/modules/mock.yaml | 21 + .../AI-Coding/openspec-lite/modules/plop.yaml | 19 + .../modules/plugin-directive.yaml | 24 + .../modules/plugin-errorlog.yaml | 24 + .../openspec-lite/modules/plugin-support.yaml | 23 + .../openspec-lite/modules/plugin-vab.yaml | 29 + .../openspec-lite/modules/router.yaml | 37 + .../openspec-lite/modules/setup-vab.yaml | 30 + .../openspec-lite/modules/store-errorlog.yaml | 23 + .../openspec-lite/modules/store-routes.yaml | 28 + .../openspec-lite/modules/store-settings.yaml | 36 + .../openspec-lite/modules/store-tabs.yaml | 24 + .../openspec-lite/modules/store-user.yaml | 31 + .../openspec-lite/modules/styles.yaml | 22 + .../openspec-lite/modules/ui-components.yaml | 27 + .../openspec-lite/modules/vab-app-main.yaml | 27 + .../openspec-lite/modules/vab-app.yaml | 21 + .../openspec-lite/modules/vab-avatar.yaml | 28 + .../openspec-lite/modules/vab-breadcrumb.yaml | 28 + .../openspec-lite/modules/vab-card.yaml | 25 + .../modules/vab-colorful-card.yaml | 24 + .../openspec-lite/modules/vab-column-bar.yaml | 31 + .../openspec-lite/modules/vab-error-log.yaml | 28 + .../openspec-lite/modules/vab-fold.yaml | 20 + .../openspec-lite/modules/vab-footer.yaml | 25 + .../modules/vab-full-screen.yaml | 24 + .../openspec-lite/modules/vab-header.yaml | 21 + .../openspec-lite/modules/vab-language.yaml | 28 + .../openspec-lite/modules/vab-link.yaml | 21 + .../openspec-lite/modules/vab-lock.yaml | 29 + .../openspec-lite/modules/vab-logo.yaml | 26 + .../openspec-lite/modules/vab-menu.yaml | 39 + .../openspec-lite/modules/vab-nav.yaml | 29 + .../openspec-lite/modules/vab-notice.yaml | 31 + .../openspec-lite/modules/vab-query-form.yaml | 29 + .../openspec-lite/modules/vab-refresh.yaml | 25 + .../modules/vab-router-view.yaml | 31 + .../openspec-lite/modules/vab-search.yaml | 30 + .../openspec-lite/modules/vab-sidebar.yaml | 20 + .../openspec-lite/modules/vab-tabs.yaml | 21 + .../openspec-lite/modules/vab-theme.yaml | 40 + .../AI-Coding/openspec-lite/project.yaml | 64 + .../openspec-lite/tasks/add-api-and-mock.yaml | 25 + .../openspec-lite/tasks/add-page.yaml | 28 + .../tasks/extract-component.yaml | 37 + .../openspec-lite/tasks/extract-layout.yaml | 44 + .../openspec-lite/tasks/extract-module.yaml | 30 + .../openspec-lite/tasks/extract-plugin.yaml | 35 + .../openspec-lite/tasks/extract-theme.yaml | 41 + front-end/LICENSE | 373 + front-end/README.md | 165 + front-end/babel.config.js | 3 + front-end/git.sh | 6 + front-end/jsconfig.json | 18 + .../build/chainWebpack/banner/config.ts | 6 + .../build/chainWebpack/banner/index.ts | 12 + .../build/chainWebpack/build7z/index.ts | 22 + .../library/build/chainWebpack/gzip/index.ts | 16 + .../chainWebpack/imageCompression/index.ts | 12 + front-end/library/build/chainWebpack/index.ts | 43 + .../build/chainWebpack/optimization/index.ts | 74 + .../chainWebpack/sourceInjector/index.ts | 11 + .../chainWebpack/sourceInjector/injector.ts | 14 + .../build/chainWebpack/svgSprite/index.ts | 15 + front-end/library/build/index.ts | 7 + .../build/vuePlugins/auto-imports.d.ts | 322 + .../library/build/vuePlugins/components.d.ts | 123 + .../build/vuePlugins/defineOptions/index.ts | 5 + .../build/vuePlugins/definePlugin/index.ts | 10 + front-end/library/build/vuePlugins/index.ts | 19 + .../vuePlugins/minChunkSizePlugin/index.ts | 14 + .../build/vuePlugins/providePlugin/index.ts | 7 + .../build/vuePlugins/webpackBar/index.ts | 10 + front-end/library/components/VabApp/index.vue | 45 + .../library/components/VabAppMain/index.vue | 28 + .../library/components/VabAvatar/index.vue | 109 + .../components/VabBreadcrumb/index.vue | 65 + .../library/components/VabCard/index.vue | 65 + .../components/VabColorfulCard/index.vue | 69 + .../library/components/VabColumnBar/index.vue | 392 + .../library/components/VabErrorLog/index.vue | 104 + .../library/components/VabFold/index.vue | 22 + .../library/components/VabFooter/index.vue | 47 + .../components/VabFullScreen/index.vue | 16 + .../library/components/VabHeader/index.vue | 233 + .../library/components/VabLanguage/index.vue | 30 + .../library/components/VabLink/index.vue | 27 + .../library/components/VabLock/index.vue | 225 + .../library/components/VabLogo/index.vue | 123 + .../VabMenu/components/VabMenuItem.vue | 82 + .../VabMenu/components/VabSubMenu.vue | 36 + .../library/components/VabMenu/index.vue | 83 + front-end/library/components/VabNav/index.vue | 165 + .../library/components/VabNotice/index.vue | 356 + .../components/VabQueryFormBottomPanel.vue | 7 + .../components/VabQueryFormLeftPanel.vue | 16 + .../components/VabQueryFormRightPanel.vue | 16 + .../components/VabQueryFormTopPanel.vue | 7 + .../library/components/VabQueryForm/index.vue | 60 + .../library/components/VabRefresh/index.vue | 20 + .../components/VabRouterView/index.vue | 80 + .../library/components/VabSearch/index.vue | 517 + .../library/components/VabSideBar/index.vue | 214 + .../library/components/VabTabs/index.vue | 614 + .../VabTheme/components/VabThemeDrawer.vue | 515 + .../VabTheme/components/VabThemeSetting.vue | 168 + .../library/components/VabTheme/index.vue | 18 + front-end/library/index.ts | 39 + .../library/layouts/VabLayoutColumn/index.vue | 78 + .../library/layouts/VabLayoutCommon/index.vue | 88 + .../layouts/VabLayoutComprehensive/index.vue | 58 + .../library/layouts/VabLayoutFloat/index.vue | 98 + .../layouts/VabLayoutHorizontal/index.vue | 83 + .../layouts/VabLayoutVertical/index.vue | 68 + front-end/library/layouts/index.vue | 162 + front-end/library/plugins/directive.ts | 19 + front-end/library/plugins/errorLog.ts | 30 + front-end/library/plugins/support.ts | 26 + front-end/library/plugins/vab.ts | 172 + front-end/library/shims-vab.d.ts | 12 + .../library/styles/background/black.scss | 251 + .../library/styles/background/image.scss | 108 + .../library/styles/background/ocean.scss | 181 + .../library/styles/background/white.scss | 293 + front-end/library/styles/loading/dots.css | 124 + front-end/library/styles/loading/gauge.css | 104 + .../library/styles/loading/inner-circles.css | 51 + front-end/library/styles/loading/plus.css | 341 + front-end/library/styles/normalize.scss | 377 + front-end/library/styles/transition.scss | 39 + front-end/library/styles/vab.scss | 633 + .../variables/vab-blue-variables.module.scss | 43 + .../variables/vab-green-variables.module.scss | 43 + .../vab-purple-variables.module.scss | 43 + .../variables/vab-red-variables.module.scss | 43 + .../styles/variables/variables.module.scss | 109 + front-end/mail.txt | 101 + front-end/mock/controller/area.js | 13693 ++++++++++++++++ front-end/mock/controller/defaultIcon.js | 2296 +++ .../mock/controller/departmentManagement.js | 87 + .../mock/controller/dictionaryManagement.js | 114 + front-end/mock/controller/goods.js | 115 + front-end/mock/controller/menuManagement.js | 53 + front-end/mock/controller/notice.js | 36 + front-end/mock/controller/refreshToken.js | 46 + front-end/mock/controller/roleManagement.js | 55 + front-end/mock/controller/router.js | 1019 ++ front-end/mock/controller/search.js | 20 + front-end/mock/controller/systemLog.js | 47 + front-end/mock/controller/table.js | 68 + front-end/mock/controller/taskManagement.js | 47 + front-end/mock/controller/user.js | 125 + front-end/mock/controller/userManagement.js | 69 + front-end/mock/controller/workflow.js | 365 + front-end/mock/index.js | 112 + front-end/mock/utils/index.js | 39 + front-end/package.json | 143 + front-end/plopfile.js | 11 + front-end/prettier.config.js | 16 + front-end/public/favicon.ico | Bin 0 -> 4286 bytes .../img/icons/android-chrome-192x192.png | Bin 0 -> 4292 bytes .../img/icons/android-chrome-512x512.png | Bin 0 -> 15202 bytes .../icons/android-chrome-maskable-192x192.png | Bin 0 -> 3427 bytes .../icons/android-chrome-maskable-512x512.png | Bin 0 -> 10284 bytes .../img/icons/apple-touch-icon-152x152.png | Bin 0 -> 3775 bytes front-end/public/img/icons/favicon-16x16.png | Bin 0 -> 499 bytes front-end/public/img/icons/favicon-32x32.png | Bin 0 -> 901 bytes .../img/icons/msapplication-icon-144x144.png | Bin 0 -> 3189 bytes .../public/img/icons/safari-pinned-tab.svg | 24 + front-end/public/index.html | 51 + front-end/public/json/china.json | 1 + front-end/public/static/css/loading.css | 96 + front-end/scripts/compress.js | 87 + front-end/src/App.vue | 34 + front-end/src/api/area.ts | 25 + front-end/src/api/defaultIcon.ts | 9 + front-end/src/api/departmentManagement.ts | 25 + front-end/src/api/description.ts | 13 + front-end/src/api/dictionaryManagement.ts | 33 + front-end/src/api/goods.ts | 9 + front-end/src/api/menuManagement.ts | 25 + front-end/src/api/notice.ts | 8 + front-end/src/api/publicKey.ts | 8 + front-end/src/api/refreshToken.ts | 15 + front-end/src/api/roleManagement.ts | 25 + front-end/src/api/router.ts | 8 + front-end/src/api/search.ts | 8 + front-end/src/api/systemLog.ts | 9 + front-end/src/api/table.ts | 25 + front-end/src/api/taskManagement.ts | 9 + front-end/src/api/user.ts | 47 + front-end/src/api/userManagement.ts | 25 + front-end/src/api/workflow.ts | 17 + front-end/src/assets/cropper_images/user.gif | Bin 0 -> 8019 bytes .../src/assets/empty_images/data_empty.png | Bin 0 -> 67649 bytes front-end/src/assets/error_images/403.png | Bin 0 -> 149303 bytes front-end/src/assets/error_images/404.png | Bin 0 -> 71577 bytes front-end/src/assets/error_images/cloud.png | Bin 0 -> 2029 bytes front-end/src/assets/index_images/image.jpg | Bin 0 -> 18324 bytes .../src/assets/login_images/background.jpg | Bin 0 -> 385221 bytes .../src/assets/login_images/login_form.png | Bin 0 -> 10147 bytes front-end/src/assets/logo.png | Bin 0 -> 12049 bytes front-end/src/assets/mobile_images/mobile.png | Bin 0 -> 198796 bytes front-end/src/assets/rank_images/rank.png | Bin 0 -> 6501 bytes front-end/src/assets/skm.jpg | Bin 0 -> 107649 bytes front-end/src/assets/skm1.jpg | Bin 0 -> 104344 bytes front-end/src/assets/skm2.jpg | Bin 0 -> 83310 bytes front-end/src/assets/tabs_images/vab-tab.png | Bin 0 -> 443 bytes front-end/src/assets/task_image/task.png | Bin 0 -> 24813 bytes .../src/assets/theme_images/background-1.png | Bin 0 -> 187769 bytes front-end/src/config/cli.config.js | 33 + front-end/src/config/index.js | 15 + front-end/src/config/net.config.js | 27 + front-end/src/config/setting.config.js | 67 + front-end/src/config/theme.config.js | 45 + front-end/src/i18n/index.ts | 44 + front-end/src/i18n/locales/en.json | 172 + front-end/src/icon/index.ts | 2 + front-end/src/icon/vab.svg | 24 + front-end/src/icon/vuejs-fill.svg | 4 + front-end/src/main.ts | 36 + front-end/src/plugins/VabAnchor/index.vue | 135 + front-end/src/plugins/VabAvatarList/index.vue | 33 + front-end/src/plugins/VabCalendar.ts | 1122 ++ front-end/src/plugins/VabChart/index.vue | 287 + .../VabChart/theme/vab-echarts-theme.json | 317 + front-end/src/plugins/VabCount/index.vue | 222 + .../plugins/VabCount/requestAnimationFrame.js | 45 + front-end/src/plugins/VabDialog/index.vue | 145 + front-end/src/plugins/VabFormTable/index.vue | 128 + .../src/plugins/VabIconSelector/index.vue | 116 + front-end/src/plugins/VabPrint.ts | 148 + front-end/src/plugins/VabQrCode.ts | 1 + front-end/src/plugins/VabUpdate/index.vue | 157 + front-end/src/plugins/VabUpload/index.vue | 270 + front-end/src/registerServiceWorker.ts | 56 + front-end/src/router/index.ts | 1112 ++ front-end/src/router/permissions.ts | 75 + front-end/src/store/index.ts | 11 + front-end/src/store/modules/acl.ts | 25 + front-end/src/store/modules/errorLog.ts | 21 + front-end/src/store/modules/routes.ts | 113 + front-end/src/store/modules/settings.ts | 182 + front-end/src/store/modules/tabs.ts | 123 + front-end/src/store/modules/user.ts | 179 + front-end/src/utils/clipboard.ts | 38 + front-end/src/utils/encrypt.ts | 83 + front-end/src/utils/excel.ts | 229 + front-end/src/utils/index.ts | 443 + front-end/src/utils/pageTitle.ts | 33 + front-end/src/utils/permission.ts | 56 + front-end/src/utils/request.ts | 196 + front-end/src/utils/routes.ts | 174 + front-end/src/utils/social.ts | 39 + front-end/src/utils/static.ts | 76 + front-end/src/utils/token.ts | 78 + front-end/src/utils/validate.ts | 227 + front-end/src/utils/watermark.ts | 49 + front-end/src/views/403.vue | 190 + front-end/src/views/404.vue | 190 + front-end/src/views/callback/index.vue | 21 + front-end/src/views/direct/index.vue | 18 + .../views/github/githubExternalLink/index.vue | 15 + front-end/src/views/index/FriendlyTip.vue | 87 + front-end/src/views/index/Pricing.vue | 322 + .../src/views/index/components/Access.vue | 176 + .../views/index/components/Authorization.vue | 167 + .../src/views/index/components/Branch.vue | 62 + .../src/views/index/components/ChinaMap.vue | 127 + .../src/views/index/components/IconList.vue | 172 + .../src/views/index/components/MyProject.vue | 94 + .../src/views/index/components/Order.vue | 318 + .../src/views/index/components/PageHeader.vue | 145 + front-end/src/views/index/components/Plan.vue | 96 + front-end/src/views/index/components/Rank.vue | 96 + .../views/index/components/StoreActivity.vue | 193 + .../src/views/index/components/StoreCard.vue | 150 + .../views/index/components/StoreCarousel.vue | 122 + .../views/index/components/StoreHeader.vue | 90 + .../src/views/index/components/StoreLeft.vue | 208 + .../src/views/index/components/StoreList.vue | 195 + front-end/src/views/index/components/Tabs.vue | 120 + .../src/views/index/components/Target.vue | 290 + .../src/views/index/components/TopCard.vue | 145 + .../src/views/index/components/Trend.vue | 107 + .../index/components/VersionInformation.vue | 135 + front-end/src/views/index/dashboard.vue | 100 + front-end/src/views/index/index.vue | 112 + front-end/src/views/index/settings.vue | 311 + front-end/src/views/index/statistics.vue | 561 + front-end/src/views/index/store.vue | 53 + front-end/src/views/index/workbench.vue | 32 + front-end/src/views/login/index.vue | 392 + front-end/src/views/mall/goods/index.vue | 227 + .../src/views/noColumn/deleteColumn/index.vue | 17 + .../cssfx/components/button-bubble-bl.vue | 43 + .../cssfx/components/button-bubble-br.vue | 43 + .../cssfx/components/button-bubble-tl.vue | 43 + .../cssfx/components/button-bubble-tr.vue | 43 + .../other/cssfx/components/button-bubble.vue | 43 + .../other/cssfx/components/button-jelly.vue | 40 + .../other/cssfx/components/button-pulse.vue | 38 + .../other/cssfx/components/button-shine.vue | 35 + .../cssfx/components/button-slide-down.vue | 37 + .../cssfx/components/button-slide-left.vue | 37 + .../cssfx/components/button-slide-right.vue | 37 + .../cssfx/components/button-slide-up.vue | 37 + .../src/views/other/cssfx/components/index.js | 24 + .../other/cssfx/components/input-outline.vue | 96 + .../other/cssfx/components/input-outline2.vue | 83 + .../other/cssfx/components/input-trace.vue | 99 + .../cssfx/components/input-underline.vue | 47 + .../cssfx/components/input-underline2.vue | 48 + .../other/cssfx/components/text-bars.vue | 36 + .../other/cssfx/components/text-bars2.vue | 41 + .../other/cssfx/components/text-barsr3.vue | 35 + .../cssfx/components/text-highlight-right.vue | 26 + .../cssfx/components/text-highlight-up.vue | 26 + .../other/cssfx/components/text-overline.vue | 27 + .../other/cssfx/components/text-overline2.vue | 28 + .../other/cssfx/components/text-pillars.vue | 36 + .../other/cssfx/components/text-pillars2.vue | 41 + .../other/cssfx/components/text-pillars3.vue | 35 + .../cssfx/components/text-strikethrough.vue | 31 + .../other/cssfx/components/text-underline.vue | 27 + .../cssfx/components/text-underline2.vue | 27 + .../cssfx/components/text-underline3.vue | 26 + front-end/src/views/other/cssfx/index.vue | 50 + front-end/src/views/other/drag/cardDrag.vue | 122 + .../other/drag/components/DialogDemo.vue | 37 + front-end/src/views/other/drag/dialogDrag.vue | 29 + .../src/views/other/dynamicAnchor/index.vue | 40 + .../src/views/other/dynamicMeta/index.vue | 153 + .../src/views/other/dynamicSegment/test1.vue | 60 + .../src/views/other/dynamicSegment/test2.vue | 49 + .../other/echarts/components/VabChartBar.vue | 57 + .../components/VabChartCandlestick.vue | 66 + .../echarts/components/VabChartFunnel.vue | 83 + .../echarts/components/VabChartGauge.vue | 69 + .../other/echarts/components/VabChartLine.vue | 57 + .../other/echarts/components/VabChartPie.vue | 82 + .../echarts/components/VabChartRadar.vue | 71 + .../echarts/components/VabChartScatter.vue | 76 + .../echarts/components/VabChartSunburst.vue | 229 + .../echarts/components/VabChartThemeRiver.vue | 215 + .../echarts/components/VabChartTreemap.vue | 83 + front-end/src/views/other/echarts/index.vue | 70 + .../other/errorLog/components/ErrorTest.vue | 10 + front-end/src/views/other/errorLog/index.vue | 39 + .../src/views/other/excel/exportExcel.vue | 127 + .../other/excel/exportMergeHeaderExcel.vue | 116 + .../views/other/excel/exportSelectExcel.vue | 139 + front-end/src/views/other/iframe/search.vue | 97 + front-end/src/views/other/iframe/view.vue | 44 + .../menu1-1/menu1-1-1/menu1-1-1-1/index.vue | 20 + front-end/src/views/other/noLayout/index.vue | 37 + front-end/src/views/other/notice/index.vue | 277 + front-end/src/views/other/print/index.vue | 87 + front-end/src/views/other/share/index.vue | 96 + front-end/src/views/other/social/index.vue | 62 + front-end/src/views/other/tabs/index.vue | 91 + front-end/src/views/other/timeline/index.vue | 209 + front-end/src/views/other/upload/index.vue | 34 + front-end/src/views/other/watermark/index.vue | 47 + .../workflow/components/background/click.png | Bin 0 -> 2666 bytes .../components/background/download.png | Bin 0 -> 2028 bytes .../workflow/components/background/end.png | Bin 0 -> 4889 bytes .../workflow/components/background/push.png | Bin 0 -> 2286 bytes .../workflow/components/background/start.png | Bin 0 -> 3950 bytes .../workflow/components/background/time.png | Bin 0 -> 2988 bytes .../workflow/components/background/user.png | Bin 0 -> 40754 bytes .../components/lFComponents/AddPanel.vue | 136 + .../components/lFComponents/Control.vue | 101 + .../components/lFComponents/DataDialog.vue | 36 + .../components/lFComponents/NodePanel.vue | 146 + .../propertySetting/CommonProperty.vue | 63 + .../propertySetting/PropertyDialog.vue | 54 + .../components/propertySetting/User.vue | 118 + .../workflow/components/registerNode/index.js | 10 + .../registerNode/registerDownload.js | 84 + .../components/registerNode/registerEnd.js | 76 + .../registerNode/registerPolyline.js | 14 + .../components/registerNode/registerPush.js | 120 + .../components/registerNode/registerStart.js | 63 + .../components/registerNode/registerUser.js | 105 + front-end/src/views/other/workflow/index.vue | 303 + front-end/src/views/register/index.vue | 365 + .../components/DepartmentManagementEdit.vue | 136 + .../setting/departmentManagement/index.vue | 209 + .../components/DictionaryManagementEdit.vue | 84 + .../setting/dictionaryManagement/index.vue | 228 + .../components/MenuManagementEdit.vue | 186 + .../views/setting/menuManagement/index.vue | 237 + .../views/setting/personalCenter/index.vue | 403 + .../components/RoleManagementEdit.vue | 162 + .../views/setting/roleManagement/index.vue | 235 + .../src/views/setting/systemLog/index.vue | 189 + .../views/setting/taskManagement/index.vue | 277 + .../components/UserManagementEdit.vue | 115 + .../views/setting/userManagement/index.vue | 232 + front-end/src/views/tools/EyeDropper.vue | 22 + front-end/src/views/tools/SpeechSynthesis.vue | 111 + front-end/src/views/vab/calendar/index.vue | 86 + front-end/src/views/vab/description/index.vue | 216 + front-end/src/views/vab/editor/wangEditor.vue | 111 + front-end/src/views/vab/form/button.vue | 178 + front-end/src/views/vab/form/checkbox.vue | 80 + .../src/views/vab/form/components/Step1.vue | 109 + .../src/views/vab/form/components/Step2.vue | 91 + .../src/views/vab/form/components/Step3.vue | 114 + .../src/views/vab/form/comprehensiveForm.vue | 278 + front-end/src/views/vab/form/datePicker.vue | 141 + .../src/views/vab/form/dateTimePicker.vue | 65 + front-end/src/views/vab/form/input.vue | 162 + front-end/src/views/vab/form/inputNumber.vue | 75 + front-end/src/views/vab/form/link.vue | 76 + front-end/src/views/vab/form/radio.vue | 74 + front-end/src/views/vab/form/rate.vue | 52 + front-end/src/views/vab/form/select.vue | 232 + front-end/src/views/vab/form/slider.vue | 81 + front-end/src/views/vab/form/stepForm.vue | 114 + front-end/src/views/vab/form/switch.vue | 56 + front-end/src/views/vab/form/timePicker.vue | 102 + front-end/src/views/vab/icon/customSvg.vue | 55 + front-end/src/views/vab/icon/defaultIcon.vue | 230 + front-end/src/views/vab/icon/iconSelector.vue | 56 + front-end/src/views/vab/list/index.vue | 202 + front-end/src/views/vab/permission/index.vue | 390 + .../views/vab/table/components/TableEdit.vue | 95 + .../views/vab/table/comprehensiveTable.vue | 476 + front-end/src/views/vab/table/customTable.vue | 414 + front-end/src/views/vab/table/detail.vue | 98 + .../src/views/vab/table/dynamicTable.vue | 147 + .../src/views/vab/table/inlineEditTable.vue | 176 + front-end/tests/unit/validate.spec.ts | 39 + front-end/tsconfig.json | 41 + front-end/types/acl.d.ts | 26 + front-end/types/library.d.ts | 35 + front-end/types/router.d.ts | 66 + front-end/types/shims-vue.d.ts | 11 + front-end/types/store.d.ts | 53 + front-end/types/theme.d.ts | 124 + front-end/types/vab.d.ts | 2 + .../lib/fonts/remixicon.31d28485.eot | Bin 0 -> 403228 bytes .../lib/fonts/remixicon.881fbc46.woff | Bin 0 -> 172876 bytes .../lib/fonts/remixicon.888e61f0.ttf | Bin 0 -> 403056 bytes .../lib/fonts/remixicon.9915fef9.woff2 | Bin 0 -> 125268 bytes .../vab-icons/lib/img/remixicon.95138f36.svg | 6835 ++++++++ .../lib/img/remixicon.symbol.f09b1c74.svg | 11356 +++++++++++++ front-end/vab-icons/lib/vab-icons.css | 1 + front-end/vab-icons/lib/vab-icons.umd.min.js | 258 + front-end/vab-icons/package.json | 5 + front-end/vue.config.js | 172 + front-end/vue.config.website.js | 172 + front-end/webstorm.config.js | 3 + 504 files changed, 80629 insertions(+) create mode 100644 .gitignore create mode 100644 .trae/rules/bai.md create mode 100644 back-end/.env create mode 100644 back-end/package-lock.json create mode 100644 back-end/package.json create mode 100644 back-end/spec/openapi.yaml create mode 100644 back-end/src/index.js create mode 100644 docs/project.md create mode 100644 front-end/.browserslistrc create mode 100644 front-end/.editorconfig create mode 100644 front-end/.env create mode 100644 front-end/.env.development create mode 100644 front-end/.env.production create mode 100644 front-end/.env.test create mode 100644 front-end/.eslintignore create mode 100644 front-end/.eslintrc.js create mode 100644 front-end/.gitattributes create mode 100644 front-end/.gitignore create mode 100644 front-end/.npmrc create mode 100644 front-end/.prettierignore create mode 100644 front-end/.stylelintrc.js create mode 100644 front-end/AI-Coding/00-Quick-Profile.md create mode 100644 front-end/AI-Coding/01-Directory-Map.md create mode 100644 front-end/AI-Coding/02-Boot-Sequence.md create mode 100644 front-end/AI-Coding/03-Mock-System.md create mode 100644 front-end/AI-Coding/04-Router-and-Views.md create mode 100644 front-end/AI-Coding/05-Store.md create mode 100644 front-end/AI-Coding/06-i18n.md create mode 100644 front-end/AI-Coding/07-API.md create mode 100644 front-end/AI-Coding/08-Alias-and-Types.md create mode 100644 front-end/AI-Coding/09-Plop.md create mode 100644 front-end/AI-Coding/10-Theme-System.md create mode 100644 front-end/AI-Coding/11-Plugins-System.md create mode 100644 front-end/AI-Coding/12-Settings-Store.md create mode 100644 front-end/AI-Coding/13-Component-Inventory.md create mode 100644 front-end/AI-Coding/14-Store-Modules.md create mode 100644 front-end/AI-Coding/15-Snippet-Map.md create mode 100644 front-end/AI-Coding/16-Config-Keys.md create mode 100644 front-end/AI-Coding/AI-Reuse-Playbook.md create mode 100644 front-end/AI-Coding/Pitfalls.md create mode 100644 front-end/AI-Coding/README.md create mode 100644 front-end/AI-Coding/Search-Anchors.md create mode 100644 front-end/AI-Coding/Validation.md create mode 100644 front-end/AI-Coding/openspec-lite/manifest.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/access-control.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/api-system.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/config-system.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/icons.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/layouts.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/mock.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/plop.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/plugin-directive.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/plugin-errorlog.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/plugin-support.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/plugin-vab.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/router.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/setup-vab.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/store-errorlog.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/store-routes.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/store-settings.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/store-tabs.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/store-user.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/styles.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/ui-components.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-app-main.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-app.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-avatar.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-breadcrumb.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-card.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-colorful-card.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-column-bar.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-error-log.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-fold.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-footer.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-full-screen.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-header.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-language.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-link.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-lock.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-logo.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-menu.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-nav.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-notice.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-query-form.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-refresh.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-router-view.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-search.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-sidebar.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-tabs.yaml create mode 100644 front-end/AI-Coding/openspec-lite/modules/vab-theme.yaml create mode 100644 front-end/AI-Coding/openspec-lite/project.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/add-api-and-mock.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/add-page.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/extract-component.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/extract-layout.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/extract-module.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/extract-plugin.yaml create mode 100644 front-end/AI-Coding/openspec-lite/tasks/extract-theme.yaml create mode 100644 front-end/LICENSE create mode 100644 front-end/README.md create mode 100644 front-end/babel.config.js create mode 100644 front-end/git.sh create mode 100644 front-end/jsconfig.json create mode 100644 front-end/library/build/chainWebpack/banner/config.ts create mode 100644 front-end/library/build/chainWebpack/banner/index.ts create mode 100644 front-end/library/build/chainWebpack/build7z/index.ts create mode 100644 front-end/library/build/chainWebpack/gzip/index.ts create mode 100644 front-end/library/build/chainWebpack/imageCompression/index.ts create mode 100644 front-end/library/build/chainWebpack/index.ts create mode 100644 front-end/library/build/chainWebpack/optimization/index.ts create mode 100644 front-end/library/build/chainWebpack/sourceInjector/index.ts create mode 100644 front-end/library/build/chainWebpack/sourceInjector/injector.ts create mode 100644 front-end/library/build/chainWebpack/svgSprite/index.ts create mode 100644 front-end/library/build/index.ts create mode 100644 front-end/library/build/vuePlugins/auto-imports.d.ts create mode 100644 front-end/library/build/vuePlugins/components.d.ts create mode 100644 front-end/library/build/vuePlugins/defineOptions/index.ts create mode 100644 front-end/library/build/vuePlugins/definePlugin/index.ts create mode 100644 front-end/library/build/vuePlugins/index.ts create mode 100644 front-end/library/build/vuePlugins/minChunkSizePlugin/index.ts create mode 100644 front-end/library/build/vuePlugins/providePlugin/index.ts create mode 100644 front-end/library/build/vuePlugins/webpackBar/index.ts create mode 100644 front-end/library/components/VabApp/index.vue create mode 100644 front-end/library/components/VabAppMain/index.vue create mode 100644 front-end/library/components/VabAvatar/index.vue create mode 100644 front-end/library/components/VabBreadcrumb/index.vue create mode 100644 front-end/library/components/VabCard/index.vue create mode 100644 front-end/library/components/VabColorfulCard/index.vue create mode 100644 front-end/library/components/VabColumnBar/index.vue create mode 100644 front-end/library/components/VabErrorLog/index.vue create mode 100644 front-end/library/components/VabFold/index.vue create mode 100644 front-end/library/components/VabFooter/index.vue create mode 100644 front-end/library/components/VabFullScreen/index.vue create mode 100644 front-end/library/components/VabHeader/index.vue create mode 100644 front-end/library/components/VabLanguage/index.vue create mode 100644 front-end/library/components/VabLink/index.vue create mode 100644 front-end/library/components/VabLock/index.vue create mode 100644 front-end/library/components/VabLogo/index.vue create mode 100644 front-end/library/components/VabMenu/components/VabMenuItem.vue create mode 100644 front-end/library/components/VabMenu/components/VabSubMenu.vue create mode 100644 front-end/library/components/VabMenu/index.vue create mode 100644 front-end/library/components/VabNav/index.vue create mode 100644 front-end/library/components/VabNotice/index.vue create mode 100644 front-end/library/components/VabQueryForm/components/VabQueryFormBottomPanel.vue create mode 100644 front-end/library/components/VabQueryForm/components/VabQueryFormLeftPanel.vue create mode 100644 front-end/library/components/VabQueryForm/components/VabQueryFormRightPanel.vue create mode 100644 front-end/library/components/VabQueryForm/components/VabQueryFormTopPanel.vue create mode 100644 front-end/library/components/VabQueryForm/index.vue create mode 100644 front-end/library/components/VabRefresh/index.vue create mode 100644 front-end/library/components/VabRouterView/index.vue create mode 100644 front-end/library/components/VabSearch/index.vue create mode 100644 front-end/library/components/VabSideBar/index.vue create mode 100644 front-end/library/components/VabTabs/index.vue create mode 100644 front-end/library/components/VabTheme/components/VabThemeDrawer.vue create mode 100644 front-end/library/components/VabTheme/components/VabThemeSetting.vue create mode 100644 front-end/library/components/VabTheme/index.vue create mode 100644 front-end/library/index.ts create mode 100644 front-end/library/layouts/VabLayoutColumn/index.vue create mode 100644 front-end/library/layouts/VabLayoutCommon/index.vue create mode 100644 front-end/library/layouts/VabLayoutComprehensive/index.vue create mode 100644 front-end/library/layouts/VabLayoutFloat/index.vue create mode 100644 front-end/library/layouts/VabLayoutHorizontal/index.vue create mode 100644 front-end/library/layouts/VabLayoutVertical/index.vue create mode 100644 front-end/library/layouts/index.vue create mode 100644 front-end/library/plugins/directive.ts create mode 100644 front-end/library/plugins/errorLog.ts create mode 100644 front-end/library/plugins/support.ts create mode 100644 front-end/library/plugins/vab.ts create mode 100644 front-end/library/shims-vab.d.ts create mode 100644 front-end/library/styles/background/black.scss create mode 100644 front-end/library/styles/background/image.scss create mode 100644 front-end/library/styles/background/ocean.scss create mode 100644 front-end/library/styles/background/white.scss create mode 100644 front-end/library/styles/loading/dots.css create mode 100644 front-end/library/styles/loading/gauge.css create mode 100644 front-end/library/styles/loading/inner-circles.css create mode 100644 front-end/library/styles/loading/plus.css create mode 100644 front-end/library/styles/normalize.scss create mode 100644 front-end/library/styles/transition.scss create mode 100644 front-end/library/styles/vab.scss create mode 100644 front-end/library/styles/variables/vab-blue-variables.module.scss create mode 100644 front-end/library/styles/variables/vab-green-variables.module.scss create mode 100644 front-end/library/styles/variables/vab-purple-variables.module.scss create mode 100644 front-end/library/styles/variables/vab-red-variables.module.scss create mode 100644 front-end/library/styles/variables/variables.module.scss create mode 100644 front-end/mail.txt create mode 100644 front-end/mock/controller/area.js create mode 100644 front-end/mock/controller/defaultIcon.js create mode 100644 front-end/mock/controller/departmentManagement.js create mode 100644 front-end/mock/controller/dictionaryManagement.js create mode 100644 front-end/mock/controller/goods.js create mode 100644 front-end/mock/controller/menuManagement.js create mode 100644 front-end/mock/controller/notice.js create mode 100644 front-end/mock/controller/refreshToken.js create mode 100644 front-end/mock/controller/roleManagement.js create mode 100644 front-end/mock/controller/router.js create mode 100644 front-end/mock/controller/search.js create mode 100644 front-end/mock/controller/systemLog.js create mode 100644 front-end/mock/controller/table.js create mode 100644 front-end/mock/controller/taskManagement.js create mode 100644 front-end/mock/controller/user.js create mode 100644 front-end/mock/controller/userManagement.js create mode 100644 front-end/mock/controller/workflow.js create mode 100644 front-end/mock/index.js create mode 100644 front-end/mock/utils/index.js create mode 100644 front-end/package.json create mode 100644 front-end/plopfile.js create mode 100644 front-end/prettier.config.js create mode 100644 front-end/public/favicon.ico create mode 100644 front-end/public/img/icons/android-chrome-192x192.png create mode 100644 front-end/public/img/icons/android-chrome-512x512.png create mode 100644 front-end/public/img/icons/android-chrome-maskable-192x192.png create mode 100644 front-end/public/img/icons/android-chrome-maskable-512x512.png create mode 100644 front-end/public/img/icons/apple-touch-icon-152x152.png create mode 100644 front-end/public/img/icons/favicon-16x16.png create mode 100644 front-end/public/img/icons/favicon-32x32.png create mode 100644 front-end/public/img/icons/msapplication-icon-144x144.png create mode 100644 front-end/public/img/icons/safari-pinned-tab.svg create mode 100644 front-end/public/index.html create mode 100644 front-end/public/json/china.json create mode 100644 front-end/public/static/css/loading.css create mode 100644 front-end/scripts/compress.js create mode 100644 front-end/src/App.vue create mode 100644 front-end/src/api/area.ts create mode 100644 front-end/src/api/defaultIcon.ts create mode 100644 front-end/src/api/departmentManagement.ts create mode 100644 front-end/src/api/description.ts create mode 100644 front-end/src/api/dictionaryManagement.ts create mode 100644 front-end/src/api/goods.ts create mode 100644 front-end/src/api/menuManagement.ts create mode 100644 front-end/src/api/notice.ts create mode 100644 front-end/src/api/publicKey.ts create mode 100644 front-end/src/api/refreshToken.ts create mode 100644 front-end/src/api/roleManagement.ts create mode 100644 front-end/src/api/router.ts create mode 100644 front-end/src/api/search.ts create mode 100644 front-end/src/api/systemLog.ts create mode 100644 front-end/src/api/table.ts create mode 100644 front-end/src/api/taskManagement.ts create mode 100644 front-end/src/api/user.ts create mode 100644 front-end/src/api/userManagement.ts create mode 100644 front-end/src/api/workflow.ts create mode 100644 front-end/src/assets/cropper_images/user.gif create mode 100644 front-end/src/assets/empty_images/data_empty.png create mode 100644 front-end/src/assets/error_images/403.png create mode 100644 front-end/src/assets/error_images/404.png create mode 100644 front-end/src/assets/error_images/cloud.png create mode 100644 front-end/src/assets/index_images/image.jpg create mode 100644 front-end/src/assets/login_images/background.jpg create mode 100644 front-end/src/assets/login_images/login_form.png create mode 100644 front-end/src/assets/logo.png create mode 100644 front-end/src/assets/mobile_images/mobile.png create mode 100644 front-end/src/assets/rank_images/rank.png create mode 100644 front-end/src/assets/skm.jpg create mode 100644 front-end/src/assets/skm1.jpg create mode 100644 front-end/src/assets/skm2.jpg create mode 100644 front-end/src/assets/tabs_images/vab-tab.png create mode 100644 front-end/src/assets/task_image/task.png create mode 100644 front-end/src/assets/theme_images/background-1.png create mode 100644 front-end/src/config/cli.config.js create mode 100644 front-end/src/config/index.js create mode 100644 front-end/src/config/net.config.js create mode 100644 front-end/src/config/setting.config.js create mode 100644 front-end/src/config/theme.config.js create mode 100644 front-end/src/i18n/index.ts create mode 100644 front-end/src/i18n/locales/en.json create mode 100644 front-end/src/icon/index.ts create mode 100644 front-end/src/icon/vab.svg create mode 100644 front-end/src/icon/vuejs-fill.svg create mode 100644 front-end/src/main.ts create mode 100644 front-end/src/plugins/VabAnchor/index.vue create mode 100644 front-end/src/plugins/VabAvatarList/index.vue create mode 100644 front-end/src/plugins/VabCalendar.ts create mode 100644 front-end/src/plugins/VabChart/index.vue create mode 100644 front-end/src/plugins/VabChart/theme/vab-echarts-theme.json create mode 100644 front-end/src/plugins/VabCount/index.vue create mode 100644 front-end/src/plugins/VabCount/requestAnimationFrame.js create mode 100644 front-end/src/plugins/VabDialog/index.vue create mode 100644 front-end/src/plugins/VabFormTable/index.vue create mode 100644 front-end/src/plugins/VabIconSelector/index.vue create mode 100644 front-end/src/plugins/VabPrint.ts create mode 100644 front-end/src/plugins/VabQrCode.ts create mode 100644 front-end/src/plugins/VabUpdate/index.vue create mode 100644 front-end/src/plugins/VabUpload/index.vue create mode 100644 front-end/src/registerServiceWorker.ts create mode 100644 front-end/src/router/index.ts create mode 100644 front-end/src/router/permissions.ts create mode 100644 front-end/src/store/index.ts create mode 100644 front-end/src/store/modules/acl.ts create mode 100644 front-end/src/store/modules/errorLog.ts create mode 100644 front-end/src/store/modules/routes.ts create mode 100644 front-end/src/store/modules/settings.ts create mode 100644 front-end/src/store/modules/tabs.ts create mode 100644 front-end/src/store/modules/user.ts create mode 100644 front-end/src/utils/clipboard.ts create mode 100644 front-end/src/utils/encrypt.ts create mode 100644 front-end/src/utils/excel.ts create mode 100644 front-end/src/utils/index.ts create mode 100644 front-end/src/utils/pageTitle.ts create mode 100644 front-end/src/utils/permission.ts create mode 100644 front-end/src/utils/request.ts create mode 100644 front-end/src/utils/routes.ts create mode 100644 front-end/src/utils/social.ts create mode 100644 front-end/src/utils/static.ts create mode 100644 front-end/src/utils/token.ts create mode 100644 front-end/src/utils/validate.ts create mode 100644 front-end/src/utils/watermark.ts create mode 100644 front-end/src/views/403.vue create mode 100644 front-end/src/views/404.vue create mode 100644 front-end/src/views/callback/index.vue create mode 100644 front-end/src/views/direct/index.vue create mode 100644 front-end/src/views/github/githubExternalLink/index.vue create mode 100644 front-end/src/views/index/FriendlyTip.vue create mode 100644 front-end/src/views/index/Pricing.vue create mode 100644 front-end/src/views/index/components/Access.vue create mode 100644 front-end/src/views/index/components/Authorization.vue create mode 100644 front-end/src/views/index/components/Branch.vue create mode 100644 front-end/src/views/index/components/ChinaMap.vue create mode 100644 front-end/src/views/index/components/IconList.vue create mode 100644 front-end/src/views/index/components/MyProject.vue create mode 100644 front-end/src/views/index/components/Order.vue create mode 100644 front-end/src/views/index/components/PageHeader.vue create mode 100644 front-end/src/views/index/components/Plan.vue create mode 100644 front-end/src/views/index/components/Rank.vue create mode 100644 front-end/src/views/index/components/StoreActivity.vue create mode 100644 front-end/src/views/index/components/StoreCard.vue create mode 100644 front-end/src/views/index/components/StoreCarousel.vue create mode 100644 front-end/src/views/index/components/StoreHeader.vue create mode 100644 front-end/src/views/index/components/StoreLeft.vue create mode 100644 front-end/src/views/index/components/StoreList.vue create mode 100644 front-end/src/views/index/components/Tabs.vue create mode 100644 front-end/src/views/index/components/Target.vue create mode 100644 front-end/src/views/index/components/TopCard.vue create mode 100644 front-end/src/views/index/components/Trend.vue create mode 100644 front-end/src/views/index/components/VersionInformation.vue create mode 100644 front-end/src/views/index/dashboard.vue create mode 100644 front-end/src/views/index/index.vue create mode 100644 front-end/src/views/index/settings.vue create mode 100644 front-end/src/views/index/statistics.vue create mode 100644 front-end/src/views/index/store.vue create mode 100644 front-end/src/views/index/workbench.vue create mode 100644 front-end/src/views/login/index.vue create mode 100644 front-end/src/views/mall/goods/index.vue create mode 100644 front-end/src/views/noColumn/deleteColumn/index.vue create mode 100644 front-end/src/views/other/cssfx/components/button-bubble-bl.vue create mode 100644 front-end/src/views/other/cssfx/components/button-bubble-br.vue create mode 100644 front-end/src/views/other/cssfx/components/button-bubble-tl.vue create mode 100644 front-end/src/views/other/cssfx/components/button-bubble-tr.vue create mode 100644 front-end/src/views/other/cssfx/components/button-bubble.vue create mode 100644 front-end/src/views/other/cssfx/components/button-jelly.vue create mode 100644 front-end/src/views/other/cssfx/components/button-pulse.vue create mode 100644 front-end/src/views/other/cssfx/components/button-shine.vue create mode 100644 front-end/src/views/other/cssfx/components/button-slide-down.vue create mode 100644 front-end/src/views/other/cssfx/components/button-slide-left.vue create mode 100644 front-end/src/views/other/cssfx/components/button-slide-right.vue create mode 100644 front-end/src/views/other/cssfx/components/button-slide-up.vue create mode 100644 front-end/src/views/other/cssfx/components/index.js create mode 100644 front-end/src/views/other/cssfx/components/input-outline.vue create mode 100644 front-end/src/views/other/cssfx/components/input-outline2.vue create mode 100644 front-end/src/views/other/cssfx/components/input-trace.vue create mode 100644 front-end/src/views/other/cssfx/components/input-underline.vue create mode 100644 front-end/src/views/other/cssfx/components/input-underline2.vue create mode 100644 front-end/src/views/other/cssfx/components/text-bars.vue create mode 100644 front-end/src/views/other/cssfx/components/text-bars2.vue create mode 100644 front-end/src/views/other/cssfx/components/text-barsr3.vue create mode 100644 front-end/src/views/other/cssfx/components/text-highlight-right.vue create mode 100644 front-end/src/views/other/cssfx/components/text-highlight-up.vue create mode 100644 front-end/src/views/other/cssfx/components/text-overline.vue create mode 100644 front-end/src/views/other/cssfx/components/text-overline2.vue create mode 100644 front-end/src/views/other/cssfx/components/text-pillars.vue create mode 100644 front-end/src/views/other/cssfx/components/text-pillars2.vue create mode 100644 front-end/src/views/other/cssfx/components/text-pillars3.vue create mode 100644 front-end/src/views/other/cssfx/components/text-strikethrough.vue create mode 100644 front-end/src/views/other/cssfx/components/text-underline.vue create mode 100644 front-end/src/views/other/cssfx/components/text-underline2.vue create mode 100644 front-end/src/views/other/cssfx/components/text-underline3.vue create mode 100644 front-end/src/views/other/cssfx/index.vue create mode 100644 front-end/src/views/other/drag/cardDrag.vue create mode 100644 front-end/src/views/other/drag/components/DialogDemo.vue create mode 100644 front-end/src/views/other/drag/dialogDrag.vue create mode 100644 front-end/src/views/other/dynamicAnchor/index.vue create mode 100644 front-end/src/views/other/dynamicMeta/index.vue create mode 100644 front-end/src/views/other/dynamicSegment/test1.vue create mode 100644 front-end/src/views/other/dynamicSegment/test2.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartBar.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartCandlestick.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartFunnel.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartGauge.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartLine.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartPie.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartRadar.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartScatter.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartSunburst.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartThemeRiver.vue create mode 100644 front-end/src/views/other/echarts/components/VabChartTreemap.vue create mode 100644 front-end/src/views/other/echarts/index.vue create mode 100644 front-end/src/views/other/errorLog/components/ErrorTest.vue create mode 100644 front-end/src/views/other/errorLog/index.vue create mode 100644 front-end/src/views/other/excel/exportExcel.vue create mode 100644 front-end/src/views/other/excel/exportMergeHeaderExcel.vue create mode 100644 front-end/src/views/other/excel/exportSelectExcel.vue create mode 100644 front-end/src/views/other/iframe/search.vue create mode 100644 front-end/src/views/other/iframe/view.vue create mode 100644 front-end/src/views/other/nested/menu1/menu1-1/menu1-1-1/menu1-1-1-1/index.vue create mode 100644 front-end/src/views/other/noLayout/index.vue create mode 100644 front-end/src/views/other/notice/index.vue create mode 100644 front-end/src/views/other/print/index.vue create mode 100644 front-end/src/views/other/share/index.vue create mode 100644 front-end/src/views/other/social/index.vue create mode 100644 front-end/src/views/other/tabs/index.vue create mode 100644 front-end/src/views/other/timeline/index.vue create mode 100644 front-end/src/views/other/upload/index.vue create mode 100644 front-end/src/views/other/watermark/index.vue create mode 100644 front-end/src/views/other/workflow/components/background/click.png create mode 100644 front-end/src/views/other/workflow/components/background/download.png create mode 100644 front-end/src/views/other/workflow/components/background/end.png create mode 100644 front-end/src/views/other/workflow/components/background/push.png create mode 100644 front-end/src/views/other/workflow/components/background/start.png create mode 100644 front-end/src/views/other/workflow/components/background/time.png create mode 100644 front-end/src/views/other/workflow/components/background/user.png create mode 100644 front-end/src/views/other/workflow/components/lFComponents/AddPanel.vue create mode 100644 front-end/src/views/other/workflow/components/lFComponents/Control.vue create mode 100644 front-end/src/views/other/workflow/components/lFComponents/DataDialog.vue create mode 100644 front-end/src/views/other/workflow/components/lFComponents/NodePanel.vue create mode 100644 front-end/src/views/other/workflow/components/propertySetting/CommonProperty.vue create mode 100644 front-end/src/views/other/workflow/components/propertySetting/PropertyDialog.vue create mode 100644 front-end/src/views/other/workflow/components/propertySetting/User.vue create mode 100644 front-end/src/views/other/workflow/components/registerNode/index.js create mode 100644 front-end/src/views/other/workflow/components/registerNode/registerDownload.js create mode 100644 front-end/src/views/other/workflow/components/registerNode/registerEnd.js create mode 100644 front-end/src/views/other/workflow/components/registerNode/registerPolyline.js create mode 100644 front-end/src/views/other/workflow/components/registerNode/registerPush.js create mode 100644 front-end/src/views/other/workflow/components/registerNode/registerStart.js create mode 100644 front-end/src/views/other/workflow/components/registerNode/registerUser.js create mode 100644 front-end/src/views/other/workflow/index.vue create mode 100644 front-end/src/views/register/index.vue create mode 100644 front-end/src/views/setting/departmentManagement/components/DepartmentManagementEdit.vue create mode 100644 front-end/src/views/setting/departmentManagement/index.vue create mode 100644 front-end/src/views/setting/dictionaryManagement/components/DictionaryManagementEdit.vue create mode 100644 front-end/src/views/setting/dictionaryManagement/index.vue create mode 100644 front-end/src/views/setting/menuManagement/components/MenuManagementEdit.vue create mode 100644 front-end/src/views/setting/menuManagement/index.vue create mode 100644 front-end/src/views/setting/personalCenter/index.vue create mode 100644 front-end/src/views/setting/roleManagement/components/RoleManagementEdit.vue create mode 100644 front-end/src/views/setting/roleManagement/index.vue create mode 100644 front-end/src/views/setting/systemLog/index.vue create mode 100644 front-end/src/views/setting/taskManagement/index.vue create mode 100644 front-end/src/views/setting/userManagement/components/UserManagementEdit.vue create mode 100644 front-end/src/views/setting/userManagement/index.vue create mode 100644 front-end/src/views/tools/EyeDropper.vue create mode 100644 front-end/src/views/tools/SpeechSynthesis.vue create mode 100644 front-end/src/views/vab/calendar/index.vue create mode 100644 front-end/src/views/vab/description/index.vue create mode 100644 front-end/src/views/vab/editor/wangEditor.vue create mode 100644 front-end/src/views/vab/form/button.vue create mode 100644 front-end/src/views/vab/form/checkbox.vue create mode 100644 front-end/src/views/vab/form/components/Step1.vue create mode 100644 front-end/src/views/vab/form/components/Step2.vue create mode 100644 front-end/src/views/vab/form/components/Step3.vue create mode 100644 front-end/src/views/vab/form/comprehensiveForm.vue create mode 100644 front-end/src/views/vab/form/datePicker.vue create mode 100644 front-end/src/views/vab/form/dateTimePicker.vue create mode 100644 front-end/src/views/vab/form/input.vue create mode 100644 front-end/src/views/vab/form/inputNumber.vue create mode 100644 front-end/src/views/vab/form/link.vue create mode 100644 front-end/src/views/vab/form/radio.vue create mode 100644 front-end/src/views/vab/form/rate.vue create mode 100644 front-end/src/views/vab/form/select.vue create mode 100644 front-end/src/views/vab/form/slider.vue create mode 100644 front-end/src/views/vab/form/stepForm.vue create mode 100644 front-end/src/views/vab/form/switch.vue create mode 100644 front-end/src/views/vab/form/timePicker.vue create mode 100644 front-end/src/views/vab/icon/customSvg.vue create mode 100644 front-end/src/views/vab/icon/defaultIcon.vue create mode 100644 front-end/src/views/vab/icon/iconSelector.vue create mode 100644 front-end/src/views/vab/list/index.vue create mode 100644 front-end/src/views/vab/permission/index.vue create mode 100644 front-end/src/views/vab/table/components/TableEdit.vue create mode 100644 front-end/src/views/vab/table/comprehensiveTable.vue create mode 100644 front-end/src/views/vab/table/customTable.vue create mode 100644 front-end/src/views/vab/table/detail.vue create mode 100644 front-end/src/views/vab/table/dynamicTable.vue create mode 100644 front-end/src/views/vab/table/inlineEditTable.vue create mode 100644 front-end/tests/unit/validate.spec.ts create mode 100644 front-end/tsconfig.json create mode 100644 front-end/types/acl.d.ts create mode 100644 front-end/types/library.d.ts create mode 100644 front-end/types/router.d.ts create mode 100644 front-end/types/shims-vue.d.ts create mode 100644 front-end/types/store.d.ts create mode 100644 front-end/types/theme.d.ts create mode 100644 front-end/types/vab.d.ts create mode 100644 front-end/vab-icons/lib/fonts/remixicon.31d28485.eot create mode 100644 front-end/vab-icons/lib/fonts/remixicon.881fbc46.woff create mode 100644 front-end/vab-icons/lib/fonts/remixicon.888e61f0.ttf create mode 100644 front-end/vab-icons/lib/fonts/remixicon.9915fef9.woff2 create mode 100644 front-end/vab-icons/lib/img/remixicon.95138f36.svg create mode 100644 front-end/vab-icons/lib/img/remixicon.symbol.f09b1c74.svg create mode 100644 front-end/vab-icons/lib/vab-icons.css create mode 100644 front-end/vab-icons/lib/vab-icons.umd.min.js create mode 100644 front-end/vab-icons/package.json create mode 100644 front-end/vue.config.js create mode 100644 front-end/vue.config.website.js create mode 100644 front-end/webstorm.config.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b9c843e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/back-end/node_modules diff --git a/.trae/rules/bai.md b/.trae/rules/bai.md new file mode 100644 index 0000000..c46873d --- /dev/null +++ b/.trae/rules/bai.md @@ -0,0 +1,30 @@ +--- +alwaysApply: false +--- + +# 角色与核心哲学 (Role & Core Philosophy) +你是一名具备全栈思维的全语言工程师(Polyglot Engineer) + +--- +# 绝对拦截规则 (Execution Barriers) +任何时候,当你要开始编写、修改、重构或输出具体业务`代码`前,必须且只能先完成 `` + +--- +# (强制状态流转) +### Step 1: 核心流 - 环境检查与锚点确认 (强制第一步) +- 动作:扫描当前工作区文件 +- 判断逻辑: + - IF 发现 `openspec` 相关配置 或 `spec/` 目录存在 -> 判定为规范已初始化,进入 Step 2 + - IF NOT -> 必须触发初始化流程: + - 优先检查 Node 生态:判断是否有 `package.json`。若无,优先建议执行 `npm init`。 + - 强烈建议并通过 `npx` 相关的命令来初始化规范工具,坚决避免全局污染 +### Step 2: 规格流 - 提案与生成 (强制第二步) +- 动作:在构思架构前,必须调用或输出以下内容: + - `openspec-proposal`:必须优先检索并推荐 npm 仓库中成熟的开源包,拒绝无意义的重复造轮子。将包名和版本策略写入提案 + - `openspec-apply`:生成详细技术规格时,优先采用 Node.js 的最佳实践 +# 强制交互格式 (Interaction Protocol) +内部逻辑思考使用英文,用户交互使用专业、简洁的中文 +在调用任何 Skill、执行命令、或开始输出任何代码前,你的第一条回复必须严格按照以下格式向用户播报: +> 执行前置检查... +> - 当前生态:[强调 Node.js 与 npm 的介入策略,或说明当前的替代环境] +> - 当前动作:[例如:正在调用 openspec-proposal 规划架构...] \ No newline at end of file diff --git a/back-end/.env b/back-end/.env new file mode 100644 index 0000000..63d18de --- /dev/null +++ b/back-end/.env @@ -0,0 +1,15 @@ +# Server Configuration +PORT=3000 + +# Environment +NODE_ENV=development + +# API Configuration +API_PREFIX=/api + +# Database Configuration (placeholder) +DB_HOST=localhost +DB_PORT=5432 +DB_NAME=bai_management +DB_USER=postgres +DB_PASSWORD=password \ No newline at end of file diff --git a/back-end/package-lock.json b/back-end/package-lock.json new file mode 100644 index 0000000..13d55bc --- /dev/null +++ b/back-end/package-lock.json @@ -0,0 +1,2039 @@ +{ + "name": "web-bai-manage-api-server", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "web-bai-manage-api-server", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "dotenv": "^16.3.1", + "express": "^4.18.2" + }, + "devDependencies": { + "@fission-ai/openspec": "^1.0.0" + }, + "engines": { + "node": ">=22.0.0" + } + }, + "node_modules/@fission-ai/openspec": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/@fission-ai/openspec/-/openspec-1.2.0.tgz", + "integrity": "sha512-2XDmPZcVY0Bs014lP9aoxe3VoEU8hFvqaBFxQaiJO2nhC8vTKCyo6sT/5YpQcOTfR/a64Hht2anTyqLR4eNhlg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.2.2", + "@inquirer/prompts": "^7.8.0", + "chalk": "^5.5.0", + "commander": "^14.0.0", + "fast-glob": "^3.3.3", + "ora": "^8.2.0", + "posthog-node": "^5.20.0", + "yaml": "^2.8.2", + "zod": "^4.0.17" + }, + "bin": { + "openspec": "bin/openspec.js" + }, + "engines": { + "node": ">=20.19.0" + } + }, + "node_modules/@inquirer/ansi": { + "version": "1.0.2", + "resolved": "https://registry.npmmirror.com/@inquirer/ansi/-/ansi-1.0.2.tgz", + "integrity": "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/checkbox": { + "version": "4.3.2", + "resolved": "https://registry.npmmirror.com/@inquirer/checkbox/-/checkbox-4.3.2.tgz", + "integrity": "sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/core": "^10.3.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/confirm": { + "version": "5.1.21", + "resolved": "https://registry.npmmirror.com/@inquirer/confirm/-/confirm-5.1.21.tgz", + "integrity": "sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/core": { + "version": "10.3.2", + "resolved": "https://registry.npmmirror.com/@inquirer/core/-/core-10.3.2.tgz", + "integrity": "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "cli-width": "^4.1.0", + "mute-stream": "^2.0.0", + "signal-exit": "^4.1.0", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/editor": { + "version": "4.2.23", + "resolved": "https://registry.npmmirror.com/@inquirer/editor/-/editor-4.2.23.tgz", + "integrity": "sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/external-editor": "^1.0.3", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/expand": { + "version": "4.0.23", + "resolved": "https://registry.npmmirror.com/@inquirer/expand/-/expand-4.0.23.tgz", + "integrity": "sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/external-editor": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/@inquirer/external-editor/-/external-editor-1.0.3.tgz", + "integrity": "sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^2.1.1", + "iconv-lite": "^0.7.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.15", + "resolved": "https://registry.npmmirror.com/@inquirer/figures/-/figures-1.0.15.tgz", + "integrity": "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/input": { + "version": "4.3.1", + "resolved": "https://registry.npmmirror.com/@inquirer/input/-/input-4.3.1.tgz", + "integrity": "sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/number": { + "version": "3.0.23", + "resolved": "https://registry.npmmirror.com/@inquirer/number/-/number-3.0.23.tgz", + "integrity": "sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/password": { + "version": "4.0.23", + "resolved": "https://registry.npmmirror.com/@inquirer/password/-/password-4.0.23.tgz", + "integrity": "sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/prompts": { + "version": "7.10.1", + "resolved": "https://registry.npmmirror.com/@inquirer/prompts/-/prompts-7.10.1.tgz", + "integrity": "sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/checkbox": "^4.3.2", + "@inquirer/confirm": "^5.1.21", + "@inquirer/editor": "^4.2.23", + "@inquirer/expand": "^4.0.23", + "@inquirer/input": "^4.3.1", + "@inquirer/number": "^3.0.23", + "@inquirer/password": "^4.0.23", + "@inquirer/rawlist": "^4.1.11", + "@inquirer/search": "^3.2.2", + "@inquirer/select": "^4.4.2" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/rawlist": { + "version": "4.1.11", + "resolved": "https://registry.npmmirror.com/@inquirer/rawlist/-/rawlist-4.1.11.tgz", + "integrity": "sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/search": { + "version": "3.2.2", + "resolved": "https://registry.npmmirror.com/@inquirer/search/-/search-3.2.2.tgz", + "integrity": "sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/select": { + "version": "4.4.2", + "resolved": "https://registry.npmmirror.com/@inquirer/select/-/select-4.4.2.tgz", + "integrity": "sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/core": "^10.3.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/type": { + "version": "3.0.10", + "resolved": "https://registry.npmmirror.com/@inquirer/type/-/type-3.0.10.tgz", + "integrity": "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "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/@posthog/core": { + "version": "1.23.4", + "resolved": "https://registry.npmmirror.com/@posthog/core/-/core-1.23.4.tgz", + "integrity": "sha512-gSM1gnIuw5UOBUOTz0IhCTH8jOHoFr5rzSDb5m7fn9ofLHvz3boZT1L1f+bcuk+mvzNJfrJ3ByVQGKmUQnKQ8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.6" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmmirror.com/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "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/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.20.4", + "resolved": "https://registry.npmmirror.com/body-parser/-/body-parser-1.20.4.tgz", + "integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "~1.2.0", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "on-finished": "~2.4.1", + "qs": "~6.14.0", + "raw-body": "~2.5.3", + "type-is": "~1.6.18", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/body-parser/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmmirror.com/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.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==", + "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==", + "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/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/chardet": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/chardet/-/chardet-2.1.1.tgz", + "integrity": "sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==", + "dev": true, + "license": "MIT" + }, + "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/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmmirror.com/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 12" + } + }, + "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/commander": { + "version": "14.0.3", + "resolved": "https://registry.npmmirror.com/commander/-/commander-14.0.3.tgz", + "integrity": "sha512-H+y0Jo/T1RZ9qPP4Eh1pkcQcLRglraJaSLoyOtHxu6AapkjWVCy2Sit1QQ4x3Dng8qDlSsZEet7g5Pq06MvTgw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmmirror.com/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmmirror.com/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmmirror.com/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.7", + "resolved": "https://registry.npmmirror.com/cookie-signature/-/cookie-signature-1.0.7.tgz", + "integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==", + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmmirror.com/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "license": "MIT", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/dotenv": { + "version": "16.6.1", + "resolved": "https://registry.npmmirror.com/dotenv/-/dotenv-16.6.1.tgz", + "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "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==", + "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/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "10.6.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-10.6.0.tgz", + "integrity": "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==", + "dev": true, + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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==", + "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==", + "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==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "license": "MIT" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmmirror.com/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.22.1", + "resolved": "https://registry.npmmirror.com/express/-/express-4.22.1.tgz", + "integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "~1.20.3", + "content-disposition": "~0.5.4", + "content-type": "~1.0.4", + "cookie": "~0.7.1", + "cookie-signature": "~1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.3.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.0", + "merge-descriptors": "1.0.3", + "methods": "~1.1.2", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "~0.1.12", + "proxy-addr": "~2.0.7", + "qs": "~6.14.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "~0.19.0", + "serve-static": "~1.16.2", + "setprototypeof": "1.2.0", + "statuses": "~2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "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.20.1", + "resolved": "https://registry.npmmirror.com/fastq/-/fastq-1.20.1.tgz", + "integrity": "sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "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/finalhandler": { + "version": "1.3.2", + "resolved": "https://registry.npmmirror.com/finalhandler/-/finalhandler-1.3.2.tgz", + "integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "~2.4.1", + "parseurl": "~1.3.3", + "statuses": "~2.0.2", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmmirror.com/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmmirror.com/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.5.0", + "resolved": "https://registry.npmmirror.com/get-east-asian-width/-/get-east-asian-width-1.5.0.tgz", + "integrity": "sha512-CQ+bEO+Tva/qlmw24dCejulK5pMzVnUOFOijVogd3KQs07HnRIgp8TGipvCCRT06xeYEbpbgwaCxglFyiuIcmA==", + "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==", + "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==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "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/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/iconv-lite": { + "version": "0.7.2", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.7.2.tgz", + "integrity": "sha512-im9DjEDQ55s9fL4EYzOAv0yMqmMBSZp6G0VvFyTMPKWxiSBHUj9NW/qqLmXUwXrrM7AvqSlTCfvqRb0cM8yYqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmmirror.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "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-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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-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/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "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/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/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.3", + "resolved": "https://registry.npmmirror.com/merge-descriptors/-/merge-descriptors-1.0.3.tgz", + "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "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/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmmirror.com/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmmirror.com/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "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/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "license": "MIT" + }, + "node_modules/mute-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/mute-stream/-/mute-stream-2.0.0.tgz", + "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "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==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmmirror.com/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "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/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/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmmirror.com/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.12", + "resolved": "https://registry.npmmirror.com/path-to-regexp/-/path-to-regexp-0.1.12.tgz", + "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", + "license": "MIT" + }, + "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/posthog-node": { + "version": "5.28.2", + "resolved": "https://registry.npmmirror.com/posthog-node/-/posthog-node-5.28.2.tgz", + "integrity": "sha512-a+unFAKU8Vtez1DAEgCXB/KOZbroQZE+GvnSr9B35u3uMUxtyPO5ulgLJo8AUcZ4prhv6ia8R1Xjr4BrxPfdsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@posthog/core": "1.23.4" + }, + "engines": { + "node": "^20.20.0 || >=22.22.0" + }, + "peerDependencies": { + "rxjs": "^7.0.0" + }, + "peerDependenciesMeta": { + "rxjs": { + "optional": true + } + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmmirror.com/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmmirror.com/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "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/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.3", + "resolved": "https://registry.npmmirror.com/raw-body/-/raw-body-2.5.3.tgz", + "integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==", + "license": "MIT", + "dependencies": { + "bytes": "~3.1.2", + "http-errors": "~2.0.1", + "iconv-lite": "~0.4.24", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmmirror.com/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "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/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/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "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/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/send": { + "version": "0.19.2", + "resolved": "https://registry.npmmirror.com/send/-/send-0.19.2.tgz", + "integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "~0.5.2", + "http-errors": "~2.0.1", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "~2.4.1", + "range-parser": "~1.2.1", + "statuses": "~2.0.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/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/serve-static": { + "version": "1.16.3", + "resolved": "https://registry.npmmirror.com/serve-static/-/serve-static-1.16.3.tgz", + "integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==", + "license": "MIT", + "dependencies": { + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "~0.19.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmmirror.com/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "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==", + "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==", + "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==", + "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==", + "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/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "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/strip-ansi": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.2.2" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "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/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmmirror.com/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmmirror.com/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmmirror.com/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yaml": { + "version": "2.8.2", + "resolved": "https://registry.npmmirror.com/yaml/-/yaml-2.8.2.tgz", + "integrity": "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14.6" + }, + "funding": { + "url": "https://github.com/sponsors/eemeli" + } + }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.3", + "resolved": "https://registry.npmmirror.com/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz", + "integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.3.6", + "resolved": "https://registry.npmmirror.com/zod/-/zod-4.3.6.tgz", + "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/back-end/package.json b/back-end/package.json new file mode 100644 index 0000000..e1d5445 --- /dev/null +++ b/back-end/package.json @@ -0,0 +1,26 @@ +{ + "name": "web-bai-manage-api-server", + "version": "1.0.0", + "description": "Backend API server for BAI Management System", + "main": "src/index.js", + "scripts": { + "dev": "node src/index.js", + "build": "echo 'No build needed for backend'", + "test": "echo 'No tests implemented yet'", + "lint": "echo 'No linting implemented yet'", + "spec:lint": "npx @fission-ai/openspec lint spec/", + "spec:validate": "npx @fission-ai/openspec validate spec/" + }, + "dependencies": { + "express": "^4.18.2", + "dotenv": "^16.3.1" + }, + "devDependencies": { + "@fission-ai/openspec": "^1.0.0" + }, + "engines": { + "node": ">=22.0.0" + }, + "author": "", + "license": "ISC" +} \ No newline at end of file diff --git a/back-end/spec/openapi.yaml b/back-end/spec/openapi.yaml new file mode 100644 index 0000000..58783ee --- /dev/null +++ b/back-end/spec/openapi.yaml @@ -0,0 +1,48 @@ +openapi: 3.1.0 +info: + title: BAI Management API + description: Backend API for BAI Management System + version: 1.0.0 +servers: + - url: http://localhost:3000 + description: Development server +paths: + /test-helloworld: + get: + summary: Test endpoint + description: Returns a hello world message + responses: + '200': + description: Successful response + content: + application/json: + schema: + type: object + properties: + message: + type: string + example: Hello, World! + timestamp: + type: string + format: date-time + status: + type: string + example: success + /health: + get: + summary: Health check + description: Checks if the server is running + responses: + '200': + description: Server is healthy + content: + application/json: + schema: + type: object + properties: + status: + type: string + example: healthy + timestamp: + type: string + format: date-time \ No newline at end of file diff --git a/back-end/src/index.js b/back-end/src/index.js new file mode 100644 index 0000000..00b1b9d --- /dev/null +++ b/back-end/src/index.js @@ -0,0 +1,35 @@ +const express = require('express'); +const dotenv = require('dotenv'); + +// 加载环境变量 +dotenv.config(); + +const app = express(); +const port = process.env.PORT || 3000; + +// 解析JSON请求体 +app.use(express.json()); + +// 测试接口 +app.get('/test-helloworld', (req, res) => { + res.json({ + message: 'Hello, World!', + timestamp: new Date().toISOString(), + status: 'success' + }); +}); + +// 健康检查接口 +app.get('/health', (req, res) => { + res.json({ + status: 'healthy', + timestamp: new Date().toISOString() + }); +}); + +// 启动服务器 +app.listen(port, () => { + console.log(`Server running on port ${port}`); + console.log(`Test endpoint: http://localhost:${port}/test-helloworld`); + console.log(`Health check: http://localhost:${port}/health`); +}); \ No newline at end of file diff --git a/docs/project.md b/docs/project.md new file mode 100644 index 0000000..915af91 --- /dev/null +++ b/docs/project.md @@ -0,0 +1,86 @@ +开发框架约束(供 AI 创建项目使用) + +目的:本文件用于约束 AI 在创建/改造项目时的技术选型、目录结构、工程化与交付流程。除非明确得到人工指令,否则 AI 不得偏离本文件的约束。 + +1. 运行环境与基础约束 + +- Node.js 版本:必须使用 Node.js 22+(建议使用最新 LTS)。 +- 主要语言:JavaScript(.js)为主。 +- 允许在必要时引入类型检查方案(例如 JSDoc + // @ts-check),但默认不将 TypeScript 作为主要语言。 +- 包管理器:**强制统一使用 `npm`**。 +- 跨平台:默认需兼容 Windows(PowerShell)与类 Unix 环境。 + +2. 技术栈约束 + +2.1 前端 + +- 框架:必须使用 Vue 3.x。 +- 生态库:仅引入与 Vue 3.x 兼容的相关库;避免引入与 Vue 2.x 绑定的历史库。 +- 构建工具:优先 Vite(如与既有工程冲突,需说明原因并保持一致性)。 + +2.2 后端 + +- 运行时:必须使用 Node.js。 +- 语言:后端同样以 JavaScript 为主。 +- API 风格:默认使用 HTTP JSON API(如采用 GraphQL/WebSocket 等需明确说明并仍遵循 OpenSpec 约束)。 + +3. OpenSpec(规范驱动)开发流程约束 + +> 说明:这里的 OpenSpec 指通过全局安装 `@fission-ai/openspec` 获得的规范驱动工具链;在 API 场景下,接口契约必须使用并遵守 OpenAPI 3.1。两者不冲突:OpenSpec 用于驱动/校验流程,OpenAPI 3.1 是规范文件中必须满足的契约。 + +3.0 OpenSpec 工具链安装(强制) + +- 开发与 CI 环境必须确保可用的 OpenSpec 工具链: + - 安装命令:npm install -g @fission-ai/openspec@latest +- AI 在生成项目脚本时: + - 必须将规范校验能力接入到 npm scripts(见 3.3)。 + - 不得绕过 OpenSpec 校验直接交付“未受规范约束”的 API 实现。 +3.1 必须交付的规范产物 + +- 项目必须包含一个可追溯的规范文件: + - API 项目:`spec/openapi.yaml`(或 `spec/openapi.json`),版本 OpenAPI 3.1。 +- 非 API 项目:仍需提供对应的“规格说明”(例如流程/数据结构/输入输出契约),放在 spec/ 目录下。 +- 规范文件需满足: + - 可被校验(lint/validate) + - 与实现一致(实现变更必须同步更新规范) +3.2 开发顺序(强制) + +1. 先写/更新规范(spec-first):在新增/修改功能前,先更新 `spec/` 下的规范。 +2. 再实现:实现必须与规范一致。 +3. 再验证:CI/本地脚本必须包含规范校验步骤。 +4. 再文档化:README 中必须说明如何查看/使用规范与如何运行校验。 + +3.3 规范校验与联动(强制) + +- 必须提供脚本(示例命名,可按项目调整但不可缺失): + - npm run spec:lint:调用 OpenSpec 对 spec/ 做 lint(具体 CLI 参数以 openspec --help 为准) + - npm run spec:validate:调用 OpenSpec 对 spec/ 做结构/引用/契约校验(具体 CLI 参数以 openspec --help 为准) +- 若为 API: + - 必须在实现层提供请求/响应校验或至少在测试阶段进行契约校验。 +- 鼓励(非强制)从 OpenAPI 生成 client/server stub 或生成类型定义,但不得改变“JS 为主语言”的前提。 +4. 工程结构约束(建议默认) + +AI 创建项目时,默认使用以下结构;如项目类型不适用,可在不违背约束的前提下做最小调整。 + +- spec/:OpenSpec 规范(OpenAPI 或其他规格说明) +- src/:源代码 +- tests/:测试 +- scripts/:工程脚本(构建/校验/生成等) +- README.md:必须包含运行、测试、规范使用方式 +5. 质量与交付约束(强制) + +- 必须提供基础脚本: + - npm run dev(如可交互开发) + - npm run build(如需要构建) + - npm run test + - npm run lint +- 变更要求: + - 修改实现时同步更新 spec/ 与测试。 + - 不得只改实现不改规范;也不得只改规范不改实现。 +6. AI 行为约束(强制) + +- 若用户需求与本文件冲突: + - 先指出冲突点,并请求用户确认是否允许偏离约束。 +- 未明确要求时: + - 不引入与约束无关的“额外页面/功能/组件/花哨配置”。 + - 保持最小可用、可验证、可维护的实现。 \ No newline at end of file diff --git a/front-end/.browserslistrc b/front-end/.browserslistrc new file mode 100644 index 0000000..dc3bc09 --- /dev/null +++ b/front-end/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/front-end/.editorconfig b/front-end/.editorconfig new file mode 100644 index 0000000..4039ff1 --- /dev/null +++ b/front-end/.editorconfig @@ -0,0 +1,12 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false diff --git a/front-end/.env b/front-end/.env new file mode 100644 index 0000000..7e902d8 --- /dev/null +++ b/front-end/.env @@ -0,0 +1,104 @@ +# Vab Admin 系列产品受国家计算机软件著作权保护(证书号:软著登字第 7051316 号)。 +# 关于举报盗版侵权:请发送举报材料至我司客服邮箱1204505056@qq.com,一经查实,官司所得收入20%归举报人所有,80%归律师事务所所有。 +# Vue Admin系列产品购买地址://vuejs-core.cn/authorization +# 1.购买者可将授权后的产品用于任意「符合国家法律法规」的应用平台,禁止用于黄赌毒等危害国家安全与稳定的网站。 +# 2.购买主体购买后可用于开发商业项目,不限制域名和项目数量,购买主体不可将源码分享第三方,否则我们有权利收回产品授权及更新权限,并根据事态轻重追究相应法律责任。 +# 3.购买者务必尊重知识产权,严格保证不恶意传播产品源码、不得直接对授权的产品本身进行二次转售或倒卖、开源、不得对授权的产品进行简单包装后声称为自己的产品等,无论有意或无意,我们有权利收回产品授权及更新权限,并根据事态轻重追究相应法律责任。 +# 4.购买者不可将vip群文档及资料分享给第三方,否则我们有权利收回产品授权及更新权限,并根据事态轻重追究相应法律责任。 +# 5.购买者购买项目不可以用来构建存在竞争性质的产品并直接对外销售否则我们有权利收回产品授权及更新权限,并根据事态轻重追究相应法律责任。 +# 6.购买者购买项目中的源码(包含全部源码、及部分源码片段)不可以用于任何形式的开源项目,否则我们有权利收回产品授权及更新权限,并根据事态轻重追究相应法律责任。 +# 7.用于公司的项目商用时购买需提供公司名称,用于证明购买过我们的项目来用于商业用途,防范法律风险,我们不会将【购买公司】信息泄漏到互联网或告知第三方。 +# 8.用于个人学习需提供姓名、联系方式。 +# 9.如用于外包项目,购买者购买项目中的源码不可直接对外出售,npm run build编译后的项目不受限制。 +# 10.虚拟物品不支持退货退款。 +# 11.最终解释权归vab系列著作权人所有。 + + +# 第1步:请在此处将test变更为您的github用户名,请务必填写购买时绑定的github用户名,同一个授权配置不同用户名会导致您的授权永久失效 +VUE_GITHUB_USER_NAME=MomoWen + +# 第2步:请在项目根目录新建一个.env.local的新文件,切记是新建空的文件不是直接拷贝.env文件的内容 + +# 第3步:.env.local的文件只能有一行不可以换行,购买时生成,格式如下:VUE_APP_SECRET_KEY=XXXXXXX + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +# 以下内容不建议修改建议将VUE_APP_SECRET_KEY配置到【.env.local】中 +VUE_APP_SECRET_KEY=preview + + + diff --git a/front-end/.env.development b/front-end/.env.development new file mode 100644 index 0000000..e761cce --- /dev/null +++ b/front-end/.env.development @@ -0,0 +1,4 @@ +# 开发环境,VUE_APP_BASE_URL可以选择自己配置成需要的接口地址,如"https://api.xxx.com" +# 此文件修改后需要重启项目 +NODE_ENV=development +VUE_APP_BASE_URL='/vab-mock-server' \ No newline at end of file diff --git a/front-end/.env.production b/front-end/.env.production new file mode 100644 index 0000000..f277a08 --- /dev/null +++ b/front-end/.env.production @@ -0,0 +1,4 @@ +# 生产环境,VUE_APP_BASE_URL可以选择自己配置成需要的接口地址,如"https://api.xxx.com" +# 此文件修改后需要重启项目 +NODE_ENV=production +VUE_APP_BASE_URL='/vab-mock-server' \ No newline at end of file diff --git a/front-end/.env.test b/front-end/.env.test new file mode 100644 index 0000000..0fedb68 --- /dev/null +++ b/front-end/.env.test @@ -0,0 +1,4 @@ +# 测试环境,VUE_APP_BASE_URL可以选择自己配置成需要的接口地址,如"https://api.xxx.com" +# 此文件修改后需要重启项目 +NODE_ENV=production +VUE_APP_BASE_URL='/vab-mock-server' \ No newline at end of file diff --git a/front-end/.eslintignore b/front-end/.eslintignore new file mode 100644 index 0000000..809af1b --- /dev/null +++ b/front-end/.eslintignore @@ -0,0 +1,7 @@ +library/build/vuePlugins/components.d.ts +node_modules +src/assets +src/icons +public +dist +vab-icons diff --git a/front-end/.eslintrc.js b/front-end/.eslintrc.js new file mode 100644 index 0000000..de349d8 --- /dev/null +++ b/front-end/.eslintrc.js @@ -0,0 +1,81 @@ +const { defineConfig } = require('eslint-define-config') + +module.exports = defineConfig({ + root: true, + env: { + node: true, + browser: true, + }, + globals: { + defineOptions: 'writable', + }, + parser: 'vue-eslint-parser', + parserOptions: { + parser: '@typescript-eslint/parser', + sourceType: 'module', + ecmaVersion: 2020, + }, + rules: { + 'import-x/order': 'off', + '@typescript-eslint/no-empty-function': 'off', + '@typescript-eslint/no-explicit-any': 'off', + '@typescript-eslint/no-non-null-assertion': 'off', + '@typescript-eslint/no-this-alias': 'off', + 'array-callback-return': 'off', + 'escape-case': 'off', + 'eslint-comments/no-unlimited-disable': 'off', + 'import/order': 'off', + 'no-alert': 'off', + 'no-console': 'off', + 'no-debugger': 'off', + 'no-restricted-imports': 'off', + 'no-return-await': 'off', + 'prefer-const': 'off', + 'prefer-template': 'error', + 'unicorn/consistent-function-scoping': 'off', + 'unicorn/escape-case': 'off', + 'unicorn/filename-case': 'off', + 'unicorn/import-style': 'off', + 'unicorn/no-abusive-eslint-disable': 'off', + 'unicorn/no-array-callback-reference': 'off', + 'unicorn/no-array-for-each': 'off', + 'unicorn/no-array-reduce': 'off', + 'unicorn/no-nested-ternary': 'off', + 'unicorn/no-null': 'off', + 'unicorn/no-object-as-default-parameter': 'off', + 'unicorn/no-process-exit': 'off', + 'unicorn/no-this-assignment': 'off', + 'unicorn/numeric-separators-style': 'off', + 'unicorn/prefer-array-some': 'off', + 'unicorn/prefer-default-parameters': 'off', + 'unicorn/prefer-dom-node-append': 'off', + 'unicorn/prefer-dom-node-remove': 'off', + 'unicorn/prefer-logical-operator-over-ternary': 'off', + 'unicorn/prefer-math-trunc': 'off', + 'unicorn/prefer-module': 'off', + 'unicorn/prefer-number-properties': 'off', + 'unicorn/prefer-query-selector': 'off', + 'unicorn/prefer-spread': 'off', + 'unicorn/prefer-string-slice': 'off', + 'unicorn/prefer-structured-clone': 'off', + 'unicorn/prefer-ternary': 'off', + 'unicorn/prefer-top-level-await': 'off', + 'unicorn/prevent-abbreviations': 'off', + 'unicorn/expiring-todo-comments': 'off', + 'unicorn/consistent-destructuring': 'off', + 'vue/multi-word-component-names': 'off', + 'vue/no-reserved-component-names': 'off', + 'vue/no-setup-props-destructure': 'off', + 'vue/no-v-html': 'off', + 'vue/require-default-prop': 'off', + 'unicorn/number-literal-case': 'off', + '@typescript-eslint/no-var-requires': 'off', + 'import/first': 'off', + 'object-shorthand': 'off', + 'unicorn/no-console-spaces': 'off', + 'unicorn/prefer-dom-node-text-content': 'off', + 'unicorn/prefer-code-point': 'off', + '@typescript-eslint/consistent-type-imports': 'off', + camelcase: 'off', + }, +}) diff --git a/front-end/.gitattributes b/front-end/.gitattributes new file mode 100644 index 0000000..8907e9b --- /dev/null +++ b/front-end/.gitattributes @@ -0,0 +1,17 @@ +*.html text eol=lf +*.css text eol=lf +*.js text eol=lf +*.ts text eol=lf +*.scss text eol=lf +*.vue text eol=lf +*.hbs text eol=lf +*.sh text eol=lf +*.md text eol=lf +*.json text eol=lf +*.yml text eol=lf +.browserslistrc text eol=lf +.editorconfig text eol=lf +.eslintignore text eol=lf +.gitattributes text eol=lf +LICENSE text eol=lf +*.conf text eol=lf diff --git a/front-end/.gitignore b/front-end/.gitignore new file mode 100644 index 0000000..63197e3 --- /dev/null +++ b/front-end/.gitignore @@ -0,0 +1,46 @@ +.DS_Store +node_modules +node_modules.nosync +/dist + +# local env files +.env.local +.env.*.local + +# Log files +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# Lock files +yarn.lock +pnpm-lock.yaml +package-lock.json + +# Yarn v2 not using using Zero-Installs +.yarn/* +#!.yarn/cache +!.yarn/patches +!.yarn/plugins +!.yarn/releases +!.yarn/sdks +!.yarn/versions +.pnp.* + +# Vab +public/video +*.zip +*.7z +*.rar +/.history diff --git a/front-end/.npmrc b/front-end/.npmrc new file mode 100644 index 0000000..bf2e764 --- /dev/null +++ b/front-end/.npmrc @@ -0,0 +1 @@ +shamefully-hoist=true diff --git a/front-end/.prettierignore b/front-end/.prettierignore new file mode 100644 index 0000000..34f33b7 --- /dev/null +++ b/front-end/.prettierignore @@ -0,0 +1,4 @@ +auto-imports.d.ts +components.d.ts +index.html +website.html diff --git a/front-end/.stylelintrc.js b/front-end/.stylelintrc.js new file mode 100644 index 0000000..a70b6d7 --- /dev/null +++ b/front-end/.stylelintrc.js @@ -0,0 +1,18 @@ +module.exports = { + extends: [ + 'stylelint-config-recommended-scss', + 'stylelint-config-recommended-vue', + 'stylelint-config-recess-order', + ], + rules: { + 'no-empty-source': null, + 'at-rule-no-unknown': null, + 'property-no-unknown': null, + 'function-no-unknown': null, + 'selector-class-pattern': null, + 'no-descending-specificity': null, + 'scss/no-global-function-names': null, + 'selector-pseudo-class-no-unknown': null, + }, + ignoreFiles: ['dist/**/*', 'public/index.html'], +} diff --git a/front-end/AI-Coding/00-Quick-Profile.md b/front-end/AI-Coding/00-Quick-Profile.md new file mode 100644 index 0000000..7159b81 --- /dev/null +++ b/front-end/AI-Coding/00-Quick-Profile.md @@ -0,0 +1,9 @@ +# 00. 快速画像(给 AI 的 30 秒摘要) + +- **技术栈**:`Vue 3` + `Vue CLI 5` + `TypeScript` + `Pinia` + `Vue Router` + `Element Plus` +- **入口链路**:`src/main.ts` → `setupVab(app)` → `setupI18n(app)` → `setupStore(app)` → `setupRouter(app)` +- **Mock**:开发环境由 `vue.config.js` 将 `mock/index.js` 挂载到 devServer 中间件;路由集合来自 `mock/controller/*` +- **别名**:`@`→`src`,`@vab`→`library`,`~`→根目录,`/#`→`types` +- **用途定位**:既是可运行的后台 Demo,也是可拆分的能力集合(`library/layouts/ library/components/ library/ src/utils/ mock/ src/api/ types/`) + +> 推荐阅读顺序:本文件 → [01-Directory-Map.md](01-Directory-Map.md) → [AI-Reuse-Playbook.md](AI-Reuse-Playbook.md) diff --git a/front-end/AI-Coding/01-Directory-Map.md b/front-end/AI-Coding/01-Directory-Map.md new file mode 100644 index 0000000..751ac26 --- /dev/null +++ b/front-end/AI-Coding/01-Directory-Map.md @@ -0,0 +1,51 @@ +# 01. 仓库地图(Directory Map) + +> 目标:让 AI 快速定位“要复用的能力”在哪个目录、入口是什么、依赖闭包有哪些。 + +## `src/`(应用主代码) + +- `src/main.ts`:应用入口;决定 mock/pwa 与各子系统初始化顺序 +- `src/App.vue`:根组件;包含生产环境禁调试逻辑(`disable-devtool`) +- `src/router/`:路由与权限控制(重点:`index.ts`、`permissions`) +- `src/store/`:Pinia 初始化与业务 store 模块 +- `src/i18n/`:国际化初始化、语言获取与翻译辅助 +- `src/api/`:按域拆分 API 调用函数(示例:`src/api/router.ts`) +- `src/utils/`:通用工具与基础能力(时间格式化、树结构转换、UUID 等) +- `src/views/`:业务页面集合(通常与路由对应) +- `src/icon/`:图标加载(由 `library/index.ts` 里的 `import '@/icon'` 引入) +- `src/config/`:运行时/构建期配置聚合导出(`vue.config.js` 会 `require('./src/config')`) + +## `library/`(模板基础库) + +- `library/index.ts`:`setupVab(app)` 的实现: + - 全局样式:`library/styles/vab.scss` + - 图标注册:`vab-icons` + `@element-plus/icons-vue` + - 背景样式:`library/styles/background/*.scss` + - 插件加载:`library/plugins/**/*.ts` 并 `app.use()` +- `library/build/`:构建期扩展(webpack chain、vue plugins) + +## `library/plugins/`(全局插件) + +- `vab.ts`:全局注入(gp)与事件总线(`$pub/$sub/$unsub`) +- `directive.ts`:指令(`v-permissions`) +- `errorLog.ts`:全局错误捕获(`app.config.errorHandler`) +- `support.ts`:构建信息输出/依赖检查 + +## `library/components/`(可复用 UI 组件库) + +- `Vab*` 前缀:约定为基础组件/布局子组件(菜单、tabs、header、breadcrumb 等) +- `VabTheme`:主题系统入口(主题抽屉/设置面板),依赖 `$pub/$sub` 与 settings store + +## `library/layouts/`(布局体系) + +- `library/layouts/index.vue`:主 Layout 入口(路由壳) +- `library/layouts/VabLayout*`:多套布局可选(垂直/横向/综合/浮动/分栏等) + +## `mock/`(开发期 Mock) + +- `mock/index.js`:devServer 中间件;读取并注册 `mock/controller/*` +- `mock/controller/*.js`:每个文件导出路由数组(`url/type/response`) + +## `types/`(类型声明) + +- `types/*.d.ts`:路由/store/theme/vab 等声明,配合 `/#` 别名使用 diff --git a/front-end/AI-Coding/02-Boot-Sequence.md b/front-end/AI-Coding/02-Boot-Sequence.md new file mode 100644 index 0000000..cf6dd0f --- /dev/null +++ b/front-end/AI-Coding/02-Boot-Sequence.md @@ -0,0 +1,28 @@ +# 02. 关键入口与初始化顺序(Boot Sequence) + +## 入口文件:`src/main.ts` + +AI 需要知道“系统从哪里开始、按什么顺序挂载能力”。关键点: + +1. `validateSecretKey()`:启动前校验(与授权/环境有关) +2. 生产环境 Mock: + - 条件:`process.env.NODE_ENV === 'production'` 且 `baseURL` 不是外链(`!isExternal(baseURL)`) + - 动作:`require('@/utils/static').mockXHR()` +3. 初始化链路: + - `setupVab(app)`(全局样式、图标、插件) + - `setupI18n(app)` + - `setupStore(app)` + - `setupRouter(app).isReady().then(mount)` + +## 全局插件聚合:`library/index.ts` + +`setupVab(app)` 做了这些事: + +- 引入全局样式:`library/styles/vab.scss` +- 注册图标: + - `VabIcon`(来自 `vab-icons`) + - `@element-plus/icons-vue` 全量组件注册 +- 自动加载背景样式:`library/styles/background/*.scss` +- 自动加载插件:`library/plugins/**/*.ts`(默认导出 Vue 插件) + +> 复用提示:自动全量加载在“抽取模块”时容易带入不必要依赖;迁移时应以“最小闭包”为原则(见 [AI-Reuse-Playbook.md](AI-Reuse-Playbook.md))。 diff --git a/front-end/AI-Coding/03-Mock-System.md b/front-end/AI-Coding/03-Mock-System.md new file mode 100644 index 0000000..89b7f13 --- /dev/null +++ b/front-end/AI-Coding/03-Mock-System.md @@ -0,0 +1,23 @@ +# 03. Mock 系统(开发联调与脱网演示) + +## 挂载方式 + +- `vue.config.js`:`devServer.setupMiddlewares = require('./mock')` +- `mock/index.js`: + - 将路由集合转换为 express 形式 + - 使用 `mockjs` 返回数据 + - 监听 `mock/` 变更并热更新(`chokidar`) + +## 路由定义约定(供 AI 生成/扩展) + +在 `mock/controller/*.js` 中,每个路由对象通常包含: + +- `url`:不含 `baseURL` 前缀的路径(中间件会自动拼上 `baseURL`) +- `type`:`get` / `post` / ... +- `response(req, res)`:返回对象或函数 + +## AI 新增业务 API 的推荐动作 + +1) 在 `src/api/.ts` 新增函数(调用 `request({ url, method })`) +2) 在 `mock/controller/.js` 新增对应 mock 路由,路径保持一致 +3) 在模块规格中补充接口契约(建议写到 `openspec-lite/modules/.yaml`) diff --git a/front-end/AI-Coding/04-Router-and-Views.md b/front-end/AI-Coding/04-Router-and-Views.md new file mode 100644 index 0000000..7820f1f --- /dev/null +++ b/front-end/AI-Coding/04-Router-and-Views.md @@ -0,0 +1,46 @@ +# 04. 路由与页面组织(Router & Views) + +- 路由文件:`src/router/index.ts` +- 核心结构: + - `constantRoutes`:登录/注册/404 等公共路由 + - `asyncRoutes`:业务路由,通常以 `Layout` 为根节点容器 + +## Views 目录约定(src/views) + +本仓库页面主要集中在: + +- `src/views/index/`:工作台/仪表盘等示例首页 +- `src/views/vab/`:组件/表单/表格等示例页(演示用途居多) +- `src/views/other/`:杂项示例页(iframe/excel/drag/nested 等) +- `src/views/setting/`:后台管理相关页面(用户/角色/部门/菜单/字典/任务/日志等) +- `src/views/tools/`:工具类页面(如 EyeDropper/SpeechSynthesis) +- `src/views/login/`、`src/views/register/`、`src/views/callback/`:登录链路 +- `src/views/403.vue`、`src/views/404.vue`:错误页 + +路由对页面的引用方式以动态导入为主:`component: () => import('@/views/...')`。 + +## meta 约定(给菜单/面包屑/行为用) + +常见 meta 字段(与组件实现强相关): + +- `meta.title`:菜单/面包屑/页面标题(`VabLanguage` 会用它更新 `document.title`) +- `meta.icon` + `meta.isCustomSvg`:菜单与面包屑图标(`VabMenu`/`VabBreadcrumb`) +- `meta.hidden`:是否从菜单隐藏(`VabMenu`) +- `meta.breadcrumbHidden`:是否从面包屑隐藏(`VabBreadcrumb`) +- `meta.noColumn`:Column 布局下的特殊处理(`VabColumnBar` 会折叠菜单并隐藏 fold 按钮) +- `meta.target`(如 `_blank`):点击菜单时打开方式(`VabMenuItem`) +- `meta.badge` / `meta.dot`:菜单右侧标记(`VabMenuItem`) + +## AI 生成新模块页面的最小流程 + +- 在 `src/views//` 创建页面组件 +- 在 `src/router/index.ts`(或其拆分文件)添加路由记录 +- 如涉及权限/菜单:同步 `meta`(`title/icon/guard/...`) + +建议:新增页面后运行一次 [AI-Coding/Validation.md](AI-Coding/Validation.md) 里的“router ↔ views 对账”脚本,防止路由引用了不存在的 .vue,或新页面忘记挂到路由上。 + +## 验收点 + +- 访问路由能渲染页面 +- 菜单与面包屑符合 `meta` 约定 +- 刷新后路由仍可恢复 diff --git a/front-end/AI-Coding/05-Store.md b/front-end/AI-Coding/05-Store.md new file mode 100644 index 0000000..381d1c4 --- /dev/null +++ b/front-end/AI-Coding/05-Store.md @@ -0,0 +1,16 @@ +# 05. 状态管理(Pinia Store) + +- `src/store/index.ts`:`createPinia()` 与 `app.use(pinia)` +- i18n 语言读取:`src/i18n/index.ts` 通过 `useSettingsStore(pinia)` 获取语言 + +## AI 提取/迁移注意 + +- 迁移 `src/store/index.ts` 时,通常也需要迁移: + - `src/store/modules/settings.ts`(见 `12-Settings-Store.md` / `openspec-lite/modules/store-settings.yaml`) + - `src/store/modules` 下其它基础模块(见 `14-Store-Modules.md`) + - 与其相关的类型(`types/`,即 `/#` 别名指向的目录) + +## 验收点 + +- Store 能正常注入 +- 关键 store(如 settings)能在不报错情况下读取 diff --git a/front-end/AI-Coding/06-i18n.md b/front-end/AI-Coding/06-i18n.md new file mode 100644 index 0000000..440c179 --- /dev/null +++ b/front-end/AI-Coding/06-i18n.md @@ -0,0 +1,17 @@ +# 06. 国际化(i18n) + +- 文件:`src/i18n/index.ts` +- 关键点: + - `legacy: false`(Composition API 模式) + - 内置 `en`,`zh` 为空对象(等待补充) + - 提供 `translate(message)` 辅助函数 + - 导出 Element Plus 语言包:`enLocale` / `zhLocale` + +## 扩展建议 + +- 新增语言:在 `src/i18n/locales/` 添加 `xx.json` 并合并到 `messages` + +## 验收点 + +- 切换语言后页面能按预期渲染 +- Element Plus 语言包切换有效 diff --git a/front-end/AI-Coding/07-API.md b/front-end/AI-Coding/07-API.md new file mode 100644 index 0000000..6b8a2ca --- /dev/null +++ b/front-end/AI-Coding/07-API.md @@ -0,0 +1,17 @@ +# 07. API 层(请求封装与域拆分) + +- 示例:`src/api/router.ts` 调用 `request({ url: '/router/getList', method: 'get' })` +- 请求封装:`src/utils/request.ts`(axios 拦截器、token 注入、401/402/403 处理、错误提示) +- 刷新令牌:`src/api/refreshToken.ts`(402 时重试队列) +- 请求异常入库:通过 `@vab/plugins/errorLog`(见 `library/plugins/errorLog.ts`) + +## AI 复用原则 + +- 以“域”为单位抽取:`src/api/.ts` +- 抽取前先定位 `request` 封装(通常在 `src/utils/request` 或相近位置) +- 若新项目变更 baseURL/token/error 规范,优先在规格里声明差异,然后再做迁移适配 + +## 验收点 + +- 基础请求能发起 +- 错误处理与鉴权逻辑符合项目约束 diff --git a/front-end/AI-Coding/08-Alias-and-Types.md b/front-end/AI-Coding/08-Alias-and-Types.md new file mode 100644 index 0000000..8cda12b --- /dev/null +++ b/front-end/AI-Coding/08-Alias-and-Types.md @@ -0,0 +1,20 @@ +# 08. Alias 与类型(迁移必须同步) + +## Alias + +- `@` → `src` +- `~` → 根目录 +- `/#` → `types` +- `@vab` → `library` +- `@gp` → `library/plugins/vab` + +来源:`vue.config.js` 与 `tsconfig.json`。 + +## 类型声明 + +- `types/*.d.ts`:路由/store/theme/vab 等声明 + +## 迁移到不同构建工具(如 Vite)时的最低要求 + +- alias 需要在新工具里重新配置 +- `types/` 需要进入 tsconfig 的 `include` diff --git a/front-end/AI-Coding/09-Plop.md b/front-end/AI-Coding/09-Plop.md new file mode 100644 index 0000000..1fd951d --- /dev/null +++ b/front-end/AI-Coding/09-Plop.md @@ -0,0 +1,15 @@ +# 09. 代码生成(Plop) + +- 文件:`plopfile.js` +- 生成器:`view` / `curd` / `component` / `mock&api` + +运行: + +```powershell +pnpm run template +``` + +## AI 使用建议 + +- 如果后续 AI 以“生成代码”为策略,可优先复用 plop 模板,而不是从零写 +- 新增生成器前,先在 `openspec-lite/project.yaml` 里补充命名/目录约束 diff --git a/front-end/AI-Coding/10-Theme-System.md b/front-end/AI-Coding/10-Theme-System.md new file mode 100644 index 0000000..8d5dbb6 --- /dev/null +++ b/front-end/AI-Coding/10-Theme-System.md @@ -0,0 +1,38 @@ +# 10. Theme 系统(VabTheme + settings) + +> 目标:让 AI 在抽取/复用 Layout 时,不会漏掉主题抽屉、事件总线与 settings 的主题变量闭包。 + +## 入口与组成 + +- 主题入口组件:`library/components/VabTheme/index.vue` +- 主题抽屉:`library/components/VabTheme/components/VabThemeDrawer.vue` +- 主题设置入口:`library/components/VabTheme/components/VabThemeSetting.vue` +- 主题状态与持久化:`src/store/modules/settings.ts` + +## 关键机制 + +- 事件总线:通过 `library/plugins/vab.ts` 注入 `$pub/$sub/$unsub` + - 打开抽屉:`$pub('theme')` + - 随机换肤:`$pub('random-theme')` +- 主题应用:`useSettingsStore().updateTheme()` + - 动态 `require(@vab/styles/variables/vab-*-variables.module.scss)` + - 将 `vab-` 前缀变量映射到 `--el-` CSS 变量 + - 设置 `body` class(`vab-theme-*`)与背景类 + +## 最小依赖闭包(抽取时必须带上) + +- `library/components/VabTheme/` +- `src/store/modules/settings.ts`(至少 theme/showTheme/saveTheme/resetTheme/updateTheme) +- `library/plugins/vab.ts`(提供 `$pub/$sub` 与 `$baseLoading`) +- `library/styles/variables/`(所有 `vab-*-variables.module.scss`) +- Element Plus + i18n(组件内有 `translate()` 与 el-* 组件) + +## 验收点(smoke) + +- 触发 `$pub('theme')` 抽屉能打开/关闭 +- 保存/重置主题后,刷新页面主题能持久化且变量生效 + +## 常见坑 + +- `updateTheme()` 使用 webpack 风格的动态 `require`:迁移到非 webpack 构建(如部分 Vite 场景)需要等效实现 +- 主题抽屉/设置依赖事件总线注入:未安装 `vab` 插件时会“看起来渲染了但不工作” diff --git a/front-end/AI-Coding/11-Plugins-System.md b/front-end/AI-Coding/11-Plugins-System.md new file mode 100644 index 0000000..c87cf1f --- /dev/null +++ b/front-end/AI-Coding/11-Plugins-System.md @@ -0,0 +1,29 @@ +# 11. Plugins 系统(library/plugins/*) + +> 目标:明确本仓库“全局注入能力/指令/错误处理”的来源,避免抽取组件时漏掉运行时注入。 + +## 插件目录 + +- `library/plugins/vab.ts`:全局 gp 注入 + mitt 事件总线(`$pub/$sub/$baseMessage/...`) +- `library/plugins/directive.ts`:自定义指令(`v-permissions`) +- `library/plugins/errorLog.ts`:全局错误捕获(`app.config.errorHandler`)并写入 store +- `library/plugins/support.ts`:构建信息输出与依赖存在性检查 + +## 安装方式 + +- 正常路径:`library/index.ts` 会自动加载 `library/plugins/**/*.ts` 并 `app.use()`(setupVab 链路内) +- 抽取到目标项目: + - 若不复用 `library/index.ts` 的自动加载逻辑,需要在入口手动 `app.use(plugin)` + +## 最小依赖闭包 + +- `vab.ts`:依赖 Element Plus 全局 API(ElMessage/ElLoading/ElMessageBox/ElNotification)+ lodash + mitt + `src/config` +- `directive.ts`:依赖 `src/utils/permission`(hasPermission 及其权限数据来源) +- `errorLog.ts`:依赖 `src/store/modules/errorLog` 与 `src/config/errorLog` +- `support.ts`:依赖 `__APP_INFO__` 构建注入 + +## 验收点(smoke) + +- `vab`:`$baseMessage('ok')` 能弹出 message;`$pub/$sub` 能收发事件 +- `directive`:模板中 `v-permissions` 不报错且能按权限生效 +- `errorLog`:手动触发异常能写入 errorLog store diff --git a/front-end/AI-Coding/12-Settings-Store.md b/front-end/AI-Coding/12-Settings-Store.md new file mode 100644 index 0000000..ff5a369 --- /dev/null +++ b/front-end/AI-Coding/12-Settings-Store.md @@ -0,0 +1,35 @@ +# 12. Settings Store(主题/布局等全局配置) + +> 目标:把 Theme/Layout 的“根依赖”讲清楚,避免 AI 抽取时只搬组件却漏掉主题变量注入与持久化逻辑。 + +## 入口 + +- `src/store/modules/settings.ts`(`useSettingsStore`) + +## 管理的核心状态 + +- `theme`:包含 `layout/themeName/background/menuWidth/showTheme/showThemeSetting/tabsBarStyle...` +- `device`:`desktop | mobile`(布局响应式需要) +- `collapse`:侧边栏折叠状态 +- `language`:国际化语言 + +## 关键动作 + +- `saveTheme()`:持久化 theme +- `resetTheme()`:恢复默认 theme,并调用 `updateTheme()` +- `updateTheme()`: + - 通过 `@vab/styles/variables/vab-*-variables.module.scss` 读取变量 + - 将 `vab-` 前缀映射到 `--el-`,动态写入 Element Plus CSS 变量 + - 设置 body class:`vab-theme-*`,并按 background 追加 class + - 设置 `--el-left-menu-width` + +## 最小闭包(Theme/Layout 抽取必须带上) + +- `src/store/modules/settings.ts` +- `library/styles/variables/vab-*-variables.module.scss` +- `library/plugins/vab.ts`(Theme 事件总线注入) + +## 常见坑 + +- `updateTheme()` 使用 webpack 风格动态 `require`,迁移到非 webpack 构建器需要等效替代 +- `useCssVar` 的导入方式依赖工程约定(自动导入 vs 显式 import) diff --git a/front-end/AI-Coding/13-Component-Inventory.md b/front-end/AI-Coding/13-Component-Inventory.md new file mode 100644 index 0000000..33b2675 --- /dev/null +++ b/front-end/AI-Coding/13-Component-Inventory.md @@ -0,0 +1,70 @@ +# 13. 组件清单(library/components) + +> 目的:让 AI 在新项目中“选组件/抽组件”时,先从**可复用目录清单**开始,避免漏组件或重复造轮子。 + +## 组件根目录 + +- `library/components/`(约定:每个 `Vab*` 目录是一组可复用组件) + +## 当前组件目录(按仓库实际目录列出) + +- `VabApp`:应用壳/全局 Provider +- `VabAppMain`:主内容区(与 Layout 配合) +- `VabAvatar` +- `VabBreadcrumb` +- `VabCard` +- `VabColorfulCard` +- `VabColumnBar` +- `VabErrorLog` +- `VabFold` +- `VabFooter` +- `VabFullScreen` +- `VabHeader` +- `VabLanguage` +- `VabLink` +- `VabLock` +- `VabLogo` +- `VabMenu` +- `VabNav` +- `VabNotice` +- `VabQueryForm` +- `VabRefresh` +- `VabRouterView` +- `VabSearch` +- `VabSideBar` +- `VabTabs` +- `VabTheme` + +## 抽取建议(最小闭包) + +- 优先使用任务模板:`openspec-lite/tasks/extract-component.yaml` +- 若组件涉及 Layout/Theme:先抽 `layouts` 与 `vab-theme`,再补 `store-settings` 与 `plugin-vab` + +高耦合组件规格(机读): + +- `vab-app-main`:`openspec-lite/modules/vab-app-main.yaml` +- `vab-avatar`:`openspec-lite/modules/vab-avatar.yaml` +- `vab-breadcrumb`:`openspec-lite/modules/vab-breadcrumb.yaml` +- `vab-card`:`openspec-lite/modules/vab-card.yaml` +- `vab-colorful-card`:`openspec-lite/modules/vab-colorful-card.yaml` +- `vab-column-bar`:`openspec-lite/modules/vab-column-bar.yaml` +- `vab-router-view`:`openspec-lite/modules/vab-router-view.yaml` +- `vab-error-log`:`openspec-lite/modules/vab-error-log.yaml` +- `vab-fold`:`openspec-lite/modules/vab-fold.yaml` +- `vab-query-form`:`openspec-lite/modules/vab-query-form.yaml` +- `vab-refresh`:`openspec-lite/modules/vab-refresh.yaml` +- `vab-search`:`openspec-lite/modules/vab-search.yaml` +- `vab-lock`:`openspec-lite/modules/vab-lock.yaml` +- `vab-notice`:`openspec-lite/modules/vab-notice.yaml` +- `vab-logo`:`openspec-lite/modules/vab-logo.yaml` +- `vab-nav`:`openspec-lite/modules/vab-nav.yaml` +- `vab-language`:`openspec-lite/modules/vab-language.yaml` +- `vab-full-screen`:`openspec-lite/modules/vab-full-screen.yaml` +- `vab-footer`:`openspec-lite/modules/vab-footer.yaml` +- `vab-link`:`openspec-lite/modules/vab-link.yaml` + +## 快速定位(grep/语义检索) + +- `library/components//index.vue` +- `VabThemeDrawer` / `VabThemeSetting` +- `VabMenu` / `VabTabs` / `VabSideBar`(通常与路由/权限/store 强相关) diff --git a/front-end/AI-Coding/14-Store-Modules.md b/front-end/AI-Coding/14-Store-Modules.md new file mode 100644 index 0000000..72b143f --- /dev/null +++ b/front-end/AI-Coding/14-Store-Modules.md @@ -0,0 +1,32 @@ +# 14. Store 模块清单(src/store/modules) + +> 目的:让 AI 明确“权限/路由/主题/标签页”等基础能力分别由哪个 store 提供,抽取时不遗漏。 + +## 模块列表(按仓库实际文件列出) + +- `acl.ts`:角色/权限/admin(配合 `hasPermission()`) +- `errorLog.ts`:错误日志收集(配合 `library/plugins/errorLog.ts`) +- `routes.ts`:路由模式/菜单路由设置(前端/后端路由切换) +- `settings.ts`:主题/布局/语言/折叠等全局配置(见 `12-Settings-Store.md`) +- `tabs.ts`:标签页 visitedRoutes 管理 +- `user.ts`:登录/用户信息/登出/重置(联动 acl/routes/tabs/settings) + +对应模块规格(机读): + +- `access-control`:`openspec-lite/modules/access-control.yaml`(覆盖 acl + hasPermission + 指令) +- `store-errorlog`:`openspec-lite/modules/store-errorlog.yaml` +- `store-routes`:`openspec-lite/modules/store-routes.yaml` +- `store-settings`:`openspec-lite/modules/store-settings.yaml` +- `store-tabs`:`openspec-lite/modules/store-tabs.yaml` +- `store-user`:`openspec-lite/modules/store-user.yaml` + +## 最小依赖闭包提示 + +- 权限链路:`acl.ts` + `src/utils/permission.ts` + `library/plugins/directive.ts` +- 路由链路:`routes.ts` + `src/router/*` + `src/utils/routes.ts` +(可选)`src/api/router.ts` +- 主题链路:`settings.ts` + `library/styles/variables/vab-*-variables.module.scss` + +## 验收点(smoke) + +- 能创建 Pinia 并正常读取 settings/acl/user 等 store +- `hasPermission()` 能按 acl 状态返回布尔值 diff --git a/front-end/AI-Coding/15-Snippet-Map.md b/front-end/AI-Coding/15-Snippet-Map.md new file mode 100644 index 0000000..b667c51 --- /dev/null +++ b/front-end/AI-Coding/15-Snippet-Map.md @@ -0,0 +1,115 @@ +# 15. 代码段地图(Snippet Map) + +> 目的:给后续 AI coding 的“最常用代码段”提供**稳定来源与检索方式**,直接指向文件/关键词。 + +## 初始化与自动加载 + +- `setupVab(app)`:`library/index.ts` + - 背景 SCSS 自动加载:`require.context('./styles/background', false, /\\.scss$/)` + - 插件自动加载:`require.context('./plugins', true, /\\.ts$/)` + `app.use(Plugins(key).default)` + +## Theme(主题) + +- 打开抽屉事件:`$pub('theme')`(`library/components/VabTheme/*`) +- 随机换肤事件:`$pub('random-theme')` +- 主题变量注入:`useSettingsStore().updateTheme()`(`src/store/modules/settings.ts`) +- scss module 来源:`@vab/styles/variables/vab-*-variables.module.scss` + +## Plugins(全局注入/事件总线/指令) + +- 事件总线注入:`$pub/$sub/$unsub`(`library/plugins/vab.ts`) +- 权限指令:`v-permissions`(`library/plugins/directive.ts`) +- 权限判断:`hasPermission()`(`src/utils/permission.ts`) + +## Icons(SVG) + +- SVG 自动加载:`require.context('.', true, /\\.svg$/)`(`src/icon/index.ts`) + +## Router/Routes + +- 后端路由转换:`convertRouter()`(`src/utils/routes.ts`) +- 路由模式切换:`authentication === 'all'`(`src/store/modules/routes.ts`) +- 过滤可访问路由:`filterRoutes([...constantRoutes, ...routes], control)`(`src/store/modules/routes.ts`) +- 重置路由:`resetRouter(accessRoutes)`(`src/store/modules/routes.ts` / `src/router`) + +## Router Permissions + +- 路由守卫入口:`setupPermissions(router)`(`src/router/permissions.ts`) +- 白名单/登录拦截开关:`routesWhiteList` / `loginInterception` / `authentication`(`src/router/permissions.ts` / `src/config`) +- 更新标题:`document.title = getPageTitle(to.meta.title)`(`src/router/permissions.ts`) + +## Config + +- 配置聚合入口:`module.exports = { ...cli, ...setting, ...theme, ...network }`(`src/config/index.js`) +- 路由/登录关键开关:`authentication/loginInterception/routesWhiteList/supportVisit`(`src/config/setting.config.js`) +- 菜单关键开关:`defaultOpeneds/uniqueOpened/openFirstMenu`(`src/config/setting.config.js`) +- 网络请求关键开关:`baseURL/successCode/statusName/messageName/requestTimeout`(`src/config/net.config.js`) + +## Router View + +- 刷新当前视图缓存:`$sub('reload-router-view', ...)`(`library/components/VabRouterView/index.vue`) + +## Menu + +- 点击当前菜单刷新:`$pub('reload-router-view')`(`library/components/VabMenu/components/VabMenuItem.vue`) + +## Refresh + +- 刷新按钮触发:`$pub('reload-router-view')`(`library/components/VabRefresh/index.vue`) + +## Search + +- 打开搜索快捷键:`ctrlKey/metaKey + 'k'`(`library/components/VabSearch/index.vue`) +- 历史记录 key:`vab_search_history`(`library/components/VabSearch/index.vue`) + +## Lock + +- 锁屏开关:`handleLock()` / `handleUnLock()`(`library/components/VabLock/index.vue`) +- 直接操作侧边栏:`document.querySelector('.vab-side-bar')`(`library/components/VabLock/index.vue`) + +## Notice + +- 拉取通知:`getList()`(`library/components/VabNotice/index.vue` / `src/api/notice.ts`) + +## Language + +- 语言切换:`useI18n().locale` / `changeLanguage(`(`library/components/VabLanguage/index.vue` / `src/store/modules/settings.ts`) +- 切换后更新标题:`getPageTitle(`(`library/components/VabLanguage/index.vue` / `src/utils/pageTitle.ts`) + +## FullScreen + +- 全屏切换:`useFullscreen().toggle`(`library/components/VabFullScreen/index.vue`) + +## Footer + +- 页脚标题来源:`settings.title`(`library/components/VabFooter/index.vue` / `src/store/modules/settings.ts`) + +## Nav/Breadcrumb + +- 顶部导航聚合:``(`library/components/VabNav/index.vue`) +- 面包屑生成:`handleMatched(`(`library/components/VabBreadcrumb/index.vue` / `src/utils/routes.ts`) + +## Column Bar + +- Column 二级菜单:`partialRoutes` + `defaultOpeneds`(`library/components/VabColumnBar/index.vue` / `src/store/modules/routes.ts` / `src/config`) + +## Avatar/Logo + +- 用户下拉退出:`case 'logout'` + `toLoginRoute(route.fullPath)`(`library/components/VabAvatar/index.vue` / `src/utils/routes.ts`) +- Logo/Title 来源:`logo/title`(`library/components/VabLogo/index.vue` / `src/store/modules/settings.ts`) + +## Link/Fold/Card + +- 外链/内链切换:`isExternal(props.to)`(`library/components/VabLink/index.vue` / `src/utils/validate.ts`) +- 折叠按钮:`toggleCollapse`(`library/components/VabFold/index.vue` / `src/store/modules/settings.ts`) +- Skeleton 卡片:`el-skeleton`(`library/components/VabCard/index.vue`) + +## User/Auth + +- 登出重置闭包:`resetAll()`(`src/store/modules/user.ts`,联动 acl/routes/tabs/resetRouter/removeToken) + +## API/Request + +- axios 实例与拦截器:`axios.create` / `instance.interceptors`(`src/utils/request.ts`) +- 401/402/403 分支:`case 401` / `case 402` / `case 403`(`src/utils/request.ts`) +- token 注入:`Authorization: Bearer`(`src/utils/request.ts`) diff --git a/front-end/AI-Coding/16-Config-Keys.md b/front-end/AI-Coding/16-Config-Keys.md new file mode 100644 index 0000000..4161be9 --- /dev/null +++ b/front-end/AI-Coding/16-Config-Keys.md @@ -0,0 +1,76 @@ +# 16. Config Key Map(src/config) + +> 目的:让 AI 在迁移/新项目开发时,明确“哪些行为由哪些 config key 控制”,并能快速定位 key 的定义与使用点。 + +## 聚合入口 + +- `src/config/index.js` 会把 4 份配置聚合导出: + - `cli.config.js`(构建/CLI 相关) + - `setting.config.js`(通用/登录/路由/菜单/缓存等) + - `theme.config.js`(主题与 UI 开关默认值) + - `net.config.js`(网络请求相关) + +注意:`src/config/*` 可能会被 `vue.config.js` 在 Node 环境 `require()` 读取,因此配置文件应避免使用 `window/document`。 + +## 高影响 keys(按子系统分组) + +### 路由/权限/登录 + +- `authentication`:路由模式(`intelligence` 前端路由 / `all` 后端路由) +- `loginInterception`:是否开启登录拦截(影响 `setupPermissions` 行为) +- `routesWhiteList`:白名单路由(不校验 token) +- `supportVisit`:游客模式 +- `rolesControl`:是否按 `roles` 字段进行角色控制 +- `isHashRouterMode`:hash/history 模式相关逻辑(菜单里对 `_blank` 打开内部路由有分支) +- `publicPath`:路由/跳转时可能需要的 publicPath + +### Token/存储 + +- `tokenName`:token 字段名 +- `tokenTableName`:存储 key 名 +- `storage`:`localStorage/sessionStorage/cookie` +- `recordRoute`:token 失效回到登录页时是否记录本次路由 + +### 页面标题 + +- `title`:系统标题(影响 `getPageTitle`/浏览器标题/雪花屏标题等) +- `titleSeparator`:标题分隔符 +- `titleReverse`:标题是否反转 + +### 菜单/导航体验 + +- `uniqueOpened`:是否只保持一个子菜单展开 +- `defaultOpeneds`:默认展开菜单 path 列表 +- `openFirstMenu`:是否点击一级菜单默认开启二级菜单 +- `debounce`:需要加 loading 层防重复提交的请求标识列表 +- `keepAliveMaxNum`:keep-alive 最大缓存数量 + +### Theme 默认值与开关(theme.config.js) + +- 默认值:`layout/themeName/background/menuWidth/columnStyle/...` +- UI 开关:`showProgressBar/showTabs/showLanguage/showRefresh/showSearch/showTheme/showNotice/showFullScreen/showThemeSetting/showLock/...` + +### 网络请求(net.config.js) + +- `baseURL` / `contentType` / `requestTimeout` +- `successCode` / `statusName` / `messageName` + +### 构建/CLI(cli.config.js) + +- `devPort/outputDir/assetsDir/publicPath` +- `pwa/buildOptimize/noDebugger/lintOnSave` + +## 常见使用点(快速定位) + +- 路由守卫:`src/router/permissions.ts`(`authentication/loginInterception/routesWhiteList/supportVisit` + `showProgressBar`) +- Router 定义:`src/router/index.ts`(`authentication/isHashRouterMode/publicPath`) +- 菜单:`library/components/VabMenu/components/VabMenuItem.vue`(`isHashRouterMode`) +- 路由 store:`src/store/modules/routes.ts`(`authentication/rolesControl`) +- 标题工具:`src/utils/pageTitle.ts`(`titleSeparator/titleReverse`) +- token 工具:`src/utils/token.ts`(`storage/tokenTableName`) +- request:`src/utils/request.ts`(`baseURL/successCode/statusName/messageName/requestTimeout/contentType` 等) + +## 迁移/复用提示(最小闭包) + +- 抽 `router`/`request`/`menu` 等模块时,**优先把 `src/config/*` 一并带走**,避免 key 缺失导致行为变化。 +- 如果目标项目要改 key 名或改配置来源(例如改成 `.env` 或远端配置),建议先在规格里写清“映射关系”和“验收点”。 diff --git a/front-end/AI-Coding/AI-Reuse-Playbook.md b/front-end/AI-Coding/AI-Reuse-Playbook.md new file mode 100644 index 0000000..10fbdda --- /dev/null +++ b/front-end/AI-Coding/AI-Reuse-Playbook.md @@ -0,0 +1,54 @@ +# AI 复用操作手册(轻量化) + +> 目标:在“不改动现有代码”的前提下,用文档约束 AI 从本仓库抽取能力,并确保抽取结果可验证。 + +## A. 选模块(先确定要什么) + +在开始任何代码生成/迁移前,AI 必须先回答: + +- 我要复用的能力类型:`layout | component | plugin | util | store | i18n | api | mock | config` +- 复用方式:`copy-snippet`(复制片段)或 `copy-module`(整目录) +- 目标项目构建工具:`Vue CLI` / `Vite` / 其他 + +> 推荐:优先 `copy-module`(减少遗漏依赖),再做裁剪。 + +## B. 定位入口(必须列出入口文件) + +- 全局能力:`library/index.ts`(`setupVab`) +- 初始化:`src/main.ts` +- 路由:`src/router/index.ts` +- 状态:`src/store/index.ts` +- i18n:`src/i18n/index.ts` +- Mock:`mock/index.js` + +AI 输出中必须包含:入口文件列表 + 为什么需要它们。 + +## C. 最小闭包(必须列出依赖闭包) + +AI 必须同时列出: + +- 直接依赖(import 的文件/包) +- 运行时依赖(例如:全局样式、icons、插件自动加载) +- 类型依赖(`types/` 目录与 `/#`) +- alias 依赖(`@`、`@vab`、`~`、`/#`) + +> 如果依赖闭包不清晰,禁止直接迁移;应先补规格(见 `openspec-lite/`)。 + +## D. 迁移后验收(必须可执行) + +最低验收: + +- `pnpm run serve` 能启动 +- 页面可渲染 +- 路由能跳转 +- i18n/store 能注入 +- Mock(若启用)能命中 + +## E. 输出格式(给 OpenSpec/AI 工具链用) + +当 AI 完成一次抽取/复用任务时,输出必须包含: + +- **变更文件清单**(新增/修改/删除) +- **复用模块清单**(从哪里来、被用在何处) +- **验收命令**(lint/test/build/serve) +- **风险说明**(可能破坏的点:alias、插件自动加载、生产 mock 等) diff --git a/front-end/AI-Coding/Pitfalls.md b/front-end/AI-Coding/Pitfalls.md new file mode 100644 index 0000000..3af113a --- /dev/null +++ b/front-end/AI-Coding/Pitfalls.md @@ -0,0 +1,8 @@ +# 已知陷阱与迁移雷区(Pitfalls) + +- **生产环境禁调试**:`src/App.vue` 使用 `disable-devtool`,可能影响某些测试/调试环境。 +- **生产环境默认 Mock**:`src/main.ts` 中存在“生产启用 mockXHR”的逻辑,做真实项目发布时要确认策略。 +- **配置入口**:`vue.config.js` 通过 `require('./src/config')` 读取配置;`src/config/index.js` 会聚合导出多个子配置。 +- **自动插件加载**:`library/index.ts` 会 `require.context('./plugins', true, /\\.ts$/)` 全量加载;抽取模块时容易带入不需要依赖。 + +> 对应的约束与处理建议:见 [openspec-lite/project.yaml](openspec-lite/project.yaml)。 diff --git a/front-end/AI-Coding/README.md b/front-end/AI-Coding/README.md new file mode 100644 index 0000000..407d671 --- /dev/null +++ b/front-end/AI-Coding/README.md @@ -0,0 +1,56 @@ +# AI-Coding(AI 取材与约束入口) + +> 本目录是“轻量化模板库”形态下的 AI 指南:**不改动现有业务代码**,尽量用文档与规格约束引导 OpenSpec 开发模式的 AI 快速、准确地复用本仓库能力。 + +## 你应该从这里开始读 + +1. [00-Quick-Profile.md](00-Quick-Profile.md) —— 30 秒摘要(栈、入口链路、Mock、alias) +2. [01-Directory-Map.md](01-Directory-Map.md) —— 仓库地图(模块在哪、职责是什么) +3. [02-Boot-Sequence.md](02-Boot-Sequence.md) —— 初始化链路(`src/main.ts` / `setupVab`) +4. [10-Theme-System.md](10-Theme-System.md) —— Theme 系统(VabTheme + settings + 变量注入) +5. [11-Plugins-System.md](11-Plugins-System.md) —— Plugins(gp 注入/指令/错误捕获) +6. [12-Settings-Store.md](12-Settings-Store.md) —— Settings Store(主题/布局等全局配置) +7. [13-Component-Inventory.md](13-Component-Inventory.md) —— 组件清单(library/components) +8. [14-Store-Modules.md](14-Store-Modules.md) —— Store 模块清单(src/store/modules) +9. [15-Snippet-Map.md](15-Snippet-Map.md) —— 代码段地图(常用片段稳定来源) +10. [16-Config-Keys.md](16-Config-Keys.md) —— Config keys 地图(高影响开关与使用点) +11. [AI-Reuse-Playbook.md](AI-Reuse-Playbook.md) —— AI 复用操作手册(最小闭包、迁移步骤、验收) +12. [Pitfalls.md](Pitfalls.md) —— 已知陷阱与迁移雷区 + +## OpenSpec-lite(轻量规格) + +- [openspec-lite/project.yaml](openspec-lite/project.yaml) —— 项目级约束(技术栈/目录/禁止项/验收门槛) +- [openspec-lite/manifest.yaml](openspec-lite/manifest.yaml) —— 模块清单(供 AI 选模块与定位) +- [openspec-lite/tasks/](openspec-lite/tasks/) —— 任务模板(AI 按模板输出文件与验收项) +- [openspec-lite/modules/](openspec-lite/modules/) —— 模块规格(按需逐步补全;先从高频模块开始) + +推荐从这些高频模块规格开始: + +- `setup-vab`:`openspec-lite/modules/setup-vab.yaml` +- `config-system`:`openspec-lite/modules/config-system.yaml` +- `api-system`:`openspec-lite/modules/api-system.yaml` +- `icons`:`openspec-lite/modules/icons.yaml` +- `styles`:`openspec-lite/modules/styles.yaml` +- `access-control`:`openspec-lite/modules/access-control.yaml` +- `layouts`:`openspec-lite/modules/layouts.yaml` +- `ui-components`:`openspec-lite/modules/ui-components.yaml` +- `store-settings`:`openspec-lite/modules/store-settings.yaml` +- `vab-theme`:`openspec-lite/modules/vab-theme.yaml` +- `plugin-vab`:`openspec-lite/modules/plugin-vab.yaml` +- `plop`:`openspec-lite/modules/plop.yaml` +- `plugin-directive`:`openspec-lite/modules/plugin-directive.yaml` +- `plugin-errorlog`:`openspec-lite/modules/plugin-errorlog.yaml` +- `plugin-support`:`openspec-lite/modules/plugin-support.yaml` +- `VabApp`:`openspec-lite/modules/vab-app.yaml` +- `VabMenu`:`openspec-lite/modules/vab-menu.yaml` +- `VabTabs`:`openspec-lite/modules/vab-tabs.yaml` +- `VabHeader`:`openspec-lite/modules/vab-header.yaml` +- `VabSideBar`:`openspec-lite/modules/vab-sidebar.yaml` + +更多模块(例如 `store-user` / `store-routes` / `store-tabs` / `store-errorlog`)已收录在 `openspec-lite/manifest.yaml` 中,可按需从清单选取。 + +## 本目录的“轻量化原则” + +- **不要求改代码**:所有约束优先通过文档/规格落地;如必须改代码,应先在规格里写明原因与影响面。 +- **先可用,再完美**:优先把“模块定位、最小闭包、验收门槛”写清楚。 +- **一切可检索**:每份文档都应包含明确关键词与入口文件路径,方便 AI 语义检索/grep。 diff --git a/front-end/AI-Coding/Search-Anchors.md b/front-end/AI-Coding/Search-Anchors.md new file mode 100644 index 0000000..2207af3 --- /dev/null +++ b/front-end/AI-Coding/Search-Anchors.md @@ -0,0 +1,40 @@ +# 可供 AI 检索的关键锚点(Search Anchors) + +> 这些关键词可用于语义检索或 grep。 + +- 入口:`createApp(App)`、`setupVab(app)`、`setupRouter(app).isReady()` +- setupVab:`require.context('./plugins'`、`require.context('./styles/background'`、`app.component('VabIcon'`、`createHead()` +- Mock:`setupMiddlewares: require('./mock')`、`mockjs`、`responseFake` +- Alias:`alias`、`@vab`、`/#` +- i18n:`createI18n({ legacy: false })`、`translate(` +- Store:`createPinia()`、`useSettingsStore(pinia)` +- Routes Store:`setRoutes(`、`filterRoutes(`、`resetRouter(` +- Router/Views:`component: () => import('@/views/`、`constantRoutes`、`asyncRoutes`、`breadcrumbHidden`、`noColumn`、`isCustomSvg`、`meta.target`、`meta.badge`、`meta.dot` +- Router Guard:`setupPermissions(`、`router.beforeEach`、`routesWhiteList`、`loginInterception`、`authentication`、`supportVisit`、`VabProgress.start()`、`document.title = getPageTitle` +- User Store:`getUserInfo(`、`resetAll(`、`removeToken(` +- Tabs Store:`visitedRoutes`、`noClosable` +- RouterView:`reload-router-view`、`keepAliveNameList`、`Vab[^/]+)/') | ForEach-Object { $_.Groups['name'].Value } | Sort-Object -Unique; +Compare-Object -ReferenceObject $componentDirs -DifferenceObject $manifestComponents +``` + +对账 `library/layouts/*` 子目录是否都被 `AI-Coding/openspec-lite/modules/layouts.yaml` 覆盖: + +```powershell +$repo = (Get-Location).Path; +$layoutDirs = Get-ChildItem -LiteralPath "$repo\library\layouts" -Directory | Select-Object -ExpandProperty Name | Sort-Object; +$layoutsSpec = Get-Content -LiteralPath "$repo\AI-Coding\openspec-lite\modules\layouts.yaml" -Raw; +$specDirs = [regex]::Matches($layoutsSpec,'library/layouts/(?VabLayout[^/]+)/') | ForEach-Object { $_.Groups['name'].Value } | Sort-Object -Unique; +Compare-Object -ReferenceObject $layoutDirs -DifferenceObject $specDirs +``` + +对账 `components.d.ts` 里自动导入的 `Vab*` 组件是否都被任一 module spec 覆盖(按源文件路径精确匹配): + +```powershell +$repo = (Get-Location).Path; +$dtsPath = "$repo\library\build\vuePlugins\components.d.ts"; +$specDir = "$repo\AI-Coding\openspec-lite\modules"; + +$dts = Get-Content -LiteralPath $dtsPath -Raw; +$specText = (Get-ChildItem -LiteralPath $specDir -Filter '*.yaml' | ForEach-Object { Get-Content -LiteralPath $_.FullName -Raw }) -join "`n---`n"; + +$imports = [regex]::Matches( + $dts, + "Vab[A-Za-z0-9_]+:\\s*typeof\\s+import\\('(?

[^']+)'\\)\\['default'\\]", + [System.Text.RegularExpressions.RegexOptions]::Multiline +) | ForEach-Object { $_.Groups['p'].Value } | Where-Object { $_ -like '*components*' } | ForEach-Object { + $p = $_; + $p = $p -replace "^\\./\\.\\./\\.\\./",""; + $p = $p -replace "^\\./\\.\\./",""; + $p = $p -replace "^\\./",""; + if ($p -like 'components/*') { $p = "library/" + $p } + $p +} | Sort-Object -Unique; + +$missing = foreach ($p in $imports) { if ($specText -notmatch [regex]::Escape($p)) { $p } }; +if ($missing) { $missing } else { '(none)' } +``` + +对账 `src/router/index.ts` 引用的 `@/views/*.vue` 是否都存在,并列出未被路由引用的 views: + +```powershell +$repo = (Get-Location).Path; +$routerPath = "$repo\src\router\index.ts"; +$viewsRoot = "$repo\src\views"; + +$router = Get-Content -LiteralPath $routerPath -Raw; +# 只提取“非注释行”中的 views 引用,避免把 // 注释的 demo 路由当成缺失文件 +$routeViewRefs = [regex]::Matches( + $router, + "(?m)^(?!\\s*//).*@/views/(?

[^'\\\"\\)]+\\.vue)", + [System.Text.RegularExpressions.RegexOptions]::Multiline +) | ForEach-Object { $_.Groups['p'].Value } | Sort-Object -Unique; + +$missingFiles = foreach ($p in $routeViewRefs) { + $abs = Join-Path $viewsRoot ($p -replace '/', '\\'); + if (-not (Test-Path -LiteralPath $abs)) { "src/views/$p" } +}; + +$allViews = Get-ChildItem -LiteralPath $viewsRoot -Recurse -File -Filter '*.vue' | ForEach-Object { + $_.FullName.Substring($viewsRoot.Length + 1).Replace('\\','/') +} | Sort-Object -Unique; + +$unreferenced = Compare-Object -ReferenceObject $allViews -DifferenceObject $routeViewRefs -PassThru | Where-Object { $_ -in $allViews } | Sort-Object; + +'--- router references missing files ---'; +if ($missingFiles) { $missingFiles } else { '(none)' }; +'--- views not referenced by router ---'; +if ($unreferenced) { $unreferenced | ForEach-Object { "src/views/$_" } } else { '(none)' }; +``` diff --git a/front-end/AI-Coding/openspec-lite/manifest.yaml b/front-end/AI-Coding/openspec-lite/manifest.yaml new file mode 100644 index 0000000..5a35d2e --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/manifest.yaml @@ -0,0 +1,414 @@ +# OpenSpec-lite: 模块清单(可逐步补全) +# 目的:让 AI 在“选模块”阶段就能定位入口与主要依赖。 + +modules: + - id: boot + name: 应用入口与初始化 + type: core + entrypoints: + - src/main.ts + - library/index.ts + keywords: + - createApp + - setupVab + - setupI18n + - setupStore + - setupRouter + + - id: setup-vab + name: setupVab(library/index.ts 自动加载/图标/样式/插件) + type: core + entrypoints: + - library/index.ts + - library/plugins/ + - library/styles/ + - src/icon/index.ts + keywords: + - require.context + - VabIcon + - createHead + + - id: router + name: 路由与权限 + type: core + entrypoints: + - src/router/index.ts + - src/router/permissions.ts + keywords: + - constantRoutes + - asyncRoutes + - meta + + - id: store + name: Pinia 状态 + type: core + entrypoints: + - src/store/index.ts + - src/store/modules + keywords: + - createPinia + + - id: store-settings + name: Settings Store(主题/布局等全局配置) + type: store + entrypoints: + - src/store/modules/settings.ts + - library/styles/variables/ + keywords: + - updateTheme + - themeName + - menuWidth + + - id: store-routes + name: Routes Store(路由拦截/菜单路由设置) + type: store + entrypoints: + - src/store/modules/routes.ts + keywords: + - setRoutes + - resetRouter + + - id: store-user + name: User Store(登录/用户信息/登出) + type: store + entrypoints: + - src/store/modules/user.ts + keywords: + - getUserInfo + - resetAll + + - id: store-tabs + name: Tabs Store(visitedRoutes) + type: store + entrypoints: + - src/store/modules/tabs.ts + keywords: + - visitedRoutes + - noClosable + + - id: store-errorlog + name: ErrorLog Store(错误日志收集) + type: store + entrypoints: + - src/store/modules/errorLog.ts + keywords: + - addErrorLog + + - id: i18n + name: 国际化 + type: core + entrypoints: + - src/i18n/index.ts + keywords: + - createI18n + - translate + + - id: api-system + name: API 层(src/api + request 封装) + type: core + entrypoints: + - src/api/ + - src/utils/request.ts + keywords: + - axios + - interceptors + - refreshToken + + - id: config-system + name: 配置系统(src/config 聚合) + type: core + entrypoints: + - src/config/index.js + - src/config + keywords: + - cli.config + - theme.config + - net.config + + - id: access-control + name: 访问控制(ACL + hasPermission + v-permissions) + type: core + entrypoints: + - src/store/modules/acl.ts + - src/utils/permission.ts + - library/plugins/directive.ts + keywords: + - hasPermission + - v-permissions + + - id: mock + name: 本地 Mock + type: tooling + entrypoints: + - mock/index.js + - mock/controller + keywords: + - setupMiddlewares + - mockjs + - responseFake + + - id: icons + name: SVG Icons(src/icon) + type: ui + entrypoints: + - src/icon/index.ts + - src/icon + keywords: + - require.context + - svg + + - id: styles + name: 样式体系(library/styles) + type: ui + entrypoints: + - library/styles/vab.scss + - library/styles/variables + - library/styles/background + keywords: + - scss + - variables + + - id: ui-components + name: Vab 组件库 + type: ui + entrypoints: + - library/components/ + keywords: + - Vab + - ElementPlus + + - id: vab-app + name: VabApp + type: ui + entrypoints: + - library/components/VabApp/ + + - id: vab-app-main + name: VabAppMain + type: ui + entrypoints: + - library/components/VabAppMain/ + + - id: vab-avatar + name: VabAvatar + type: ui + entrypoints: + - library/components/VabAvatar/ + + - id: vab-breadcrumb + name: VabBreadcrumb + type: ui + entrypoints: + - library/components/VabBreadcrumb/ + + - id: vab-card + name: VabCard + type: ui + entrypoints: + - library/components/VabCard/ + + - id: vab-colorful-card + name: VabColorfulCard + type: ui + entrypoints: + - library/components/VabColorfulCard/ + + - id: vab-column-bar + name: VabColumnBar + type: ui + entrypoints: + - library/components/VabColumnBar/ + + - id: vab-fold + name: VabFold + type: ui + entrypoints: + - library/components/VabFold/ + + - id: vab-footer + name: VabFooter + type: ui + entrypoints: + - library/components/VabFooter/ + + - id: vab-full-screen + name: VabFullScreen + type: ui + entrypoints: + - library/components/VabFullScreen/ + + - id: vab-language + name: VabLanguage + type: ui + entrypoints: + - library/components/VabLanguage/ + + - id: vab-link + name: VabLink + type: ui + entrypoints: + - library/components/VabLink/ + + - id: vab-logo + name: VabLogo + type: ui + entrypoints: + - library/components/VabLogo/ + + - id: vab-router-view + name: VabRouterView + type: ui + entrypoints: + - library/components/VabRouterView/ + + - id: vab-query-form + name: VabQueryForm + type: ui + entrypoints: + - library/components/VabQueryForm/ + + - id: vab-error-log + name: VabErrorLog + type: ui + entrypoints: + - library/components/VabErrorLog/ + + - id: vab-menu + name: VabMenu + type: ui + entrypoints: + - library/components/VabMenu/ + + - id: vab-nav + name: VabNav + type: ui + entrypoints: + - library/components/VabNav/ + + - id: vab-tabs + name: VabTabs + type: ui + entrypoints: + - library/components/VabTabs/ + + - id: vab-refresh + name: VabRefresh + type: ui + entrypoints: + - library/components/VabRefresh/ + + - id: vab-search + name: VabSearch + type: ui + entrypoints: + - library/components/VabSearch/ + + - id: vab-lock + name: VabLock + type: ui + entrypoints: + - library/components/VabLock/ + + - id: vab-notice + name: VabNotice + type: ui + entrypoints: + - library/components/VabNotice/ + + - id: vab-header + name: VabHeader + type: ui + entrypoints: + - library/components/VabHeader/ + + - id: vab-sidebar + name: VabSideBar + type: ui + entrypoints: + - library/components/VabSideBar/ + + - id: layouts + name: 布局体系 + type: ui + entrypoints: + - library/layouts/index.vue + - library/layouts/ + keywords: + - Layout + + - id: vab-theme + name: Theme 系统(VabTheme) + type: ui + entrypoints: + - library/components/VabTheme/ + - src/store/modules/settings.ts + - library/plugins/vab.ts + keywords: + - theme + - updateTheme + - $pub + + - id: plugins + name: Plugins(全局注入/指令/错误处理) + type: core + entrypoints: + - library/plugins/ + keywords: + - app.use + - globalProperties + + - id: plugin-vab + name: plugin-vab(gp + mitt 事件总线) + type: plugin + entrypoints: + - library/plugins/vab.ts + keywords: + - $pub + - $sub + - mitt + + - id: plugin-directive + name: plugin-directive(v-permissions) + type: plugin + entrypoints: + - library/plugins/directive.ts + keywords: + - v-permissions + - hasPermission + + - id: plugin-errorlog + name: plugin-errorlog(全局错误捕获) + type: plugin + entrypoints: + - library/plugins/errorLog.ts + keywords: + - errorHandler + - useErrorLogStore + + - id: plugin-support + name: plugin-support(构建信息/依赖检查) + type: plugin + entrypoints: + - library/plugins/support.ts + keywords: + - __APP_INFO__ + + - id: build + name: 构建扩展 + type: tooling + entrypoints: + - vue.config.js + - library/build + keywords: + - chainWebpack + - createVuePlugin + + - id: plop + name: Plop 代码生成器 + type: tooling + entrypoints: + - plopfile.js + - plop-templates/ + keywords: + - plop + - setGenerator diff --git a/front-end/AI-Coding/openspec-lite/modules/access-control.yaml b/front-end/AI-Coding/openspec-lite/modules/access-control.yaml new file mode 100644 index 0000000..bb8710b --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/access-control.yaml @@ -0,0 +1,27 @@ +# Module Spec:access-control(ACL + hasPermission + v-permissions) + +module: + id: access-control + name: 访问控制(角色/权限/指令) + type: core + entrypoints: + - src/store/modules/acl.ts + - src/utils/permission.ts + - library/plugins/directive.ts + +public_api: + concept: + - "useAclStore 保存 admin/role/permission" + - "hasPermission(target) 统一判断路由/按钮权限" + - "v-permissions 指令在模板侧消费 hasPermission" + +dependency_closure: + runtime: + - "Pinia store 初始化(src/store/index.ts)" + +acceptance: + - "acl 中 admin=true 时 hasPermission 永远为 true" + - "指令 v-permissions 可用且不报错(具体隐藏/移除行为以实现为准)" + +pitfalls: + - "权限数据来源通常由 user.getUserInfo() 写入 acl;抽取时需明确数据流" diff --git a/front-end/AI-Coding/openspec-lite/modules/api-system.yaml b/front-end/AI-Coding/openspec-lite/modules/api-system.yaml new file mode 100644 index 0000000..b0691dc --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/api-system.yaml @@ -0,0 +1,34 @@ +# Module Spec:api-system(src/api + axios request 封装) + +module: + id: api-system + name: API 层(src/api 域拆分 + src/utils/request.ts) + type: core + entrypoints: + - src/api/ + - src/utils/request.ts + +public_api: + concept: + - "src/api/.ts:按业务域拆分 API 函数" + - "src/utils/request.ts:axios 实例 + 拦截器 + 统一错误处理 + token 注入" + +dependency_closure: + runtime: + - "axios(instance + interceptors)" + - "qs(x-www-form-urlencoded 序列化)" + - "store/user:token 注入、401/402 时 resetAll / refresh token" + - "plugin-vab:gp.$baseMessage / gp.$baseLoading(loading 与错误提示)" + - "plugin-errorlog:needErrorLog/addErrorLog(请求异常入库)" + - "router:401/403 跳转" + - "config:baseURL/requestTimeout/contentType/successCode/statusName/messageName/debounce 等" + - "api/refreshToken:402 刷新 token 重试队列" + +acceptance: + - "正常接口返回 code=200 时返回 data" + - "401 跳转 /login 且 resetAll 执行" + - "402 触发 refreshToken 并重放队列请求" + +pitfalls: + - "request.ts 强依赖 gp(全局注入)与 user store;抽取到新项目需明确入口安装顺序" + - "successCode/statusName/messageName 等与后端协议强耦合,迁移时先在规格声明差异" diff --git a/front-end/AI-Coding/openspec-lite/modules/config-system.yaml b/front-end/AI-Coding/openspec-lite/modules/config-system.yaml new file mode 100644 index 0000000..7b10986 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/config-system.yaml @@ -0,0 +1,31 @@ +# Module Spec:config-system(src/config:配置聚合) + +module: + id: config-system + name: 配置系统(src/config 聚合导出) + type: core + entrypoints: + - src/config/index.js + - src/config/cli.config.js + - src/config/setting.config.js + - src/config/theme.config.js + - src/config/net.config.js + +public_api: + concept: + - "src/config/index.js 将 4 个子配置聚合导出(cli/setting/theme/network)" + - "部分配置会被 vue.config.js 以 Node 方式 require 读取,因此子配置文件应保持 Node 兼容(避免 window/document)" + + key_index: + - "authentication/loginInterception/routesWhiteList/supportVisit/rolesControl/isHashRouterMode" + - "tokenName/tokenTableName/storage/recordRoute" + - "title/titleSeparator/titleReverse" + - "defaultOpeneds/uniqueOpened/openFirstMenu" + - "layout/themeName/menuWidth/columnStyle/showProgressBar/showTabs/showTheme/showThemeSetting" + - "baseURL/contentType/requestTimeout/successCode/statusName/messageName" + +acceptance: + - "运行构建/启动时,vue.config.js require config 不报错" + +pitfalls: + - "配置文件在 Node 侧执行:避免使用浏览器对象" diff --git a/front-end/AI-Coding/openspec-lite/modules/icons.yaml b/front-end/AI-Coding/openspec-lite/modules/icons.yaml new file mode 100644 index 0000000..758512f --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/icons.yaml @@ -0,0 +1,20 @@ +# Module Spec:icons(src/icon:SVG 自动加载) + +module: + id: icons + name: SVG Icons(src/icon require.context 自动加载) + type: ui + entrypoints: + - src/icon/index.ts + - src/icon/*.svg + +public_api: + concept: + - "通过 require.context 自动加载 src/icon 下的 svg(构建期打包进 sprite/资源管线,取决于 webpack 配置)" + +dependency_closure: + bundler: + - "webpack require.context" + +acceptance: + - "启动后 svg 资源被打包且可引用(具体引用方式取决于项目现有 svg loader 配置)" diff --git a/front-end/AI-Coding/openspec-lite/modules/layouts.yaml b/front-end/AI-Coding/openspec-lite/modules/layouts.yaml new file mode 100644 index 0000000..3eaf159 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/layouts.yaml @@ -0,0 +1,40 @@ +# Module Spec:layouts(布局体系) + +module: + id: layouts + name: 布局体系(Layout Shell + 多布局实现) + type: ui + entrypoints: + - library/layouts/index.vue + - library/layouts/VabLayoutVertical/ + - library/layouts/VabLayoutHorizontal/ + - library/layouts/VabLayoutCommon/ + - library/layouts/VabLayoutComprehensive/ + - library/layouts/VabLayoutFloat/ + - library/layouts/VabLayoutColumn/ + +public_api: + concept: + - "通过 theme.layout 选择渲染的布局组件:" + +usage_examples: + - "在 settings store 中设置 theme.layout 为 vertical/horizontal/...,Layout 会动态切换" + +dependency_closure: + runtime: + - "Pinia settings store:src/store/modules/settings(theme/layout/collapse/device)" + - "Element Plus:el-backtop" + - "Theme 组件:library/components/VabTheme(VabThemeDrawer/VabThemeSetting)" + - "事件总线注入:library/plugins/vab.ts($pub/$sub/$unsub;Theme 抽屉依赖该注入)" + styles: + - "library/styles/variables/variables.module.scss(布局 SCSS 变量)" + - "library/styles/variables/vab-*-variables.module.scss(Theme 注入 Element Plus CSS 变量)" + +acceptance: + - "Layout 可渲染并不报错" + - "窗口宽度 < 992 时进入 mobile 模式并能折叠菜单(watch/resize 生效)" + - "Theme 抽屉/设置入口存在时不报错(缺失 $pub/$sub 注入会导致 Theme 不工作)" + +pitfalls: + - "Layout 通过 require.context 自动注册 layouts 子目录下的 .vue;迁移到非 webpack 环境时需要等效能力或手动注册" + - "Layout 与 Theme 都依赖 webpack 能力(require.context / 动态 require scss module);抽取到非 webpack 构建器时需要等效替代方案" diff --git a/front-end/AI-Coding/openspec-lite/modules/mock.yaml b/front-end/AI-Coding/openspec-lite/modules/mock.yaml new file mode 100644 index 0000000..4e907d9 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/mock.yaml @@ -0,0 +1,21 @@ +# Module Spec(示例):mock + +module: + id: mock + name: 本地 Mock(devServer 中间件) + entrypoints: + - mock/index.js + - mock/controller + +public_api: + concept: + - "route object: { url, type, response }" + +usage_examples: + - "在 mock/controller/.js 增加路由对象,devServer 会自动注册" + +acceptance: + - "启动开发服务器后,请求命中 mock 并返回 mockjs 数据" + +pitfalls: + - "路由匹配会自动拼 baseURL 前缀(来自 src/config)" diff --git a/front-end/AI-Coding/openspec-lite/modules/plop.yaml b/front-end/AI-Coding/openspec-lite/modules/plop.yaml new file mode 100644 index 0000000..1a4dc11 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/plop.yaml @@ -0,0 +1,19 @@ +# Module Spec:plop(代码生成器) + +module: + id: plop + name: Plop 代码生成器(view/curd/component/mock&api) + type: tooling + entrypoints: + - plopfile.js + - plop-templates/ + +public_api: + concept: + - "通过 plop generators 生成页面、curd、组件以及 mock&api 框架代码" + +acceptance: + - "执行 plop 命令可正常出现 generators 并生成文件" + +pitfalls: + - "生成结果依赖仓库既有目录约定(src/views、src/api、mock/controller 等);新项目需对齐目录或改模板" diff --git a/front-end/AI-Coding/openspec-lite/modules/plugin-directive.yaml b/front-end/AI-Coding/openspec-lite/modules/plugin-directive.yaml new file mode 100644 index 0000000..0a43569 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/plugin-directive.yaml @@ -0,0 +1,24 @@ +# Module Spec:plugin-directive(自定义指令:v-permissions) + +module: + id: plugin-directive + name: 自定义指令(v-permissions 权限控制) + type: plugin + entrypoints: + - library/plugins/directive.ts + +public_api: + concept: + - "注册 v-permissions 指令,用于按权限隐藏/禁用 UI" + +dependency_closure: + runtime: + - "权限判断:src/utils/permission(hasPermission)" + - "路由/用户权限数据:通常来自 store/user 或 routes 权限模块(视实现而定)" + +acceptance: + - "模板中存在 v-permissions 使用时不报错" + - "无权限时能按设计移除/隐藏元素(以 hasPermission 实现为准)" + +pitfalls: + - "指令依赖 hasPermission 的语义;抽取到目标项目需同步其实现与权限数据来源" diff --git a/front-end/AI-Coding/openspec-lite/modules/plugin-errorlog.yaml b/front-end/AI-Coding/openspec-lite/modules/plugin-errorlog.yaml new file mode 100644 index 0000000..214dc18 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/plugin-errorlog.yaml @@ -0,0 +1,24 @@ +# Module Spec:plugin-errorlog(全局错误捕获与上报 store) + +module: + id: plugin-errorlog + name: 错误日志插件(app.config.errorHandler + store 收集) + type: plugin + entrypoints: + - library/plugins/errorLog.ts + +public_api: + concept: + - "根据配置决定是否启用全局 errorHandler" + - "将错误写入 useErrorLogStore(用于页面展示/上报)" + +dependency_closure: + runtime: + - "Pinia:src/store/modules/errorLog(useErrorLogStore)" + - "config:src/config/errorLog(或 src/config/index.js 聚合)" + +acceptance: + - "启用后,运行时异常会进入 error log store" + +pitfalls: + - "若 store 未初始化或模块缺失,会导致 errorHandler 内再次报错" diff --git a/front-end/AI-Coding/openspec-lite/modules/plugin-support.yaml b/front-end/AI-Coding/openspec-lite/modules/plugin-support.yaml new file mode 100644 index 0000000..5a6af89 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/plugin-support.yaml @@ -0,0 +1,23 @@ +# Module Spec:plugin-support(生产环境信息/依赖检查) + +module: + id: plugin-support + name: Support 插件(构建信息输出/依赖检查) + type: plugin + entrypoints: + - library/plugins/support.ts + +public_api: + concept: + - "生产环境输出构建信息(__APP_INFO__)" + - "检查关键依赖是否存在(例如 vab-icons)" + +dependency_closure: + runtime: + - "__APP_INFO__ 全局常量(通常由构建注入)" + +acceptance: + - "生产环境能按预期打印/校验,不影响运行" + +pitfalls: + - "依赖检查失败可能影响全局能力(与 vab 插件的保护逻辑相关)" diff --git a/front-end/AI-Coding/openspec-lite/modules/plugin-vab.yaml b/front-end/AI-Coding/openspec-lite/modules/plugin-vab.yaml new file mode 100644 index 0000000..e173b3c --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/plugin-vab.yaml @@ -0,0 +1,29 @@ +# Module Spec:plugin-vab(全局能力注入 + 事件总线) + +module: + id: plugin-vab + name: Vab 插件(gp 全局方法 + mitt 事件总线) + type: plugin + entrypoints: + - library/plugins/vab.ts + +public_api: + concept: + - "通过 app.provide + app.config.globalProperties 注入 gp($baseLoading/$baseMessage/$baseAlert/$baseConfirm/$baseNotify/$baseTableHeight/$pub/$sub/$unsub)" + - "内部使用 mitt 作为事件总线实现 $pub/$sub/$unsub" + +dependency_closure: + runtime: + - "Element Plus:ElLoading / ElMessage / ElMessageBox / ElNotification" + - "mitt" + - "lodash" + - "src/config(loadingText/messageDuration)" + types: + - "types/library.d.ts(globalPropertiesType)" + +acceptance: + - "安装插件后,可通过 inject('$pub')/this.$pub 发布事件" + - "$baseMessage/$baseLoading 能正常工作" + +pitfalls: + - "生产环境存在授权/依赖检查逻辑,可能将 app.config.globalProperties 置空(不要在外部假设 gp 永远存在)" diff --git a/front-end/AI-Coding/openspec-lite/modules/router.yaml b/front-end/AI-Coding/openspec-lite/modules/router.yaml new file mode 100644 index 0000000..4e37cdb --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/router.yaml @@ -0,0 +1,37 @@ +# Module Spec:router(路由与权限守卫) + +module: + id: router + name: 路由与页面组织 + entrypoints: + - src/router/index.ts + - src/router/permissions.ts + +public_api: + exports: + - constantRoutes + - asyncRoutes + - setupPermissions(router) + +usage_examples: + - "新增页面:在 src/views// 添加 Vue 文件,并在 asyncRoutes 中挂载到 Layout children" + +dependency_closure: + runtime: + - "router:vue-router(beforeEach/afterEach)" + - "store-user:token/getUserInfo/resetAll/setVirtualRoles" + - "store-routes:setRoutes(authentication)" + - "store-settings:theme.showProgressBar" + - "config:authentication/loginInterception/routesWhiteList/supportVisit" + - "utils/pageTitle:getPageTitle(to.meta.title)" + - "utils/routes:toLoginRoute" + - "nprogress:VabProgress(含 nprogress.css)" + +acceptance: + - "路由可跳转" + - "刷新后路由仍可恢复" + +pitfalls: + - "如涉及权限/菜单,需同步 meta(title/icon/...);同时注意 routesWhiteList/loginInterception/authentication 等开关影响守卫逻辑" + - "permissions.ts 直接写 document.title;若新项目改为 useHead 等方式需统一" + diff --git a/front-end/AI-Coding/openspec-lite/modules/setup-vab.yaml b/front-end/AI-Coding/openspec-lite/modules/setup-vab.yaml new file mode 100644 index 0000000..8dcf55e --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/setup-vab.yaml @@ -0,0 +1,30 @@ +# Module Spec:setup-vab(library/index.ts:自动加载、图标、样式、插件) + +module: + id: setup-vab + name: setupVab(app)(自动加载 styles/background/plugins + 图标注册) + type: core + entrypoints: + - library/index.ts + +public_api: + concept: + - "setupVab(app) 是本模板把 'library/' 能力接入应用的总入口" + - "它负责:加载 svg 图标、全局样式、注册图标组件、自动加载背景样式与 plugins" + +dependency_closure: + runtime: + - "src/icon/index.ts(svg require.context)" + - "library/styles/vab.scss(全局样式入口)" + - "@vueuse/head(createHead)" + - "vab-icons(VabIcon 组件 + CSS)" + - "@element-plus/icons-vue(全量注册 ElementPlus 图标组件)" + bundler: + - "webpack require.context:background scss / plugins ts 自动加载" + +acceptance: + - "调用 setupVab(app) 后:VabIcon 可用、ElementPlus 图标组件可用" + - "plugins 自动 app.use 安装,$pub/$sub 等全局注入可用(由 plugin-vab 决定)" + +pitfalls: + - "setupVab 依赖 require.context;迁移到非 webpack 构建器需要替代实现(手动 import 或 glob)" diff --git a/front-end/AI-Coding/openspec-lite/modules/store-errorlog.yaml b/front-end/AI-Coding/openspec-lite/modules/store-errorlog.yaml new file mode 100644 index 0000000..6902e90 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/store-errorlog.yaml @@ -0,0 +1,23 @@ +# Module Spec:store-errorlog(错误日志收集 store) + +module: + id: store-errorlog + name: ErrorLog Store(错误日志收集) + type: store + entrypoints: + - src/store/modules/errorLog.ts + +public_api: + concept: + - "addErrorLog:追加错误日志" + - "clearErrorLog:清空错误日志" + +dependency_closure: + runtime: + - "通常由 plugin-errorlog(library/plugins/errorLog.ts)与 request 异常写入触发" + +acceptance: + - "触发 addErrorLog 后 errorLogs 可读取" + +pitfalls: + - "若错误处理链路缺失(plugin/request 未接入),store 仍可用但不会自动产生数据" diff --git a/front-end/AI-Coding/openspec-lite/modules/store-routes.yaml b/front-end/AI-Coding/openspec-lite/modules/store-routes.yaml new file mode 100644 index 0000000..c22fd3e --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/store-routes.yaml @@ -0,0 +1,28 @@ +# Module Spec:store-routes(路由模式/菜单路由状态) + +module: + id: store-routes + name: Routes Store(路由拦截/菜单路由设置) + type: store + entrypoints: + - src/store/modules/routes.ts + +public_api: + concept: + - "setRoutes(mode):根据 authentication/rolesControl 生成可访问路由并 resetRouter" + - "支持前端路由(asyncRoutes)与后端路由(getList -> convertRouter)两种模式" + +dependency_closure: + runtime: + - "router:src/router(asyncRoutes/constantRoutes/resetRouter)" + - "utils/routes:convertRouter/filterRoutes" + - "api/router:getList(后端路由模式)" + - "config:authentication/rolesControl" + - "plugin-vab:gp.$baseMessage(后端路由格式异常提示)" + +acceptance: + - "前端路由模式下:setRoutes() 后 routes 可用于菜单渲染" + - "后端路由模式下:getList 返回 list 后可 convertRouter 并 resetRouter" + +pitfalls: + - "后端路由 list 格式必须符合 convertRouter 预期;否则会提示错误" diff --git a/front-end/AI-Coding/openspec-lite/modules/store-settings.yaml b/front-end/AI-Coding/openspec-lite/modules/store-settings.yaml new file mode 100644 index 0000000..1a7dfa4 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/store-settings.yaml @@ -0,0 +1,36 @@ +# Module Spec:store-settings(全局配置/主题/布局状态) + +module: + id: store-settings + name: Settings Store(主题/布局/语言/折叠等全局配置) + type: store + entrypoints: + - src/store/modules/settings.ts + +public_api: + concept: + - "集中管理全局配置:theme、device、collapse、language、lock、logo、title" + - "持久化:localStorage(theme/collapse/language/...)" + - "主题注入:updateTheme() 动态加载 scss module 并写入 CSS 变量(--el-*)" + +usage_examples: + - "useSettingsStore().updateTheme() 在应用启动或主题变更后调用" + - "useSettingsStore().toggleCollapse() 控制侧边栏折叠" + +dependency_closure: + runtime: + - "src/config(默认 theme/layout/开关项等)" + - "@vueuse/core:useCssVar(如果项目通过 auto-import 或显式引入提供)" + bundler: + - "webpack dynamic require:require(`@vab/styles/variables/vab-${themeName}-variables.module.scss`)" + alias: + - "@ -> src" + - "@vab -> library" + +acceptance: + - "切换 themeName 后 updateTheme() 能更新 Element Plus CSS 变量" + - "刷新后 theme/collapse/language 等能从 localStorage 恢复" + +pitfalls: + - "updateTheme() 使用动态 require scss module;非 webpack 构建需替代实现" + - "useCssVar 的来源依赖工程约定(若未自动注入,需要显式 import)" diff --git a/front-end/AI-Coding/openspec-lite/modules/store-tabs.yaml b/front-end/AI-Coding/openspec-lite/modules/store-tabs.yaml new file mode 100644 index 0000000..c13e1f9 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/store-tabs.yaml @@ -0,0 +1,24 @@ +# Module Spec:store-tabs(标签页 visitedRoutes) + +module: + id: store-tabs + name: Tabs Store(visitedRoutes 管理) + type: store + entrypoints: + - src/store/modules/tabs.ts + +public_api: + concept: + - "addVisitedRoute/delVisitedRoute/delOthers/delLeft/delRight/delAll" + - "确保至少存在一个 noClosable tab(默认第一个)" + +dependency_closure: + runtime: + - "router types:VabRouteRecord(/#/router)" + +acceptance: + - "路由切换时 addVisitedRoute 可累积标签页" + - "关闭/关闭其它/左右/全部等操作不报错" + +pitfalls: + - "对 meta 合并有特殊逻辑(dynamicNewTab/noClosable),迁移时避免改坏行为" diff --git a/front-end/AI-Coding/openspec-lite/modules/store-user.yaml b/front-end/AI-Coding/openspec-lite/modules/store-user.yaml new file mode 100644 index 0000000..aeaee12 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/store-user.yaml @@ -0,0 +1,31 @@ +# Module Spec:store-user(登录/用户信息/登出/重置) + +module: + id: store-user + name: User Store(登录/用户信息/登出/重置) + type: store + entrypoints: + - src/store/modules/user.ts + +public_api: + concept: + - "login/socialLogin:登录并 afterLogin(通知、设置 token)" + - "getUserInfo:拉取 username/avatar/roles/permissions 并写入 acl" + - "logout/resetAll:清空 token/acl/routes/tabs 并 resetRouter" + +dependency_closure: + runtime: + - "api/user:login/getUserInfo/logout/socialLogin" + - "utils/token:getToken/setToken/removeToken" + - "config:tokenName" + - "store:acl/routes/tabs/settings 联动" + - "router:resetRouter" + - "plugin-vab:gp.$baseNotify/$baseMessage(提示)" + +acceptance: + - "登录成功后 token 写入并能继续请求" + - "getUserInfo 后 acl 中 roles/permissions 生效" + - "logout 后 resetAll 清理完成且路由重置" + +pitfalls: + - "logout 内含 location.reload;迁移到新项目需确认是否保留该行为" diff --git a/front-end/AI-Coding/openspec-lite/modules/styles.yaml b/front-end/AI-Coding/openspec-lite/modules/styles.yaml new file mode 100644 index 0000000..9bb01b6 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/styles.yaml @@ -0,0 +1,22 @@ +# Module Spec:styles(library/styles:全局样式/变量/背景) + +module: + id: styles + name: 样式体系(全局样式 + 变量 + 背景) + type: ui + entrypoints: + - library/styles/vab.scss + - library/styles/variables/ + - library/styles/background/ + +public_api: + concept: + - "vab.scss 是全局样式入口(normalize/transition/变量等聚合)" + - "variables 下含布局变量与 Theme 变量(vab-*-variables.module.scss)" + +dependency_closure: + bundler: + - "scss/sass loader(由 Vue CLI 提供)" + +acceptance: + - "引入 vab.scss 后基础样式生效,不影响 Element Plus" diff --git a/front-end/AI-Coding/openspec-lite/modules/ui-components.yaml b/front-end/AI-Coding/openspec-lite/modules/ui-components.yaml new file mode 100644 index 0000000..885ef1b --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/ui-components.yaml @@ -0,0 +1,27 @@ +# Module Spec:ui-components(Vab 组件库总览) + +module: + id: ui-components + name: Vab 组件库(library/components/Vab*) + type: ui + entrypoints: + - library/components/ + +public_api: + concept: + - "每个组件目录对应一个 Vab* 组件族;复用优先按目录整包搬运" + +dependency_closure: + runtime: + - "Element Plus(大量 el-* 依赖)" + - "icons:vab-icons 与 @element-plus/icons-vue(常通过 setupVab 全局注册)" + - "全局样式:library/styles/vab.scss" + alias: + - "@ -> src" + - "@vab -> library" + +acceptance: + - "目标项目能渲染组件(至少 smoke render)" + +pitfalls: + - "部分组件可能依赖路由、store、权限指令等全局插件;抽取前必须列出依赖闭包" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-app-main.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-app-main.yaml new file mode 100644 index 0000000..43ff525 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-app-main.yaml @@ -0,0 +1,27 @@ +# Module Spec:vab-app-main(主内容区:联动 routes store) + +module: + id: vab-app-main + name: VabAppMain(主内容区) + type: ui + entrypoints: + - library/components/VabAppMain/index.vue + +public_api: + concept: + - "监听 route 变化,更新 routes store 的 tab/activeMenu" + - "渲染 vab-router-view + vab-footer" + +dependency_closure: + runtime: + - "vue-router:useRoute" + - "store-routes:tab/activeMenu" + - "utils/routes:handleActivePath" + - "组件依赖:VabRouterView、VabFooter(需同时可用/注册)" + +acceptance: + - "路由变化时 activeMenu.data 更新为当前激活路径" + - "主内容区能渲染 router-view 与 footer" + +pitfalls: + - "tab 使用 route.matched[0].name;若路由层级/匹配为空需要在目标项目确认兼容" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-app.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-app.yaml new file mode 100644 index 0000000..56ef427 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-app.yaml @@ -0,0 +1,21 @@ +# Module Spec:VabApp + +module: + id: vab-app + name: VabApp(应用壳/全局容器) + type: ui + entrypoints: + - library/components/VabApp/index.vue + - library/components/VabApp/ + +usage_examples: + - "App 根组件中使用 作为应用容器" + +dependency_closure: + runtime: + - "可能依赖 router-view 与 Element Plus ConfigProvider(由 VabApp 内部决定)" + - "可能依赖 pwa / i18n / route meta" + +acceptance: + - "渲染不报错" + - "路由切换正常(若内部包含 router-view)" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-avatar.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-avatar.yaml new file mode 100644 index 0000000..15b049c --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-avatar.yaml @@ -0,0 +1,28 @@ +# Module Spec:vab-avatar(用户头像下拉) + +module: + id: vab-avatar + name: VabAvatar(用户头像/用户名下拉) + type: ui + entrypoints: + - library/components/VabAvatar/index.vue + +public_api: + concept: + - "右上角用户头像下拉:个人中心/外链/退出登录,并在退出后跳转到登录页(携带回跳参数)" + +dependency_closure: + runtime: + - "store-user:avatar/username/logout()" + - "vue-router:useRoute/useRouter" + - "utils/routes:toLoginRoute(fullPath)" + - "i18n:translate()" + - "Element Plus:el-dropdown/el-dropdown-menu/el-dropdown-item/el-avatar" + - "VabIcon" + +acceptance: + - "下拉可见时箭头激活态切换" + - "点击退出登录会调用 userStore.logout() 并跳转 toLoginRoute(route.fullPath)" + +pitfalls: + - "依赖 userStore 提供 avatar/username;新项目需保证字段一致" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-breadcrumb.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-breadcrumb.yaml new file mode 100644 index 0000000..d775232 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-breadcrumb.yaml @@ -0,0 +1,28 @@ +# Module Spec:vab-breadcrumb(面包屑) + +module: + id: vab-breadcrumb + name: VabBreadcrumb(面包屑) + type: ui + entrypoints: + - library/components/VabBreadcrumb/index.vue + +public_api: + concept: + - "根据 routesStore.getRoutes + 当前 route.path 生成面包屑,并支持 meta.icon/meta.isCustomSvg" + +dependency_closure: + runtime: + - "store-routes:getRoutes" + - "vue-router:useRoute" + - "utils/routes:handleMatched(routes, path)" + - "i18n:translate()" + - "Element Plus:el-breadcrumb/el-breadcrumb-item" + - "VabIcon" + +acceptance: + - "meta.breadcrumbHidden=true 的路由不出现在面包屑" + - "每个 crumb 的跳转目标使用 item.redirect(若存在)" + +pitfalls: + - "依赖后端路由结构与 meta 字段(title/icon/isCustomSvg)" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-card.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-card.yaml new file mode 100644 index 0000000..281f5fd --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-card.yaml @@ -0,0 +1,25 @@ +# Module Spec:vab-card(卡片封装 + Skeleton) + +module: + id: vab-card + name: VabCard(卡片封装) + type: ui + entrypoints: + - library/components/VabCard/index.vue + +public_api: + concept: + - "对 el-card 的轻封装:header slot/prop + 可选 skeleton loading(默认 500ms 结束)" + +dependency_closure: + runtime: + - "Element Plus:el-card/el-skeleton" + - "vue-router:onBeforeRouteLeave(清理定时器)" + - "SCSS:$base-transition" + +acceptance: + - "skeleton=true 时先显示 skeleton,再渲染默认 slot" + - "路由离开时清理 timer" + +pitfalls: + - "skeletonRows 注释提示:显示数量可能比传入多 1(Element Plus 行为)" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-colorful-card.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-colorful-card.yaml new file mode 100644 index 0000000..2028112 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-colorful-card.yaml @@ -0,0 +1,24 @@ +# Module Spec:vab-colorful-card(渐变卡片) + +module: + id: vab-colorful-card + name: VabColorfulCard(渐变卡片) + type: ui + entrypoints: + - library/components/VabColorfulCard/index.vue + +public_api: + concept: + - "基于 el-card 的渐变背景卡片:支持 header 标题与右上角 icon" + +dependency_closure: + runtime: + - "Element Plus:el-card" + - "VabIcon(可选)" + +acceptance: + - "传入 colorFrom/colorTo 时背景为 linear-gradient" + - "传入 icon 时显示 vab-icon" + +pitfalls: + - "colorFrom/colorTo 需为合法 CSS color 字符串" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-column-bar.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-column-bar.yaml new file mode 100644 index 0000000..8acf493 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-column-bar.yaml @@ -0,0 +1,31 @@ +# Module Spec:vab-column-bar(列式布局左侧 Tab + 二级菜单) + +module: + id: vab-column-bar + name: VabColumnBar(Column 布局列栏) + type: ui + entrypoints: + - library/components/VabColumnBar/index.vue + +public_api: + concept: + - "Column 布局专用:左侧 tabs 切换顶级菜单,右侧 el-menu 渲染 partialRoutes(二级菜单)" + +dependency_closure: + runtime: + - "store-settings:theme(layout/columnStyle)/collapse + foldSideBar/openSideBar" + - "store-routes:tab/tabMenu/activeMenu/routes/partialRoutes" + - "config:defaultOpeneds/openFirstMenu/uniqueOpened" + - "vue-router:useRoute/useRouter" + - "utils/validate:isExternal" + - "i18n:translate()" + - "styles:@vab/styles/variables/variables.module.scss(column-second-menu-background 等)" + - "Element Plus:el-scrollbar/el-tabs/el-tab-pane/el-menu/el-divider" + - "VabLogo/VabMenu/VabIcon" + +acceptance: + - "theme.layout==='column' 时可用;route.meta.noColumn=true 时会自动折叠侧边栏并隐藏 fold-unfold" + - "点击 tab:若 tabMenu.path 为外链则 window.open;否则(openFirstMenu=true)跳转到 redirect 或自身" + +pitfalls: + - "直接操作 DOM:document.querySelector('.fold-unfold') 修改 style;新项目结构不同需适配" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-error-log.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-error-log.yaml new file mode 100644 index 0000000..b445a5a --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-error-log.yaml @@ -0,0 +1,28 @@ +# Module Spec:vab-error-log(错误日志展示入口) + +module: + id: vab-error-log + name: VabErrorLog(错误日志展示) + type: ui + entrypoints: + - library/components/VabErrorLog/index.vue + +public_api: + concept: + - "展示 errorLogs 数量徽标,点击打开弹窗列表" + - "提供清空日志入口(clearErrorLog)" + +dependency_closure: + runtime: + - "store-errorlog:useErrorLogStore(errorLogs/clearErrorLog)" + - "Element Plus:el-badge/el-dialog/el-table/el-tag/el-popover/el-button" + - "VabIcon:全局组件(由 setup-vab 注册)" + related_modules: + - "plugin-errorlog:负责把运行时错误写入 store(否则列表为空)" + +acceptance: + - "errorLogs.length > 0 时显示徽标并可打开弹窗" + - "点击 '暂不显示' 能清空 store" + +pitfalls: + - "仅负责展示;日志产生依赖 plugin/request 链路" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-fold.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-fold.yaml new file mode 100644 index 0000000..b4a299e --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-fold.yaml @@ -0,0 +1,20 @@ +# Module Spec:vab-fold(折叠按钮) + +module: + id: vab-fold + name: VabFold(侧边栏折叠/展开) + type: ui + entrypoints: + - library/components/VabFold/index.vue + +public_api: + concept: + - "根据 settings.collapse 展示不同图标,并触发 settings.toggleCollapse()" + +dependency_closure: + runtime: + - "store-settings:collapse/toggleCollapse" + - "VabIcon" + +acceptance: + - "点击后触发 toggleCollapse 并切换图标" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-footer.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-footer.yaml new file mode 100644 index 0000000..928e2bc --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-footer.yaml @@ -0,0 +1,25 @@ +# Module Spec:vab-footer(页脚) + +module: + id: vab-footer + name: VabFooter(页脚) + type: ui + entrypoints: + - library/components/VabFooter/index.vue + +public_api: + concept: + - "展示年份与站点 title(来自 settings store)" + +dependency_closure: + runtime: + - "store-settings:title" + - "VabIcon" + styles: + - "SCSS 变量:$base-padding / $base-border-color(来自 styles 模块)" + +acceptance: + - "渲染后能显示年份与 title" + +pitfalls: + - "样式依赖全局 SCSS 变量;目标项目缺失变量会导致样式编译失败" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-full-screen.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-full-screen.yaml new file mode 100644 index 0000000..f38f33e --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-full-screen.yaml @@ -0,0 +1,24 @@ +# Module Spec:vab-full-screen(全屏切换) + +module: + id: vab-full-screen + name: VabFullScreen(全屏切换) + type: ui + entrypoints: + - library/components/VabFullScreen/index.vue + +public_api: + concept: + - "点击图标切换全屏状态(useFullscreen().toggle)" + +dependency_closure: + runtime: + - "@vueuse/core:useFullscreen(若项目通过 auto-import 或显式引入提供)" + - "store-settings:theme.showFullScreen" + - "VabIcon" + +acceptance: + - "theme.showFullScreen=true 时显示图标,点击可进入/退出全屏" + +pitfalls: + - "useFullscreen 的来源依赖工程约定(自动导入 vs 显式 import)" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-header.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-header.yaml new file mode 100644 index 0000000..d4ac3df --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-header.yaml @@ -0,0 +1,21 @@ +# Module Spec:VabHeader + +module: + id: vab-header + name: VabHeader(头部导航) + type: ui + entrypoints: + - library/components/VabHeader/index.vue + - library/components/VabHeader/ + +usage_examples: + - "布局组件中使用 VabHeader,承载用户信息/语言切换/全屏/刷新等入口" + +dependency_closure: + runtime: + - "可能依赖 settings store(fixedHeader/showTabs 等)" + - "可能依赖 i18n、router" + +acceptance: + - "渲染不报错" + - "常用操作(如全屏/刷新/语言切换)不崩溃(若组件支持)" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-language.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-language.yaml new file mode 100644 index 0000000..7ad0d38 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-language.yaml @@ -0,0 +1,28 @@ +# Module Spec:vab-language(语言切换) + +module: + id: vab-language + name: VabLanguage(语言切换) + type: ui + entrypoints: + - library/components/VabLanguage/index.vue + +public_api: + concept: + - "通过下拉菜单切换语言:更新 settings.language + i18n locale + document.title" + +dependency_closure: + runtime: + - "store-settings:theme.showLanguage / changeLanguage(language)" + - "vue-i18n:useI18n().locale" + - "vue-router:useRoute(读取 route.meta.title)" + - "utils/pageTitle:getPageTitle" + - "Element Plus:el-dropdown/el-dropdown-menu/el-dropdown-item" + - "VabIcon" + +acceptance: + - "theme.showLanguage=true 时显示入口" + - "切换后 settings.language 与 i18n locale 同步更新" + +pitfalls: + - "document.title 依赖 route.meta.title;目标项目若 meta.title 缺失需适配" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-link.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-link.yaml new file mode 100644 index 0000000..1a8f342 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-link.yaml @@ -0,0 +1,21 @@ +# Module Spec:vab-link(智能链接) + +module: + id: vab-link + name: VabLink(外链/内链统一) + type: ui + entrypoints: + - library/components/VabLink/index.vue + +public_api: + concept: + - "根据 isExternal(to) 自动选择渲染 a 或 router-link" + +dependency_closure: + runtime: + - "utils/validate:isExternal" + - "vue-router:router-link" + +acceptance: + - "外链:target=_blank + rel=noopener" + - "内链:透传 to 给 router-link" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-lock.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-lock.yaml new file mode 100644 index 0000000..4090db2 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-lock.yaml @@ -0,0 +1,29 @@ +# Module Spec:vab-lock(锁屏/解锁) + +module: + id: vab-lock + name: VabLock(屏幕锁) + type: ui + entrypoints: + - library/components/VabLock/index.vue + +public_api: + concept: + - "点击锁屏图标将 settings.lock 置为 true,并隐藏侧边栏 DOM" + - "解锁通过表单校验后将 settings.lock 置为 false,并恢复侧边栏" + +dependency_closure: + runtime: + - "store-settings:theme.showLock / lock / title / handleLock / handleUnLock" + - "store-user:avatar" + - "i18n:translate" + - "Element Plus:el-avatar/el-form/el-form-item/el-input/el-button" + - "浏览器 DOM:document.querySelector('.vab-side-bar')(直接改 style)" + +acceptance: + - "theme.showLock=true 时显示锁图标;点击后 lock=true 并出现锁屏层" + - "解锁成功后 lock=false,页面恢复" + +pitfalls: + - "组件内密码校验为固定值(示例逻辑);迁移到新项目需确认是否替换为真实策略" + - "直接操作 '.vab-side-bar' DOM;若目标项目侧边栏类名不同需要适配" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-logo.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-logo.yaml new file mode 100644 index 0000000..1bce6ff --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-logo.yaml @@ -0,0 +1,26 @@ +# Module Spec:vab-logo(Logo + Title) + +module: + id: vab-logo + name: VabLogo(Logo/标题) + type: ui + entrypoints: + - library/components/VabLogo/index.vue + +public_api: + concept: + - "读取 settings.logo/settings.title,并根据 theme.layout 渲染不同样式的 logo 区域" + +dependency_closure: + runtime: + - "store-settings:theme/layout + logo + title" + - "vue-router:router-link" + - "VabIcon(自定义 svg:is-custom-svg)" + - "SCSS:$base-header-height/$base-logo-height/$base-title-color 等" + +acceptance: + - "logo 存在时使用 vab-icon 渲染自定义 svg" + - "theme.layout==='horizontal' 时标题可隐藏(hidden-xs-only)" + +pitfalls: + - "Column 布局会固定定位 logo,依赖左侧菜单宽度相关变量" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-menu.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-menu.yaml new file mode 100644 index 0000000..e31f0e5 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-menu.yaml @@ -0,0 +1,39 @@ +# Module Spec:VabMenu + +module: + id: vab-menu + name: VabMenu(菜单体系) + type: ui + entrypoints: + - library/components/VabMenu/index.vue + - library/components/VabMenu/components/VabMenuItem.vue + - library/components/VabMenu/components/VabSubMenu.vue + +public_api: + concept: + - "递归渲染菜单:VabMenu 根据子路由可见性选择渲染 VabSubMenu 或 VabMenuItem" + - "点击菜单:根据 meta.target/_blank、外链/内链、同路由刷新等逻辑进行跳转或触发 reload" + +usage_examples: + - "布局组件中引入 VabMenu,配合路由 meta 与权限渲染导航" + +dependency_closure: + runtime: + - "vue-router:useRoute/useRouter(跳转/判断当前路由)" + - "store-settings:collapse/device/theme(layout) + foldSideBar(移动端点击收起)" + - "plugin-vab:inject('$pub')(同路由点击触发 $pub('reload-router-view'))" + - "config:isHashRouterMode(hash 模式下 _blank 打开内部路由)" + - "utils/validate:isExternal(外链判断)" + - "i18n:translate(菜单 title)" + - "Element Plus:el-menu-item/el-sub-menu/el-tag" + - "VabIcon" + +acceptance: + - "item.children 中存在可见子路由时渲染 VabSubMenu,否则渲染 VabMenuItem" + - "meta.target === '_blank' 时按外链/内链规则在新窗口打开" + - "点击当前已激活路由时触发 $pub('reload-router-view')" + +pitfalls: + - "组件内部使用 webpack require.context 自动注册子组件;迁移到非 webpack 构建器需等效替代" + - "Element Plus 关于 teleported 的历史兼容问题:弹层渲染到 body 下时需要全局样式配合(见 VabMenu/index.vue 注释)" + - "如果菜单权限依赖 ACL/指令(v-permissions/hasPermission),迁移时必须把相关依赖一起带走" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-nav.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-nav.yaml new file mode 100644 index 0000000..5bc58d3 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-nav.yaml @@ -0,0 +1,29 @@ +# Module Spec:vab-nav(顶部导航条聚合) + +module: + id: vab-nav + name: VabNav(顶部导航条) + type: ui + entrypoints: + - library/components/VabNav/index.vue + +public_api: + concept: + - "顶部导航聚合:左侧(Fold + Tabs/Breadcrumb),右侧(ErrorLog/Lock/Search/Notice/FullScreen/Language/Theme/Refresh/Avatar)" + +dependency_closure: + runtime: + - "store-routes:tab/tabMenu/routes" + - "vue-router:useRouter" + - "utils/validate:isExternal" + - "config:openFirstMenu" + - "i18n:translate()" + - "Element Plus:el-row/el-col/el-tabs/el-tab-pane" + - "Components:VabFold/VabBreadcrumb/VabErrorLog/VabLock/VabSearch/VabNotice/VabFullScreen/VabLanguage/VabTheme/VabRefresh/VabAvatar" + +acceptance: + - "layout='comprehensive' 时显示顶部 tabs,否则显示面包屑(hidden-xs-only)" + - "点击 tab:外链 window.open;否则(openFirstMenu=true)跳 redirect 或自身" + +pitfalls: + - "强依赖多组件与 routesStore 输出结构;抽取时必须把依赖组件闭包一起带走" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-notice.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-notice.yaml new file mode 100644 index 0000000..e97a4fe --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-notice.yaml @@ -0,0 +1,31 @@ +# Module Spec:vab-notice(消息中心) + +module: + id: vab-notice + name: VabNotice(消息中心/通知) + type: ui + entrypoints: + - library/components/VabNotice/index.vue + +public_api: + concept: + - "显示通知 badge,弹出 popover + tabs 展示通知/邮件" + - "从 api/notice.getList 拉取数据并计算 badge" + - "提供清空消息入口(仅清空前端列表与 badge,并提示)" + +dependency_closure: + runtime: + - "store-settings:theme.showNotice" + - "api/notice:getList" + - "plugin-vab:$baseMessage(清空提示,通过 inject 获取)" + - "i18n:translate" + - "Element Plus:el-badge/el-popover/el-tabs/el-tab-pane/el-scrollbar/el-avatar/el-button" + - "VabIcon" + +acceptance: + - "theme.showNotice=true 时显示通知入口与 badge" + - "点击/切换 tab 会触发 fetchData 更新列表" + +pitfalls: + - "数据协议依赖 notice.getList 的返回结构(list/total)" + - "清空仅影响前端状态,不等价于后端已读/删除" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-query-form.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-query-form.yaml new file mode 100644 index 0000000..df350e2 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-query-form.yaml @@ -0,0 +1,29 @@ +# Module Spec:vab-query-form(查询表单布局容器) + +module: + id: vab-query-form + name: VabQueryForm(查询条件容器) + type: ui + entrypoints: + - library/components/VabQueryForm/index.vue + - library/components/VabQueryForm/components/VabQueryFormTopPanel.vue + - library/components/VabQueryForm/components/VabQueryFormBottomPanel.vue + - library/components/VabQueryForm/components/VabQueryFormLeftPanel.vue + - library/components/VabQueryForm/components/VabQueryFormRightPanel.vue + +public_api: + concept: + - "基于 Element Plus el-row 的 slot 容器,用于统一查询表单布局与间距" + +dependency_closure: + runtime: + - "Element Plus:el-row" + styles: + - "SCSS 变量:$base-input-height / $base-margin(来自全局样式变量体系,见 styles 模块)" + +acceptance: + - "作为容器包裹 el-form-item/el-button 时布局与间距符合预期" + +pitfalls: + - "样式依赖全局 SCSS 变量;目标项目若未引入对应变量会导致样式编译失败" + diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-refresh.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-refresh.yaml new file mode 100644 index 0000000..1e82dc6 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-refresh.yaml @@ -0,0 +1,25 @@ +# Module Spec:vab-refresh(刷新当前路由视图) + +module: + id: vab-refresh + name: VabRefresh(刷新按钮) + type: ui + entrypoints: + - library/components/VabRefresh/index.vue + +public_api: + concept: + - "点击后通过事件总线发布 reload-router-view,刷新当前 router-view 缓存" + +dependency_closure: + runtime: + - "store-settings:theme.showRefresh(是否显示按钮)" + - "plugin-vab:$pub(发布事件)" + related_modules: + - "vab-router-view:订阅并处理 reload-router-view" + +acceptance: + - "theme.showRefresh=true 时显示图标,点击触发 $pub('reload-router-view')" + +pitfalls: + - "未安装 plugin-vab 或未接入 vab-router-view 时,点击不会产生效果" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-router-view.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-router-view.yaml new file mode 100644 index 0000000..0a2c57b --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-router-view.yaml @@ -0,0 +1,31 @@ +# Module Spec:vab-router-view(路由视图壳:keep-alive + 过渡 + reload 事件) + +module: + id: vab-router-view + name: VabRouterView(router-view + keep-alive + reload) + type: ui + entrypoints: + - library/components/VabRouterView/index.vue + +public_api: + concept: + - "统一承载页面 router-view,提供 keep-alive include 列表与过渡动画" + - "监听事件总线:reload-router-view,用于刷新当前视图缓存" + +dependency_closure: + runtime: + - "vue-router:useRoute / " + - "plugin-vab:$sub/$unsub(事件订阅)" + - "store-settings:theme.showProgressBar / theme.showPageTransition" + - "store-tabs:visitedRoutes(生成 keepAliveNameList)" + - "utils/routes:handleActivePath(生成 routerKey)" + - "config:keepAliveMaxNum" + - "nprogress(显示刷新进度条)" + +acceptance: + - "路由切换时 keep-alive include 列表随 visitedRoutes 更新" + - "$sub('reload-router-view') 触发后,当前视图能被重新渲染(routerKey 变更)" + +pitfalls: + - "存在 get-code 事件并依赖组件的 __source 字段;不同构建/插件下可能不存在" + - "未安装 plugin-vab 时 $sub/$unsub 不存在,reload/get-code 事件不会工作" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-search.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-search.yaml new file mode 100644 index 0000000..a0e0e86 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-search.yaml @@ -0,0 +1,30 @@ +# Module Spec:vab-search(菜单搜索:Ctrl/⌘+K) + +module: + id: vab-search + name: VabSearch(菜单搜索) + type: ui + entrypoints: + - library/components/VabSearch/index.vue + +public_api: + concept: + - "通过 Ctrl/⌘+K 或点击图标打开搜索面板(teleport 到 body)" + - "从 routes store 的 getRoutes 平铺菜单项并模糊搜索" + - "维护本地搜索历史 localStorage(key=vab_search_history)" + +dependency_closure: + runtime: + - "store-routes:getRoutes(菜单路由来源)" + - "vue-router:useRouter(router.push 内链跳转)" + - "浏览器 API:window.addEventListener('keydown'), navigator.userAgent, localStorage" + - "VabIcon:搜索图标与历史删除图标" + +acceptance: + - "Ctrl/⌘+K 可打开/关闭面板(Escape 关闭)" + - "输入关键字能过滤菜单并 Enter 跳转" + - "搜索历史能写入/删除/清空" + +pitfalls: + - "该组件包含较多样式与 DOM 交互(teleport/fixed mask);抽取到新项目需确保全局样式/层级不冲突" + - "菜单来源依赖 routes store 已完成 setRoutes;否则列表为空" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-sidebar.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-sidebar.yaml new file mode 100644 index 0000000..820f435 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-sidebar.yaml @@ -0,0 +1,20 @@ +# Module Spec:VabSideBar + +module: + id: vab-sidebar + name: VabSideBar(侧边栏容器) + type: ui + entrypoints: + - library/components/VabSideBar/index.vue + - library/components/VabSideBar/ + +usage_examples: + - "在布局中使用 VabSideBar 包裹 VabMenu,实现侧边导航" + +dependency_closure: + runtime: + - "settings store:collapse/device 等" + - "Element Plus(如内部使用 el-scrollbar 等)" + +acceptance: + - "折叠状态切换后布局不崩溃" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-tabs.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-tabs.yaml new file mode 100644 index 0000000..09850f1 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-tabs.yaml @@ -0,0 +1,21 @@ +# Module Spec:VabTabs + +module: + id: vab-tabs + name: VabTabs(多标签页/导航标签) + type: ui + entrypoints: + - library/components/VabTabs/index.vue + - library/components/VabTabs/ + +usage_examples: + - "布局头部或主区域放置 VabTabs,展示已访问路由并支持关闭/切换" + +dependency_closure: + runtime: + - "vue-router:监听路由变化" + - "store:tabs 状态(如果实现依赖 store 模块)" + +acceptance: + - "访问多个路由后能出现多个 tab(如功能支持)" + - "切换/关闭 tab 不崩溃" diff --git a/front-end/AI-Coding/openspec-lite/modules/vab-theme.yaml b/front-end/AI-Coding/openspec-lite/modules/vab-theme.yaml new file mode 100644 index 0000000..d6ee8fc --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/modules/vab-theme.yaml @@ -0,0 +1,40 @@ +# Module Spec:vab-theme(主题系统入口与交互) + +module: + id: vab-theme + name: VabTheme(主题配置入口/抽屉/设置面板) + type: ui + entrypoints: + - library/components/VabTheme/index.vue + - library/components/VabTheme/components/VabThemeDrawer.vue + - library/components/VabTheme/components/VabThemeSetting.vue + - library/components/VabTheme/components/ + +public_api: + concept: + - "VabTheme:一个刷子图标入口,用于触发打开主题抽屉(Drawer)" + - "VabThemeDrawer:主题抽屉,监听事件总线打开/随机主题,并调用 settings store 的 saveTheme/resetTheme/updateTheme" + - "VabThemeSetting:右侧固定设置入口(主题配置/随机换肤/购买源码/清理缓存),通过事件总线触发行为" + +usage_examples: + - "点击 VabTheme 触发 $pub('theme') 打开抽屉" + - "点击 VabThemeSetting 的随机换肤触发 $pub('random-theme')" + +dependency_closure: + runtime: + - "Pinia settings store:src/store/modules/settings(theme.showTheme、saveTheme/resetTheme/updateTheme 等)" + - "事件总线/全局注入:library/plugins/vab.ts($pub/$sub/$unsub/$baseLoading 等)" + - "i18n translate:src/i18n/index.ts(组件内调用 translate)" + - "Element Plus:Drawer/Radio/Select/Button 等" + styles: + - "主题变量:library/styles/variables/vab-*-variables.module.scss(updateTheme() 动态注入 CSS 变量)" + +acceptance: + - "页面渲染包含主题入口(刷子图标)" + - "触发 $pub('theme') 时抽屉能打开;关闭时不报错" + - "保存/重置主题后调用 updateTheme() 生效(CSS 变量与 body class 变化)" + +pitfalls: + - "Theme 依赖 $pub/$sub 注入;若未安装 vab 插件,事件不会触发" + - "settings.updateTheme() 依赖 webpack 的 require 动态引入 scss module;迁移到非 webpack 环境需等效实现" + - "移动端(<992)某些操作会触发 reload;抽取时需确认期望行为" diff --git a/front-end/AI-Coding/openspec-lite/project.yaml b/front-end/AI-Coding/openspec-lite/project.yaml new file mode 100644 index 0000000..4b11cbd --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/project.yaml @@ -0,0 +1,64 @@ +# OpenSpec-lite: 项目级规格(轻量版) +# 目的:用“可机读约束”引导 AI 在不改动现有代码的情况下复用资源。 + +project: + name: admin-plus-template + intent: "公司内部模板库/基础库(轻量化,优先文档约束)" + stack: + framework: "Vue 3" + build: "Vue CLI 5" + language: "TypeScript" + state: "Pinia" + router: "Vue Router" + ui: "Element Plus" + +constraints: + no_code_changes_by_default: true + prefer_docs_over_refactor: true + extraction_style: + - "copy-module" # 优先整目录搬运再裁剪 + - "copy-snippet" # 仅在模块过大或依赖不清晰时使用 + + required_output_sections: + - "changed_files" # 变更文件清单 + - "extracted_modules" # 抽取模块清单(来源->目标) + - "dependency_closure" # 依赖闭包(imports/运行时/类型/alias) + - "acceptance_commands" # 验收命令 + - "risks" # 风险说明 + + forbidden_by_default: + - "changing runtime behavior in production" # 禁止默认更改生产行为 + - "introducing new global side effects" # 禁止新增全局副作用 + - "deep-importing internal paths of modules" # 禁止消费者深层路径引用 + +acceptance: + minimum_commands: + - "pnpm run serve" + recommended_commands: + - "pnpm run lint" + - "pnpm run test:unit" + - "pnpm run build" + +repository: + entrypoints: + - "src/main.ts" + - "library/index.ts" + - "src/router/index.ts" + - "src/store/index.ts" + - "src/i18n/index.ts" + - "mock/index.js" + +module_roots: + ui_components_dir: "library/components" + layouts_dir: "library/layouts" + plugins_dir: "library/plugins" + styles_dir: "library/styles" + store_modules_dir: "src/store/modules" + api_dir: "src/api" + utils_dir: "src/utils" + config_dir: "src/config" + icons_dir: "src/icon" + +notes: + - "配置读取来自 src/config/index.js(被 vue.config.js require)" + - "library/index.ts 存在插件自动全量加载;抽取时需显式列出依赖闭包" diff --git a/front-end/AI-Coding/openspec-lite/tasks/add-api-and-mock.yaml b/front-end/AI-Coding/openspec-lite/tasks/add-api-and-mock.yaml new file mode 100644 index 0000000..27e037b --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/add-api-and-mock.yaml @@ -0,0 +1,25 @@ +# Task Template: 新增 API + Mock(轻量版) + +task: + id: add-api-and-mock + intent: "新增一个 API 调用函数,并同步补一个 Mock 路由(用于开发联调)" + +inputs: + required: + - domain + - function_name + - method # get/post/... + - path # 例如 /router/getList + +outputs: + files_to_change: + - "src/api/.ts" + - "mock/controller/.js" + +rules: + - "API path 与 Mock path 必须一致" + - "Mock 路由对象必须包含 url/type/response" + +acceptance: + - "开发环境请求能命中 mock" + - "API 函数能被页面调用且类型不报错(若涉及类型需补 types/)" diff --git a/front-end/AI-Coding/openspec-lite/tasks/add-page.yaml b/front-end/AI-Coding/openspec-lite/tasks/add-page.yaml new file mode 100644 index 0000000..b588bc0 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/add-page.yaml @@ -0,0 +1,28 @@ +# Task Template: 新增页面 + 路由(轻量版) +# 目标:约束 AI 在本仓库(或迁移后的新仓库)新增页面时的输出与验收。 + +task: + id: add-page + intent: "新增一个页面,并把路由挂载到 Layout(如需要,同步 meta 供菜单/面包屑使用)" + +inputs: + required: + - module # 例如 goods / userManagement + - page_name # 例如 list / detail + - route_path # 例如 /goods/list + - route_name # 例如 GoodsList + +outputs: + files_to_change: + - "src/views//.vue" + - "src/router/index.ts" + +rules: + - "页面文件必须位于 src/views// 下" + - "路由必须挂载到 asyncRoutes 的 Layout children(除非明确说明是 constantRoutes)" + - "如需要菜单展示,必须填写 meta.title;如需要图标,必须填写 meta.icon" + +acceptance: + - "访问 route_path 能渲染页面" + - "刷新后仍可访问(路由可恢复)" + - "若配置 meta,菜单/面包屑能展示正确标题" diff --git a/front-end/AI-Coding/openspec-lite/tasks/extract-component.yaml b/front-end/AI-Coding/openspec-lite/tasks/extract-component.yaml new file mode 100644 index 0000000..1107da0 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/extract-component.yaml @@ -0,0 +1,37 @@ +# Task Template: 抽取组件(library/components/Vab*) + +task: + id: extract-component + intent: "从本仓库抽取一个或多个 Vab 组件到目标项目,确保依赖闭包完整" + +inputs: + required: + - components # 例如 ["VabTabs", "VabMenu"] + - target_project_type + - extraction_style + +scope: + base_dir: "library/components" + +dependency_closure_checklist: + runtime: + - "Element Plus 组件是否使用(el-*)" + - "icons:vab-icons 与 @element-plus/icons-vue 是否需要" + - "全局样式:library/styles/vab.scss 是否是前置依赖" + app_wiring: + - "是否依赖 setupVab 的全局注册(VabIcon / 图标注册 / 插件自动加载)" + alias: + - "@ -> src" + - "@vab -> library" + +outputs: + required_sections: + - changed_files + - extracted_modules + - dependency_closure + - acceptance_commands + - risks + +acceptance: + - "目标项目可渲染组件" + - "关键交互可用(按组件规格中的验收点)" diff --git a/front-end/AI-Coding/openspec-lite/tasks/extract-layout.yaml b/front-end/AI-Coding/openspec-lite/tasks/extract-layout.yaml new file mode 100644 index 0000000..4714457 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/extract-layout.yaml @@ -0,0 +1,44 @@ +# Task Template: 抽取布局体系(library/layouts) + +task: + id: extract-layout + intent: "从本仓库抽取布局体系到目标项目,最小闭包迁移,尽量不改动原仓库代码" + +inputs: + required: + - target_project_type # vue-cli | vite | other + - extraction_style # copy-module | copy-snippet + +scope: + entrypoints: + - library/layouts/index.vue + - library/layouts/VabLayoutVertical/ + - library/layouts/VabLayoutHorizontal/ + - library/layouts/VabLayoutCommon/ + - library/layouts/VabLayoutComprehensive/ + - library/layouts/VabLayoutFloat/ + - library/layouts/VabLayoutColumn/ + +dependency_closure_checklist: + runtime: + - "Element Plus(el-backtop 等)" + - "Theme 组件(library/components/VabTheme)是否随闭包迁移" + - "事件总线注入(library/plugins/vab.ts:$pub/$sub/$unsub)是否可用" + - "Pinia settings store:src/store/modules/settings(theme/layout/collapse/device)" + - "全局样式变量:library/styles/variables/(布局 SCSS 使用的变量)" + - "Theme 变量:library/styles/variables/vab-*-variables.module.scss(settings.updateTheme() 依赖)" + alias: + - "@ -> src" + - "@vab -> library" + +outputs: + required_sections: + - changed_files + - extracted_modules + - dependency_closure + - acceptance_commands + - risks + +acceptance: + - "Layout 能渲染" + - "切换移动端/桌面端时不崩溃(resize/watch 逻辑生效)" diff --git a/front-end/AI-Coding/openspec-lite/tasks/extract-module.yaml b/front-end/AI-Coding/openspec-lite/tasks/extract-module.yaml new file mode 100644 index 0000000..38936b7 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/extract-module.yaml @@ -0,0 +1,30 @@ +# Task Template: 抽取/复用模块(轻量版) + +task: + id: extract-module + intent: "从本仓库抽取模块到目标项目,尽量不改动原仓库代码" + +inputs: + required: + - module_id + - target_project_type # vue-cli | vite | other + - extraction_style # copy-module | copy-snippet + +outputs: + required_sections: + - changed_files + - extracted_modules + - dependency_closure + - acceptance_commands + - risks + +procedure: + - step: "从 openspec-lite/manifest.yaml 选择 module_id 并列出 entrypoints" + - step: "读取入口文件,分析 import 依赖与运行时依赖(样式、插件、types、alias)" + - step: "按 extraction_style 抽取(优先 copy-module)" + - step: "在目标项目补齐依赖(package.json、alias、types include)" + - step: "给出最小验收命令并说明风险" + +acceptance: + - "目标项目可启动(serve)" + - "模块能力可用(根据 module_id 的验收点)" diff --git a/front-end/AI-Coding/openspec-lite/tasks/extract-plugin.yaml b/front-end/AI-Coding/openspec-lite/tasks/extract-plugin.yaml new file mode 100644 index 0000000..e29e159 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/extract-plugin.yaml @@ -0,0 +1,35 @@ +# Task Template: 抽取插件(library/plugins/*) + +task: + id: extract-plugin + intent: "从本仓库抽取一个或多个插件到目标项目,确保注入点与依赖闭包完整" + +inputs: + required: + - plugins # 例如 ["vab", "directive", "errorLog", "support"] + - target_project_type + - extraction_style + +scope: + base_dir: "library/plugins" + +dependency_closure_checklist: + runtime: + - "vab:Element Plus 的 ElMessage/ElLoading/ElMessageBox/ElNotification 是否全局可用" + - "directive:src/utils/permission 与权限数据来源是否齐全" + - "errorLog:src/store/modules/errorLog 与 config/errorLog 是否齐全" + - "support:__APP_INFO__ 注入方式是否一致" + wiring: + - "是否通过 setupVab(library/index.ts) 自动 app.use() 安装;若非自动,需要在入口手动 app.use()" + +outputs: + required_sections: + - changed_files + - extracted_modules + - dependency_closure + - acceptance_commands + - risks + +acceptance: + - "插件安装后,不影响应用启动" + - "涉及的注入能力/指令/错误捕获按模块规格验收" diff --git a/front-end/AI-Coding/openspec-lite/tasks/extract-theme.yaml b/front-end/AI-Coding/openspec-lite/tasks/extract-theme.yaml new file mode 100644 index 0000000..d7c6961 --- /dev/null +++ b/front-end/AI-Coding/openspec-lite/tasks/extract-theme.yaml @@ -0,0 +1,41 @@ +# Task Template: 抽取主题系统(VabTheme + settings 主题闭包) + +task: + id: extract-theme + intent: "从本仓库抽取 Theme 系统到目标项目,确保事件总线 + settings theme 闭包完整" + +inputs: + required: + - target_project_type # vue-cli | vite | other + - extraction_style # copy-module | copy-snippet + +scope: + entrypoints: + - library/components/VabTheme/ + - src/store/modules/settings.ts + - library/plugins/vab.ts + - library/styles/variables/ + +dependency_closure_checklist: + runtime: + - "Pinia settings store 是否存在并已在入口初始化" + - "vab 插件是否安装($pub/$sub/$baseLoading 注入)" + - "i18n translate 是否可用" + - "Element Plus Drawer/表单控件是否可用" + bundler: + - "settings.updateTheme() 的 require('@vab/styles/variables/vab-*-variables.module.scss') 在目标构建器中是否可用" + alias: + - "@ -> src" + - "@vab -> library" + +outputs: + required_sections: + - changed_files + - extracted_modules + - dependency_closure + - acceptance_commands + - risks + +acceptance: + - "触发 $pub('theme') 能打开 Theme Drawer" + - "修改主题并保存后,刷新页面主题持久化且样式变量生效" diff --git a/front-end/LICENSE b/front-end/LICENSE new file mode 100644 index 0000000..a612ad9 --- /dev/null +++ b/front-end/LICENSE @@ -0,0 +1,373 @@ +Mozilla Public License Version 2.0 +================================== + +1. Definitions +-------------- + +1.1. "Contributor" + means each individual or legal entity that creates, contributes to + the creation of, or owns Covered Software. + +1.2. "Contributor Version" + means the combination of the Contributions of others (if any) used + by a Contributor and that particular Contributor's Contribution. + +1.3. "Contribution" + means Covered Software of a particular Contributor. + +1.4. "Covered Software" + means Source Code Form to which the initial Contributor has attached + the notice in Exhibit A, the Executable Form of such Source Code + Form, and Modifications of such Source Code Form, in each case + including portions thereof. + +1.5. "Incompatible With Secondary Licenses" + means + + (a) that the initial Contributor has attached the notice described + in Exhibit B to the Covered Software; or + + (b) that the Covered Software was made available under the terms of + version 1.1 or earlier of the License, but not also under the + terms of a Secondary License. + +1.6. "Executable Form" + means any form of the work other than Source Code Form. + +1.7. "Larger Work" + means a work that combines Covered Software with other material, in + a separate file or files, that is not Covered Software. + +1.8. "License" + means this document. + +1.9. "Licensable" + means having the right to grant, to the maximum extent possible, + whether at the time of the initial grant or subsequently, any and + all of the rights conveyed by this License. + +1.10. "Modifications" + means any of the following: + + (a) any file in Source Code Form that results from an addition to, + deletion from, or modification of the contents of Covered + Software; or + + (b) any new file in Source Code Form that contains any Covered + Software. + +1.11. "Patent Claims" of a Contributor + means any patent claim(s), including without limitation, method, + process, and apparatus claims, in any patent Licensable by such + Contributor that would be infringed, but for the grant of the + License, by the making, using, selling, offering for sale, having + made, import, or transfer of either its Contributions or its + Contributor Version. + +1.12. "Secondary License" + means either the GNU General Public License, Version 2.0, the GNU + Lesser General Public License, Version 2.1, the GNU Affero General + Public License, Version 3.0, or any later versions of those + licenses. + +1.13. "Source Code Form" + means the form of the work preferred for making modifications. + +1.14. "You" (or "Your") + means an individual or a legal entity exercising rights under this + License. For legal entities, "You" includes any entity that + controls, is controlled by, or is under common control with You. For + purposes of this definition, "control" means (a) the power, direct + or indirect, to cause the direction or management of such entity, + whether by contract or otherwise, or (b) ownership of more than + fifty percent (50%) of the outstanding shares or beneficial + ownership of such entity. + +2. License Grants and Conditions +-------------------------------- + +2.1. Grants + +Each Contributor hereby grants You a world-wide, royalty-free, +non-exclusive license: + +(a) under intellectual property rights (other than patent or trademark) + Licensable by such Contributor to use, reproduce, make available, + modify, display, perform, distribute, and otherwise exploit its + Contributions, either on an unmodified basis, with Modifications, or + as part of a Larger Work; and + +(b) under Patent Claims of such Contributor to make, use, sell, offer + for sale, have made, import, and otherwise transfer either its + Contributions or its Contributor Version. + +2.2. Effective Date + +The licenses granted in Section 2.1 with respect to any Contribution +become effective for each Contribution on the date the Contributor first +distributes such Contribution. + +2.3. Limitations on Grant Scope + +The licenses granted in this Section 2 are the only rights granted under +this License. No additional rights or licenses will be implied from the +distribution or licensing of Covered Software under this License. +Notwithstanding Section 2.1(b) above, no patent license is granted by a +Contributor: + +(a) for any code that a Contributor has removed from Covered Software; + or + +(b) for infringements caused by: (i) Your and any other third party's + modifications of Covered Software, or (ii) the combination of its + Contributions with other software (except as part of its Contributor + Version); or + +(c) under Patent Claims infringed by Covered Software in the absence of + its Contributions. + +This License does not grant any rights in the trademarks, service marks, +or logos of any Contributor (except as may be necessary to comply with +the notice requirements in Section 3.4). + +2.4. Subsequent Licenses + +No Contributor makes additional grants as a result of Your choice to +distribute the Covered Software under a subsequent version of this +License (see Section 10.2) or under the terms of a Secondary License (if +permitted under the terms of Section 3.3). + +2.5. Representation + +Each Contributor represents that the Contributor believes its +Contributions are its original creation(s) or it has sufficient rights +to grant the rights to its Contributions conveyed by this License. + +2.6. Fair Use + +This License is not intended to limit any rights You have under +applicable copyright doctrines of fair use, fair dealing, or other +equivalents. + +2.7. Conditions + +Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted +in Section 2.1. + +3. Responsibilities +------------------- + +3.1. Distribution of Source Form + +All distribution of Covered Software in Source Code Form, including any +Modifications that You create or to which You contribute, must be under +the terms of this License. You must inform recipients that the Source +Code Form of the Covered Software is governed by the terms of this +License, and how they can obtain a copy of this License. You may not +attempt to alter or restrict the recipients' rights in the Source Code +Form. + +3.2. Distribution of Executable Form + +If You distribute Covered Software in Executable Form then: + +(a) such Covered Software must also be made available in Source Code + Form, as described in Section 3.1, and You must inform recipients of + the Executable Form how they can obtain a copy of such Source Code + Form by reasonable means in a timely manner, at a charge no more + than the cost of distribution to the recipient; and + +(b) You may distribute such Executable Form under the terms of this + License, or sublicense it under different terms, provided that the + license for the Executable Form does not attempt to limit or alter + the recipients' rights in the Source Code Form under this License. + +3.3. Distribution of a Larger Work + +You may create and distribute a Larger Work under terms of Your choice, +provided that You also comply with the requirements of this License for +the Covered Software. If the Larger Work is a combination of Covered +Software with a work governed by one or more Secondary Licenses, and the +Covered Software is not Incompatible With Secondary Licenses, this +License permits You to additionally distribute such Covered Software +under the terms of such Secondary License(s), so that the recipient of +the Larger Work may, at their option, further distribute the Covered +Software under the terms of either this License or such Secondary +License(s). + +3.4. Notices + +You may not remove or alter the substance of any license notices +(including copyright notices, patent notices, disclaimers of warranty, +or limitations of liability) contained within the Source Code Form of +the Covered Software, except that You may alter any license notices to +the extent required to remedy known factual inaccuracies. + +3.5. Application of Additional Terms + +You may choose to offer, and to charge a fee for, warranty, support, +indemnity or liability obligations to one or more recipients of Covered +Software. However, You may do so only on Your own behalf, and not on +behalf of any Contributor. You must make it absolutely clear that any +such warranty, support, indemnity, or liability obligation is offered by +You alone, and You hereby agree to indemnify every Contributor for any +liability incurred by such Contributor as a result of warranty, support, +indemnity or liability terms You offer. You may include additional +disclaimers of warranty and limitations of liability specific to any +jurisdiction. + +4. Inability to Comply Due to Statute or Regulation +--------------------------------------------------- + +If it is impossible for You to comply with any of the terms of this +License with respect to some or all of the Covered Software due to +statute, judicial order, or regulation then You must: (a) comply with +the terms of this License to the maximum extent possible; and (b) +describe the limitations and the code they affect. Such description must +be placed in a text file included with all distributions of the Covered +Software under this License. Except to the extent prohibited by statute +or regulation, such description must be sufficiently detailed for a +recipient of ordinary skill to be able to understand it. + +5. Termination +-------------- + +5.1. The rights granted under this License will terminate automatically +if You fail to comply with any of its terms. However, if You become +compliant, then the rights granted under this License from a particular +Contributor are reinstated (a) provisionally, unless and until such +Contributor explicitly and finally terminates Your grants, and (b) on an +ongoing basis, if such Contributor fails to notify You of the +non-compliance by some reasonable means prior to 60 days after You have +come back into compliance. Moreover, Your grants from a particular +Contributor are reinstated on an ongoing basis if such Contributor +notifies You of the non-compliance by some reasonable means, this is the +first time You have received notice of non-compliance with this License +from such Contributor, and You become compliant prior to 30 days after +Your receipt of the notice. + +5.2. If You initiate litigation against any entity by asserting a patent +infringement claim (excluding declaratory judgment actions, +counter-claims, and cross-claims) alleging that a Contributor Version +directly or indirectly infringes any patent, then the rights granted to +You by any and all Contributors for the Covered Software under Section +2.1 of this License shall terminate. + +5.3. In the event of termination under Sections 5.1 or 5.2 above, all +end user license agreements (excluding distributors and resellers) which +have been validly granted by You or Your distributors under this License +prior to termination shall survive termination. + +************************************************************************ +* * +* 6. Disclaimer of Warranty * +* ------------------------- * +* * +* Covered Software is provided under this License on an "as is" * +* basis, without warranty of any kind, either expressed, implied, or * +* statutory, including, without limitation, warranties that the * +* Covered Software is free of defects, merchantable, fit for a * +* particular purpose or non-infringing. The entire risk as to the * +* quality and performance of the Covered Software is with You. * +* Should any Covered Software prove defective in any respect, You * +* (not any Contributor) assume the cost of any necessary servicing, * +* repair, or correction. This disclaimer of warranty constitutes an * +* essential part of this License. No use of any Covered Software is * +* authorized under this License except under this disclaimer. * +* * +************************************************************************ + +************************************************************************ +* * +* 7. Limitation of Liability * +* -------------------------- * +* * +* Under no circumstances and under no legal theory, whether tort * +* (including negligence), contract, or otherwise, shall any * +* Contributor, or anyone who distributes Covered Software as * +* permitted above, be liable to You for any direct, indirect, * +* special, incidental, or consequential damages of any character * +* including, without limitation, damages for lost profits, loss of * +* goodwill, work stoppage, computer failure or malfunction, or any * +* and all other commercial damages or losses, even if such party * +* shall have been informed of the possibility of such damages. This * +* limitation of liability shall not apply to liability for death or * +* personal injury resulting from such party's negligence to the * +* extent applicable law prohibits such limitation. Some * +* jurisdictions do not allow the exclusion or limitation of * +* incidental or consequential damages, so this exclusion and * +* limitation may not apply to You. * +* * +************************************************************************ + +8. Litigation +------------- + +Any litigation relating to this License may be brought only in the +courts of a jurisdiction where the defendant maintains its principal +place of business and such litigation shall be governed by laws of that +jurisdiction, without reference to its conflict-of-law provisions. +Nothing in this Section shall prevent a party's ability to bring +cross-claims or counter-claims. + +9. Miscellaneous +---------------- + +This License represents the complete agreement concerning the subject +matter hereof. If any provision of this License is held to be +unenforceable, such provision shall be reformed only to the extent +necessary to make it enforceable. Any law or regulation which provides +that the language of a contract shall be construed against the drafter +shall not be used to construe this License against a Contributor. + +10. Versions of the License +--------------------------- + +10.1. New Versions + +Mozilla Foundation is the license steward. Except as provided in Section +10.3, no one other than the license steward has the right to modify or +publish new versions of this License. Each version will be given a +distinguishing version number. + +10.2. Effect of New Versions + +You may distribute the Covered Software under the terms of the version +of the License under which You originally received the Covered Software, +or under the terms of any subsequent version published by the license +steward. + +10.3. Modified Versions + +If you create software not governed by this License, and you want to +create a new license for such software, you may create and use a +modified version of this License if you rename the license and remove +any references to the name of the license steward (except to note that +such modified license differs from this License). + +10.4. Distributing Source Code Form that is Incompatible With Secondary +Licenses + +If You choose to distribute Source Code Form that is Incompatible With +Secondary Licenses under the terms of this version of the License, the +notice described in Exhibit B of this License must be attached. + +Exhibit A - Source Code Form License Notice +------------------------------------------- + + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. + +If it is not possible or desirable to put the notice in a particular +file, then You may include the notice in a location (such as a LICENSE +file in a relevant directory) where a recipient would be likely to look +for such a notice. + +You may add additional accurate notices of copyright ownership. + +Exhibit B - "Incompatible With Secondary Licenses" Notice +--------------------------------------------------------- + + This Source Code Form is "Incompatible With Secondary Licenses", as + defined by the Mozilla Public License, v. 2.0. diff --git a/front-end/README.md b/front-end/README.md new file mode 100644 index 0000000..d538a99 --- /dev/null +++ b/front-end/README.md @@ -0,0 +1,165 @@ +# Admin Plus(Vue3 企业级开发模板) + +面向公司项目的前端模板与基础库:内置 `Vue 3 + Vue CLI 5 + TypeScript + Pinia + Vue Router + Element Plus`,并集成 Mock、代码生成(Plop)、多套布局组件与常用工具链,支持在此基础上快速裁剪与复用。 + +> 本仓库同时提供面向 AI 的结构说明与模块索引:见 [AI-Coding/README.md](AI-Coding/README.md)。 + +--- + +## 亮点 + +- **开箱即用**:工程化配置齐全(TS/ESLint/Prettier/Stylelint/Unit Test)。 +- **可扩展的 UI/布局体系**:`library/layouts/`、`library/components/` 内置多布局与业务型基础组件。 +- **Mock 一体化**:开发环境通过 `devServer.setupMiddlewares` 自动挂载 `mock/` 路由。 +- **现代依赖栈**:`Element Plus` + `@element-plus/icons-vue`,并内置图标组件 `vab-icons`。 +- **可生成代码**:通过 `plop` 快速生成页面/CRUD/组件/mock&api。 + +--- + +## 环境要求 + +- Node.js:建议 **16/18/20 LTS**(与 Vue CLI 5 兼容) +- 包管理器:推荐 `pnpm`(项目脚本也提供 `npm` 用法) + +--- + +## 快速开始 + +### 1)安装依赖 + +```powershell +cd d:\project\Web_Template_Vue3_Dev +pnpm i +``` + +如你使用 npm: + +```powershell +cd d:\project\Web_Template_Vue3_Dev +npm i +``` + +### 2)启动开发环境 + +```powershell +pnpm run serve +``` + +### 3)构建 + +```powershell +pnpm run build +``` + +### 4)单元测试 / 代码质量 + +```powershell +pnpm run test:unit +pnpm run lint +pnpm run lint:eslint +pnpm run lint:prettier +pnpm run lint:stylelint +``` + +--- + +## 常用脚本(scripts) + +来自 `package.json`: + +- **`serve`**:启动开发服务器(本地 Mock 会自动挂载)。 +- **`build`**:生产构建。 +- **`build:compress` / `compress`**:构建后压缩产物(`scripts/compress.js`)。 +- **`build:website`**:站点构建(使用 `VAB_VARIABLE=website` + 压缩)。 +- **`test:unit`**:单元测试。 +- **`lint`**:Vue CLI ESLint。 +- **`lint:eslint` / `lint:prettier` / `lint:stylelint`**:更精细的格式化与风格修复。 +- **`template`**:启动 `plop` 代码生成。 + +--- + +## 项目结构(速览) + +> 更完整、可供 AI 检索复用的索引见 [AI-Coding/README.md](AI-Coding/README.md)。 + +```text +src/ 应用主代码(入口、路由、状态、国际化、业务页面) +library/ 模板基础库(全局样式、插件集合、构建扩展等) +library/components/ 可复用基础组件(Vab* 体系) +library/layouts/ 多套布局(含主 Layout 入口) +mock/ 本地 Mock 服务(devServer 中间件挂载) +types/ 全局类型声明与业务类型 +tests/unit/ 单元测试 +scripts/ 构建后处理脚本(如压缩) +public/ 静态资源与 HTML 模板 +``` + +--- + +## 关键约定与入口 + +### 应用入口 + +- `src/main.ts` + - 创建应用并挂载:`createApp(App)` + - 初始化顺序:`setupVab` → `setupI18n` → `setupStore` → `setupRouter` + - 生产环境可自动启用 Mock:当 `baseURL` 不是外链地址时(见 `src/main.ts` 的判断) + +### 路由 + +- `src/router/index.ts` + - `constantRoutes`:如登录/注册/404 等基础路由 + - `asyncRoutes`:业务路由(包含 `Layout` 作为壳) + +### 状态管理 + +- `src/store/index.ts`:Pinia 初始化与注入。 + +### 国际化 + +- `src/i18n/index.ts` + - `createI18n({ legacy:false })` + - 当前语言读取自 `useSettingsStore(pinia)` + +### Mock + +- `mock/index.js` + - 挂载到开发服务器中间件(在 `vue.config.js` 的 `devServer.setupMiddlewares`) + - 基于 `mockjs` 返回数据,并支持文件变更热更新 + +--- + +## 别名(Alias) + +来自 `vue.config.js` / `tsconfig.json`: + +- `@` → `src` +- `~` → 项目根目录 +- `/#` → `types` +- `@vab` → `library` +- `@gp` → `library/plugins/vab` + +--- + +## 代码生成(Plop) + +项目提供 `plop` 生成器(见 `plopfile.js`): + +- `view`:页面 +- `curd`:CRUD +- `component`:组件 +- `mock&api`:Mock 与 API 片段 + +运行: + +```powershell +pnpm run template +``` + +--- + +## 贡献与团队协作建议 + +- 建议以“业务模块”为单位在 `src/views/` 组织页面。 +- API 按域拆分在 `src/api/`,与 `mock/controller/` 保持同名与路径一致,方便对照。 +- 公共能力优先沉淀在 `library/`(全局插件/样式/构建扩展)与 `library/components/`(可视组件)。 diff --git a/front-end/babel.config.js b/front-end/babel.config.js new file mode 100644 index 0000000..f47f7db --- /dev/null +++ b/front-end/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + presets: ['@vue/cli-plugin-babel/preset'], +} diff --git a/front-end/git.sh b/front-end/git.sh new file mode 100644 index 0000000..601d88f --- /dev/null +++ b/front-end/git.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash +set -e +git config --global http.proxy http://127.0.0.1:4780; +git config --global https.proxy https://127.0.0.1:4780; + +exec /bin/bash \ No newline at end of file diff --git a/front-end/jsconfig.json b/front-end/jsconfig.json new file mode 100644 index 0000000..c2c6000 --- /dev/null +++ b/front-end/jsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "ESNext", + "baseUrl": "./", + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "paths": { + "~/*": ["*"], + "@/*": ["src/*"], + "/#/*": ["types/*"], + "@vab/*": ["library/*"], + "@gp": ["library/plugins/vab"] + }, + "lib": ["esnext", "dom", "dom.iterable", "scripthost"] + }, + "exclude": ["node_modules", "dist"] +} diff --git a/front-end/library/build/chainWebpack/banner/config.ts b/front-end/library/build/chainWebpack/banner/config.ts new file mode 100644 index 0000000..0c5b4fa --- /dev/null +++ b/front-end/library/build/chainWebpack/banner/config.ts @@ -0,0 +1,6 @@ +module.exports = { + webpackBanner: + ' build: Vue Admin' + + ' Plus \n copyright: vue-admin-' + + 'beautiful.com \n time: ', +} diff --git a/front-end/library/build/chainWebpack/banner/index.ts b/front-end/library/build/chainWebpack/banner/index.ts new file mode 100644 index 0000000..30230d1 --- /dev/null +++ b/front-end/library/build/chainWebpack/banner/index.ts @@ -0,0 +1,12 @@ +const Webpack = require('webpack') +const { webpackBanner } = require('./config.ts') + +module.exports = { + createBanner: (config) => { + config + .plugin('banner') + .use(Webpack.BannerPlugin, [ + `${webpackBanner}${process.env.VUE_APP_UPDATE_TIME}`, + ]) + }, +} diff --git a/front-end/library/build/chainWebpack/build7z/index.ts b/front-end/library/build/chainWebpack/build7z/index.ts new file mode 100644 index 0000000..3d85d0f --- /dev/null +++ b/front-end/library/build/chainWebpack/build7z/index.ts @@ -0,0 +1,22 @@ +const dayjs = require('dayjs') +const { outputDir, abbreviation } = require('../../../../src/config') +const FileManagerPlugin = require('filemanager-webpack-plugin') + +module.exports = { + createBuild7z: (config) => { + config.plugin('fileManager').use(FileManagerPlugin, [ + { + events: { + onEnd: { + archive: [ + { + source: `./${outputDir}`, + destination: `./${outputDir}/${abbreviation}_${dayjs().unix()}.zip`, + }, + ], + }, + }, + }, + ]) + }, +} diff --git a/front-end/library/build/chainWebpack/gzip/index.ts b/front-end/library/build/chainWebpack/gzip/index.ts new file mode 100644 index 0000000..f8b8c27 --- /dev/null +++ b/front-end/library/build/chainWebpack/gzip/index.ts @@ -0,0 +1,16 @@ +const productionGzipExtensions = ['html', 'js', 'css', 'svg'] +const CompressionWebpackPlugin = require('compression-webpack-plugin') + +module.exports = { + createGzip: (config) => { + config.plugin('compression').use(CompressionWebpackPlugin, [ + { + filename: '[path][base].gz[query]', + algorithm: 'gzip', + test: new RegExp(`\\.(${productionGzipExtensions.join('|')})$`), + threshold: 8192, + minRatio: 0.8, + }, + ]) + }, +} diff --git a/front-end/library/build/chainWebpack/imageCompression/index.ts b/front-end/library/build/chainWebpack/imageCompression/index.ts new file mode 100644 index 0000000..9f818b5 --- /dev/null +++ b/front-end/library/build/chainWebpack/imageCompression/index.ts @@ -0,0 +1,12 @@ +module.exports = { + createImageCompression: (config) => { + config.module + .rule('images') + .use('image-webpack-loader') + .loader('image-webpack-loader') + .options({ + bypassOnDebug: true, + }) + .end() + }, +} diff --git a/front-end/library/build/chainWebpack/index.ts b/front-end/library/build/chainWebpack/index.ts new file mode 100644 index 0000000..e928719 --- /dev/null +++ b/front-end/library/build/chainWebpack/index.ts @@ -0,0 +1,43 @@ +const { createGzip } = require('./gzip/index.ts') +const { createBanner } = require('./banner/index.ts') +const { createBuild7z } = require('./build7z/index.ts') +const { createSvgSprite } = require('./svgSprite/index.ts') +const { createOptimization } = require('./optimization/index.ts') +const { createSourceInjector } = require('./sourceInjector/index.ts') +const { createImageCompression } = require('./imageCompression/index.ts') +const { build7z, buildGzip, imageCompression } = require('../../../src/config') +const path = require('path') + +module.exports = { + createChainWebpack: (env, config) => { + config.resolve.symlinks(true) + createBanner(config) + createSvgSprite(config) + if (env === 'production') { + if (build7z) createBuild7z(config) + if (buildGzip) createGzip(config) + if (imageCompression && process.env.VAB_VARIABLE !== 'website') + createImageCompression(config) + createOptimization(config) + } + if (env === 'development') config.devtool('cheap-module-source-map') + createSourceInjector(config) + + // 添加一些构建优化 + // 避免处理node_modules中已经编译过的文件 + config.module + .rule('js') + .include.add(path.resolve('src')) + .add(path.resolve('library')) + .end() + .exclude.add(/node_modules/) + .end() + + // 优化构建性能 + config.plugin('fork-ts-checker').tap((options) => { + options[0].formatter = 'codeframe' + options[0].async = false + return options + }) + }, +} diff --git a/front-end/library/build/chainWebpack/optimization/index.ts b/front-end/library/build/chainWebpack/optimization/index.ts new file mode 100644 index 0000000..aea1950 --- /dev/null +++ b/front-end/library/build/chainWebpack/optimization/index.ts @@ -0,0 +1,74 @@ +const rely = require('call-' + 'rely') +const { resolve } = require('path') + +module.exports = { + createOptimization: (config) => { + process.env['VUE_AP' + 'P_RELY'] = rely + config.performance.set('hints', false) + config.optimization.splitChunks({ + automaticNameDelimiter: '-', + chunks: 'all', + cacheGroups: { + // 默认缓存组 + default: { + minChunks: 2, + priority: -20, + reuseExistingChunk: true, + }, + // 公共chunk + common: { + name: 'vab-common', + minChunks: 2, + priority: -10, + chunks: 'initial', + maxInitialRequests: 5, + minSize: 0, + }, + chunk: { + name: 'vab-chunk', + test: /[\\/]node_modules[\\/]/, + minSize: 131072, + maxSize: 524288, + chunks: 'initial', + minChunks: 2, + priority: 10, + }, + vue: { + name: 'vue', + test: /[\\/]node_modules[\\/](vue(.*)|core-js)[\\/]/, + chunks: 'initial', + priority: 20, + }, + elementPlus: { + name: 'element-plus', + test: /[\\/]node_modules[\\/]_?element-plus(.*)/, + priority: 30, + chunks: 'all', + }, + extra: { + name: 'vab-plugins', + test: resolve('src/plugins'), + priority: 40, + }, + components: { + name: 'vab-components', + test: resolve('library/components'), + priority: 50, + }, + xlsx: { + name: 'xlsx', + test: /[\\/]node_modules[\\/]_?xlsx(.*)/, + priority: 60, + }, + echarts: { + name: 'echarts', + test: /[\\/]node_modules[\\/](echarts|zrender)[\\/]/, + priority: 65, + chunks: 'all', + }, + }, + }) + // 配置runtimeChunk + config.optimization.runtimeChunk('single') + }, +} diff --git a/front-end/library/build/chainWebpack/sourceInjector/index.ts b/front-end/library/build/chainWebpack/sourceInjector/index.ts new file mode 100644 index 0000000..a680994 --- /dev/null +++ b/front-end/library/build/chainWebpack/sourceInjector/index.ts @@ -0,0 +1,11 @@ +const injector = require.resolve('./injector.ts') + +module.exports = { + createSourceInjector: (config) => { + config.module + .rule('vue') + .use('vue-filename-injector') + .loader(injector) + .after('vue-loader') + }, +} diff --git a/front-end/library/build/chainWebpack/sourceInjector/injector.ts b/front-end/library/build/chainWebpack/sourceInjector/injector.ts new file mode 100644 index 0000000..ca817f6 --- /dev/null +++ b/front-end/library/build/chainWebpack/sourceInjector/injector.ts @@ -0,0 +1,14 @@ +const { relative } = require('path') + +const blockName = 'vue-filename-injector' +module.exports = function (content) { + const { rootContext, resourcePath } = this + const context = rootContext || process.cwd() + const filePath = relative(context, resourcePath).replace(/\\/g, '/') + content += `<${blockName}> + export default function (Component) { + Component.__source = ${JSON.stringify(filePath)} + } + ` + return content +} diff --git a/front-end/library/build/chainWebpack/svgSprite/index.ts b/front-end/library/build/chainWebpack/svgSprite/index.ts new file mode 100644 index 0000000..e4e4fec --- /dev/null +++ b/front-end/library/build/chainWebpack/svgSprite/index.ts @@ -0,0 +1,15 @@ +const { resolve } = require('path') + +module.exports = { + createSvgSprite: (config) => { + config.module.rule('svg').exclude.add(resolve('src/icon')) + config.module + .rule('vabIcon') + .test(/\.svg$/) + .include.add(resolve('src/icon')) + .end() + .use('svg-sprite-loader') + .loader('svg-sprite-loader') + .options({ symbolId: 'vab-icon-[name]' }) + }, +} diff --git a/front-end/library/build/index.ts b/front-end/library/build/index.ts new file mode 100644 index 0000000..46b6960 --- /dev/null +++ b/front-end/library/build/index.ts @@ -0,0 +1,7 @@ +const { createVuePlugin } = require('./vuePlugins/index.ts') +const { createChainWebpack } = require('./chainWebpack/index.ts') + +module.exports = { + createVuePlugin, + createChainWebpack, +} diff --git a/front-end/library/build/vuePlugins/auto-imports.d.ts b/front-end/library/build/vuePlugins/auto-imports.d.ts new file mode 100644 index 0000000..6b8ace5 --- /dev/null +++ b/front-end/library/build/vuePlugins/auto-imports.d.ts @@ -0,0 +1,322 @@ +/* eslint-disable */ +/* prettier-ignore */ +// @ts-nocheck +// noinspection JSUnusedGlobalSymbols +// Generated by unplugin-auto-import +export {} +declare global { + const EffectScope: typeof import('vue')['EffectScope'] + const ElLoading: typeof import('element-plus/es')['ElLoading'] + const ElMessage: typeof import('element-plus/es')['ElMessage'] + const ElMessageBox: typeof import('element-plus/es')['ElMessageBox'] + const ElNotification: typeof import('element-plus/es')['ElNotification'] + const acceptHMRUpdate: typeof import('pinia')['acceptHMRUpdate'] + const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] + const autoResetRef: typeof import('@vueuse/core')['autoResetRef'] + const axios: typeof import('axios')['default'] + const computed: typeof import('vue')['computed'] + const computedAsync: typeof import('@vueuse/core')['computedAsync'] + const computedEager: typeof import('@vueuse/core')['computedEager'] + const computedInject: typeof import('@vueuse/core')['computedInject'] + const computedWithControl: typeof import('@vueuse/core')['computedWithControl'] + const controlledComputed: typeof import('@vueuse/core')['controlledComputed'] + const controlledRef: typeof import('@vueuse/core')['controlledRef'] + const createApp: typeof import('vue')['createApp'] + const createEventHook: typeof import('@vueuse/core')['createEventHook'] + const createGlobalState: typeof import('@vueuse/core')['createGlobalState'] + const createInjectionState: typeof import('@vueuse/core')['createInjectionState'] + const createPinia: typeof import('pinia')['createPinia'] + const createReactiveFn: typeof import('@vueuse/core')['createReactiveFn'] + const createRef: typeof import('@vueuse/core')['createRef'] + const createReusableTemplate: typeof import('@vueuse/core')['createReusableTemplate'] + const createSharedComposable: typeof import('@vueuse/core')['createSharedComposable'] + const createTemplatePromise: typeof import('@vueuse/core')['createTemplatePromise'] + const createUnrefFn: typeof import('@vueuse/core')['createUnrefFn'] + const customRef: typeof import('vue')['customRef'] + const debouncedRef: typeof import('@vueuse/core')['debouncedRef'] + const debouncedWatch: typeof import('@vueuse/core')['debouncedWatch'] + const defineAsyncComponent: typeof import('vue')['defineAsyncComponent'] + const defineComponent: typeof import('vue')['defineComponent'] + const defineStore: typeof import('pinia')['defineStore'] + const eagerComputed: typeof import('@vueuse/core')['eagerComputed'] + const effectScope: typeof import('vue')['effectScope'] + const extendRef: typeof import('@vueuse/core')['extendRef'] + const getActivePinia: typeof import('pinia')['getActivePinia'] + const getCurrentInstance: typeof import('vue')['getCurrentInstance'] + const getCurrentScope: typeof import('vue')['getCurrentScope'] + const h: typeof import('vue')['h'] + const ignorableWatch: typeof import('@vueuse/core')['ignorableWatch'] + const inject: typeof import('vue')['inject'] + const injectLocal: typeof import('@vueuse/core')['injectLocal'] + const isDefined: typeof import('@vueuse/core')['isDefined'] + const isProxy: typeof import('vue')['isProxy'] + const isReactive: typeof import('vue')['isReactive'] + const isReadonly: typeof import('vue')['isReadonly'] + const isRef: typeof import('vue')['isRef'] + const makeDestructurable: typeof import('@vueuse/core')['makeDestructurable'] + const manualResetRef: typeof import('@vueuse/core')['manualResetRef'] + const mapActions: typeof import('pinia')['mapActions'] + const mapGetters: typeof import('pinia')['mapGetters'] + const mapState: typeof import('pinia')['mapState'] + const mapStores: typeof import('pinia')['mapStores'] + const mapWritableState: typeof import('pinia')['mapWritableState'] + const markRaw: typeof import('vue')['markRaw'] + const nextTick: typeof import('vue')['nextTick'] + const onActivated: typeof import('vue')['onActivated'] + const onBeforeMount: typeof import('vue')['onBeforeMount'] + const onBeforeRouteLeave: typeof import('vue-router')['onBeforeRouteLeave'] + const onBeforeRouteUpdate: typeof import('vue-router')['onBeforeRouteUpdate'] + const onBeforeUnmount: typeof import('vue')['onBeforeUnmount'] + const onBeforeUpdate: typeof import('vue')['onBeforeUpdate'] + const onClickOutside: typeof import('@vueuse/core')['onClickOutside'] + const onDeactivated: typeof import('vue')['onDeactivated'] + const onElementRemoval: typeof import('@vueuse/core')['onElementRemoval'] + const onErrorCaptured: typeof import('vue')['onErrorCaptured'] + const onKeyStroke: typeof import('@vueuse/core')['onKeyStroke'] + const onLongPress: typeof import('@vueuse/core')['onLongPress'] + const onMounted: typeof import('vue')['onMounted'] + const onRenderTracked: typeof import('vue')['onRenderTracked'] + const onRenderTriggered: typeof import('vue')['onRenderTriggered'] + const onScopeDispose: typeof import('vue')['onScopeDispose'] + const onServerPrefetch: typeof import('vue')['onServerPrefetch'] + const onStartTyping: typeof import('@vueuse/core')['onStartTyping'] + const onUnmounted: typeof import('vue')['onUnmounted'] + const onUpdated: typeof import('vue')['onUpdated'] + const onWatcherCleanup: typeof import('vue')['onWatcherCleanup'] + const pausableWatch: typeof import('@vueuse/core')['pausableWatch'] + const provide: typeof import('vue')['provide'] + const provideLocal: typeof import('@vueuse/core')['provideLocal'] + const reactify: typeof import('@vueuse/core')['reactify'] + const reactifyObject: typeof import('@vueuse/core')['reactifyObject'] + const reactive: typeof import('vue')['reactive'] + const reactiveComputed: typeof import('@vueuse/core')['reactiveComputed'] + const reactiveOmit: typeof import('@vueuse/core')['reactiveOmit'] + const reactivePick: typeof import('@vueuse/core')['reactivePick'] + const readonly: typeof import('vue')['readonly'] + const ref: typeof import('vue')['ref'] + const refAutoReset: typeof import('@vueuse/core')['refAutoReset'] + const refDebounced: typeof import('@vueuse/core')['refDebounced'] + const refDefault: typeof import('@vueuse/core')['refDefault'] + const refManualReset: typeof import('@vueuse/core')['refManualReset'] + const refThrottled: typeof import('@vueuse/core')['refThrottled'] + const refWithControl: typeof import('@vueuse/core')['refWithControl'] + const resolveComponent: typeof import('vue')['resolveComponent'] + const resolveRef: typeof import('@vueuse/core')['resolveRef'] + const resolveUnref: typeof import('@vueuse/core')['resolveUnref'] + const setActivePinia: typeof import('pinia')['setActivePinia'] + const setMapStoreSuffix: typeof import('pinia')['setMapStoreSuffix'] + const shallowReactive: typeof import('vue')['shallowReactive'] + const shallowReadonly: typeof import('vue')['shallowReadonly'] + const shallowRef: typeof import('vue')['shallowRef'] + const storeToRefs: typeof import('pinia')['storeToRefs'] + const syncRef: typeof import('@vueuse/core')['syncRef'] + const syncRefs: typeof import('@vueuse/core')['syncRefs'] + const templateRef: typeof import('@vueuse/core')['templateRef'] + const throttledRef: typeof import('@vueuse/core')['throttledRef'] + const throttledWatch: typeof import('@vueuse/core')['throttledWatch'] + const toRaw: typeof import('vue')['toRaw'] + const toReactive: typeof import('@vueuse/core')['toReactive'] + const toRef: typeof import('vue')['toRef'] + const toRefs: typeof import('vue')['toRefs'] + const toValue: typeof import('vue')['toValue'] + const triggerRef: typeof import('vue')['triggerRef'] + const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount'] + const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount'] + const tryOnMounted: typeof import('@vueuse/core')['tryOnMounted'] + const tryOnScopeDispose: typeof import('@vueuse/core')['tryOnScopeDispose'] + const tryOnUnmounted: typeof import('@vueuse/core')['tryOnUnmounted'] + const unref: typeof import('vue')['unref'] + const unrefElement: typeof import('@vueuse/core')['unrefElement'] + const until: typeof import('@vueuse/core')['until'] + const useActiveElement: typeof import('@vueuse/core')['useActiveElement'] + const useAnimate: typeof import('@vueuse/core')['useAnimate'] + const useArrayDifference: typeof import('@vueuse/core')['useArrayDifference'] + const useArrayEvery: typeof import('@vueuse/core')['useArrayEvery'] + const useArrayFilter: typeof import('@vueuse/core')['useArrayFilter'] + const useArrayFind: typeof import('@vueuse/core')['useArrayFind'] + const useArrayFindIndex: typeof import('@vueuse/core')['useArrayFindIndex'] + const useArrayFindLast: typeof import('@vueuse/core')['useArrayFindLast'] + const useArrayIncludes: typeof import('@vueuse/core')['useArrayIncludes'] + const useArrayJoin: typeof import('@vueuse/core')['useArrayJoin'] + const useArrayMap: typeof import('@vueuse/core')['useArrayMap'] + const useArrayReduce: typeof import('@vueuse/core')['useArrayReduce'] + const useArraySome: typeof import('@vueuse/core')['useArraySome'] + const useArrayUnique: typeof import('@vueuse/core')['useArrayUnique'] + const useAsyncQueue: typeof import('@vueuse/core')['useAsyncQueue'] + const useAsyncState: typeof import('@vueuse/core')['useAsyncState'] + const useAttrs: typeof import('vue')['useAttrs'] + const useBase64: typeof import('@vueuse/core')['useBase64'] + const useBattery: typeof import('@vueuse/core')['useBattery'] + const useBluetooth: typeof import('@vueuse/core')['useBluetooth'] + const useBreakpoints: typeof import('@vueuse/core')['useBreakpoints'] + const useBroadcastChannel: typeof import('@vueuse/core')['useBroadcastChannel'] + const useBrowserLocation: typeof import('@vueuse/core')['useBrowserLocation'] + const useCached: typeof import('@vueuse/core')['useCached'] + const useClipboard: typeof import('@vueuse/core')['useClipboard'] + const useClipboardItems: typeof import('@vueuse/core')['useClipboardItems'] + const useCloned: typeof import('@vueuse/core')['useCloned'] + const useColorMode: typeof import('@vueuse/core')['useColorMode'] + const useConfirmDialog: typeof import('@vueuse/core')['useConfirmDialog'] + const useCountdown: typeof import('@vueuse/core')['useCountdown'] + const useCounter: typeof import('@vueuse/core')['useCounter'] + const useCssModule: typeof import('vue')['useCssModule'] + const useCssVar: typeof import('@vueuse/core')['useCssVar'] + const useCssVars: typeof import('vue')['useCssVars'] + const useCurrentElement: typeof import('@vueuse/core')['useCurrentElement'] + const useCycleList: typeof import('@vueuse/core')['useCycleList'] + const useDark: typeof import('@vueuse/core')['useDark'] + const useDateFormat: typeof import('@vueuse/core')['useDateFormat'] + const useDebounce: typeof import('@vueuse/core')['useDebounce'] + const useDebounceFn: typeof import('@vueuse/core')['useDebounceFn'] + const useDebouncedRefHistory: typeof import('@vueuse/core')['useDebouncedRefHistory'] + const useDeviceMotion: typeof import('@vueuse/core')['useDeviceMotion'] + const useDeviceOrientation: typeof import('@vueuse/core')['useDeviceOrientation'] + const useDevicePixelRatio: typeof import('@vueuse/core')['useDevicePixelRatio'] + const useDevicesList: typeof import('@vueuse/core')['useDevicesList'] + const useDisplayMedia: typeof import('@vueuse/core')['useDisplayMedia'] + const useDocumentVisibility: typeof import('@vueuse/core')['useDocumentVisibility'] + const useDraggable: typeof import('@vueuse/core')['useDraggable'] + const useDropZone: typeof import('@vueuse/core')['useDropZone'] + const useElementBounding: typeof import('@vueuse/core')['useElementBounding'] + const useElementByPoint: typeof import('@vueuse/core')['useElementByPoint'] + const useElementHover: typeof import('@vueuse/core')['useElementHover'] + const useElementSize: typeof import('@vueuse/core')['useElementSize'] + const useElementVisibility: typeof import('@vueuse/core')['useElementVisibility'] + const useEventBus: typeof import('@vueuse/core')['useEventBus'] + const useEventListener: typeof import('@vueuse/core')['useEventListener'] + const useEventSource: typeof import('@vueuse/core')['useEventSource'] + const useEyeDropper: typeof import('@vueuse/core')['useEyeDropper'] + const useFavicon: typeof import('@vueuse/core')['useFavicon'] + const useFetch: typeof import('@vueuse/core')['useFetch'] + const useFileDialog: typeof import('@vueuse/core')['useFileDialog'] + const useFileSystemAccess: typeof import('@vueuse/core')['useFileSystemAccess'] + const useFocus: typeof import('@vueuse/core')['useFocus'] + const useFocusWithin: typeof import('@vueuse/core')['useFocusWithin'] + const useFps: typeof import('@vueuse/core')['useFps'] + const useFullscreen: typeof import('@vueuse/core')['useFullscreen'] + const useGamepad: typeof import('@vueuse/core')['useGamepad'] + const useGeolocation: typeof import('@vueuse/core')['useGeolocation'] + const useI18n: typeof import('vue-i18n')['useI18n'] + const useId: typeof import('vue')['useId'] + const useIdle: typeof import('@vueuse/core')['useIdle'] + const useImage: typeof import('@vueuse/core')['useImage'] + const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll'] + const useIntersectionObserver: typeof import('@vueuse/core')['useIntersectionObserver'] + const useInterval: typeof import('@vueuse/core')['useInterval'] + const useIntervalFn: typeof import('@vueuse/core')['useIntervalFn'] + const useKeyModifier: typeof import('@vueuse/core')['useKeyModifier'] + const useLastChanged: typeof import('@vueuse/core')['useLastChanged'] + const useLink: typeof import('vue-router')['useLink'] + const useLocalStorage: typeof import('@vueuse/core')['useLocalStorage'] + const useMagicKeys: typeof import('@vueuse/core')['useMagicKeys'] + const useManualRefHistory: typeof import('@vueuse/core')['useManualRefHistory'] + const useMediaControls: typeof import('@vueuse/core')['useMediaControls'] + const useMediaQuery: typeof import('@vueuse/core')['useMediaQuery'] + const useMemoize: typeof import('@vueuse/core')['useMemoize'] + const useMemory: typeof import('@vueuse/core')['useMemory'] + const useModel: typeof import('vue')['useModel'] + const useMounted: typeof import('@vueuse/core')['useMounted'] + const useMouse: typeof import('@vueuse/core')['useMouse'] + const useMouseInElement: typeof import('@vueuse/core')['useMouseInElement'] + const useMousePressed: typeof import('@vueuse/core')['useMousePressed'] + const useMutationObserver: typeof import('@vueuse/core')['useMutationObserver'] + const useNavigatorLanguage: typeof import('@vueuse/core')['useNavigatorLanguage'] + const useNetwork: typeof import('@vueuse/core')['useNetwork'] + const useNow: typeof import('@vueuse/core')['useNow'] + const useObjectUrl: typeof import('@vueuse/core')['useObjectUrl'] + const useOffsetPagination: typeof import('@vueuse/core')['useOffsetPagination'] + const useOnline: typeof import('@vueuse/core')['useOnline'] + const usePageLeave: typeof import('@vueuse/core')['usePageLeave'] + const useParallax: typeof import('@vueuse/core')['useParallax'] + const useParentElement: typeof import('@vueuse/core')['useParentElement'] + const usePerformanceObserver: typeof import('@vueuse/core')['usePerformanceObserver'] + const usePermission: typeof import('@vueuse/core')['usePermission'] + const usePointer: typeof import('@vueuse/core')['usePointer'] + const usePointerLock: typeof import('@vueuse/core')['usePointerLock'] + const usePointerSwipe: typeof import('@vueuse/core')['usePointerSwipe'] + const usePreferredColorScheme: typeof import('@vueuse/core')['usePreferredColorScheme'] + const usePreferredContrast: typeof import('@vueuse/core')['usePreferredContrast'] + const usePreferredDark: typeof import('@vueuse/core')['usePreferredDark'] + const usePreferredLanguages: typeof import('@vueuse/core')['usePreferredLanguages'] + const usePreferredReducedMotion: typeof import('@vueuse/core')['usePreferredReducedMotion'] + const usePreferredReducedTransparency: typeof import('@vueuse/core')['usePreferredReducedTransparency'] + const usePrevious: typeof import('@vueuse/core')['usePrevious'] + const useRafFn: typeof import('@vueuse/core')['useRafFn'] + const useRefHistory: typeof import('@vueuse/core')['useRefHistory'] + const useResizeObserver: typeof import('@vueuse/core')['useResizeObserver'] + const useRoute: typeof import('vue-router')['useRoute'] + const useRouter: typeof import('vue-router')['useRouter'] + const useSSRWidth: typeof import('@vueuse/core')['useSSRWidth'] + const useScreenOrientation: typeof import('@vueuse/core')['useScreenOrientation'] + const useScreenSafeArea: typeof import('@vueuse/core')['useScreenSafeArea'] + const useScriptTag: typeof import('@vueuse/core')['useScriptTag'] + const useScroll: typeof import('@vueuse/core')['useScroll'] + const useScrollLock: typeof import('@vueuse/core')['useScrollLock'] + const useSessionStorage: typeof import('@vueuse/core')['useSessionStorage'] + const useShare: typeof import('@vueuse/core')['useShare'] + const useSlots: typeof import('vue')['useSlots'] + const useSorted: typeof import('@vueuse/core')['useSorted'] + const useSpeechRecognition: typeof import('@vueuse/core')['useSpeechRecognition'] + const useSpeechSynthesis: typeof import('@vueuse/core')['useSpeechSynthesis'] + const useStepper: typeof import('@vueuse/core')['useStepper'] + const useStorage: typeof import('@vueuse/core')['useStorage'] + const useStorageAsync: typeof import('@vueuse/core')['useStorageAsync'] + const useStyleTag: typeof import('@vueuse/core')['useStyleTag'] + const useSupported: typeof import('@vueuse/core')['useSupported'] + const useSwipe: typeof import('@vueuse/core')['useSwipe'] + const useTemplateRef: typeof import('vue')['useTemplateRef'] + const useTemplateRefsList: typeof import('@vueuse/core')['useTemplateRefsList'] + const useTextDirection: typeof import('@vueuse/core')['useTextDirection'] + const useTextSelection: typeof import('@vueuse/core')['useTextSelection'] + const useTextareaAutosize: typeof import('@vueuse/core')['useTextareaAutosize'] + const useThrottle: typeof import('@vueuse/core')['useThrottle'] + const useThrottleFn: typeof import('@vueuse/core')['useThrottleFn'] + const useThrottledRefHistory: typeof import('@vueuse/core')['useThrottledRefHistory'] + const useTimeAgo: typeof import('@vueuse/core')['useTimeAgo'] + const useTimeAgoIntl: typeof import('@vueuse/core')['useTimeAgoIntl'] + const useTimeout: typeof import('@vueuse/core')['useTimeout'] + const useTimeoutFn: typeof import('@vueuse/core')['useTimeoutFn'] + const useTimeoutPoll: typeof import('@vueuse/core')['useTimeoutPoll'] + const useTimestamp: typeof import('@vueuse/core')['useTimestamp'] + const useTitle: typeof import('@vueuse/core')['useTitle'] + const useToNumber: typeof import('@vueuse/core')['useToNumber'] + const useToString: typeof import('@vueuse/core')['useToString'] + const useToggle: typeof import('@vueuse/core')['useToggle'] + const useTransition: typeof import('@vueuse/core')['useTransition'] + const useUrlSearchParams: typeof import('@vueuse/core')['useUrlSearchParams'] + const useUserMedia: typeof import('@vueuse/core')['useUserMedia'] + const useVModel: typeof import('@vueuse/core')['useVModel'] + const useVModels: typeof import('@vueuse/core')['useVModels'] + const useVibrate: typeof import('@vueuse/core')['useVibrate'] + const useVirtualList: typeof import('@vueuse/core')['useVirtualList'] + const useWakeLock: typeof import('@vueuse/core')['useWakeLock'] + const useWebNotification: typeof import('@vueuse/core')['useWebNotification'] + const useWebSocket: typeof import('@vueuse/core')['useWebSocket'] + const useWebWorker: typeof import('@vueuse/core')['useWebWorker'] + const useWebWorkerFn: typeof import('@vueuse/core')['useWebWorkerFn'] + const useWindowFocus: typeof import('@vueuse/core')['useWindowFocus'] + const useWindowScroll: typeof import('@vueuse/core')['useWindowScroll'] + const useWindowSize: typeof import('@vueuse/core')['useWindowSize'] + const watch: typeof import('vue')['watch'] + const watchArray: typeof import('@vueuse/core')['watchArray'] + const watchAtMost: typeof import('@vueuse/core')['watchAtMost'] + const watchDebounced: typeof import('@vueuse/core')['watchDebounced'] + const watchDeep: typeof import('@vueuse/core')['watchDeep'] + const watchEffect: typeof import('vue')['watchEffect'] + const watchIgnorable: typeof import('@vueuse/core')['watchIgnorable'] + const watchImmediate: typeof import('@vueuse/core')['watchImmediate'] + const watchOnce: typeof import('@vueuse/core')['watchOnce'] + const watchPausable: typeof import('@vueuse/core')['watchPausable'] + const watchPostEffect: typeof import('vue')['watchPostEffect'] + const watchSyncEffect: typeof import('vue')['watchSyncEffect'] + const watchThrottled: typeof import('@vueuse/core')['watchThrottled'] + const watchTriggerable: typeof import('@vueuse/core')['watchTriggerable'] + const watchWithFilter: typeof import('@vueuse/core')['watchWithFilter'] + const whenever: typeof import('@vueuse/core')['whenever'] +} +// for type re-export +declare global { + // @ts-ignore + export type { Component, ComponentPublicInstance, ComputedRef, DirectiveBinding, ExtractDefaultPropTypes, ExtractPropTypes, ExtractPublicPropTypes, InjectionKey, PropType, Ref, MaybeRef, MaybeRefOrGetter, VNode, WritableComputedRef } from 'vue' + import('vue') +} diff --git a/front-end/library/build/vuePlugins/components.d.ts b/front-end/library/build/vuePlugins/components.d.ts new file mode 100644 index 0000000..ee6da4e --- /dev/null +++ b/front-end/library/build/vuePlugins/components.d.ts @@ -0,0 +1,123 @@ +/* eslint-disable */ +/* prettier-ignore */ +// @ts-nocheck +// Generated by unplugin-vue-components +// Read more: https://github.com/vuejs/core/pull/3399 +export {} + +declare module 'vue' { + export interface GlobalComponents { + ElAlert: typeof import('element-plus/es')['ElAlert'] + ElAvatar: typeof import('element-plus/es')['ElAvatar'] + ElBacktop: typeof import('element-plus/es')['ElBacktop'] + ElBadge: typeof import('element-plus/es')['ElBadge'] + ElBreadcrumb: typeof import('element-plus/es')['ElBreadcrumb'] + ElBreadcrumbItem: typeof import('element-plus/es')['ElBreadcrumbItem'] + ElButton: typeof import('element-plus/es')['ElButton'] + ElButtonGroup: typeof import('element-plus/es')['ElButtonGroup'] + ElCalendar: typeof import('element-plus/es')['ElCalendar'] + ElCard: typeof import('element-plus/es')['ElCard'] + ElCarousel: typeof import('element-plus/es')['ElCarousel'] + ElCarouselItem: typeof import('element-plus/es')['ElCarouselItem'] + ElCascader: typeof import('element-plus/es')['ElCascader'] + ElCheckbox: typeof import('element-plus/es')['ElCheckbox'] + ElCheckboxButton: typeof import('element-plus/es')['ElCheckboxButton'] + ElCheckboxGroup: typeof import('element-plus/es')['ElCheckboxGroup'] + ElCol: typeof import('element-plus/es')['ElCol'] + ElCollapse: typeof import('element-plus/es')['ElCollapse'] + ElCollapseItem: typeof import('element-plus/es')['ElCollapseItem'] + ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider'] + ElDatePicker: typeof import('element-plus/es')['ElDatePicker'] + ElDescriptions: typeof import('element-plus/es')['ElDescriptions'] + ElDescriptionsItem: typeof import('element-plus/es')['ElDescriptionsItem'] + ElDialog: typeof import('element-plus/es')['ElDialog'] + ElDivider: typeof import('element-plus/es')['ElDivider'] + ElDrawer: typeof import('element-plus/es')['ElDrawer'] + ElDropdown: typeof import('element-plus/es')['ElDropdown'] + ElDropdownItem: typeof import('element-plus/es')['ElDropdownItem'] + ElDropdownMenu: typeof import('element-plus/es')['ElDropdownMenu'] + ElEmpty: typeof import('element-plus/es')['ElEmpty'] + ElForm: typeof import('element-plus/es')['ElForm'] + ElFormItem: typeof import('element-plus/es')['ElFormItem'] + ElIcon: typeof import('element-plus/es')['ElIcon'] + ElImage: typeof import('element-plus/es')['ElImage'] + ElInput: typeof import('element-plus/es')['ElInput'] + ElInputNumber: typeof import('element-plus/es')['ElInputNumber'] + ElLink: typeof import('element-plus/es')['ElLink'] + ElMenu: typeof import('element-plus/es')['ElMenu'] + ElMenuItem: typeof import('element-plus/es')['ElMenuItem'] + ElOption: typeof import('element-plus/es')['ElOption'] + ElPageHeader: typeof import('element-plus/es')['ElPageHeader'] + ElPagination: typeof import('element-plus/es')['ElPagination'] + ElPopconfirm: typeof import('element-plus/es')['ElPopconfirm'] + ElPopover: typeof import('element-plus/es')['ElPopover'] + ElProgress: typeof import('element-plus/es')['ElProgress'] + ElRadio: typeof import('element-plus/es')['ElRadio'] + ElRadioButton: typeof import('element-plus/es')['ElRadioButton'] + ElRadioGroup: typeof import('element-plus/es')['ElRadioGroup'] + ElRate: typeof import('element-plus/es')['ElRate'] + ElResult: typeof import('element-plus/es')['ElResult'] + ElRow: typeof import('element-plus/es')['ElRow'] + ElScrollbar: typeof import('element-plus/es')['ElScrollbar'] + ElSelect: typeof import('element-plus/es')['ElSelect'] + ElSkeleton: typeof import('element-plus/es')['ElSkeleton'] + ElSlider: typeof import('element-plus/es')['ElSlider'] + ElStep: typeof import('element-plus/es')['ElStep'] + ElSteps: typeof import('element-plus/es')['ElSteps'] + ElSubMenu: typeof import('element-plus/es')['ElSubMenu'] + ElSwitch: typeof import('element-plus/es')['ElSwitch'] + ElTable: typeof import('element-plus/es')['ElTable'] + ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] + ElTabPane: typeof import('element-plus/es')['ElTabPane'] + ElTabs: typeof import('element-plus/es')['ElTabs'] + ElTag: typeof import('element-plus/es')['ElTag'] + ElTimeline: typeof import('element-plus/es')['ElTimeline'] + ElTimelineItem: typeof import('element-plus/es')['ElTimelineItem'] + ElTimePicker: typeof import('element-plus/es')['ElTimePicker'] + ElTimeSelect: typeof import('element-plus/es')['ElTimeSelect'] + ElTooltip: typeof import('element-plus/es')['ElTooltip'] + ElTransfer: typeof import('element-plus/es')['ElTransfer'] + ElTree: typeof import('element-plus/es')['ElTree'] + ElTreeSelect: typeof import('element-plus/es')['ElTreeSelect'] + ElUpload: typeof import('element-plus/es')['ElUpload'] + RouterLink: typeof import('vue-router')['RouterLink'] + RouterView: typeof import('vue-router')['RouterView'] + VabApp: typeof import('./../../components/VabApp/index.vue')['default'] + VabAppMain: typeof import('./../../components/VabAppMain/index.vue')['default'] + VabAvatar: typeof import('./../../components/VabAvatar/index.vue')['default'] + VabBreadcrumb: typeof import('./../../components/VabBreadcrumb/index.vue')['default'] + VabCard: typeof import('./../../components/VabCard/index.vue')['default'] + VabColorfulCard: typeof import('./../../components/VabColorfulCard/index.vue')['default'] + VabColumnBar: typeof import('./../../components/VabColumnBar/index.vue')['default'] + VabErrorLog: typeof import('./../../components/VabErrorLog/index.vue')['default'] + VabFold: typeof import('./../../components/VabFold/index.vue')['default'] + VabFooter: typeof import('./../../components/VabFooter/index.vue')['default'] + VabFullScreen: typeof import('./../../components/VabFullScreen/index.vue')['default'] + VabHeader: typeof import('./../../components/VabHeader/index.vue')['default'] + VabLanguage: typeof import('./../../components/VabLanguage/index.vue')['default'] + VabLink: typeof import('./../../components/VabLink/index.vue')['default'] + VabLock: typeof import('./../../components/VabLock/index.vue')['default'] + VabLogo: typeof import('./../../components/VabLogo/index.vue')['default'] + VabMenu: typeof import('./../../components/VabMenu/index.vue')['default'] + VabMenuItem: typeof import('./../../components/VabMenu/components/VabMenuItem.vue')['default'] + VabNav: typeof import('./../../components/VabNav/index.vue')['default'] + VabNotice: typeof import('./../../components/VabNotice/index.vue')['default'] + VabQueryForm: typeof import('./../../components/VabQueryForm/index.vue')['default'] + VabQueryFormBottomPanel: typeof import('./../../components/VabQueryForm/components/VabQueryFormBottomPanel.vue')['default'] + VabQueryFormLeftPanel: typeof import('./../../components/VabQueryForm/components/VabQueryFormLeftPanel.vue')['default'] + VabQueryFormRightPanel: typeof import('./../../components/VabQueryForm/components/VabQueryFormRightPanel.vue')['default'] + VabQueryFormTopPanel: typeof import('./../../components/VabQueryForm/components/VabQueryFormTopPanel.vue')['default'] + VabRefresh: typeof import('./../../components/VabRefresh/index.vue')['default'] + VabRouterView: typeof import('./../../components/VabRouterView/index.vue')['default'] + VabSearch: typeof import('./../../components/VabSearch/index.vue')['default'] + VabSideBar: typeof import('./../../components/VabSideBar/index.vue')['default'] + VabSubMenu: typeof import('./../../components/VabMenu/components/VabSubMenu.vue')['default'] + VabTabs: typeof import('./../../components/VabTabs/index.vue')['default'] + VabTheme: typeof import('./../../components/VabTheme/index.vue')['default'] + VabThemeDrawer: typeof import('./../../components/VabTheme/components/VabThemeDrawer.vue')['default'] + VabThemeSetting: typeof import('./../../components/VabTheme/components/VabThemeSetting.vue')['default'] + } + export interface ComponentCustomProperties { + vLoading: typeof import('element-plus/es')['ElLoadingDirective'] + } +} diff --git a/front-end/library/build/vuePlugins/defineOptions/index.ts b/front-end/library/build/vuePlugins/defineOptions/index.ts new file mode 100644 index 0000000..c97547f --- /dev/null +++ b/front-end/library/build/vuePlugins/defineOptions/index.ts @@ -0,0 +1,5 @@ +module.exports = { + createDefineOptions: () => [ + require('unplugin-vue-define-options/webpack')(), + ], +} diff --git a/front-end/library/build/vuePlugins/definePlugin/index.ts b/front-end/library/build/vuePlugins/definePlugin/index.ts new file mode 100644 index 0000000..a3b3861 --- /dev/null +++ b/front-end/library/build/vuePlugins/definePlugin/index.ts @@ -0,0 +1,10 @@ +// @ts-ignore +const Webpack = require('webpack') + +module.exports = { + createDefinePlugin: () => [ + new Webpack.DefinePlugin({ + __APP_INFO__: process.env.VUE_APP_INFO, + }), + ], +} diff --git a/front-end/library/build/vuePlugins/index.ts b/front-end/library/build/vuePlugins/index.ts new file mode 100644 index 0000000..e1fb4fa --- /dev/null +++ b/front-end/library/build/vuePlugins/index.ts @@ -0,0 +1,19 @@ +const { createUnPlugin } = require('vue-' + 'unplugins') +const { createWebpackBar } = require('./webpack' + 'Bar/index.ts') +const { createDefineOptions } = require('./defineOptions/index.ts') +const { createDefinePlugin } = require('./definePlugin/index.ts') +const { createProvidePlugin } = require('./providePlugin/index.ts') +const { createMinChunkSizePlugin } = require('./minChunkSizePlugin/index.ts') + +const dev = process.env.NODE_ENV === 'development' +module.exports = { + createVuePlugin: () => [ + ...createDefineOptions(), + ...createUnPlugin(), + require('unplugin-element-plus/webpack')(), + ...createWebpackBar(), + ...createDefinePlugin(), + ...createProvidePlugin(), + ...(dev ? [] : createMinChunkSizePlugin()), + ], +} diff --git a/front-end/library/build/vuePlugins/minChunkSizePlugin/index.ts b/front-end/library/build/vuePlugins/minChunkSizePlugin/index.ts new file mode 100644 index 0000000..ed650a6 --- /dev/null +++ b/front-end/library/build/vuePlugins/minChunkSizePlugin/index.ts @@ -0,0 +1,14 @@ +// @ts-ignore +const Webpack = require('webpack') +const { buildOptimize } = require('../../../../src/config') + +module.exports = { + createMinChunkSizePlugin: () => + buildOptimize + ? [] + : [ + new Webpack.optimize.MinChunkSizePlugin({ + minChunkSize: 1024 * 300, + }), + ], +} diff --git a/front-end/library/build/vuePlugins/providePlugin/index.ts b/front-end/library/build/vuePlugins/providePlugin/index.ts new file mode 100644 index 0000000..42817e0 --- /dev/null +++ b/front-end/library/build/vuePlugins/providePlugin/index.ts @@ -0,0 +1,7 @@ +// @ts-ignore +const Webpack = require('webpack') +const { providePlugin } = require('../../../../src/config') + +module.exports = { + createProvidePlugin: () => [new Webpack.ProvidePlugin(providePlugin)], +} diff --git a/front-end/library/build/vuePlugins/webpackBar/index.ts b/front-end/library/build/vuePlugins/webpackBar/index.ts new file mode 100644 index 0000000..4b3b0aa --- /dev/null +++ b/front-end/library/build/vuePlugins/webpackBar/index.ts @@ -0,0 +1,10 @@ +const WebpackBar = require('webpackbar') +const { version } = require('../../../../package.json') + +module.exports = { + createWebpackBar: () => [ + new WebpackBar({ + name: `Vue-` + `Admin` + `-Plus ${version}`, + }), + ], +} diff --git a/front-end/library/components/VabApp/index.vue b/front-end/library/components/VabApp/index.vue new file mode 100644 index 0000000..9a51ebe --- /dev/null +++ b/front-end/library/components/VabApp/index.vue @@ -0,0 +1,45 @@ + + + diff --git a/front-end/library/components/VabAppMain/index.vue b/front-end/library/components/VabAppMain/index.vue new file mode 100644 index 0000000..5a523bd --- /dev/null +++ b/front-end/library/components/VabAppMain/index.vue @@ -0,0 +1,28 @@ + + + diff --git a/front-end/library/components/VabAvatar/index.vue b/front-end/library/components/VabAvatar/index.vue new file mode 100644 index 0000000..a977101 --- /dev/null +++ b/front-end/library/components/VabAvatar/index.vue @@ -0,0 +1,109 @@ + + + + + diff --git a/front-end/library/components/VabBreadcrumb/index.vue b/front-end/library/components/VabBreadcrumb/index.vue new file mode 100644 index 0000000..88db40e --- /dev/null +++ b/front-end/library/components/VabBreadcrumb/index.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/front-end/library/components/VabCard/index.vue b/front-end/library/components/VabCard/index.vue new file mode 100644 index 0000000..50fa7e4 --- /dev/null +++ b/front-end/library/components/VabCard/index.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/front-end/library/components/VabColorfulCard/index.vue b/front-end/library/components/VabColorfulCard/index.vue new file mode 100644 index 0000000..bffb1f6 --- /dev/null +++ b/front-end/library/components/VabColorfulCard/index.vue @@ -0,0 +1,69 @@ + + + + + diff --git a/front-end/library/components/VabColumnBar/index.vue b/front-end/library/components/VabColumnBar/index.vue new file mode 100644 index 0000000..c6ba066 --- /dev/null +++ b/front-end/library/components/VabColumnBar/index.vue @@ -0,0 +1,392 @@ + + + + + diff --git a/front-end/library/components/VabErrorLog/index.vue b/front-end/library/components/VabErrorLog/index.vue new file mode 100644 index 0000000..a2b1059 --- /dev/null +++ b/front-end/library/components/VabErrorLog/index.vue @@ -0,0 +1,104 @@ + + + + + diff --git a/front-end/library/components/VabFold/index.vue b/front-end/library/components/VabFold/index.vue new file mode 100644 index 0000000..7640720 --- /dev/null +++ b/front-end/library/components/VabFold/index.vue @@ -0,0 +1,22 @@ + + + + + diff --git a/front-end/library/components/VabFooter/index.vue b/front-end/library/components/VabFooter/index.vue new file mode 100644 index 0000000..2a731a3 --- /dev/null +++ b/front-end/library/components/VabFooter/index.vue @@ -0,0 +1,47 @@ + + + + + diff --git a/front-end/library/components/VabFullScreen/index.vue b/front-end/library/components/VabFullScreen/index.vue new file mode 100644 index 0000000..afc24ba --- /dev/null +++ b/front-end/library/components/VabFullScreen/index.vue @@ -0,0 +1,16 @@ + + + diff --git a/front-end/library/components/VabHeader/index.vue b/front-end/library/components/VabHeader/index.vue new file mode 100644 index 0000000..78327fe --- /dev/null +++ b/front-end/library/components/VabHeader/index.vue @@ -0,0 +1,233 @@ + + + + + diff --git a/front-end/library/components/VabLanguage/index.vue b/front-end/library/components/VabLanguage/index.vue new file mode 100644 index 0000000..35cf37e --- /dev/null +++ b/front-end/library/components/VabLanguage/index.vue @@ -0,0 +1,30 @@ + + + diff --git a/front-end/library/components/VabLink/index.vue b/front-end/library/components/VabLink/index.vue new file mode 100644 index 0000000..f400ed2 --- /dev/null +++ b/front-end/library/components/VabLink/index.vue @@ -0,0 +1,27 @@ + + + diff --git a/front-end/library/components/VabLock/index.vue b/front-end/library/components/VabLock/index.vue new file mode 100644 index 0000000..a0a71ec --- /dev/null +++ b/front-end/library/components/VabLock/index.vue @@ -0,0 +1,225 @@ + + + + + diff --git a/front-end/library/components/VabLogo/index.vue b/front-end/library/components/VabLogo/index.vue new file mode 100644 index 0000000..becdac3 --- /dev/null +++ b/front-end/library/components/VabLogo/index.vue @@ -0,0 +1,123 @@ + + + + + diff --git a/front-end/library/components/VabMenu/components/VabMenuItem.vue b/front-end/library/components/VabMenu/components/VabMenuItem.vue new file mode 100644 index 0000000..fee9da3 --- /dev/null +++ b/front-end/library/components/VabMenu/components/VabMenuItem.vue @@ -0,0 +1,82 @@ + + + + + diff --git a/front-end/library/components/VabMenu/components/VabSubMenu.vue b/front-end/library/components/VabMenu/components/VabSubMenu.vue new file mode 100644 index 0000000..45c3f9f --- /dev/null +++ b/front-end/library/components/VabMenu/components/VabSubMenu.vue @@ -0,0 +1,36 @@ + + + diff --git a/front-end/library/components/VabMenu/index.vue b/front-end/library/components/VabMenu/index.vue new file mode 100644 index 0000000..aa79dd3 --- /dev/null +++ b/front-end/library/components/VabMenu/index.vue @@ -0,0 +1,83 @@ + + + + + + + + diff --git a/front-end/library/components/VabNav/index.vue b/front-end/library/components/VabNav/index.vue new file mode 100644 index 0000000..4150ca1 --- /dev/null +++ b/front-end/library/components/VabNav/index.vue @@ -0,0 +1,165 @@ + + + + + diff --git a/front-end/library/components/VabNotice/index.vue b/front-end/library/components/VabNotice/index.vue new file mode 100644 index 0000000..b9bff9c --- /dev/null +++ b/front-end/library/components/VabNotice/index.vue @@ -0,0 +1,356 @@ + + + + + + + diff --git a/front-end/library/components/VabQueryForm/components/VabQueryFormBottomPanel.vue b/front-end/library/components/VabQueryForm/components/VabQueryFormBottomPanel.vue new file mode 100644 index 0000000..9f38ee6 --- /dev/null +++ b/front-end/library/components/VabQueryForm/components/VabQueryFormBottomPanel.vue @@ -0,0 +1,7 @@ + diff --git a/front-end/library/components/VabQueryForm/components/VabQueryFormLeftPanel.vue b/front-end/library/components/VabQueryForm/components/VabQueryFormLeftPanel.vue new file mode 100644 index 0000000..64f94e7 --- /dev/null +++ b/front-end/library/components/VabQueryForm/components/VabQueryFormLeftPanel.vue @@ -0,0 +1,16 @@ + + + diff --git a/front-end/library/components/VabQueryForm/components/VabQueryFormRightPanel.vue b/front-end/library/components/VabQueryForm/components/VabQueryFormRightPanel.vue new file mode 100644 index 0000000..2a2b781 --- /dev/null +++ b/front-end/library/components/VabQueryForm/components/VabQueryFormRightPanel.vue @@ -0,0 +1,16 @@ + + + diff --git a/front-end/library/components/VabQueryForm/components/VabQueryFormTopPanel.vue b/front-end/library/components/VabQueryForm/components/VabQueryFormTopPanel.vue new file mode 100644 index 0000000..e56c758 --- /dev/null +++ b/front-end/library/components/VabQueryForm/components/VabQueryFormTopPanel.vue @@ -0,0 +1,7 @@ + diff --git a/front-end/library/components/VabQueryForm/index.vue b/front-end/library/components/VabQueryForm/index.vue new file mode 100644 index 0000000..3ff6216 --- /dev/null +++ b/front-end/library/components/VabQueryForm/index.vue @@ -0,0 +1,60 @@ + + + diff --git a/front-end/library/components/VabRefresh/index.vue b/front-end/library/components/VabRefresh/index.vue new file mode 100644 index 0000000..dbea8e7 --- /dev/null +++ b/front-end/library/components/VabRefresh/index.vue @@ -0,0 +1,20 @@ + + + diff --git a/front-end/library/components/VabRouterView/index.vue b/front-end/library/components/VabRouterView/index.vue new file mode 100644 index 0000000..a517ee3 --- /dev/null +++ b/front-end/library/components/VabRouterView/index.vue @@ -0,0 +1,80 @@ + + + diff --git a/front-end/library/components/VabSearch/index.vue b/front-end/library/components/VabSearch/index.vue new file mode 100644 index 0000000..8feec2f --- /dev/null +++ b/front-end/library/components/VabSearch/index.vue @@ -0,0 +1,517 @@ + + + + + diff --git a/front-end/library/components/VabSideBar/index.vue b/front-end/library/components/VabSideBar/index.vue new file mode 100644 index 0000000..fbc88d9 --- /dev/null +++ b/front-end/library/components/VabSideBar/index.vue @@ -0,0 +1,214 @@ + + + + + + + + diff --git a/front-end/library/components/VabTabs/index.vue b/front-end/library/components/VabTabs/index.vue new file mode 100644 index 0000000..e621af2 --- /dev/null +++ b/front-end/library/components/VabTabs/index.vue @@ -0,0 +1,614 @@ + + + + + diff --git a/front-end/library/components/VabTheme/components/VabThemeDrawer.vue b/front-end/library/components/VabTheme/components/VabThemeDrawer.vue new file mode 100644 index 0000000..4af40a9 --- /dev/null +++ b/front-end/library/components/VabTheme/components/VabThemeDrawer.vue @@ -0,0 +1,515 @@ + + + + + diff --git a/front-end/library/components/VabTheme/components/VabThemeSetting.vue b/front-end/library/components/VabTheme/components/VabThemeSetting.vue new file mode 100644 index 0000000..b027fd8 --- /dev/null +++ b/front-end/library/components/VabTheme/components/VabThemeSetting.vue @@ -0,0 +1,168 @@ + + + + + diff --git a/front-end/library/components/VabTheme/index.vue b/front-end/library/components/VabTheme/index.vue new file mode 100644 index 0000000..c57614d --- /dev/null +++ b/front-end/library/components/VabTheme/index.vue @@ -0,0 +1,18 @@ + + + diff --git a/front-end/library/index.ts b/front-end/library/index.ts new file mode 100644 index 0000000..7c1c85f --- /dev/null +++ b/front-end/library/index.ts @@ -0,0 +1,39 @@ +import { App } from 'vue' + +// 加载雪碧图 +import '@/icon' +// 加载全局样式样式 +import './styles/vab.scss' + +import { createHead } from '@vueuse/head' + +// 加载Icon +import VabIcon from 'vab-icons' +import 'vab-icons/lib/vab-icons.css' +import * as ElementPlusIconsVue from '@element-plus/icons-vue' + +const name = process['env']['VUE_' + 'APP_' + 'GITHUB_' + 'USER_' + 'NAME'] +const noTest = name !== 'test' +const noEmpty = name !== 'undefined' +const dev = process['env']['NODE_' + 'ENV'] === 'dev' + 'elop' + 'ment' + +export function setupVab(app: App) { + if ((noTest && noEmpty && !dev && VabIcon) || (dev && VabIcon)) { + app.use(createHead()) + + app.component('VabIcon', VabIcon) + for (const [key, component] of Object.entries(ElementPlusIconsVue)) { + app.component(key, component) + } + + // 加载背景 + const Themes = require.context('./styles/background', false, /\.scss$/) + Themes.keys().map(Themes) + + // 加载插件 + const Plugins = require.context('./plugins', true, /\.ts$/) + Plugins.keys().forEach((key) => { + app.use(Plugins(key).default) + }) + } +} diff --git a/front-end/library/layouts/VabLayoutColumn/index.vue b/front-end/library/layouts/VabLayoutColumn/index.vue new file mode 100644 index 0000000..127937c --- /dev/null +++ b/front-end/library/layouts/VabLayoutColumn/index.vue @@ -0,0 +1,78 @@ + + + + + + diff --git a/front-end/library/layouts/VabLayoutCommon/index.vue b/front-end/library/layouts/VabLayoutCommon/index.vue new file mode 100644 index 0000000..1598883 --- /dev/null +++ b/front-end/library/layouts/VabLayoutCommon/index.vue @@ -0,0 +1,88 @@ + + + + + + diff --git a/front-end/library/layouts/VabLayoutComprehensive/index.vue b/front-end/library/layouts/VabLayoutComprehensive/index.vue new file mode 100644 index 0000000..7a35ecc --- /dev/null +++ b/front-end/library/layouts/VabLayoutComprehensive/index.vue @@ -0,0 +1,58 @@ + + + + diff --git a/front-end/library/layouts/VabLayoutFloat/index.vue b/front-end/library/layouts/VabLayoutFloat/index.vue new file mode 100644 index 0000000..c8aed38 --- /dev/null +++ b/front-end/library/layouts/VabLayoutFloat/index.vue @@ -0,0 +1,98 @@ + + + + + + + diff --git a/front-end/library/layouts/VabLayoutHorizontal/index.vue b/front-end/library/layouts/VabLayoutHorizontal/index.vue new file mode 100644 index 0000000..6db795b --- /dev/null +++ b/front-end/library/layouts/VabLayoutHorizontal/index.vue @@ -0,0 +1,83 @@ + + + + + + diff --git a/front-end/library/layouts/VabLayoutVertical/index.vue b/front-end/library/layouts/VabLayoutVertical/index.vue new file mode 100644 index 0000000..976a08f --- /dev/null +++ b/front-end/library/layouts/VabLayoutVertical/index.vue @@ -0,0 +1,68 @@ + + + + diff --git a/front-end/library/layouts/index.vue b/front-end/library/layouts/index.vue new file mode 100644 index 0000000..94f8820 --- /dev/null +++ b/front-end/library/layouts/index.vue @@ -0,0 +1,162 @@ + + + + + diff --git a/front-end/library/plugins/directive.ts b/front-end/library/plugins/directive.ts new file mode 100644 index 0000000..d41a8d1 --- /dev/null +++ b/front-end/library/plugins/directive.ts @@ -0,0 +1,19 @@ +import type { App, DirectiveBinding } from 'vue' + +import { hasPermission } from '@/utils/permission' + +export default { + install(app: App) { + /** + * @description 自定义指令v-permissions + */ + app.directive('permissions', { + mounted(el: any, binding: DirectiveBinding) { + const { value } = binding + if (value) + if (!hasPermission(value)) + el.parentNode && el.parentNode.removeChild(el) + }, + }) + }, +} diff --git a/front-end/library/plugins/errorLog.ts b/front-end/library/plugins/errorLog.ts new file mode 100644 index 0000000..d064b07 --- /dev/null +++ b/front-end/library/plugins/errorLog.ts @@ -0,0 +1,30 @@ +import { App } from 'vue' +import pinia from '@/store' +import { useErrorLogStore } from '@/store/modules/errorLog' +import { errorLog } from '@/config' +import { isArray, isString } from '@/utils/validate' + +export const needErrorLog = () => { + const errorLogArray = isArray(errorLog) + ? [...errorLog] + : isString(errorLog) + ? [...[errorLog]] + : [] + return errorLogArray.includes(process.env.NODE_ENV as string) +} + +export const addErrorLog = (err: any) => { + // eslint-disable-next-line no-console + if (!err.isRequest) console.error('vue-admin-better错误拦截:', err) + const url = window.location.href + const { addErrorLog } = useErrorLogStore(pinia) + addErrorLog({ err, url }) +} + +export default { + install(app: App) { + if (needErrorLog()) { + app.config.errorHandler = addErrorLog + } + }, +} diff --git a/front-end/library/plugins/support.ts b/front-end/library/plugins/support.ts new file mode 100644 index 0000000..66b9dbb --- /dev/null +++ b/front-end/library/plugins/support.ts @@ -0,0 +1,26 @@ +import { App } from 'vue' +import pinia from '@/store' +import { useSettingsStore } from '@/store/modules/settings' + +export default { + install(app: App) { + if (process.env.NODE_ENV !== 'development') { + const { title } = useSettingsStore(pinia) + // eslint-disable-next-line no-console + console.log( + ` %c ${title} %c 基于admin-plus ${__APP_INFO__['version']} 构建 `, + 'color: #fadfa3; background: #030307; padding:5px 0;', + 'background: #fadfa3; padding:5px 0;' + ) + } + if (process.env.NODE_ENV !== 'development') { + const str = '\u0076\u0061\u0062\u002d\u0069\u0063\u006f\u006e\u0073' + const key = decodeURI(str.replace(/\\u/g, '%u')) + if (!__APP_INFO__['dependencies'][key]) { + // eslint-disable-next-line + // @ts-ignore + app.config.globalProperties = null + } + } + }, +} diff --git a/front-end/library/plugins/vab.ts b/front-end/library/plugins/vab.ts new file mode 100644 index 0000000..f8f9e7d --- /dev/null +++ b/front-end/library/plugins/vab.ts @@ -0,0 +1,172 @@ +import { App } from 'vue' +import mitt from 'mitt' +import _ from 'lodash' +import { loadingText, messageDuration } from '@/config' +import { globalPropertiesType } from '/#/library' + +export let gp: globalPropertiesType + +export default { + install(app: App) { + gp = { + /** + * @description 全局加载层 + * @param {number} index 自定义加载图标类名ID + * @param {string} text 显示在加载图标下方的加载文案 + */ + $baseLoading: (index = undefined, text = loadingText) => { + return ElLoading.service({ + lock: true, + text, + spinner: index ? `vab-loading-type${index}` : index, + background: 'hsla(0,0%,100%,.8)', + }) + }, + /** + * @description 全局Message + * @param {string} message 消息文字 + * @param {'success'|'warning'|'info'|'error'} type 主题 + * @param {string} customClass 自定义类名 + * @param {boolean} dangerouslyUseHTMLString 是否将message属性作为HTML片段处理 + */ + $baseMessage: ( + message, + type = 'info', + customClass, + dangerouslyUseHTMLString + ) => { + ElMessage({ + message, + type, + customClass, + duration: messageDuration, + dangerouslyUseHTMLString, + showClose: true, + }) + }, + /** + * @description 全局Alert + * @param {string|VNode} content 消息正文内容 + * @param {string} title 标题 + * @param {function} callback 若不使用Promise,可以使用此参数指定MessageBox关闭后的回调 + */ + $baseAlert: (content, title = '温馨提示', callback = undefined) => { + if (title && typeof title == 'function') { + callback = title + title = '温馨提示' + } + ElMessageBox.alert(content, title, { + confirmButtonText: '确定', + dangerouslyUseHTMLString: true, // 此处可能引起跨站攻击,建议配置为false + callback: () => { + if (callback) callback() + }, + }).then(() => {}) + }, + /** + * @description 全局Confirm + * @param {string|VNode} content 消息正文内容 + * @param {string} title 标题 + * @param {function} callback1 确认回调 + * @param {function} callback2 关闭或取消回调 + * @param {string} confirmButtonText 确定按钮的文本内容 + * @param {string} cancelButtonText 取消按钮的自定义类名 + */ + $baseConfirm: ( + content, + title, + callback1, + callback2, + confirmButtonText = '确定', + cancelButtonText = '取消' + ) => { + ElMessageBox.confirm(content, title || '温馨提示', { + confirmButtonText, + cancelButtonText, + closeOnClickModal: false, + type: 'warning', + lockScroll: false, + }) + .then(() => { + if (callback1) { + callback1() + } + }) + .catch(() => { + if (callback2) { + callback2() + } + }) + }, + /** + * @description 全局Notification + * @param {string} message 说明文字 + * @param {string} title 标题 + * @param {'success'|'warning'|'info'|'error'} type 主题样式,如果不在可选值内将被忽略 + * @param {'top-right'|'top-left'|'bottom-right'|'bottom-left'} position 自定义弹出位置 + * @param duration 显示时间,毫秒 + */ + $baseNotify: ( + message, + title, + type = 'success', + position = 'top-right', + duration = messageDuration + ) => { + ElNotification({ + title, + message, + type, + duration, + position, + }) + }, + /** + * @description 表格高度 + * @param {*} formType + */ + $baseTableHeight: (formType) => { + let height = window.innerHeight + const paddingHeight = 291 + const formHeight = 60 + + if ('number' === typeof formType) { + height = height - paddingHeight - formHeight * formType + } else { + height = height - paddingHeight + } + return height + }, + $pub: (...args: any[]) => { + _emitter.emit(_.head(args), args[1]) + }, + $sub: function () { + // eslint-disable-next-line prefer-rest-params + Reflect.apply(_emitter.on, _emitter, _.toArray(arguments)) + }, + $unsub: function () { + // eslint-disable-next-line prefer-rest-params + Reflect.apply(_emitter.off, _emitter, _.toArray(arguments)) + }, + } + + const _emitter = mitt() + Object.keys(gp).forEach((key) => { + app.provide(key, gp[key as keyof typeof gp]) + // 允许vue3下继续使用vue2中的this调用vab方法 + app.config.globalProperties[key] = gp[key as keyof typeof gp] + }) + + if (process.env['NODE_' + 'ENV'] !== `${'deve' + 'lopme' + 'nt'}`) { + const key = 'vab-' + 'icons' + if (!__APP_INFO__['dependencies'][key]) { + // @ts-ignore + app.config.globalProperties = null + } + if (!process.env['VUE_' + 'APP_' + 'SECRET_' + 'KEY']) { + // @ts-ignore + app.config.globalProperties = null + } + } + }, +} diff --git a/front-end/library/shims-vab.d.ts b/front-end/library/shims-vab.d.ts new file mode 100644 index 0000000..c8b3c92 --- /dev/null +++ b/front-end/library/shims-vab.d.ts @@ -0,0 +1,12 @@ +declare let __APP_INFO__: any + +// CSS +type CSSModuleClasses = { readonly [key: string]: string } +declare module '*.module.scss' { + const classes: CSSModuleClasses + export default classes +} +declare module '*.scss' { + const css: string + export default css +} diff --git a/front-end/library/styles/background/black.scss b/front-end/library/styles/background/black.scss new file mode 100644 index 0000000..1d95aef --- /dev/null +++ b/front-end/library/styles/background/black.scss @@ -0,0 +1,251 @@ +/** + * @description 黑 + */ + +body.vab-theme-black { + $base-menu-background: #282c34; + + @mixin container { + color: var(--el-color-white) !important; + background: $base-menu-background !important; + } + + @mixin active { + &:hover { + color: var(--el-color-white) !important; + background-color: var(--el-color-primary) !important; + } + + &.is-active { + color: var(--el-color-white) !important; + background-color: var(--el-color-primary) !important; + } + } + + .logo-container-vertical, + .logo-container-horizontal, + .logo-container-comprehensive, + .logo-container-float { + @include container; + } + + .logo-container-column { + .logo { + @include container; + } + } + + .vab-column-bar-container.el-scrollbar { + .el-tabs { + .el-tabs__nav-wrap.is-left { + @include container; + } + + .el-tabs__nav { + @include container; + } + + .el-tabs__item.is-active { + background: var(--el-color-primary) !important; + } + } + + .el-menu { + .el-menu-item.is-active, + .el-sub-menu__title.is-active, + .el-menu-item:hover, + .el-sub-menu__title:hover { + i { + color: var(--el-color-primary) !important; + } + + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + } + } + } + + .vab-column-bar-container-card.el-scrollbar { + .el-tabs { + .el-tabs__item.is-active { + background: transparent !important; + + .vab-column-grid { + background: var(--el-color-primary) !important; + } + } + } + } + + .vab-column-bar-container-arrow.el-scrollbar { + .el-tabs { + .el-tabs__item.is-active { + background: transparent !important; + + .vab-column-grid { + background: transparent !important; + } + } + } + } + + .vab-layout-float, + .vab-layout-common, + .vab-layout-vertical, + .vab-layout-horizontal, + .vab-layout-comprehensive { + .el-menu { + @include container; + + .el-sub-menu .el-sub-menu__title, + .el-menu-item { + @include container; + } + } + + .vab-side-bar, + .comprehensive-bar-container { + @include container; + + .el-menu-item { + @include active; + } + } + } + + .vab-layout-float { + .el-scrollbar__view + .el-menu--collapse.el-menu + li.el-sub-menu.is-active { + .el-sub-menu__title { + background-color: transparent !important; + } + + > .el-sub-menu__title { + background-color: var(--el-color-primary) !important; + } + } + } + + .vab-header { + @include container; + + .vab-main { + @include container; + + .right-panel { + .el-menu { + &--horizontal { + .el-sub-menu .el-sub-menu__title, + .el-menu-item { + @include active; + } + } + } + [role='menubar'].el-menu--horizontal { + > .el-sub-menu.is-active[tabindex='0'] { + > .el-sub-menu__title { + color: var(--el-color-white) !important; + background-color: var( + --el-color-primary + ) !important; + } + } + } + } + } + } + + .vab-tabs { + &-more { + &-active, + &:hover { + .vab-tabs-more-icon { + .box:before, + .box:after { + background: var(--el-color-primary) !important; + } + } + } + } + + .vab-tabs-content-card { + .el-tabs__header { + .el-tabs__item { + &.is-active { + color: var(--el-color-primary) !important; + background: var(--el-color-primary-light-9) !important; + border: 1px solid var(--el-color-primary) !important; + } + + &:hover { + border: 1px solid var(--el-color-primary) !important; + } + } + } + } + + .vab-tabs-content-smart { + .el-tabs__header { + .el-tabs__item { + &.is-active { + background: var(--el-color-primary-light-9) !important; + } + + &:after { + background-color: var(--el-color-primary) !important; + } + + &:hover { + background: var(--el-color-primary-light-9) !important; + } + } + } + } + + .vab-tabs-content-smooth { + .el-tabs__header { + .el-tabs__item { + &.is-active { + color: var(--el-color-primary) !important; + background: var(--el-color-primary-light-9) !important; + + &:hover { + color: var(--el-color-primary) !important; + background: var( + --el-color-primary-light-9 + ) !important; + } + } + + &:hover { + color: var(--el-color-black) !important; + } + } + } + } + } + + .vab-nav { + .el-tabs__item.is-active, + .el-tabs__item:hover { + color: var(--el-color-primary) !important; + } + + .el-tabs__active-bar { + background-color: var(--el-color-primary) !important; + } + } + + #nprogress { + .bar { + background: var(--el-color-primary) !important; + } + + .peg { + box-shadow: + 0 0 10px var(--el-color-primary), + 0 0 5px var(--el-color-primary) !important; + } + } +} diff --git a/front-end/library/styles/background/image.scss b/front-end/library/styles/background/image.scss new file mode 100644 index 0000000..2e460ca --- /dev/null +++ b/front-end/library/styles/background/image.scss @@ -0,0 +1,108 @@ +/** + * @description 菜单背景 + */ + +body.vab-background > #app { + $base-menu-background: url('~@/assets/theme_images/background-1.png') + no-repeat; + + @mixin container { + color: $base-color-white !important; + background: $base-menu-background !important; + background-size: auto 100% !important; + } + @mixin transparent { + color: $base-color-white !important; + background: transparent !important; + } + @mixin active { + span { + color: $base-color-white !important; + } + + &:hover { + color: $base-color-white !important; + background-color: rgba(0, 0, 0, 0.3) !important; + } + + &.is-active { + color: $base-color-white !important; + background-color: rgba(0, 0, 0, 0.3) !important; + } + } + + .vab-side-bar:not(.is-collapse), + .comprehensive-bar-container { + @include container; + + .el-menu { + @include transparent; + + .el-menu-item, + .el-sub-menu__title { + @include transparent; + @include active; + + i, + svg { + @include transparent; + } + } + } + + .logo-container-vertical, + .logo-container-comprehensive, + .logo-container-float { + @include transparent; + + .logo .vab-icon, + .title { + @include transparent; + } + } + } + + .vab-column-bar-container { + &.el-scrollbar { + .logo-container-column { + .logo { + @include container; + background: #034291 !important; + + .vab-icon { + @include transparent; + } + } + } + + .el-tabs { + .el-tabs__nav-wrap.is-left { + @include container; + } + + .el-tabs__nav, + .el-tabs__item { + @include transparent; + + &.is-active { + color: $base-color-white !important; + background-color: rgba(0, 0, 0, 0.3) !important; + } + } + } + + &.vab-column-bar-container-card { + .el-tabs { + .el-tabs__item { + &.is-active { + background: transparent !important; + .vab-column-grid { + background-color: rgba(0, 0, 0, 0.3) !important; + } + } + } + } + } + } + } +} diff --git a/front-end/library/styles/background/ocean.scss b/front-end/library/styles/background/ocean.scss new file mode 100644 index 0000000..db2eca8 --- /dev/null +++ b/front-end/library/styles/background/ocean.scss @@ -0,0 +1,181 @@ +/** + * @description 渐变 + */ + +body.vab-theme-ocean { + $base-color-blue: #1890ff; + $base-color-blue-active: #399efd; + + @mixin container { + background: linear-gradient(to right, #006cff, #399efd) !important; + } + + @mixin active { + &:hover { + color: $base-color-white; + background-color: $base-color-blue-active !important; + } + + &.is-active { + color: $base-color-white; + background-color: $base-color-blue-active !important; + } + } + + .logo-container-horizontal { + background: var(--el-color-primary) !important; + } + + .logo-container-vertical, + .logo-container-comprehensive, + .logo-container-float { + @include container; + } + + .logo-container-column { + .logo { + @include container; + } + } + + .vab-column-bar-container { + .el-tabs { + .el-tabs__nav-wrap.is-left { + @include container; + } + + .el-tabs__nav { + @include container; + } + } + + .el-menu { + .el-menu-item.is-active, + .el-sub-menu__title.is-active, + .el-menu-item:hover, + .el-sub-menu__title:hover { + i { + color: var(--el-color-primary) !important; + } + + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + } + } + + &-card { + .el-tabs { + .el-tabs__item { + &.is-active { + background: transparent !important; + } + } + } + } + } + + .vab-layout-horizontal { + .vab-header { + background: var(--el-color-primary) !important; + } + + .el-menu { + background: var(--el-color-primary) !important; + + .el-sub-menu__title { + background: var(--el-color-primary) !important; + } + + .el-menu-item { + background: var(--el-color-primary) !important; + } + } + + .vab-side-bar, + .comprehensive-bar-container { + background: var(--el-color-primary) !important; + + .el-menu-item { + @include active; + } + } + } + + .vab-layout-vertical, + .vab-layout-comprehensive, + .vab-layout-common, + .vab-layout-float { + .vab-side-bar, + .comprehensive-bar-container { + @include container; + + .el-menu { + @include container; + @include active; + + .el-sub-menu__title, + .el-menu-item { + background-color: transparent !important; + @include active; + + &.is-active { + background-color: $base-color-blue-active !important; + } + } + } + } + } + + .vab-layout-float { + .el-scrollbar__view + .el-menu--collapse.el-menu + li.el-sub-menu.is-active { + .el-sub-menu__title { + background-color: transparent !important; + } + + > .el-sub-menu__title { + background-color: var(--el-color-primary) !important; + } + } + } + + .vab-header { + background-color: var(--el-color-primary) !important; + + .vab-main { + .el-menu.el-menu { + background-color: var(--el-color-primary) !important; + + &--horizontal { + .el-sub-menu, + .el-menu-item { + background-color: var(--el-color-primary) !important; + + &.is-active { + color: $base-color-white !important; + background-color: $base-color-blue-active !important; + } + } + + > .el-menu-item, + .el-sub-menu__title, + > .el-menu-item:hover, + > .el-sub-menu__title:hover { + color: $base-color-white !important; + background-color: var(--el-color-primary) !important; + + i { + color: $base-color-white !important; + } + + &.is-active { + color: $base-color-white !important; + background-color: $base-color-blue-active !important; + } + } + } + } + } + } +} diff --git a/front-end/library/styles/background/white.scss b/front-end/library/styles/background/white.scss new file mode 100644 index 0000000..0634500 --- /dev/null +++ b/front-end/library/styles/background/white.scss @@ -0,0 +1,293 @@ +/** + * @description 白 + */ + +body.vab-theme-white { + $base-menu-background: #fff; + + @mixin container { + color: #515a6e !important; + background: $base-menu-background !important; + } + + @mixin active { + &:hover { + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + + i, + svg, + span[title] { + color: var(--el-color-primary) !important; + } + } + + &.is-active { + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + + i, + svg, + span[title] { + color: var(--el-color-primary) !important; + } + } + } + + .logo-container-common, + .logo-container-vertical, + .logo-container-horizontal, + .logo-container-comprehensive, + .logo-container-float { + @include container; + + .title, + .vab-icon { + @include container; + } + } + + .logo-container-column { + @include container; + + .title { + @include container; + } + + .logo, + .vab-icon { + @include container; + } + } + + .vab-column-bar-container { + .el-tabs { + @include container; + + .el-tabs__nav-wrap.is-left { + background: #f7faff !important; + } + + .el-tabs__item, + .el-tabs__nav { + @include container; + } + + .el-tabs__item.is-active { + color: var(--el-color-white) !important; + background: var(--el-color-primary) !important; + } + } + + .el-menu { + .el-menu-item.is-active, + .el-sub-menu__title.is-active, + .el-menu-item:hover, + .el-sub-menu__title:hover { + i { + color: var(--el-color-primary) !important; + } + + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + } + } + + &-card { + .el-tabs { + .el-tabs__item { + &.is-active { + background: transparent !important; + } + } + } + } + + &-arrow { + .el-tabs { + .el-tabs__item { + &.is-active { + color: var(--el-color-black) !important; + background: transparent !important; + + .vab-column-grid { + background: transparent !important; + } + } + } + } + } + } + + .vab-layout-float, + .vab-layout-common, + .vab-layout-vertical, + .vab-layout-horizontal, + .vab-layout-comprehensive { + .el-menu { + @include container; + + .el-sub-menu .el-sub-menu__title, + .el-menu-item { + @include container; + } + + .el-menu-item.is-active, + .el-sub-menu__title.is-active, + .el-menu-item:hover, + .el-sub-menu__title:hover { + i { + color: var(--el-color-primary) !important; + } + + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + } + } + + .vab-side-bar, + .comprehensive-bar-container { + @include container; + + .el-menu-item { + @include active; + } + } + } + + .vab-layout-float { + .el-scrollbar__view + .el-menu--collapse.el-menu + li.el-sub-menu.is-active { + .el-sub-menu__title { + background-color: transparent !important; + } + + > .el-sub-menu__title { + color: var(--el-color-primary) !important; + background-color: var(--el-color-primary-light-9) !important; + } + } + } + + .vab-header { + @include container; + + .vab-main { + @include container; + + .right-panel { + .user-name, + .user-name *, + > i, + > div > i, + > span > i, + > div > span > i, + > svg, + > div > svg, + > span > svg, + > div > span > svg, + .ri-notification-line, + .ri-translate, + .ri-bug-line { + @include container; + } + + .el-menu { + &--horizontal { + .el-sub-menu .el-sub-menu__title, + .el-menu-item { + @include active; + } + + .el-sub-menu, + .el-menu-item { + &.is-active { + @include active; + } + } + + > .el-sub-menu.is-active { + > .el-sub-menu__title { + background-color: var( + --el-color-primary-light-9 + ) !important; + @include active; + } + } + } + } + } + } + } + + .vab-tabs { + &-more { + &-active, + &:hover { + .vab-tabs-more-icon { + .box:before, + .box:after { + background: var(--el-color-primary) !important; + } + } + } + } + + .vab-tabs-content-card { + .el-tabs__header { + .el-tabs__item { + &.is-active { + color: var(--el-color-primary) !important; + background: var(--el-color-primary-light-9) !important; + border: 1px solid var(--el-color-primary) !important; + } + + &:hover { + border: 1px solid var(--el-color-primary) !important; + } + } + } + } + + .vab-tabs-content-smart { + .el-tabs__header { + .el-tabs__item { + &.is-active { + background: var(--el-color-primary-light-9) !important; + } + + &:after { + background-color: var(--el-color-primary) !important; + } + + &:hover { + background: var(--el-color-primary-light-9) !important; + } + } + } + } + + .vab-tabs-content-smooth { + .el-tabs__header { + .el-tabs__item { + &.is-active { + color: var(--el-color-primary) !important; + background: var(--el-color-primary-light-9) !important; + + &:hover { + color: var(--el-color-primary) !important; + background: var( + --el-color-primary-light-9 + ) !important; + } + } + + &:hover { + color: var(--el-color-black) !important; + } + } + } + } + } +} diff --git a/front-end/library/styles/loading/dots.css b/front-end/library/styles/loading/dots.css new file mode 100644 index 0000000..0049258 --- /dev/null +++ b/front-end/library/styles/loading/dots.css @@ -0,0 +1,124 @@ +.dots-loader:not(:required) { + position: relative; + display: inline-block; + width: 7px; + height: 7px; + margin-bottom: 30px; + overflow: hidden; + text-indent: -9999px; + background: transparent; + border-radius: 100%; + box-shadow: + #f86 -14px -14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae -14px 14px 0 7px; + transform-origin: 50% 50%; + animation: dots-loader 5s infinite ease-in-out; +} + +@keyframes dots-loader { + 0% { + box-shadow: + #f86 -14px -14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae -14px 14px 0 7px; + } + + 8.33% { + box-shadow: + #f86 14px -14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae -14px 14px 0 7px; + } + + 16.67% { + box-shadow: + #f86 14px 14px 0 7px, + #fc6 14px 14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae -14px 14px 0 7px; + } + + 25% { + box-shadow: + #f86 -14px 14px 0 7px, + #fc6 -14px 14px 0 7px, + #6d7 -14px 14px 0 7px, + #4ae -14px 14px 0 7px; + } + + 33.33% { + box-shadow: + #f86 -14px -14px 0 7px, + #fc6 -14px 14px 0 7px, + #6d7 -14px -14px 0 7px, + #4ae -14px -14px 0 7px; + } + + 41.67% { + box-shadow: + #f86 14px -14px 0 7px, + #fc6 -14px 14px 0 7px, + #6d7 -14px -14px 0 7px, + #4ae 14px -14px 0 7px; + } + + 50% { + box-shadow: + #f86 14px 14px 0 7px, + #fc6 -14px 14px 0 7px, + #6d7 -14px -14px 0 7px, + #4ae 14px -14px 0 7px; + } + + 58.33% { + box-shadow: + #f86 -14px 14px 0 7px, + #fc6 -14px 14px 0 7px, + #6d7 -14px -14px 0 7px, + #4ae 14px -14px 0 7px; + } + + 66.67% { + box-shadow: + #f86 -14px -14px 0 7px, + #fc6 -14px -14px 0 7px, + #6d7 -14px -14px 0 7px, + #4ae 14px -14px 0 7px; + } + + 75% { + box-shadow: + #f86 14px -14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px -14px 0 7px, + #4ae 14px -14px 0 7px; + } + + 83.33% { + box-shadow: + #f86 14px 14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae 14px 14px 0 7px; + } + + 91.67% { + box-shadow: + #f86 -14px 14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae -14px 14px 0 7px; + } + + 100% { + box-shadow: + #f86 -14px -14px 0 7px, + #fc6 14px -14px 0 7px, + #6d7 14px 14px 0 7px, + #4ae -14px 14px 0 7px; + } +} diff --git a/front-end/library/styles/loading/gauge.css b/front-end/library/styles/loading/gauge.css new file mode 100644 index 0000000..401f8d8 --- /dev/null +++ b/front-end/library/styles/loading/gauge.css @@ -0,0 +1,104 @@ +.gauge-loader:not(:required) { + position: relative; + display: inline-block; + width: 64px; + height: 32px; + margin-bottom: 10px; + overflow: hidden; + text-indent: -9999px; + background: #6ca; + border-top-left-radius: 32px; + border-top-right-radius: 32px; +} + +.gauge-loader:not(:required)::before { + position: absolute; + top: 5px; + left: 30px; + width: 4px; + height: 27px; + content: ''; + background: white; + border-radius: 2px; + transform-origin: 50% 100%; + animation: gauge-loader 4000ms infinite ease; +} + +.gauge-loader:not(:required)::after { + position: absolute; + top: 26px; + left: 26px; + width: 13px; + height: 13px; + content: ''; + background: white; + -moz-border-radius: 8px; + -webkit-border-radius: 8px; + border-radius: 8px; +} + +@keyframes gauge-loader { + 0% { + transform: rotate(-50deg); + } + + 10% { + transform: rotate(20deg); + } + + 20% { + transform: rotate(60deg); + } + + 24% { + transform: rotate(60deg); + } + + 40% { + transform: rotate(-20deg); + } + + 54% { + transform: rotate(70deg); + } + + 56% { + transform: rotate(78deg); + } + + 58% { + transform: rotate(73deg); + } + + 60% { + transform: rotate(75deg); + } + + 62% { + transform: rotate(70deg); + } + + 70% { + transform: rotate(-20deg); + } + + 80% { + transform: rotate(20deg); + } + + 83% { + transform: rotate(25deg); + } + + 86% { + transform: rotate(20deg); + } + + 89% { + transform: rotate(25deg); + } + + 100% { + transform: rotate(-50deg); + } +} diff --git a/front-end/library/styles/loading/inner-circles.css b/front-end/library/styles/loading/inner-circles.css new file mode 100644 index 0000000..d753d66 --- /dev/null +++ b/front-end/library/styles/loading/inner-circles.css @@ -0,0 +1,51 @@ +.inner-circles-loader:not(:required) { + position: relative; + display: inline-block; + width: 50px; + height: 50px; + margin-bottom: 10px; + overflow: hidden; + text-indent: -9999px; + background: rgba(25, 165, 152, 0.5); + border-radius: 50%; + transform: translate3d(0, 0, 0); +} + +.inner-circles-loader:not(:required)::before, +.inner-circles-loader:not(:required)::after { + position: absolute; + top: 0; + display: inline-block; + width: 50px; + height: 50px; + content: ''; + border-radius: 50%; +} + +.inner-circles-loader:not(:required)::before { + left: 0; + background: #c7efcf; + transform-origin: 0 50%; + animation: inner-circles-loader 3s infinite; +} + +.inner-circles-loader:not(:required)::after { + right: 0; + background: #eef5db; + transform-origin: 100% 50%; + animation: inner-circles-loader 3s 0.2s reverse infinite; +} + +@keyframes inner-circles-loader { + 0% { + transform: rotate(0deg); + } + + 50% { + transform: rotate(360deg); + } + + 100% { + transform: rotate(0deg); + } +} diff --git a/front-end/library/styles/loading/plus.css b/front-end/library/styles/loading/plus.css new file mode 100644 index 0000000..28b6951 --- /dev/null +++ b/front-end/library/styles/loading/plus.css @@ -0,0 +1,341 @@ +.plus-loader:not(:required) { + position: relative; + display: inline-block; + width: 48px; + height: 48px; + margin-bottom: 10px; + overflow: hidden; + text-indent: -9999px; + background: #f86; + -moz-border-radius: 24px; + -webkit-border-radius: 24px; + border-radius: 24px; + -moz-transform: rotateZ(90deg); + -ms-transform: rotateZ(90deg); + -webkit-transform: rotateZ(90deg); + transform: rotateZ(90deg); + -moz-transform-origin: 50% 50%; + -ms-transform-origin: 50% 50%; + -webkit-transform-origin: 50% 50%; + transform-origin: 50% 50%; + -moz-animation: plus-loader-background 3s infinite ease-in-out; + -webkit-animation: plus-loader-background 3s infinite ease-in-out; + animation: plus-loader-background 3s infinite ease-in-out; +} + +.plus-loader:not(:required)::after { + position: absolute; + top: 0; + right: 50%; + width: 50%; + height: 100%; + content: ''; + background: #f86; + -moz-border-radius: 24px 0 0 24px; + -webkit-border-radius: 24px; + border-radius: 24px 0 0 24px; + -moz-transform-origin: 100% 50%; + -ms-transform-origin: 100% 50%; + -webkit-transform-origin: 100% 50%; + transform-origin: 100% 50%; + -moz-animation: plus-loader-top 3s infinite linear; + -webkit-animation: plus-loader-top 3s infinite linear; + animation: plus-loader-top 3s infinite linear; +} + +.plus-loader:not(:required)::before { + position: absolute; + top: 0; + right: 50%; + width: 50%; + height: 100%; + content: ''; + background: #fc6; + -moz-border-radius: 24px 0 0 24px; + -webkit-border-radius: 24px; + border-radius: 24px 0 0 24px; + -moz-transform-origin: 100% 50%; + -ms-transform-origin: 100% 50%; + -webkit-transform-origin: 100% 50%; + transform-origin: 100% 50%; + -moz-animation: plus-loader-bottom 3s infinite linear; + -webkit-animation: plus-loader-bottom 3s infinite linear; + animation: plus-loader-bottom 3s infinite linear; +} + +@keyframes plus-loader-top { + 2.5% { + background: #f86; + -moz-transform: rotateY(0deg); + -ms-transform: rotateY(0deg); + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); + -moz-animation-timing-function: ease-in; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 13.75% { + background: #ff430d; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 13.76% { + background: #ffae0d; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: ease-out; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 25% { + background: #fc6; + -moz-transform: rotateY(180deg); + -ms-transform: rotateY(180deg); + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); + } + + 27.5% { + background: #fc6; + -moz-transform: rotateY(180deg); + -ms-transform: rotateY(180deg); + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); + -moz-animation-timing-function: ease-in; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 41.25% { + background: #ffae0d; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 41.26% { + background: #2cc642; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: ease-out; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 50% { + background: #6d7; + -moz-transform: rotateY(0deg); + -ms-transform: rotateY(0deg); + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); + } + + 52.5% { + background: #6d7; + -moz-transform: rotateY(0deg); + -ms-transform: rotateY(0deg); + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); + -moz-animation-timing-function: ease-in; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 63.75% { + background: #2cc642; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 63.76% { + background: #1386d2; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: ease-out; + -webkit-animation-timing-function: ease-out; + animation-timing-function: ease-out; + } + + 75% { + background: #4ae; + -moz-transform: rotateY(180deg); + -ms-transform: rotateY(180deg); + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); + } + + 77.5% { + background: #4ae; + -moz-transform: rotateY(180deg); + -ms-transform: rotateY(180deg); + -webkit-transform: rotateY(180deg); + transform: rotateY(180deg); + -moz-animation-timing-function: ease-in; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 91.25% { + background: #1386d2; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 91.26% { + background: #ff430d; + -moz-transform: rotateY(90deg); + -ms-transform: rotateY(90deg); + -webkit-transform: rotateY(90deg); + transform: rotateY(90deg); + -moz-animation-timing-function: ease-in; + -webkit-animation-timing-function: ease-in; + animation-timing-function: ease-in; + } + + 100% { + background: #f86; + -moz-transform: rotateY(0deg); + -ms-transform: rotateY(0deg); + -webkit-transform: rotateY(0deg); + transform: rotateY(0deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } +} + +@keyframes plus-loader-bottom { + 0% { + background: #fc6; + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 50% { + background: #fc6; + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 75% { + background: #4ae; + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 100% { + background: #4ae; + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } +} + +@keyframes plus-loader-background { + 0% { + background: #f86; + -moz-transform: rotateZ(180deg); + -ms-transform: rotateZ(180deg); + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); + } + + 25% { + background: #f86; + -moz-transform: rotateZ(180deg); + -ms-transform: rotateZ(180deg); + -webkit-transform: rotateZ(180deg); + transform: rotateZ(180deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 27.5% { + background: #6d7; + -moz-transform: rotateZ(90deg); + -ms-transform: rotateZ(90deg); + -webkit-transform: rotateZ(90deg); + transform: rotateZ(90deg); + } + + 50% { + background: #6d7; + -moz-transform: rotateZ(90deg); + -ms-transform: rotateZ(90deg); + -webkit-transform: rotateZ(90deg); + transform: rotateZ(90deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 52.5% { + background: #6d7; + -moz-transform: rotateZ(0deg); + -ms-transform: rotateZ(0deg); + -webkit-transform: rotateZ(0deg); + transform: rotateZ(0deg); + } + + 75% { + background: #6d7; + -moz-transform: rotateZ(0deg); + -ms-transform: rotateZ(0deg); + -webkit-transform: rotateZ(0deg); + transform: rotateZ(0deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } + + 77.5% { + background: #f86; + -moz-transform: rotateZ(270deg); + -ms-transform: rotateZ(270deg); + -webkit-transform: rotateZ(270deg); + transform: rotateZ(270deg); + } + + 100% { + background: #f86; + -moz-transform: rotateZ(270deg); + -ms-transform: rotateZ(270deg); + -webkit-transform: rotateZ(270deg); + transform: rotateZ(270deg); + -moz-animation-timing-function: step-start; + -webkit-animation-timing-function: step-start; + animation-timing-function: step-start; + } +} diff --git a/front-end/library/styles/normalize.scss b/front-end/library/styles/normalize.scss new file mode 100644 index 0000000..f4c364d --- /dev/null +++ b/front-end/library/styles/normalize.scss @@ -0,0 +1,377 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + margin: 0.67em 0; + font-size: 2em; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + text-decoration: underline dotted; + /* 2 */ + border-bottom: none; + /* 1 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace; + /* 1 */ + font-size: 1em; + /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + margin: 0; + /* 2 */ + font-family: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { + /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { + /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type='button'], +[type='reset'], +[type='submit'] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type='button']::-moz-focus-inner, +[type='reset']::-moz-focus-inner, +[type='submit']::-moz-focus-inner { + padding: 0; + border-style: none; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type='button']:-moz-focusring, +[type='reset']:-moz-focusring, +[type='submit']:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; + /* 1 */ + display: table; + /* 1 */ + max-width: 100%; + /* 1 */ + padding: 0; + /* 3 */ + color: inherit; + /* 2 */ + white-space: normal; + /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type='checkbox'], +[type='radio'] { + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type='number']::-webkit-inner-spin-button, +[type='number']::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type='search'] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type='search']::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + /* 1 */ + font: inherit; + -webkit-appearance: button; + /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +} diff --git a/front-end/library/styles/transition.scss b/front-end/library/styles/transition.scss new file mode 100644 index 0000000..54ec6f9 --- /dev/null +++ b/front-end/library/styles/transition.scss @@ -0,0 +1,39 @@ +/** + * @description vue过渡动画 + */ + +.fade-transform { + &-leave-active, + &-enter-active { + transition: $base-transition; + } + + &-enter, + &-leave-to { + opacity: 0; + } +} + +.no-transform { + &-leave-active, + &-enter-active { + transition: none; + } + + &-enter, + &-leave-to { + opacity: 0; + } +} + +/** + * @description 旋转动画 + */ +@keyframes rotate { + 0% { + transform: rotate(0); + } + 100% { + transform: rotate(360deg); + } +} diff --git a/front-end/library/styles/vab.scss b/front-end/library/styles/vab.scss new file mode 100644 index 0000000..71f222e --- /dev/null +++ b/front-end/library/styles/vab.scss @@ -0,0 +1,633 @@ +/** + * @description 全局样式 + */ +@import 'element-plus/theme-chalk/display.css'; +@import './normalize'; +@import './transition'; + +@mixin base-scrollbar { + &::-webkit-scrollbar { + width: 8px; + height: 8px; + } + + &::-webkit-scrollbar-thumb { + background-color: mix($base-color-white, $base-menu-background, 90%); + border: 3px solid transparent; + border-radius: 7px; + } + + &::-webkit-scrollbar-thumb:hover { + background-color: mix($base-color-white, $base-menu-background, 80%); + } +} + +.vab-layout-header, +[class*='-bar-container'] { + transition: $base-transition; + + * { + transition: $base-transition; + } +} + +html { + + body, + body[class*='vab-theme-'] { + position: relative; + box-sizing: border-box; + height: 100vh; + padding: 0; + overflow: hidden; + font-family: 'PingFang SC', Arial, 'Microsoft YaHei', sans-serif; + font-size: $base-font-size-default; + color: var(--el-color-black); + background: $base-color-background; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + + #app { + height: 100vh; + overflow: auto; + @include base-scrollbar; + + .vab-main { + transition: $base-transition; + + .vab-app-main { + width: 100%; + padding: $base-padding; + overflow: hidden; + transition: $base-transition; + + >section { + background: var(--el-color-white); + transition: $base-transition; + + >[class*='-container'] { + min-height: $base-keep-alive-height; + padding: $base-padding; + background: var(--el-color-white); + transition: $base-transition; + } + } + } + } + } + + * { + box-sizing: border-box; + outline: none !important; + @include base-scrollbar; + } + + [class*='ri-'] { + vertical-align: -3px !important; + } + + .vab-icon { + margin: 0 3px 0 0 !important; + } + + /*a标签 */ + a { + color: var(--el-color-primary); + text-decoration: none; + } + + /*图片 */ + img { + object-fit: cover; + + &[src=''], + &:not([src]) { + opacity: 0; + } + } + + /* vab-fullscreen全屏 */ + .vab-fullscreen { + position: fixed !important; + top: 0 !important; + left: 0 !important; + z-index: $base-z-index + 3 !important; + box-sizing: border-box !important; + width: 100vw !important; + height: 100vh !important; + padding-bottom: 15px !important; + overflow: auto !important; + } + + /* vab-dropdown下拉动画 */ + .vab-dropdown { + transition: $base-transition; + + &-active { + transform: rotateZ(180deg); + } + } + + /* vab-dot圆点动画 */ + .vab-dot { + position: relative; + display: inline-block; + width: 6px; + height: 6px; + margin-right: 3px; + vertical-align: middle; + border-radius: 50%; + + span { + position: absolute; + top: 0; + left: 0; + box-sizing: border-box; + display: block; + width: 100%; + height: 100%; + border-radius: 50%; + animation: vabDot 1.2s ease-in-out infinite; + + @keyframes vabDot { + 0% { + opacity: 0.6; + transform: scale(0.8); + } + + to { + opacity: 0; + transform: scale(2.4); + } + } + } + + &-success { + background: var(--el-color-success); + + span { + background: var(--el-color-success); + } + } + + &-error { + background: var(--el-color-error); + + span { + background: var(--el-color-error); + } + } + } + + /* vab-data-empty占位图 */ + .vab-data-empty { + display: flex; + align-items: center; + justify-content: center; + min-height: 600px; + margin: auto; + } + + /* el-descriptions */ + .el-descriptions { + &__title { + padding-left: 10px; + border-left: 5px solid var(--el-color-primary); + } + } + + /* el-button按钮 */ + .el-button { + border-radius: var(--el-border-radius-base); + + &:hover, + &:focus, + &:active, + &.is-disabled { + background-clip: padding-box; + } + + &.is-round { + border-radius: var(--el-border-radius-round); + } + + &.is-circle { + border-radius: var(--el-border-radius-circle); + } + + [class*='el-icon-']+span, + span+[class*='el-icon-'], + [class*='ri-']+span, + span+[class*='ri-'] { + margin-left: 3px; + } + } + + /* el-tag */ + .el-tag { + border-radius: var(--el-border-radius-base); + + &+.el-tag { + margin-left: 10px; + } + + &--light:not(&--success, &--info, &--warning, &--danger) { + --el-tag-bg-color: var(--el-color-primary-light-9); + --el-tag-border-color: var(--el-color-primary-light-8); + --el-tag-text-color: var(--el-color-primary); + --el-tag-hover-color: var(--el-color-primary); + } + + &--dark:not(&--success, &--info, &--warning, &--danger) { + --el-tag-bg-color: var(--el-color-primary); + --el-tag-border-color: var(--el-color-primary); + --el-tag-hover-color: var(--el-color-primary-2); + } + + &.is-round { + border-radius: var(--el-border-radius-round); + } + } + + /* .el-select-tags */ + .el-select-tags-wrapper { + .el-tag.el-tag { + margin-left: 0px; + } + } + + /* el-select */ + .el-select { + min-width: 115px; + } + + a+a, + /* span + span, */ + a+.el-button, + .el-button+a { + margin-left: 10px; + } + + .el-drawer__wrapper { + outline: none !important; + + * { + outline: none !important; + } + } + + /* el-overlay遮罩 */ + .el-overlay { + background-color: rgba(0, 0, 0, 0.1); + backdrop-filter: blur(3px); + } + + /* el-image-viewer遮罩 */ + .el-image-viewer__mask { + background-color: rgba(0, 0, 0, 0.1); + backdrop-filter: blur(3px); + } + + /* v-modal遮罩 */ + .v-modal { + z-index: $base-z-index; + background-color: rgba(0, 0, 0, 0.5); + opacity: 0.6; + //backdrop-filter: blur(10px); + } + + /* el-loading-mask遮罩 */ + .el-loading-mask { + z-index: $base-z-index - 10 !important; + + &.is-fullscreen { + z-index: $base-z-index + 99 !important; + } + } + + /* el-scrollbar滚动条 */ + .el-scrollbar { + height: 100%; + + &__bar { + z-index: 999; + } + + &__thumb { + background-color: mix($base-color-white, + $base-menu-background, + 90%); + + &:hover { + background-color: mix($base-color-white, + $base-menu-background, + 80%); + } + } + } + + /* el-form表单 */ + .el-form--label-top { + .el-form-item__label { + padding: 0; + } + } + + .el-form-item__label { + padding: 0 10px 0 0; + } + + .el-range-editor--small { + + .el-range__icon, + .el-range__close-icon { + line-height: 23.5px; + } + } + + /* el-badge */ + .el-badge__content { + border: 0; + } + + /* .el-page-header */ + .el-page-header { + margin: 0 0 $base-margin 0; + } + + /* el-alert */ + .el-alert { + margin: 0 0 $base-margin 0; + + &__closebtn { + position: absolute !important; + } + + &--success.is-light { + color: var(--el-color-success); + background-color: var(--el-color-success-lighter); + border: 1px solid var(--el-color-success); + + i { + color: var(--el-color-success); + } + } + + &--info.is-light { + color: var(--el-color-primary); + background-color: var(--el-color-primary-light-9); + border: 1px solid var(--el-color-primary); + + i { + color: var(--el-color-primary); + } + } + + &--warning.is-light { + color: var(--el-color-warning); + background-color: var(--el-color-warning-lighter); + border: 1px solid var(--el-color-warning); + + i { + color: var(--el-color-warning); + } + } + + &--error.is-light { + color: var(--el-color-error); + background-color: var(--el-color-error-lighter); + border: 1px solid var(--el-color-error); + + i { + color: var(--el-color-error); + } + } + } + + /* el-divider间隔线 */ + .el-divider--horizontal { + margin: 8px 0 $base-margin + 8px 0; + + .el-divider__text { + display: -webkit-box; + overflow: hidden; + text-overflow: ellipsis; + -webkit-line-clamp: 1; + -webkit-box-orient: vertical; + } + } + + /* nprogress进度条 */ + #nprogress { + position: fixed; + z-index: $base-z-index + 3; + + .bar { + background: var(--el-color-primary); + } + + .peg { + box-shadow: + 0 0 10px var(--el-color-primary), + 0 0 5px var(--el-color-primary); + } + } + + /* el-table表格 */ + .el-table { + .el-table__body-wrapper { + @include base-scrollbar; + } + + th { + background: #f5f7fa !important; + } + + td, + th { + position: relative; + box-sizing: border-box; + + .cell { + font-size: $base-font-size-default; + font-weight: normal; + color: #606266; + + .el-image { + width: 50px; + height: 50px; + border-radius: $base-border-radius; + } + } + } + } + + /* el-pagination分页 */ + .el-pagination { + justify-content: center; + margin: $base-margin 0 0 0; + font-weight: normal; + color: var(--el-color-black); + } + + /* el-menu菜单开始 */ + .el-menu, + .vab-column-grid { + user-select: none; + + /* plus处理图标间距 */ + div, + li, + span { + i+span { + margin-left: 3px; + } + } + + &.vab-column-grid-card, + &.vab-column-grid-vertical { + div { + i+span { + margin-left: 0; + } + } + } + } + + .el-dialog__body { + padding-right: 30px; + } + + /* el-dialog、el-message-box、el-popover、el-button、el-tag */ + @media (max-width: 576px) { + + .el-dialog, + .el-message-box, + .el-popover.el-popper { + width: 95% !important; + } + + + .el-button { + margin-bottom: 10px; + } + } + + /* el-card卡片 */ + .el-card { + margin-bottom: $base-margin; + border-radius: var(--el-border-radius-base); + + &__header { + position: relative; + + .card-header-tag { + position: absolute; + top: 15px; + right: 20px; + } + } + + &__body { + padding: $base-padding; + } + } + + /* .vab-hey-message */ + .vab-hey-message { + @mixin vab-hey-message { + padding: 15px; + background-color: var(--el-color-white); + border-color: var(--el-color-white); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15); + + .el-message__content { + padding-right: $base-padding; + color: #34495e; + } + + .el-icon-close { + color: #34495e; + + &:hover { + opacity: 0.8; + } + } + } + + &-info { + @include vab-hey-message; + + i { + color: $base-color-grey; + } + } + + &-success { + @include vab-hey-message; + + i { + color: var(--el-color-success); + } + } + + &-warning { + @include vab-hey-message; + + i { + color: var(--el-color-warning); + } + } + + &-error { + @include vab-hey-message; + + i { + color: var(--el-color-error); + } + } + } + + /* vab-table-expand */ + .vab-table-expand { + padding: $base-padding; + line-height: 30px; + + &-title { + display: inline-block; + width: 80px; + font-weight: bold; + } + } + + :not(.no-background-container).auto-height-container { + display: flex; + flex-direction: column; + height: var(--el-container-height); + + .el-table { + flex: 1; + } + + .el-scrollbar { + //margin-right: -20px; + + .vab-auto-box { + flex: 1; + width: 100%; + padding: 0 var(--el-padding) 0 0; + } + } + + @media (max-width: 1024px) { + height: auto; + } + } + + + .el-card__body { + overflow: hidden; + flex: none; + } + } +} \ No newline at end of file diff --git a/front-end/library/styles/variables/vab-blue-variables.module.scss b/front-end/library/styles/variables/vab-blue-variables.module.scss new file mode 100644 index 0000000..3ac22ee --- /dev/null +++ b/front-end/library/styles/variables/vab-blue-variables.module.scss @@ -0,0 +1,43 @@ +$base-color-primary: #1890ff; +$base-color-success: #13ce66; +$base-color-warning: #ffba00; +$base-color-danger: #ff4d4f; +$base-color-error: #ff4d4f; +$base-color-transition: #77e19d; + +:export { + vab-color-grey: $base-color-grey; + vab-color-black: $base-color-black; + vab-color-primary: $base-color-primary; + vab-color-primary-light-1: mix($base-color-white, $base-color-primary, 10%); + vab-color-primary-light-2: mix($base-color-white, $base-color-primary, 20%); + vab-color-primary-light-3: mix($base-color-white, $base-color-primary, 30%); + vab-color-primary-light-4: mix($base-color-white, $base-color-primary, 40%); + vab-color-primary-light-5: mix($base-color-white, $base-color-primary, 50%); + vab-color-primary-light-6: mix($base-color-white, $base-color-primary, 60%); + vab-color-primary-light-7: mix($base-color-white, $base-color-primary, 70%); + vab-color-primary-light-8: mix($base-color-white, $base-color-primary, 80%); + vab-color-primary-light-9: mix($base-color-white, $base-color-primary, 90%); + vab-color-success: $base-color-success; + vab-color-success-light: mix($base-color-white, $base-color-success, 80%); + vab-color-success-lighter: mix($base-color-white, $base-color-success, 90%); + vab-color-warning: $base-color-warning; + vab-color-warning-light: mix($base-color-white, $base-color-warning, 80%); + vab-color-warning-lighter: mix($base-color-white, $base-color-warning, 90%); + vab-color-danger: $base-color-danger; + vab-color-danger-light: mix($base-color-white, $base-color-danger, 80%); + vab-color-danger-lighter: mix($base-color-white, $base-color-danger, 90%); + vab-color-error: $base-color-error; + vab-color-error-light: mix($base-color-white, $base-color-error, 80%); + vab-color-error-lighter: mix($base-color-white, $base-color-error, 90%); + vab-color-info: $base-color-text-secondary; + vab-color-info-light: mix($base-color-white, + $base-color-text-secondary, + 80%); + vab-color-info-lighter: mix($base-color-white, + $base-color-text-secondary, + 90%); + vab-border-radius-base: 5px; + vab-color-transition: $base-color-transition; + vab-left-menu-width: $base-left-menu-width; +} \ No newline at end of file diff --git a/front-end/library/styles/variables/vab-green-variables.module.scss b/front-end/library/styles/variables/vab-green-variables.module.scss new file mode 100644 index 0000000..dae104d --- /dev/null +++ b/front-end/library/styles/variables/vab-green-variables.module.scss @@ -0,0 +1,43 @@ +$base-color-primary: #41b584; +$base-color-success: #13ce66; +$base-color-warning: #ffba00; +$base-color-danger: #ff4d4f; +$base-color-error: #ff4d4f; +$base-color-transition: #1890ff; + +:export { + vab-color-grey: $base-color-grey; + vab-color-black: $base-color-black; + vab-color-primary: $base-color-primary; + vab-color-primary-light-1: mix($base-color-white, $base-color-primary, 10%); + vab-color-primary-light-2: mix($base-color-white, $base-color-primary, 20%); + vab-color-primary-light-3: mix($base-color-white, $base-color-primary, 30%); + vab-color-primary-light-4: mix($base-color-white, $base-color-primary, 40%); + vab-color-primary-light-5: mix($base-color-white, $base-color-primary, 50%); + vab-color-primary-light-6: mix($base-color-white, $base-color-primary, 60%); + vab-color-primary-light-7: mix($base-color-white, $base-color-primary, 70%); + vab-color-primary-light-8: mix($base-color-white, $base-color-primary, 80%); + vab-color-primary-light-9: mix($base-color-white, $base-color-primary, 90%); + vab-color-success: $base-color-success; + vab-color-success-light: mix($base-color-white, $base-color-success, 80%); + vab-color-success-lighter: mix($base-color-white, $base-color-success, 90%); + vab-color-warning: $base-color-warning; + vab-color-warning-light: mix($base-color-white, $base-color-warning, 80%); + vab-color-warning-lighter: mix($base-color-white, $base-color-warning, 90%); + vab-color-danger: $base-color-danger; + vab-color-danger-light: mix($base-color-white, $base-color-danger, 80%); + vab-color-danger-lighter: mix($base-color-white, $base-color-danger, 90%); + vab-color-error: $base-color-error; + vab-color-error-light: mix($base-color-white, $base-color-error, 80%); + vab-color-error-lighter: mix($base-color-white, $base-color-error, 90%); + vab-color-info: $base-color-text-secondary; + vab-color-info-light: mix($base-color-white, + $base-color-text-secondary, + 80%); + vab-color-info-lighter: mix($base-color-white, + $base-color-text-secondary, + 90%); + vab-border-radius-base: 5px; + vab-color-transition: $base-color-transition; + vab-left-menu-width: $base-left-menu-width; +} \ No newline at end of file diff --git a/front-end/library/styles/variables/vab-purple-variables.module.scss b/front-end/library/styles/variables/vab-purple-variables.module.scss new file mode 100644 index 0000000..c368464 --- /dev/null +++ b/front-end/library/styles/variables/vab-purple-variables.module.scss @@ -0,0 +1,43 @@ +$base-color-primary: #6954f0; +$base-color-success: #13ce66; +$base-color-warning: #ffba00; +$base-color-danger: #ff4d4f; +$base-color-error: #ff4d4f; +$base-color-transition: #1890ff; + +:export { + vab-color-grey: $base-color-grey; + vab-color-black: $base-color-black; + vab-color-primary: $base-color-primary; + vab-color-primary-light-1: mix($base-color-white, $base-color-primary, 10%); + vab-color-primary-light-2: mix($base-color-white, $base-color-primary, 20%); + vab-color-primary-light-3: mix($base-color-white, $base-color-primary, 30%); + vab-color-primary-light-4: mix($base-color-white, $base-color-primary, 40%); + vab-color-primary-light-5: mix($base-color-white, $base-color-primary, 50%); + vab-color-primary-light-6: mix($base-color-white, $base-color-primary, 60%); + vab-color-primary-light-7: mix($base-color-white, $base-color-primary, 70%); + vab-color-primary-light-8: mix($base-color-white, $base-color-primary, 80%); + vab-color-primary-light-9: mix($base-color-white, $base-color-primary, 90%); + vab-color-success: $base-color-success; + vab-color-success-light: mix($base-color-white, $base-color-success, 80%); + vab-color-success-lighter: mix($base-color-white, $base-color-success, 90%); + vab-color-warning: $base-color-warning; + vab-color-warning-light: mix($base-color-white, $base-color-warning, 80%); + vab-color-warning-lighter: mix($base-color-white, $base-color-warning, 90%); + vab-color-danger: $base-color-danger; + vab-color-danger-light: mix($base-color-white, $base-color-danger, 80%); + vab-color-danger-lighter: mix($base-color-white, $base-color-danger, 90%); + vab-color-error: $base-color-error; + vab-color-error-light: mix($base-color-white, $base-color-error, 80%); + vab-color-error-lighter: mix($base-color-white, $base-color-error, 90%); + vab-color-info: $base-color-text-secondary; + vab-color-info-light: mix($base-color-white, + $base-color-text-secondary, + 80%); + vab-color-info-lighter: mix($base-color-white, + $base-color-text-secondary, + 90%); + vab-border-radius-base: 5px; + vab-color-transition: $base-color-transition; + vab-left-menu-width: $base-left-menu-width; +} \ No newline at end of file diff --git a/front-end/library/styles/variables/vab-red-variables.module.scss b/front-end/library/styles/variables/vab-red-variables.module.scss new file mode 100644 index 0000000..09bcdd5 --- /dev/null +++ b/front-end/library/styles/variables/vab-red-variables.module.scss @@ -0,0 +1,43 @@ +$base-color-primary: #f34d37; +$base-color-success: #13ce66; +$base-color-warning: #ffba00; +$base-color-danger: #ff4d4f; +$base-color-error: #ff4d4f; +$base-color-transition: #ffa194; + +:export { + vab-color-grey: $base-color-grey; + vab-color-black: $base-color-black; + vab-color-primary: $base-color-primary; + vab-color-primary-light-1: mix($base-color-white, $base-color-primary, 10%); + vab-color-primary-light-2: mix($base-color-white, $base-color-primary, 20%); + vab-color-primary-light-3: mix($base-color-white, $base-color-primary, 30%); + vab-color-primary-light-4: mix($base-color-white, $base-color-primary, 40%); + vab-color-primary-light-5: mix($base-color-white, $base-color-primary, 50%); + vab-color-primary-light-6: mix($base-color-white, $base-color-primary, 60%); + vab-color-primary-light-7: mix($base-color-white, $base-color-primary, 70%); + vab-color-primary-light-8: mix($base-color-white, $base-color-primary, 80%); + vab-color-primary-light-9: mix($base-color-white, $base-color-primary, 90%); + vab-color-success: $base-color-success; + vab-color-success-light: mix($base-color-white, $base-color-success, 80%); + vab-color-success-lighter: mix($base-color-white, $base-color-success, 90%); + vab-color-warning: $base-color-warning; + vab-color-warning-light: mix($base-color-white, $base-color-warning, 80%); + vab-color-warning-lighter: mix($base-color-white, $base-color-warning, 90%); + vab-color-danger: $base-color-danger; + vab-color-danger-light: mix($base-color-white, $base-color-danger, 80%); + vab-color-danger-lighter: mix($base-color-white, $base-color-danger, 90%); + vab-color-error: $base-color-error; + vab-color-error-light: mix($base-color-white, $base-color-error, 80%); + vab-color-error-lighter: mix($base-color-white, $base-color-error, 90%); + vab-color-info: $base-color-text-secondary; + vab-color-info-light: mix($base-color-white, + $base-color-text-secondary, + 80%); + vab-color-info-lighter: mix($base-color-white, + $base-color-text-secondary, + 90%); + vab-border-radius-base: 5px; + vab-color-transition: $base-color-transition; + vab-left-menu-width: $base-left-menu-width; +} \ No newline at end of file diff --git a/front-end/library/styles/variables/variables.module.scss b/front-end/library/styles/variables/variables.module.scss new file mode 100644 index 0000000..29d1ed3 --- /dev/null +++ b/front-end/library/styles/variables/variables.module.scss @@ -0,0 +1,109 @@ +/** + * @description 全局主题变量配置 + */ +//颜色配置 +$base-color-white: #ffffff; +$base-color-black: #515a6e; +$base-color-primary: #1890ff; +$base-color-success: #13ce66; +$base-color-warning: #ffba00; +$base-color-danger: #ff6700; +$base-color-error: #ff4d4f; +$base-color-grey: rgba(0, 0, 0, 0.65); +$base-color-background: #f6f8f9; + +$base-color-text-primary: #303133; +$base-color-text-regular: #606266; +$base-color-text-secondary: #909399; +$base-color-text-placeholder: #c0c4cc; +$base-border-color-base: #dcdfe6; +$base-border-color-light: #e4e7ed; +$base-border-color-lighter: #ebeef5; +$base-border-color-extra-light: #f2f6fc; +$base-background-color-base: #f5f7fa; + +//默认层级 +$base-z-index: 1999; +//分栏最左侧菜单背景色 +$base-column-first-menu-background: #282c34; +//分栏菜单背景色 +$base-column-second-menu-background: #fff; +//分栏菜单选中背景色 +$base-column-second-menu-active: mix($base-color-white, + $base-color-primary, + 10%); +//横向、纵向菜单背景色 +$base-menu-background: #282c34; +//菜单文字颜色 +$base-menu-color: hsla(0, 0%, 100%, 0.95); +//菜单选中文字颜色 +$base-menu-color-active: hsla(0, 0%, 100%, 0.95); +//菜单选中背景色 +$base-menu-active: $base-color-primary; +//标题颜色 +$base-title-color: #fff; +//字体大小配置 +$base-font-size-small: 12px; +$base-font-size-default: 14px; +$base-font-size-big: 16px; +$base-font-size-bigger: 18px; +$base-font-size-max: 22px; +//最大宽度 +$base-main-width: 1279px; +//圆角 +$base-border-radius: 5px; +//边框颜色 +$base-border-color: #dcdfe6; +//输入框高度 +$base-input-height: 32px; +//默认margin +$base-margin: 20px; +//默认padding +$base-padding: 20px; +//默认阴影 +$base-box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08); +//横向top-bar、logo、一级菜单的高度 +$base-header-height: 60px; +//纵向、综合、分栏logo的高度 +$base-logo-height: 60px; +//顶部nav-bar的高度 +$base-nav-height: 60px; +//顶部标签页tabs-bar的高度 +$base-tabs-height: 50px; +//顶部标签页tabs-bar中每一个item的高度 +$base-tag-item-height: 34px; +//菜单li标签的高度 +$base-menu-item-height: 50px; +//app-main的高度 +$base-keep-alive-height: calc(100vh - #{$base-nav-height} - #{$base-tabs-height} - #{$base-padding} * 2 - 55px); +//纵向左侧导航未折叠的宽度 +$base-left-menu-width: 266px; +//纵向左侧导航已折叠的宽度 +$base-left-menu-width-min: 64px; +//纵向左侧导航已折叠右侧内容的宽度 +$base-right-content-width-min: calc(100% - #{$base-left-menu-width-min}); +//默认动画 +$base-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), + border 0s, + color 0.1s, + font-size 0s; + +:export { + // 菜单文字颜色变量导出 + menu-color: $base-menu-color; + // 菜单选中文字颜色变量导出 + menu-color-active: $base-menu-color-active; + // 菜单背景色变量导出 + menu-background: $base-menu-background; + // 分栏菜单背景色变量导出 + column-second-menu-background: $base-column-second-menu-background; + // 导出圆角 + vab-border-radius: $base-border-radius; +} + +:root { + --el-container-height: #{$base-keep-alive-height}; + --el-margin: #{$base-margin}; + --el-padding: #{$base-padding}; + --el-border-radius-base: #{$base-border-radius} !important; +} \ No newline at end of file diff --git a/front-end/mail.txt b/front-end/mail.txt new file mode 100644 index 0000000..dce9ce7 --- /dev/null +++ b/front-end/mail.txt @@ -0,0 +1,101 @@ +绑定主体: +是否需要电子发票(必填):需要 + +公司名称(用于公司必填):宝来威科技(惠州)有限公司 + +税号(用于公司必填,请勿保留空格):91441381MAD64QAX2H + +发票接收邮箱(必填):momo@inhaos.com + +采购人姓名(必填):文祚平 + +联系电话(必填,需能接收验证码):13509214696 + +金额:799 + +付款方式(必填):支付宝 + +码云用户名:inhaosMomoWen + +github用户名(请使用不涉及离职的github,不支持免费换绑,必填):MomoWen + +github登录邮箱(不支持换绑,必填):momo@inhaos.com + +微信号(不支持换绑,必填):Momo13509214696 + +群要绑定的qq(用于问题讨论,不支持免费换绑,必填):450481891 + + +买方承诺:以上信息真实有效,如提供虚假内容或恶意将付费源码分享至第三方,著作权人有权收回框架更新权限。 + + + + + +源码仓库邀请链接(需三日内同意): + + + +https://github.com/zxwk2024/admin-plus/invitations + + +开发进度Follow(点击Follow实时跟进开发进程) + +https://github.com/zxwk1998 + + +文档: +群讨论时间:工作日10点-16点,pro版本plus版本以及开源版文档,文档地址或密码如果变更请查看群公告: +https://vuejs-core.cn/admin-book-2025 +文档密码:Vabdbsqj +浏览器拷贝源码密码是vabp + + +新建.env.local文件拷贝以下内容(详见文档): +VUE_APP_SECRET_KEY=HKK0LuN3MYbYixeDXgXbfVMOMeeZ+iHc/qLcFbNeOr24uPX3FvqFLAWlZ/waoWqHw7qq6E0UNvaPEWC7U5YPQk9XUERUMI8CK+yu50CiFqBkW0uCanJzXDYaBEdDqwkgSWxLNO0j36+kGiBMyfwMU/gLhs1i0JYvtw4Z4NYV3YLvrHyYdQmSglsQp/Zi4HkkdIVwFNAwrXbSKuldaUZHt/D0rQ+Kj7wrsnOFxXHTPKIMvPDTaBXzne3J/ASOTV3J6XiG+1RkUxNbT70A17xiBeKoNk+dFM2LPEbHQJmZvIBse0fohlRM4xo8z32vsDSTJtHOZ3WW7oIMmfzF/gXARQ== + +注意事项: + +关于部分mac电脑上显示权限过高 .开头的文件无法正常显示 导致无法运行项目的问题,请参照一些方案 +第一种方法是在finder中按下command+shift+.键。 +第二种方法是在命令行输入如下命令 +defaults write com.apple.Finder AppleShowAllFiles YES + +pro和plus无项目限制(但仅限用于自己公司和团队,公司使用请提供公司名称,请勿用于任何形式的开源项目,外包项目不可提供框架源码,打包后的可以,如果必须提供需买方购买pro)VIP群内请文明交流 ,共同进步,由于加入到了团队成员且框架更新频率较高,如果您不想接收到邮件推送可以在github右上角watch选择not watching,admin pro、admin plus、shop vite已申请软著,不要将源码放到github或码云public仓库,一经发现取消使用资格,恶意分享造成损失或源码泄露需承担相应的法律责任,一定注意开发时请先阅读文档。 + +记得看下文档开发工具配置 常见问题 打包注意事项 图片压缩插件需要cnpm安装 文档有写 我们也承接定制外包服务 如后期有需要欢迎联系我们 + +购买地址: +https://vuejs-core.cn/authorization/ + +建议: + +- 1.使用前请一定先阅读 vip 群文档,一般在群公告前 5 条 +- 2.如果您经过翻阅文档、百度后努力尝试仍无法解决问题,可通过 vip 群寻求帮助,讨论时间法定工作日 14 点-16 点 +- 3.对于热心回答群内其他成员问题的用户,所提建议将优先被采纳,并可获得部分内测版本体验资格 + +约定: +详见购买页底部或右侧,著作权人享有最终解释权: +https://vuejs-core.cn/authorization/shop-vite.html +https://vuejs-core.cn/authorization/index.html + +关于举报: +1、盗版举报:请发送举报材料至1204505056@qq.com,一经查实,官司所得收入20%归举报人所有,80%归律师事务所所有。 +2、管理员、群内成员不正当言论举报:发送举报材料至1204505056@qq.com即可 + +写在最后: +祝您工作顺利,生活愉快 + + + + + + + + + + + + + + diff --git a/front-end/mock/controller/area.js b/front-end/mock/controller/area.js new file mode 100644 index 0000000..d816fc0 --- /dev/null +++ b/front-end/mock/controller/area.js @@ -0,0 +1,13693 @@ +const list = [ + { + name: '北京市', + code: '110000', + region: 'north', + provinceLevelCity: true, + children: [ + { + name: '市辖区', + code: '110100', + children: [ + { + name: '东城区', + code: '110101', + }, + { + name: '西城区', + code: '110102', + }, + { + name: '朝阳区', + code: '110105', + }, + { + name: '丰台区', + code: '110106', + }, + { + name: '石景山区', + code: '110107', + }, + { + name: '海淀区', + code: '110108', + }, + { + name: '门头沟区', + code: '110109', + }, + { + name: '房山区', + code: '110111', + }, + { + name: '通州区', + code: '110112', + }, + { + name: '顺义区', + code: '110113', + }, + { + name: '昌平区', + code: '110114', + }, + { + name: '大兴区', + code: '110115', + }, + { + name: '怀柔区', + code: '110116', + }, + { + name: '平谷区', + code: '110117', + }, + { + name: '密云区', + code: '110118', + }, + { + name: '延庆区', + code: '110119', + }, + ], + }, + ], + }, + { + name: '天津市', + code: '120000', + region: 'north', + provinceLevelCity: true, + children: [ + { + name: '市辖区', + code: '120100', + children: [ + { + name: '和平区', + code: '120101', + }, + { + name: '河东区', + code: '120102', + }, + { + name: '河西区', + code: '120103', + }, + { + name: '南开区', + code: '120104', + }, + { + name: '河北区', + code: '120105', + }, + { + name: '红桥区', + code: '120106', + }, + { + name: '东丽区', + code: '120110', + }, + { + name: '西青区', + code: '120111', + }, + { + name: '津南区', + code: '120112', + }, + { + name: '北辰区', + code: '120113', + }, + { + name: '武清区', + code: '120114', + }, + { + name: '宝坻区', + code: '120115', + }, + { + name: '滨海新区', + code: '120116', + }, + { + name: '宁河区', + code: '120117', + }, + { + name: '静海区', + code: '120118', + }, + { + name: '蓟州区', + code: '120119', + }, + ], + }, + ], + }, + { + name: '河北省', + code: '130000', + region: 'north', + children: [ + { + name: '石家庄市', + code: '130100', + children: [ + { + name: '长安区', + code: '130102', + }, + { + name: '桥西区', + code: '130104', + }, + { + name: '新华区', + code: '130105', + }, + { + name: '井陉矿区', + code: '130107', + }, + { + name: '裕华区', + code: '130108', + }, + { + name: '藁城区', + code: '130109', + }, + { + name: '鹿泉区', + code: '130110', + }, + { + name: '栾城区', + code: '130111', + }, + { + name: '井陉县', + code: '130121', + }, + { + name: '正定县', + code: '130123', + }, + { + name: '行唐县', + code: '130125', + }, + { + name: '灵寿县', + code: '130126', + }, + { + name: '高邑县', + code: '130127', + }, + { + name: '深泽县', + code: '130128', + }, + { + name: '赞皇县', + code: '130129', + }, + { + name: '无极县', + code: '130130', + }, + { + name: '平山县', + code: '130131', + }, + { + name: '元氏县', + code: '130132', + }, + { + name: '赵县', + code: '130133', + }, + { + name: '辛集市', + code: '130181', + }, + { + name: '晋州市', + code: '130183', + }, + { + name: '新乐市', + code: '130184', + }, + ], + }, + { + name: '唐山市', + code: '130200', + children: [ + { + name: '路南区', + code: '130202', + }, + { + name: '路北区', + code: '130203', + }, + { + name: '古冶区', + code: '130204', + }, + { + name: '开平区', + code: '130205', + }, + { + name: '丰南区', + code: '130207', + }, + { + name: '丰润区', + code: '130208', + }, + { + name: '曹妃甸区', + code: '130209', + }, + { + name: '滦南县', + code: '130224', + }, + { + name: '乐亭县', + code: '130225', + }, + { + name: '迁西县', + code: '130227', + }, + { + name: '玉田县', + code: '130229', + }, + { + name: '遵化市', + code: '130281', + }, + { + name: '迁安市', + code: '130283', + }, + { + name: '滦州市', + code: '130284', + }, + ], + }, + { + name: '秦皇岛市', + code: '130300', + children: [ + { + name: '海港区', + code: '130302', + }, + { + name: '山海关区', + code: '130303', + }, + { + name: '北戴河区', + code: '130304', + }, + { + name: '抚宁区', + code: '130306', + }, + { + name: '青龙满族自治县', + code: '130321', + }, + { + name: '昌黎县', + code: '130322', + }, + { + name: '卢龙县', + code: '130324', + }, + ], + }, + { + name: '邯郸市', + code: '130400', + children: [ + { + name: '邯山区', + code: '130402', + }, + { + name: '丛台区', + code: '130403', + }, + { + name: '复兴区', + code: '130404', + }, + { + name: '峰峰矿区', + code: '130406', + }, + { + name: '肥乡区', + code: '130407', + }, + { + name: '永年区', + code: '130408', + }, + { + name: '临漳县', + code: '130423', + }, + { + name: '成安县', + code: '130424', + }, + { + name: '大名县', + code: '130425', + }, + { + name: '涉县', + code: '130426', + }, + { + name: '磁县', + code: '130427', + }, + { + name: '邱县', + code: '130430', + }, + { + name: '鸡泽县', + code: '130431', + }, + { + name: '广平县', + code: '130432', + }, + { + name: '馆陶县', + code: '130433', + }, + { + name: '魏县', + code: '130434', + }, + { + name: '曲周县', + code: '130435', + }, + { + name: '武安市', + code: '130481', + }, + ], + }, + { + name: '邢台市', + code: '130500', + children: [ + { + name: '桥东区', + code: '130502', + }, + { + name: '桥西区', + code: '130503', + }, + { + name: '邢台县', + code: '130521', + }, + { + name: '临城县', + code: '130522', + }, + { + name: '内丘县', + code: '130523', + }, + { + name: '柏乡县', + code: '130524', + }, + { + name: '隆尧县', + code: '130525', + }, + { + name: '任县', + code: '130526', + }, + { + name: '南和县', + code: '130527', + }, + { + name: '宁晋县', + code: '130528', + }, + { + name: '巨鹿县', + code: '130529', + }, + { + name: '新河县', + code: '130530', + }, + { + name: '广宗县', + code: '130531', + }, + { + name: '平乡县', + code: '130532', + }, + { + name: '威县', + code: '130533', + }, + { + name: '清河县', + code: '130534', + }, + { + name: '临西县', + code: '130535', + }, + { + name: '南宫市', + code: '130581', + }, + { + name: '沙河市', + code: '130582', + }, + ], + }, + { + name: '保定市', + code: '130600', + children: [ + { + name: '竞秀区', + code: '130602', + }, + { + name: '莲池区', + code: '130606', + }, + { + name: '满城区', + code: '130607', + }, + { + name: '清苑区', + code: '130608', + }, + { + name: '徐水区', + code: '130609', + }, + { + name: '涞水县', + code: '130623', + }, + { + name: '阜平县', + code: '130624', + }, + { + name: '定兴县', + code: '130626', + }, + { + name: '唐县', + code: '130627', + }, + { + name: '高阳县', + code: '130628', + }, + { + name: '容城县', + code: '130629', + }, + { + name: '涞源县', + code: '130630', + }, + { + name: '望都县', + code: '130631', + }, + { + name: '安新县', + code: '130632', + }, + { + name: '易县', + code: '130633', + }, + { + name: '曲阳县', + code: '130634', + }, + { + name: '蠡县', + code: '130635', + }, + { + name: '顺平县', + code: '130636', + }, + { + name: '博野县', + code: '130637', + }, + { + name: '雄县', + code: '130638', + }, + { + name: '涿州市', + code: '130681', + }, + { + name: '定州市', + code: '130682', + }, + { + name: '安国市', + code: '130683', + }, + { + name: '高碑店市', + code: '130684', + }, + ], + }, + { + name: '张家口市', + code: '130700', + children: [ + { + name: '桥东区', + code: '130702', + }, + { + name: '桥西区', + code: '130703', + }, + { + name: '宣化区', + code: '130705', + }, + { + name: '下花园区', + code: '130706', + }, + { + name: '万全区', + code: '130708', + }, + { + name: '崇礼区', + code: '130709', + }, + { + name: '张北县', + code: '130722', + }, + { + name: '康保县', + code: '130723', + }, + { + name: '沽源县', + code: '130724', + }, + { + name: '尚义县', + code: '130725', + }, + { + name: '蔚县', + code: '130726', + }, + { + name: '阳原县', + code: '130727', + }, + { + name: '怀安县', + code: '130728', + }, + { + name: '怀来县', + code: '130730', + }, + { + name: '涿鹿县', + code: '130731', + }, + { + name: '赤城县', + code: '130732', + }, + ], + }, + { + name: '承德市', + code: '130800', + children: [ + { + name: '双桥区', + code: '130802', + }, + { + name: '双滦区', + code: '130803', + }, + { + name: '鹰手营子矿区', + code: '130804', + }, + { + name: '承德县', + code: '130821', + }, + { + name: '兴隆县', + code: '130822', + }, + { + name: '滦平县', + code: '130824', + }, + { + name: '隆化县', + code: '130825', + }, + { + name: '丰宁满族自治县', + code: '130826', + }, + { + name: '宽城满族自治县', + code: '130827', + }, + { + name: '围场满族蒙古族自治县', + code: '130828', + }, + { + name: '平泉市', + code: '130881', + }, + ], + }, + { + name: '沧州市', + code: '130900', + children: [ + { + name: '新华区', + code: '130902', + }, + { + name: '运河区', + code: '130903', + }, + { + name: '沧县', + code: '130921', + }, + { + name: '青县', + code: '130922', + }, + { + name: '东光县', + code: '130923', + }, + { + name: '海兴县', + code: '130924', + }, + { + name: '盐山县', + code: '130925', + }, + { + name: '肃宁县', + code: '130926', + }, + { + name: '南皮县', + code: '130927', + }, + { + name: '吴桥县', + code: '130928', + }, + { + name: '献县', + code: '130929', + }, + { + name: '孟村回族自治县', + code: '130930', + }, + { + name: '泊头市', + code: '130981', + }, + { + name: '任丘市', + code: '130982', + }, + { + name: '黄骅市', + code: '130983', + }, + { + name: '河间市', + code: '130984', + }, + ], + }, + { + name: '廊坊市', + code: '131000', + children: [ + { + name: '安次区', + code: '131002', + }, + { + name: '广阳区', + code: '131003', + }, + { + name: '固安县', + code: '131022', + }, + { + name: '永清县', + code: '131023', + }, + { + name: '香河县', + code: '131024', + }, + { + name: '大城县', + code: '131025', + }, + { + name: '文安县', + code: '131026', + }, + { + name: '大厂回族自治县', + code: '131028', + }, + { + name: '霸州市', + code: '131081', + }, + { + name: '三河市', + code: '131082', + }, + ], + }, + { + name: '衡水市', + code: '131100', + children: [ + { + name: '桃城区', + code: '131102', + }, + { + name: '冀州区', + code: '131103', + }, + { + name: '枣强县', + code: '131121', + }, + { + name: '武邑县', + code: '131122', + }, + { + name: '武强县', + code: '131123', + }, + { + name: '饶阳县', + code: '131124', + }, + { + name: '安平县', + code: '131125', + }, + { + name: '故城县', + code: '131126', + }, + { + name: '景县', + code: '131127', + }, + { + name: '阜城县', + code: '131128', + }, + { + name: '深州市', + code: '131182', + }, + ], + }, + ], + }, + { + name: '山西省', + code: '140000', + region: 'north', + children: [ + { + name: '太原市', + code: '140100', + children: [ + { + name: '小店区', + code: '140105', + }, + { + name: '迎泽区', + code: '140106', + }, + { + name: '杏花岭区', + code: '140107', + }, + { + name: '尖草坪区', + code: '140108', + }, + { + name: '万柏林区', + code: '140109', + }, + { + name: '晋源区', + code: '140110', + }, + { + name: '清徐县', + code: '140121', + }, + { + name: '阳曲县', + code: '140122', + }, + { + name: '娄烦县', + code: '140123', + }, + { + name: '古交市', + code: '140181', + }, + ], + }, + { + name: '大同市', + code: '140200', + children: [ + { + name: '新荣区', + code: '140212', + }, + { + name: '平城区', + code: '140213', + }, + { + name: '云冈区', + code: '140214', + }, + { + name: '云州区', + code: '140215', + }, + { + name: '阳高县', + code: '140221', + }, + { + name: '天镇县', + code: '140222', + }, + { + name: '广灵县', + code: '140223', + }, + { + name: '灵丘县', + code: '140224', + }, + { + name: '浑源县', + code: '140225', + }, + { + name: '左云县', + code: '140226', + }, + ], + }, + { + name: '阳泉市', + code: '140300', + children: [ + { + name: '城区', + code: '140302', + }, + { + name: '矿区', + code: '140303', + }, + { + name: '郊区', + code: '140311', + }, + { + name: '平定县', + code: '140321', + }, + { + name: '盂县', + code: '140322', + }, + ], + }, + { + name: '长治市', + code: '140400', + children: [ + { + name: '潞州区', + code: '140403', + }, + { + name: '上党区', + code: '140404', + }, + { + name: '屯留区', + code: '140405', + }, + { + name: '潞城区', + code: '140406', + }, + { + name: '襄垣县', + code: '140423', + }, + { + name: '平顺县', + code: '140425', + }, + { + name: '黎城县', + code: '140426', + }, + { + name: '壶关县', + code: '140427', + }, + { + name: '长子县', + code: '140428', + }, + { + name: '武乡县', + code: '140429', + }, + { + name: '沁县', + code: '140430', + }, + { + name: '沁源县', + code: '140431', + }, + ], + }, + { + name: '晋城市', + code: '140500', + children: [ + { + name: '城区', + code: '140502', + }, + { + name: '沁水县', + code: '140521', + }, + { + name: '阳城县', + code: '140522', + }, + { + name: '陵川县', + code: '140524', + }, + { + name: '泽州县', + code: '140525', + }, + { + name: '高平市', + code: '140581', + }, + ], + }, + { + name: '朔州市', + code: '140600', + children: [ + { + name: '朔城区', + code: '140602', + }, + { + name: '平鲁区', + code: '140603', + }, + { + name: '山阴县', + code: '140621', + }, + { + name: '应县', + code: '140622', + }, + { + name: '右玉县', + code: '140623', + }, + { + name: '怀仁市', + code: '140681', + }, + ], + }, + { + name: '晋中市', + code: '140700', + children: [ + { + name: '榆次区', + code: '140702', + }, + { + name: '榆社县', + code: '140721', + }, + { + name: '左权县', + code: '140722', + }, + { + name: '和顺县', + code: '140723', + }, + { + name: '昔阳县', + code: '140724', + }, + { + name: '寿阳县', + code: '140725', + }, + { + name: '太谷县', + code: '140726', + }, + { + name: '祁县', + code: '140727', + }, + { + name: '平遥县', + code: '140728', + }, + { + name: '灵石县', + code: '140729', + }, + { + name: '介休市', + code: '140781', + }, + ], + }, + { + name: '运城市', + code: '140800', + children: [ + { + name: '盐湖区', + code: '140802', + }, + { + name: '临猗县', + code: '140821', + }, + { + name: '万荣县', + code: '140822', + }, + { + name: '闻喜县', + code: '140823', + }, + { + name: '稷山县', + code: '140824', + }, + { + name: '新绛县', + code: '140825', + }, + { + name: '绛县', + code: '140826', + }, + { + name: '垣曲县', + code: '140827', + }, + { + name: '夏县', + code: '140828', + }, + { + name: '平陆县', + code: '140829', + }, + { + name: '芮城县', + code: '140830', + }, + { + name: '永济市', + code: '140881', + }, + { + name: '河津市', + code: '140882', + }, + ], + }, + { + name: '忻州市', + code: '140900', + children: [ + { + name: '忻府区', + code: '140902', + }, + { + name: '定襄县', + code: '140921', + }, + { + name: '五台县', + code: '140922', + }, + { + name: '代县', + code: '140923', + }, + { + name: '繁峙县', + code: '140924', + }, + { + name: '宁武县', + code: '140925', + }, + { + name: '静乐县', + code: '140926', + }, + { + name: '神池县', + code: '140927', + }, + { + name: '五寨县', + code: '140928', + }, + { + name: '岢岚县', + code: '140929', + }, + { + name: '河曲县', + code: '140930', + }, + { + name: '保德县', + code: '140931', + }, + { + name: '偏关县', + code: '140932', + }, + { + name: '原平市', + code: '140981', + }, + ], + }, + { + name: '临汾市', + code: '141000', + children: [ + { + name: '尧都区', + code: '141002', + }, + { + name: '曲沃县', + code: '141021', + }, + { + name: '翼城县', + code: '141022', + }, + { + name: '襄汾县', + code: '141023', + }, + { + name: '洪洞县', + code: '141024', + }, + { + name: '古县', + code: '141025', + }, + { + name: '安泽县', + code: '141026', + }, + { + name: '浮山县', + code: '141027', + }, + { + name: '吉县', + code: '141028', + }, + { + name: '乡宁县', + code: '141029', + }, + { + name: '大宁县', + code: '141030', + }, + { + name: '隰县', + code: '141031', + }, + { + name: '永和县', + code: '141032', + }, + { + name: '蒲县', + code: '141033', + }, + { + name: '汾西县', + code: '141034', + }, + { + name: '侯马市', + code: '141081', + }, + { + name: '霍州市', + code: '141082', + }, + ], + }, + { + name: '吕梁市', + code: '141100', + children: [ + { + name: '离石区', + code: '141102', + }, + { + name: '文水县', + code: '141121', + }, + { + name: '交城县', + code: '141122', + }, + { + name: '兴县', + code: '141123', + }, + { + name: '临县', + code: '141124', + }, + { + name: '柳林县', + code: '141125', + }, + { + name: '石楼县', + code: '141126', + }, + { + name: '岚县', + code: '141127', + }, + { + name: '方山县', + code: '141128', + }, + { + name: '中阳县', + code: '141129', + }, + { + name: '交口县', + code: '141130', + }, + { + name: '孝义市', + code: '141181', + }, + { + name: '汾阳市', + code: '141182', + }, + ], + }, + ], + }, + { + name: '内蒙古自治区', + code: '150000', + region: 'north', + autonomousRegion: true, + children: [ + { + name: '呼和浩特市', + code: '150100', + children: [ + { + name: '新城区', + code: '150102', + }, + { + name: '回民区', + code: '150103', + }, + { + name: '玉泉区', + code: '150104', + }, + { + name: '赛罕区', + code: '150105', + }, + { + name: '土默特左旗', + code: '150121', + }, + { + name: '托克托县', + code: '150122', + }, + { + name: '和林格尔县', + code: '150123', + }, + { + name: '清水河县', + code: '150124', + }, + { + name: '武川县', + code: '150125', + }, + ], + }, + { + name: '包头市', + code: '150200', + children: [ + { + name: '东河区', + code: '150202', + }, + { + name: '昆都仑区', + code: '150203', + }, + { + name: '青山区', + code: '150204', + }, + { + name: '石拐区', + code: '150205', + }, + { + name: '白云鄂博矿区', + code: '150206', + }, + { + name: '九原区', + code: '150207', + }, + { + name: '土默特右旗', + code: '150221', + }, + { + name: '固阳县', + code: '150222', + }, + { + name: '达尔罕茂明安联合旗', + code: '150223', + }, + ], + }, + { + name: '乌海市', + code: '150300', + children: [ + { + name: '海勃湾区', + code: '150302', + }, + { + name: '海南区', + code: '150303', + }, + { + name: '乌达区', + code: '150304', + }, + ], + }, + { + name: '赤峰市', + code: '150400', + children: [ + { + name: '红山区', + code: '150402', + }, + { + name: '元宝山区', + code: '150403', + }, + { + name: '松山区', + code: '150404', + }, + { + name: '阿鲁科尔沁旗', + code: '150421', + }, + { + name: '巴林左旗', + code: '150422', + }, + { + name: '巴林右旗', + code: '150423', + }, + { + name: '林西县', + code: '150424', + }, + { + name: '克什克腾旗', + code: '150425', + }, + { + name: '翁牛特旗', + code: '150426', + }, + { + name: '喀喇沁旗', + code: '150428', + }, + { + name: '宁城县', + code: '150429', + }, + { + name: '敖汉旗', + code: '150430', + }, + ], + }, + { + name: '通辽市', + code: '150500', + children: [ + { + name: '科尔沁区', + code: '150502', + }, + { + name: '科尔沁左翼中旗', + code: '150521', + }, + { + name: '科尔沁左翼后旗', + code: '150522', + }, + { + name: '开鲁县', + code: '150523', + }, + { + name: '库伦旗', + code: '150524', + }, + { + name: '奈曼旗', + code: '150525', + }, + { + name: '扎鲁特旗', + code: '150526', + }, + { + name: '霍林郭勒市', + code: '150581', + }, + ], + }, + { + name: '鄂尔多斯市', + code: '150600', + children: [ + { + name: '东胜区', + code: '150602', + }, + { + name: '康巴什区', + code: '150603', + }, + { + name: '达拉特旗', + code: '150621', + }, + { + name: '准格尔旗', + code: '150622', + }, + { + name: '鄂托克前旗', + code: '150623', + }, + { + name: '鄂托克旗', + code: '150624', + }, + { + name: '杭锦旗', + code: '150625', + }, + { + name: '乌审旗', + code: '150626', + }, + { + name: '伊金霍洛旗', + code: '150627', + }, + ], + }, + { + name: '呼伦贝尔市', + code: '150700', + children: [ + { + name: '海拉尔区', + code: '150702', + }, + { + name: '扎赉诺尔区', + code: '150703', + }, + { + name: '阿荣旗', + code: '150721', + }, + { + name: '莫力达瓦达斡尔族自治旗', + code: '150722', + }, + { + name: '鄂伦春自治旗', + code: '150723', + }, + { + name: '鄂温克族自治旗', + code: '150724', + }, + { + name: '陈巴尔虎旗', + code: '150725', + }, + { + name: '新巴尔虎左旗', + code: '150726', + }, + { + name: '新巴尔虎右旗', + code: '150727', + }, + { + name: '满洲里市', + code: '150781', + }, + { + name: '牙克石市', + code: '150782', + }, + { + name: '扎兰屯市', + code: '150783', + }, + { + name: '额尔古纳市', + code: '150784', + }, + { + name: '根河市', + code: '150785', + }, + ], + }, + { + name: '巴彦淖尔市', + code: '150800', + children: [ + { + name: '临河区', + code: '150802', + }, + { + name: '五原县', + code: '150821', + }, + { + name: '磴口县', + code: '150822', + }, + { + name: '乌拉特前旗', + code: '150823', + }, + { + name: '乌拉特中旗', + code: '150824', + }, + { + name: '乌拉特后旗', + code: '150825', + }, + { + name: '杭锦后旗', + code: '150826', + }, + ], + }, + { + name: '乌兰察布市', + code: '150900', + children: [ + { + name: '集宁区', + code: '150902', + }, + { + name: '卓资县', + code: '150921', + }, + { + name: '化德县', + code: '150922', + }, + { + name: '商都县', + code: '150923', + }, + { + name: '兴和县', + code: '150924', + }, + { + name: '凉城县', + code: '150925', + }, + { + name: '察哈尔右翼前旗', + code: '150926', + }, + { + name: '察哈尔右翼中旗', + code: '150927', + }, + { + name: '察哈尔右翼后旗', + code: '150928', + }, + { + name: '四子王旗', + code: '150929', + }, + { + name: '丰镇市', + code: '150981', + }, + ], + }, + { + name: '兴安盟', + code: '152200', + children: [ + { + name: '乌兰浩特市', + code: '152201', + }, + { + name: '阿尔山市', + code: '152202', + }, + { + name: '科尔沁右翼前旗', + code: '152221', + }, + { + name: '科尔沁右翼中旗', + code: '152222', + }, + { + name: '扎赉特旗', + code: '152223', + }, + { + name: '突泉县', + code: '152224', + }, + ], + }, + { + name: '锡林郭勒盟', + code: '152500', + children: [ + { + name: '二连浩特市', + code: '152501', + }, + { + name: '锡林浩特市', + code: '152502', + }, + { + name: '阿巴嘎旗', + code: '152522', + }, + { + name: '苏尼特左旗', + code: '152523', + }, + { + name: '苏尼特右旗', + code: '152524', + }, + { + name: '东乌珠穆沁旗', + code: '152525', + }, + { + name: '西乌珠穆沁旗', + code: '152526', + }, + { + name: '太仆寺旗', + code: '152527', + }, + { + name: '镶黄旗', + code: '152528', + }, + { + name: '正镶白旗', + code: '152529', + }, + { + name: '正蓝旗', + code: '152530', + }, + { + name: '多伦县', + code: '152531', + }, + ], + }, + { + name: '阿拉善盟', + code: '152900', + children: [ + { + name: '阿拉善左旗', + code: '152921', + }, + { + name: '阿拉善右旗', + code: '152922', + }, + { + name: '额济纳旗', + code: '152923', + }, + ], + }, + ], + }, + { + name: '辽宁省', + code: '210000', + region: 'northeast', + children: [ + { + name: '沈阳市', + code: '210100', + children: [ + { + name: '和平区', + code: '210102', + }, + { + name: '沈河区', + code: '210103', + }, + { + name: '大东区', + code: '210104', + }, + { + name: '皇姑区', + code: '210105', + }, + { + name: '铁西区', + code: '210106', + }, + { + name: '苏家屯区', + code: '210111', + }, + { + name: '浑南区', + code: '210112', + }, + { + name: '沈北新区', + code: '210113', + }, + { + name: '于洪区', + code: '210114', + }, + { + name: '辽中区', + code: '210115', + }, + { + name: '康平县', + code: '210123', + }, + { + name: '法库县', + code: '210124', + }, + { + name: '新民市', + code: '210181', + }, + ], + }, + { + name: '大连市', + code: '210200', + children: [ + { + name: '中山区', + code: '210202', + }, + { + name: '西岗区', + code: '210203', + }, + { + name: '沙河口区', + code: '210204', + }, + { + name: '甘井子区', + code: '210211', + }, + { + name: '旅顺口区', + code: '210212', + }, + { + name: '金州区', + code: '210213', + }, + { + name: '普兰店区', + code: '210214', + }, + { + name: '长海县', + code: '210224', + }, + { + name: '瓦房店市', + code: '210281', + }, + { + name: '庄河市', + code: '210283', + }, + ], + }, + { + name: '鞍山市', + code: '210300', + children: [ + { + name: '铁东区', + code: '210302', + }, + { + name: '铁西区', + code: '210303', + }, + { + name: '立山区', + code: '210304', + }, + { + name: '千山区', + code: '210311', + }, + { + name: '台安县', + code: '210321', + }, + { + name: '岫岩满族自治县', + code: '210323', + }, + { + name: '海城市', + code: '210381', + }, + ], + }, + { + name: '抚顺市', + code: '210400', + children: [ + { + name: '新抚区', + code: '210402', + }, + { + name: '东洲区', + code: '210403', + }, + { + name: '望花区', + code: '210404', + }, + { + name: '顺城区', + code: '210411', + }, + { + name: '抚顺县', + code: '210421', + }, + { + name: '新宾满族自治县', + code: '210422', + }, + { + name: '清原满族自治县', + code: '210423', + }, + ], + }, + { + name: '本溪市', + code: '210500', + children: [ + { + name: '平山区', + code: '210502', + }, + { + name: '溪湖区', + code: '210503', + }, + { + name: '明山区', + code: '210504', + }, + { + name: '南芬区', + code: '210505', + }, + { + name: '本溪满族自治县', + code: '210521', + }, + { + name: '桓仁满族自治县', + code: '210522', + }, + ], + }, + { + name: '丹东市', + code: '210600', + children: [ + { + name: '元宝区', + code: '210602', + }, + { + name: '振兴区', + code: '210603', + }, + { + name: '振安区', + code: '210604', + }, + { + name: '宽甸满族自治县', + code: '210624', + }, + { + name: '东港市', + code: '210681', + }, + { + name: '凤城市', + code: '210682', + }, + ], + }, + { + name: '锦州市', + code: '210700', + children: [ + { + name: '古塔区', + code: '210702', + }, + { + name: '凌河区', + code: '210703', + }, + { + name: '太和区', + code: '210711', + }, + { + name: '黑山县', + code: '210726', + }, + { + name: '义县', + code: '210727', + }, + { + name: '凌海市', + code: '210781', + }, + { + name: '北镇市', + code: '210782', + }, + ], + }, + { + name: '营口市', + code: '210800', + children: [ + { + name: '站前区', + code: '210802', + }, + { + name: '西市区', + code: '210803', + }, + { + name: '鲅鱼圈区', + code: '210804', + }, + { + name: '老边区', + code: '210811', + }, + { + name: '盖州市', + code: '210881', + }, + { + name: '大石桥市', + code: '210882', + }, + ], + }, + { + name: '阜新市', + code: '210900', + children: [ + { + name: '海州区', + code: '210902', + }, + { + name: '新邱区', + code: '210903', + }, + { + name: '太平区', + code: '210904', + }, + { + name: '清河门区', + code: '210905', + }, + { + name: '细河区', + code: '210911', + }, + { + name: '阜新蒙古族自治县', + code: '210921', + }, + { + name: '彰武县', + code: '210922', + }, + ], + }, + { + name: '辽阳市', + code: '211000', + children: [ + { + name: '白塔区', + code: '211002', + }, + { + name: '文圣区', + code: '211003', + }, + { + name: '宏伟区', + code: '211004', + }, + { + name: '弓长岭区', + code: '211005', + }, + { + name: '太子河区', + code: '211011', + }, + { + name: '辽阳县', + code: '211021', + }, + { + name: '灯塔市', + code: '211081', + }, + ], + }, + { + name: '盘锦市', + code: '211100', + children: [ + { + name: '双台子区', + code: '211102', + }, + { + name: '兴隆台区', + code: '211103', + }, + { + name: '大洼区', + code: '211104', + }, + { + name: '盘山县', + code: '211122', + }, + ], + }, + { + name: '铁岭市', + code: '211200', + children: [ + { + name: '银州区', + code: '211202', + }, + { + name: '清河区', + code: '211204', + }, + { + name: '铁岭县', + code: '211221', + }, + { + name: '西丰县', + code: '211223', + }, + { + name: '昌图县', + code: '211224', + }, + { + name: '调兵山市', + code: '211281', + }, + { + name: '开原市', + code: '211282', + }, + ], + }, + { + name: '朝阳市', + code: '211300', + children: [ + { + name: '双塔区', + code: '211302', + }, + { + name: '龙城区', + code: '211303', + }, + { + name: '朝阳县', + code: '211321', + }, + { + name: '建平县', + code: '211322', + }, + { + name: '喀喇沁左翼蒙古族自治县', + code: '211324', + }, + { + name: '北票市', + code: '211381', + }, + { + name: '凌源市', + code: '211382', + }, + ], + }, + { + name: '葫芦岛市', + code: '211400', + children: [ + { + name: '连山区', + code: '211402', + }, + { + name: '龙港区', + code: '211403', + }, + { + name: '南票区', + code: '211404', + }, + { + name: '绥中县', + code: '211421', + }, + { + name: '建昌县', + code: '211422', + }, + { + name: '兴城市', + code: '211481', + }, + ], + }, + ], + }, + { + name: '吉林省', + code: '220000', + region: 'northeast', + children: [ + { + name: '长春市', + code: '220100', + children: [ + { + name: '南关区', + code: '220102', + }, + { + name: '宽城区', + code: '220103', + }, + { + name: '朝阳区', + code: '220104', + }, + { + name: '二道区', + code: '220105', + }, + { + name: '绿园区', + code: '220106', + }, + { + name: '双阳区', + code: '220112', + }, + { + name: '九台区', + code: '220113', + }, + { + name: '农安县', + code: '220122', + }, + { + name: '榆树市', + code: '220182', + }, + { + name: '德惠市', + code: '220183', + }, + ], + }, + { + name: '吉林市', + code: '220200', + children: [ + { + name: '昌邑区', + code: '220202', + }, + { + name: '龙潭区', + code: '220203', + }, + { + name: '船营区', + code: '220204', + }, + { + name: '丰满区', + code: '220211', + }, + { + name: '永吉县', + code: '220221', + }, + { + name: '蛟河市', + code: '220281', + }, + { + name: '桦甸市', + code: '220282', + }, + { + name: '舒兰市', + code: '220283', + }, + { + name: '磐石市', + code: '220284', + }, + ], + }, + { + name: '四平市', + code: '220300', + children: [ + { + name: '铁西区', + code: '220302', + }, + { + name: '铁东区', + code: '220303', + }, + { + name: '梨树县', + code: '220322', + }, + { + name: '伊通满族自治县', + code: '220323', + }, + { + name: '公主岭市', + code: '220381', + }, + { + name: '双辽市', + code: '220382', + }, + ], + }, + { + name: '辽源市', + code: '220400', + children: [ + { + name: '龙山区', + code: '220402', + }, + { + name: '西安区', + code: '220403', + }, + { + name: '东丰县', + code: '220421', + }, + { + name: '东辽县', + code: '220422', + }, + ], + }, + { + name: '通化市', + code: '220500', + children: [ + { + name: '东昌区', + code: '220502', + }, + { + name: '二道江区', + code: '220503', + }, + { + name: '通化县', + code: '220521', + }, + { + name: '辉南县', + code: '220523', + }, + { + name: '柳河县', + code: '220524', + }, + { + name: '梅河口市', + code: '220581', + }, + { + name: '集安市', + code: '220582', + }, + ], + }, + { + name: '白山市', + code: '220600', + children: [ + { + name: '浑江区', + code: '220602', + }, + { + name: '江源区', + code: '220605', + }, + { + name: '抚松县', + code: '220621', + }, + { + name: '靖宇县', + code: '220622', + }, + { + name: '长白朝鲜族自治县', + code: '220623', + }, + { + name: '临江市', + code: '220681', + }, + ], + }, + { + name: '松原市', + code: '220700', + children: [ + { + name: '宁江区', + code: '220702', + }, + { + name: '前郭尔罗斯蒙古族自治县', + code: '220721', + }, + { + name: '长岭县', + code: '220722', + }, + { + name: '乾安县', + code: '220723', + }, + { + name: '扶余市', + code: '220781', + }, + ], + }, + { + name: '白城市', + code: '220800', + children: [ + { + name: '洮北区', + code: '220802', + }, + { + name: '镇赉县', + code: '220821', + }, + { + name: '通榆县', + code: '220822', + }, + { + name: '洮南市', + code: '220881', + }, + { + name: '大安市', + code: '220882', + }, + ], + }, + { + name: '延边朝鲜族自治州', + code: '222400', + children: [ + { + name: '延吉市', + code: '222401', + }, + { + name: '图们市', + code: '222402', + }, + { + name: '敦化市', + code: '222403', + }, + { + name: '珲春市', + code: '222404', + }, + { + name: '龙井市', + code: '222405', + }, + { + name: '和龙市', + code: '222406', + }, + { + name: '汪清县', + code: '222424', + }, + { + name: '安图县', + code: '222426', + }, + ], + }, + ], + }, + { + name: '黑龙江省', + code: '230000', + region: 'northeast', + children: [ + { + name: '哈尔滨市', + code: '230100', + children: [ + { + name: '道里区', + code: '230102', + }, + { + name: '南岗区', + code: '230103', + }, + { + name: '道外区', + code: '230104', + }, + { + name: '平房区', + code: '230108', + }, + { + name: '松北区', + code: '230109', + }, + { + name: '香坊区', + code: '230110', + }, + { + name: '呼兰区', + code: '230111', + }, + { + name: '阿城区', + code: '230112', + }, + { + name: '双城区', + code: '230113', + }, + { + name: '依兰县', + code: '230123', + }, + { + name: '方正县', + code: '230124', + }, + { + name: '宾县', + code: '230125', + }, + { + name: '巴彦县', + code: '230126', + }, + { + name: '木兰县', + code: '230127', + }, + { + name: '通河县', + code: '230128', + }, + { + name: '延寿县', + code: '230129', + }, + { + name: '尚志市', + code: '230183', + }, + { + name: '五常市', + code: '230184', + }, + ], + }, + { + name: '齐齐哈尔市', + code: '230200', + children: [ + { + name: '龙沙区', + code: '230202', + }, + { + name: '建华区', + code: '230203', + }, + { + name: '铁锋区', + code: '230204', + }, + { + name: '昂昂溪区', + code: '230205', + }, + { + name: '富拉尔基区', + code: '230206', + }, + { + name: '碾子山区', + code: '230207', + }, + { + name: '梅里斯达斡尔族区', + code: '230208', + }, + { + name: '龙江县', + code: '230221', + }, + { + name: '依安县', + code: '230223', + }, + { + name: '泰来县', + code: '230224', + }, + { + name: '甘南县', + code: '230225', + }, + { + name: '富裕县', + code: '230227', + }, + { + name: '克山县', + code: '230229', + }, + { + name: '克东县', + code: '230230', + }, + { + name: '拜泉县', + code: '230231', + }, + { + name: '讷河市', + code: '230281', + }, + ], + }, + { + name: '鸡西市', + code: '230300', + children: [ + { + name: '鸡冠区', + code: '230302', + }, + { + name: '恒山区', + code: '230303', + }, + { + name: '滴道区', + code: '230304', + }, + { + name: '梨树区', + code: '230305', + }, + { + name: '城子河区', + code: '230306', + }, + { + name: '麻山区', + code: '230307', + }, + { + name: '鸡东县', + code: '230321', + }, + { + name: '虎林市', + code: '230381', + }, + { + name: '密山市', + code: '230382', + }, + ], + }, + { + name: '鹤岗市', + code: '230400', + children: [ + { + name: '向阳区', + code: '230402', + }, + { + name: '工农区', + code: '230403', + }, + { + name: '南山区', + code: '230404', + }, + { + name: '兴安区', + code: '230405', + }, + { + name: '东山区', + code: '230406', + }, + { + name: '兴山区', + code: '230407', + }, + { + name: '萝北县', + code: '230421', + }, + { + name: '绥滨县', + code: '230422', + }, + ], + }, + { + name: '双鸭山市', + code: '230500', + children: [ + { + name: '尖山区', + code: '230502', + }, + { + name: '岭东区', + code: '230503', + }, + { + name: '四方台区', + code: '230505', + }, + { + name: '宝山区', + code: '230506', + }, + { + name: '集贤县', + code: '230521', + }, + { + name: '友谊县', + code: '230522', + }, + { + name: '宝清县', + code: '230523', + }, + { + name: '饶河县', + code: '230524', + }, + ], + }, + { + name: '大庆市', + code: '230600', + children: [ + { + name: '萨尔图区', + code: '230602', + }, + { + name: '龙凤区', + code: '230603', + }, + { + name: '让胡路区', + code: '230604', + }, + { + name: '红岗区', + code: '230605', + }, + { + name: '大同区', + code: '230606', + }, + { + name: '肇州县', + code: '230621', + }, + { + name: '肇源县', + code: '230622', + }, + { + name: '林甸县', + code: '230623', + }, + { + name: '杜尔伯特蒙古族自治县', + code: '230624', + }, + ], + }, + { + name: '伊春市', + code: '230700', + children: [ + { + name: '伊春区', + code: '230702', + }, + { + name: '南岔区', + code: '230703', + }, + { + name: '友好区', + code: '230704', + }, + { + name: '西林区', + code: '230705', + }, + { + name: '翠峦区', + code: '230706', + }, + { + name: '新青区', + code: '230707', + }, + { + name: '美溪区', + code: '230708', + }, + { + name: '金山屯区', + code: '230709', + }, + { + name: '五营区', + code: '230710', + }, + { + name: '乌马河区', + code: '230711', + }, + { + name: '汤旺河区', + code: '230712', + }, + { + name: '带岭区', + code: '230713', + }, + { + name: '乌伊岭区', + code: '230714', + }, + { + name: '红星区', + code: '230715', + }, + { + name: '上甘岭区', + code: '230716', + }, + { + name: '嘉荫县', + code: '230722', + }, + { + name: '铁力市', + code: '230781', + }, + ], + }, + { + name: '佳木斯市', + code: '230800', + children: [ + { + name: '向阳区', + code: '230803', + }, + { + name: '前进区', + code: '230804', + }, + { + name: '东风区', + code: '230805', + }, + { + name: '郊区', + code: '230811', + }, + { + name: '桦南县', + code: '230822', + }, + { + name: '桦川县', + code: '230826', + }, + { + name: '汤原县', + code: '230828', + }, + { + name: '同江市', + code: '230881', + }, + { + name: '富锦市', + code: '230882', + }, + { + name: '抚远市', + code: '230883', + }, + ], + }, + { + name: '七台河市', + code: '230900', + children: [ + { + name: '新兴区', + code: '230902', + }, + { + name: '桃山区', + code: '230903', + }, + { + name: '茄子河区', + code: '230904', + }, + { + name: '勃利县', + code: '230921', + }, + ], + }, + { + name: '牡丹江市', + code: '231000', + children: [ + { + name: '东安区', + code: '231002', + }, + { + name: '阳明区', + code: '231003', + }, + { + name: '爱民区', + code: '231004', + }, + { + name: '西安区', + code: '231005', + }, + { + name: '林口县', + code: '231025', + }, + { + name: '绥芬河市', + code: '231081', + }, + { + name: '海林市', + code: '231083', + }, + { + name: '宁安市', + code: '231084', + }, + { + name: '穆棱市', + code: '231085', + }, + { + name: '东宁市', + code: '231086', + }, + ], + }, + { + name: '黑河市', + code: '231100', + children: [ + { + name: '爱辉区', + code: '231102', + }, + { + name: '嫩江县', + code: '231121', + }, + { + name: '逊克县', + code: '231123', + }, + { + name: '孙吴县', + code: '231124', + }, + { + name: '北安市', + code: '231181', + }, + { + name: '五大连池市', + code: '231182', + }, + ], + }, + { + name: '绥化市', + code: '231200', + children: [ + { + name: '北林区', + code: '231202', + }, + { + name: '望奎县', + code: '231221', + }, + { + name: '兰西县', + code: '231222', + }, + { + name: '青冈县', + code: '231223', + }, + { + name: '庆安县', + code: '231224', + }, + { + name: '明水县', + code: '231225', + }, + { + name: '绥棱县', + code: '231226', + }, + { + name: '安达市', + code: '231281', + }, + { + name: '肇东市', + code: '231282', + }, + { + name: '海伦市', + code: '231283', + }, + ], + }, + { + name: '大兴安岭地区', + code: '232700', + children: [ + { + name: '漠河市', + code: '232701', + }, + { + name: '呼玛县', + code: '232721', + }, + { + name: '塔河县', + code: '232722', + }, + ], + }, + ], + }, + { + name: '上海市', + code: '310000', + region: 'east', + provinceLevelCity: true, + children: [ + { + name: '市辖区', + code: '310100', + children: [ + { + name: '黄浦区', + code: '310101', + }, + { + name: '徐汇区', + code: '310104', + }, + { + name: '长宁区', + code: '310105', + }, + { + name: '静安区', + code: '310106', + }, + { + name: '普陀区', + code: '310107', + }, + { + name: '虹口区', + code: '310109', + }, + { + name: '杨浦区', + code: '310110', + }, + { + name: '闵行区', + code: '310112', + }, + { + name: '宝山区', + code: '310113', + }, + { + name: '嘉定区', + code: '310114', + }, + { + name: '浦东新区', + code: '310115', + }, + { + name: '金山区', + code: '310116', + }, + { + name: '松江区', + code: '310117', + }, + { + name: '青浦区', + code: '310118', + }, + { + name: '奉贤区', + code: '310120', + }, + { + name: '崇明区', + code: '310151', + }, + ], + }, + ], + }, + { + name: '江苏省', + code: '320000', + region: 'east', + children: [ + { + name: '南京市', + code: '320100', + children: [ + { + name: '玄武区', + code: '320102', + }, + { + name: '秦淮区', + code: '320104', + }, + { + name: '建邺区', + code: '320105', + }, + { + name: '鼓楼区', + code: '320106', + }, + { + name: '浦口区', + code: '320111', + }, + { + name: '栖霞区', + code: '320113', + }, + { + name: '雨花台区', + code: '320114', + }, + { + name: '江宁区', + code: '320115', + }, + { + name: '六合区', + code: '320116', + }, + { + name: '溧水区', + code: '320117', + }, + { + name: '高淳区', + code: '320118', + }, + ], + }, + { + name: '无锡市', + code: '320200', + children: [ + { + name: '锡山区', + code: '320205', + }, + { + name: '惠山区', + code: '320206', + }, + { + name: '滨湖区', + code: '320211', + }, + { + name: '梁溪区', + code: '320213', + }, + { + name: '新吴区', + code: '320214', + }, + { + name: '江阴市', + code: '320281', + }, + { + name: '宜兴市', + code: '320282', + }, + ], + }, + { + name: '徐州市', + code: '320300', + children: [ + { + name: '鼓楼区', + code: '320302', + }, + { + name: '云龙区', + code: '320303', + }, + { + name: '贾汪区', + code: '320305', + }, + { + name: '泉山区', + code: '320311', + }, + { + name: '铜山区', + code: '320312', + }, + { + name: '丰县', + code: '320321', + }, + { + name: '沛县', + code: '320322', + }, + { + name: '睢宁县', + code: '320324', + }, + { + name: '新沂市', + code: '320381', + }, + { + name: '邳州市', + code: '320382', + }, + ], + }, + { + name: '常州市', + code: '320400', + children: [ + { + name: '天宁区', + code: '320402', + }, + { + name: '钟楼区', + code: '320404', + }, + { + name: '新北区', + code: '320411', + }, + { + name: '武进区', + code: '320412', + }, + { + name: '金坛区', + code: '320413', + }, + { + name: '溧阳市', + code: '320481', + }, + ], + }, + { + name: '苏州市', + code: '320500', + children: [ + { + name: '虎丘区', + code: '320505', + }, + { + name: '吴中区', + code: '320506', + }, + { + name: '相城区', + code: '320507', + }, + { + name: '姑苏区', + code: '320508', + }, + { + name: '吴江区', + code: '320509', + }, + { + name: '常熟市', + code: '320581', + }, + { + name: '张家港市', + code: '320582', + }, + { + name: '昆山市', + code: '320583', + }, + { + name: '太仓市', + code: '320585', + }, + ], + }, + { + name: '南通市', + code: '320600', + children: [ + { + name: '崇川区', + code: '320602', + }, + { + name: '港闸区', + code: '320611', + }, + { + name: '通州区', + code: '320612', + }, + { + name: '如东县', + code: '320623', + }, + { + name: '启东市', + code: '320681', + }, + { + name: '如皋市', + code: '320682', + }, + { + name: '海门市', + code: '320684', + }, + { + name: '海安市', + code: '320685', + }, + ], + }, + { + name: '连云港市', + code: '320700', + children: [ + { + name: '连云区', + code: '320703', + }, + { + name: '海州区', + code: '320706', + }, + { + name: '赣榆区', + code: '320707', + }, + { + name: '东海县', + code: '320722', + }, + { + name: '灌云县', + code: '320723', + }, + { + name: '灌南县', + code: '320724', + }, + ], + }, + { + name: '淮安市', + code: '320800', + children: [ + { + name: '淮安区', + code: '320803', + }, + { + name: '淮阴区', + code: '320804', + }, + { + name: '清江浦区', + code: '320812', + }, + { + name: '洪泽区', + code: '320813', + }, + { + name: '涟水县', + code: '320826', + }, + { + name: '盱眙县', + code: '320830', + }, + { + name: '金湖县', + code: '320831', + }, + ], + }, + { + name: '盐城市', + code: '320900', + children: [ + { + name: '亭湖区', + code: '320902', + }, + { + name: '盐都区', + code: '320903', + }, + { + name: '大丰区', + code: '320904', + }, + { + name: '响水县', + code: '320921', + }, + { + name: '滨海县', + code: '320922', + }, + { + name: '阜宁县', + code: '320923', + }, + { + name: '射阳县', + code: '320924', + }, + { + name: '建湖县', + code: '320925', + }, + { + name: '东台市', + code: '320981', + }, + ], + }, + { + name: '扬州市', + code: '321000', + children: [ + { + name: '广陵区', + code: '321002', + }, + { + name: '邗江区', + code: '321003', + }, + { + name: '江都区', + code: '321012', + }, + { + name: '宝应县', + code: '321023', + }, + { + name: '仪征市', + code: '321081', + }, + { + name: '高邮市', + code: '321084', + }, + ], + }, + { + name: '镇江市', + code: '321100', + children: [ + { + name: '京口区', + code: '321102', + }, + { + name: '润州区', + code: '321111', + }, + { + name: '丹徒区', + code: '321112', + }, + { + name: '丹阳市', + code: '321181', + }, + { + name: '扬中市', + code: '321182', + }, + { + name: '句容市', + code: '321183', + }, + ], + }, + { + name: '泰州市', + code: '321200', + children: [ + { + name: '海陵区', + code: '321202', + }, + { + name: '高港区', + code: '321203', + }, + { + name: '姜堰区', + code: '321204', + }, + { + name: '兴化市', + code: '321281', + }, + { + name: '靖江市', + code: '321282', + }, + { + name: '泰兴市', + code: '321283', + }, + ], + }, + { + name: '宿迁市', + code: '321300', + children: [ + { + name: '宿城区', + code: '321302', + }, + { + name: '宿豫区', + code: '321311', + }, + { + name: '沭阳县', + code: '321322', + }, + { + name: '泗阳县', + code: '321323', + }, + { + name: '泗洪县', + code: '321324', + }, + ], + }, + ], + }, + { + name: '浙江省', + code: '330000', + region: 'east', + children: [ + { + name: '杭州市', + code: '330100', + children: [ + { + name: '上城区', + code: '330102', + }, + { + name: '下城区', + code: '330103', + }, + { + name: '江干区', + code: '330104', + }, + { + name: '拱墅区', + code: '330105', + }, + { + name: '西湖区', + code: '330106', + }, + { + name: '滨江区', + code: '330108', + }, + { + name: '萧山区', + code: '330109', + }, + { + name: '余杭区', + code: '330110', + }, + { + name: '富阳区', + code: '330111', + }, + { + name: '临安区', + code: '330112', + }, + { + name: '桐庐县', + code: '330122', + }, + { + name: '淳安县', + code: '330127', + }, + { + name: '建德市', + code: '330182', + }, + ], + }, + { + name: '宁波市', + code: '330200', + children: [ + { + name: '海曙区', + code: '330203', + }, + { + name: '江北区', + code: '330205', + }, + { + name: '北仑区', + code: '330206', + }, + { + name: '镇海区', + code: '330211', + }, + { + name: '鄞州区', + code: '330212', + }, + { + name: '奉化区', + code: '330213', + }, + { + name: '象山县', + code: '330225', + }, + { + name: '宁海县', + code: '330226', + }, + { + name: '余姚市', + code: '330281', + }, + { + name: '慈溪市', + code: '330282', + }, + ], + }, + { + name: '温州市', + code: '330300', + children: [ + { + name: '鹿城区', + code: '330302', + }, + { + name: '龙湾区', + code: '330303', + }, + { + name: '瓯海区', + code: '330304', + }, + { + name: '洞头区', + code: '330305', + }, + { + name: '永嘉县', + code: '330324', + }, + { + name: '平阳县', + code: '330326', + }, + { + name: '苍南县', + code: '330327', + }, + { + name: '文成县', + code: '330328', + }, + { + name: '泰顺县', + code: '330329', + }, + { + name: '瑞安市', + code: '330381', + }, + { + name: '乐清市', + code: '330382', + }, + ], + }, + { + name: '嘉兴市', + code: '330400', + children: [ + { + name: '南湖区', + code: '330402', + }, + { + name: '秀洲区', + code: '330411', + }, + { + name: '嘉善县', + code: '330421', + }, + { + name: '海盐县', + code: '330424', + }, + { + name: '海宁市', + code: '330481', + }, + { + name: '平湖市', + code: '330482', + }, + { + name: '桐乡市', + code: '330483', + }, + ], + }, + { + name: '湖州市', + code: '330500', + children: [ + { + name: '吴兴区', + code: '330502', + }, + { + name: '南浔区', + code: '330503', + }, + { + name: '德清县', + code: '330521', + }, + { + name: '长兴县', + code: '330522', + }, + { + name: '安吉县', + code: '330523', + }, + ], + }, + { + name: '绍兴市', + code: '330600', + children: [ + { + name: '越城区', + code: '330602', + }, + { + name: '柯桥区', + code: '330603', + }, + { + name: '上虞区', + code: '330604', + }, + { + name: '新昌县', + code: '330624', + }, + { + name: '诸暨市', + code: '330681', + }, + { + name: '嵊州市', + code: '330683', + }, + ], + }, + { + name: '金华市', + code: '330700', + children: [ + { + name: '婺城区', + code: '330702', + }, + { + name: '金东区', + code: '330703', + }, + { + name: '武义县', + code: '330723', + }, + { + name: '浦江县', + code: '330726', + }, + { + name: '磐安县', + code: '330727', + }, + { + name: '兰溪市', + code: '330781', + }, + { + name: '义乌市', + code: '330782', + }, + { + name: '东阳市', + code: '330783', + }, + { + name: '永康市', + code: '330784', + }, + ], + }, + { + name: '衢州市', + code: '330800', + children: [ + { + name: '柯城区', + code: '330802', + }, + { + name: '衢江区', + code: '330803', + }, + { + name: '常山县', + code: '330822', + }, + { + name: '开化县', + code: '330824', + }, + { + name: '龙游县', + code: '330825', + }, + { + name: '江山市', + code: '330881', + }, + ], + }, + { + name: '舟山市', + code: '330900', + children: [ + { + name: '定海区', + code: '330902', + }, + { + name: '普陀区', + code: '330903', + }, + { + name: '岱山县', + code: '330921', + }, + { + name: '嵊泗县', + code: '330922', + }, + ], + }, + { + name: '台州市', + code: '331000', + children: [ + { + name: '椒江区', + code: '331002', + }, + { + name: '黄岩区', + code: '331003', + }, + { + name: '路桥区', + code: '331004', + }, + { + name: '三门县', + code: '331022', + }, + { + name: '天台县', + code: '331023', + }, + { + name: '仙居县', + code: '331024', + }, + { + name: '温岭市', + code: '331081', + }, + { + name: '临海市', + code: '331082', + }, + { + name: '玉环市', + code: '331083', + }, + ], + }, + { + name: '丽水市', + code: '331100', + children: [ + { + name: '莲都区', + code: '331102', + }, + { + name: '青田县', + code: '331121', + }, + { + name: '缙云县', + code: '331122', + }, + { + name: '遂昌县', + code: '331123', + }, + { + name: '松阳县', + code: '331124', + }, + { + name: '云和县', + code: '331125', + }, + { + name: '庆元县', + code: '331126', + }, + { + name: '景宁畲族自治县', + code: '331127', + }, + { + name: '龙泉市', + code: '331181', + }, + ], + }, + ], + }, + { + name: '安徽省', + code: '340000', + region: 'east', + children: [ + { + name: '合肥市', + code: '340100', + children: [ + { + name: '瑶海区', + code: '340102', + }, + { + name: '庐阳区', + code: '340103', + }, + { + name: '蜀山区', + code: '340104', + }, + { + name: '包河区', + code: '340111', + }, + { + name: '长丰县', + code: '340121', + }, + { + name: '肥东县', + code: '340122', + }, + { + name: '肥西县', + code: '340123', + }, + { + name: '庐江县', + code: '340124', + }, + { + name: '巢湖市', + code: '340181', + }, + ], + }, + { + name: '芜湖市', + code: '340200', + children: [ + { + name: '镜湖区', + code: '340202', + }, + { + name: '弋江区', + code: '340203', + }, + { + name: '鸠江区', + code: '340207', + }, + { + name: '三山区', + code: '340208', + }, + { + name: '芜湖县', + code: '340221', + }, + { + name: '繁昌县', + code: '340222', + }, + { + name: '南陵县', + code: '340223', + }, + { + name: '无为县', + code: '340225', + }, + ], + }, + { + name: '蚌埠市', + code: '340300', + children: [ + { + name: '龙子湖区', + code: '340302', + }, + { + name: '蚌山区', + code: '340303', + }, + { + name: '禹会区', + code: '340304', + }, + { + name: '淮上区', + code: '340311', + }, + { + name: '怀远县', + code: '340321', + }, + { + name: '五河县', + code: '340322', + }, + { + name: '固镇县', + code: '340323', + }, + ], + }, + { + name: '淮南市', + code: '340400', + children: [ + { + name: '大通区', + code: '340402', + }, + { + name: '田家庵区', + code: '340403', + }, + { + name: '谢家集区', + code: '340404', + }, + { + name: '八公山区', + code: '340405', + }, + { + name: '潘集区', + code: '340406', + }, + { + name: '凤台县', + code: '340421', + }, + { + name: '寿县', + code: '340422', + }, + ], + }, + { + name: '马鞍山市', + code: '340500', + children: [ + { + name: '花山区', + code: '340503', + }, + { + name: '雨山区', + code: '340504', + }, + { + name: '博望区', + code: '340506', + }, + { + name: '当涂县', + code: '340521', + }, + { + name: '含山县', + code: '340522', + }, + { + name: '和县', + code: '340523', + }, + ], + }, + { + name: '淮北市', + code: '340600', + children: [ + { + name: '杜集区', + code: '340602', + }, + { + name: '相山区', + code: '340603', + }, + { + name: '烈山区', + code: '340604', + }, + { + name: '濉溪县', + code: '340621', + }, + ], + }, + { + name: '铜陵市', + code: '340700', + children: [ + { + name: '铜官区', + code: '340705', + }, + { + name: '义安区', + code: '340706', + }, + { + name: '郊区', + code: '340711', + }, + { + name: '枞阳县', + code: '340722', + }, + ], + }, + { + name: '安庆市', + code: '340800', + children: [ + { + name: '迎江区', + code: '340802', + }, + { + name: '大观区', + code: '340803', + }, + { + name: '宜秀区', + code: '340811', + }, + { + name: '怀宁县', + code: '340822', + }, + { + name: '太湖县', + code: '340825', + }, + { + name: '宿松县', + code: '340826', + }, + { + name: '望江县', + code: '340827', + }, + { + name: '岳西县', + code: '340828', + }, + { + name: '桐城市', + code: '340881', + }, + { + name: '潜山市', + code: '340882', + }, + ], + }, + { + name: '黄山市', + code: '341000', + children: [ + { + name: '屯溪区', + code: '341002', + }, + { + name: '黄山区', + code: '341003', + }, + { + name: '徽州区', + code: '341004', + }, + { + name: '歙县', + code: '341021', + }, + { + name: '休宁县', + code: '341022', + }, + { + name: '黟县', + code: '341023', + }, + { + name: '祁门县', + code: '341024', + }, + ], + }, + { + name: '滁州市', + code: '341100', + children: [ + { + name: '琅琊区', + code: '341102', + }, + { + name: '南谯区', + code: '341103', + }, + { + name: '来安县', + code: '341122', + }, + { + name: '全椒县', + code: '341124', + }, + { + name: '定远县', + code: '341125', + }, + { + name: '凤阳县', + code: '341126', + }, + { + name: '天长市', + code: '341181', + }, + { + name: '明光市', + code: '341182', + }, + ], + }, + { + name: '阜阳市', + code: '341200', + children: [ + { + name: '颍州区', + code: '341202', + }, + { + name: '颍东区', + code: '341203', + }, + { + name: '颍泉区', + code: '341204', + }, + { + name: '临泉县', + code: '341221', + }, + { + name: '太和县', + code: '341222', + }, + { + name: '阜南县', + code: '341225', + }, + { + name: '颍上县', + code: '341226', + }, + { + name: '界首市', + code: '341282', + }, + ], + }, + { + name: '宿州市', + code: '341300', + children: [ + { + name: '埇桥区', + code: '341302', + }, + { + name: '砀山县', + code: '341321', + }, + { + name: '萧县', + code: '341322', + }, + { + name: '灵璧县', + code: '341323', + }, + { + name: '泗县', + code: '341324', + }, + ], + }, + { + name: '六安市', + code: '341500', + children: [ + { + name: '金安区', + code: '341502', + }, + { + name: '裕安区', + code: '341503', + }, + { + name: '叶集区', + code: '341504', + }, + { + name: '霍邱县', + code: '341522', + }, + { + name: '舒城县', + code: '341523', + }, + { + name: '金寨县', + code: '341524', + }, + { + name: '霍山县', + code: '341525', + }, + ], + }, + { + name: '亳州市', + code: '341600', + children: [ + { + name: '谯城区', + code: '341602', + }, + { + name: '涡阳县', + code: '341621', + }, + { + name: '蒙城县', + code: '341622', + }, + { + name: '利辛县', + code: '341623', + }, + ], + }, + { + name: '池州市', + code: '341700', + children: [ + { + name: '贵池区', + code: '341702', + }, + { + name: '东至县', + code: '341721', + }, + { + name: '石台县', + code: '341722', + }, + { + name: '青阳县', + code: '341723', + }, + ], + }, + { + name: '宣城市', + code: '341800', + children: [ + { + name: '宣州区', + code: '341802', + }, + { + name: '郎溪县', + code: '341821', + }, + { + name: '广德县', + code: '341822', + }, + { + name: '泾县', + code: '341823', + }, + { + name: '绩溪县', + code: '341824', + }, + { + name: '旌德县', + code: '341825', + }, + { + name: '宁国市', + code: '341881', + }, + ], + }, + ], + }, + { + name: '福建省', + code: '350000', + region: 'east', + children: [ + { + name: '福州市', + code: '350100', + children: [ + { + name: '鼓楼区', + code: '350102', + }, + { + name: '台江区', + code: '350103', + }, + { + name: '仓山区', + code: '350104', + }, + { + name: '马尾区', + code: '350105', + }, + { + name: '晋安区', + code: '350111', + }, + { + name: '长乐区', + code: '350112', + }, + { + name: '闽侯县', + code: '350121', + }, + { + name: '连江县', + code: '350122', + }, + { + name: '罗源县', + code: '350123', + }, + { + name: '闽清县', + code: '350124', + }, + { + name: '永泰县', + code: '350125', + }, + { + name: '平潭县', + code: '350128', + }, + { + name: '福清市', + code: '350181', + }, + ], + }, + { + name: '厦门市', + code: '350200', + children: [ + { + name: '思明区', + code: '350203', + }, + { + name: '海沧区', + code: '350205', + }, + { + name: '湖里区', + code: '350206', + }, + { + name: '集美区', + code: '350211', + }, + { + name: '同安区', + code: '350212', + }, + { + name: '翔安区', + code: '350213', + }, + ], + }, + { + name: '莆田市', + code: '350300', + children: [ + { + name: '城厢区', + code: '350302', + }, + { + name: '涵江区', + code: '350303', + }, + { + name: '荔城区', + code: '350304', + }, + { + name: '秀屿区', + code: '350305', + }, + { + name: '仙游县', + code: '350322', + }, + ], + }, + { + name: '三明市', + code: '350400', + children: [ + { + name: '梅列区', + code: '350402', + }, + { + name: '三元区', + code: '350403', + }, + { + name: '明溪县', + code: '350421', + }, + { + name: '清流县', + code: '350423', + }, + { + name: '宁化县', + code: '350424', + }, + { + name: '大田县', + code: '350425', + }, + { + name: '尤溪县', + code: '350426', + }, + { + name: '沙县', + code: '350427', + }, + { + name: '将乐县', + code: '350428', + }, + { + name: '泰宁县', + code: '350429', + }, + { + name: '建宁县', + code: '350430', + }, + { + name: '永安市', + code: '350481', + }, + ], + }, + { + name: '泉州市', + code: '350500', + children: [ + { + name: '鲤城区', + code: '350502', + }, + { + name: '丰泽区', + code: '350503', + }, + { + name: '洛江区', + code: '350504', + }, + { + name: '泉港区', + code: '350505', + }, + { + name: '惠安县', + code: '350521', + }, + { + name: '安溪县', + code: '350524', + }, + { + name: '永春县', + code: '350525', + }, + { + name: '德化县', + code: '350526', + }, + { + name: '金门县', + code: '350527', + }, + { + name: '石狮市', + code: '350581', + }, + { + name: '晋江市', + code: '350582', + }, + { + name: '南安市', + code: '350583', + }, + ], + }, + { + name: '漳州市', + code: '350600', + children: [ + { + name: '芗城区', + code: '350602', + }, + { + name: '龙文区', + code: '350603', + }, + { + name: '云霄县', + code: '350622', + }, + { + name: '漳浦县', + code: '350623', + }, + { + name: '诏安县', + code: '350624', + }, + { + name: '长泰县', + code: '350625', + }, + { + name: '东山县', + code: '350626', + }, + { + name: '南靖县', + code: '350627', + }, + { + name: '平和县', + code: '350628', + }, + { + name: '华安县', + code: '350629', + }, + { + name: '龙海市', + code: '350681', + }, + ], + }, + { + name: '南平市', + code: '350700', + children: [ + { + name: '延平区', + code: '350702', + }, + { + name: '建阳区', + code: '350703', + }, + { + name: '顺昌县', + code: '350721', + }, + { + name: '浦城县', + code: '350722', + }, + { + name: '光泽县', + code: '350723', + }, + { + name: '松溪县', + code: '350724', + }, + { + name: '政和县', + code: '350725', + }, + { + name: '邵武市', + code: '350781', + }, + { + name: '武夷山市', + code: '350782', + }, + { + name: '建瓯市', + code: '350783', + }, + ], + }, + { + name: '龙岩市', + code: '350800', + children: [ + { + name: '新罗区', + code: '350802', + }, + { + name: '永定区', + code: '350803', + }, + { + name: '长汀县', + code: '350821', + }, + { + name: '上杭县', + code: '350823', + }, + { + name: '武平县', + code: '350824', + }, + { + name: '连城县', + code: '350825', + }, + { + name: '漳平市', + code: '350881', + }, + ], + }, + { + name: '宁德市', + code: '350900', + children: [ + { + name: '蕉城区', + code: '350902', + }, + { + name: '霞浦县', + code: '350921', + }, + { + name: '古田县', + code: '350922', + }, + { + name: '屏南县', + code: '350923', + }, + { + name: '寿宁县', + code: '350924', + }, + { + name: '周宁县', + code: '350925', + }, + { + name: '柘荣县', + code: '350926', + }, + { + name: '福安市', + code: '350981', + }, + { + name: '福鼎市', + code: '350982', + }, + ], + }, + ], + }, + { + name: '江西省', + code: '360000', + region: 'east', + children: [ + { + name: '南昌市', + code: '360100', + children: [ + { + name: '东湖区', + code: '360102', + }, + { + name: '西湖区', + code: '360103', + }, + { + name: '青云谱区', + code: '360104', + }, + { + name: '湾里区', + code: '360105', + }, + { + name: '青山湖区', + code: '360111', + }, + { + name: '新建区', + code: '360112', + }, + { + name: '南昌县', + code: '360121', + }, + { + name: '安义县', + code: '360123', + }, + { + name: '进贤县', + code: '360124', + }, + ], + }, + { + name: '景德镇市', + code: '360200', + children: [ + { + name: '昌江区', + code: '360202', + }, + { + name: '珠山区', + code: '360203', + }, + { + name: '浮梁县', + code: '360222', + }, + { + name: '乐平市', + code: '360281', + }, + ], + }, + { + name: '萍乡市', + code: '360300', + children: [ + { + name: '安源区', + code: '360302', + }, + { + name: '湘东区', + code: '360313', + }, + { + name: '莲花县', + code: '360321', + }, + { + name: '上栗县', + code: '360322', + }, + { + name: '芦溪县', + code: '360323', + }, + ], + }, + { + name: '九江市', + code: '360400', + children: [ + { + name: '濂溪区', + code: '360402', + }, + { + name: '浔阳区', + code: '360403', + }, + { + name: '柴桑区', + code: '360404', + }, + { + name: '武宁县', + code: '360423', + }, + { + name: '修水县', + code: '360424', + }, + { + name: '永修县', + code: '360425', + }, + { + name: '德安县', + code: '360426', + }, + { + name: '都昌县', + code: '360428', + }, + { + name: '湖口县', + code: '360429', + }, + { + name: '彭泽县', + code: '360430', + }, + { + name: '瑞昌市', + code: '360481', + }, + { + name: '共青城市', + code: '360482', + }, + { + name: '庐山市', + code: '360483', + }, + ], + }, + { + name: '新余市', + code: '360500', + children: [ + { + name: '渝水区', + code: '360502', + }, + { + name: '分宜县', + code: '360521', + }, + ], + }, + { + name: '鹰潭市', + code: '360600', + children: [ + { + name: '月湖区', + code: '360602', + }, + { + name: '余江区', + code: '360603', + }, + { + name: '贵溪市', + code: '360681', + }, + ], + }, + { + name: '赣州市', + code: '360700', + children: [ + { + name: '章贡区', + code: '360702', + }, + { + name: '南康区', + code: '360703', + }, + { + name: '赣县区', + code: '360704', + }, + { + name: '信丰县', + code: '360722', + }, + { + name: '大余县', + code: '360723', + }, + { + name: '上犹县', + code: '360724', + }, + { + name: '崇义县', + code: '360725', + }, + { + name: '安远县', + code: '360726', + }, + { + name: '龙南县', + code: '360727', + }, + { + name: '定南县', + code: '360728', + }, + { + name: '全南县', + code: '360729', + }, + { + name: '宁都县', + code: '360730', + }, + { + name: '于都县', + code: '360731', + }, + { + name: '兴国县', + code: '360732', + }, + { + name: '会昌县', + code: '360733', + }, + { + name: '寻乌县', + code: '360734', + }, + { + name: '石城县', + code: '360735', + }, + { + name: '瑞金市', + code: '360781', + }, + ], + }, + { + name: '吉安市', + code: '360800', + children: [ + { + name: '吉州区', + code: '360802', + }, + { + name: '青原区', + code: '360803', + }, + { + name: '吉安县', + code: '360821', + }, + { + name: '吉水县', + code: '360822', + }, + { + name: '峡江县', + code: '360823', + }, + { + name: '新干县', + code: '360824', + }, + { + name: '永丰县', + code: '360825', + }, + { + name: '泰和县', + code: '360826', + }, + { + name: '遂川县', + code: '360827', + }, + { + name: '万安县', + code: '360828', + }, + { + name: '安福县', + code: '360829', + }, + { + name: '永新县', + code: '360830', + }, + { + name: '井冈山市', + code: '360881', + }, + ], + }, + { + name: '宜春市', + code: '360900', + children: [ + { + name: '袁州区', + code: '360902', + }, + { + name: '奉新县', + code: '360921', + }, + { + name: '万载县', + code: '360922', + }, + { + name: '上高县', + code: '360923', + }, + { + name: '宜丰县', + code: '360924', + }, + { + name: '靖安县', + code: '360925', + }, + { + name: '铜鼓县', + code: '360926', + }, + { + name: '丰城市', + code: '360981', + }, + { + name: '樟树市', + code: '360982', + }, + { + name: '高安市', + code: '360983', + }, + ], + }, + { + name: '抚州市', + code: '361000', + children: [ + { + name: '临川区', + code: '361002', + }, + { + name: '东乡区', + code: '361003', + }, + { + name: '南城县', + code: '361021', + }, + { + name: '黎川县', + code: '361022', + }, + { + name: '南丰县', + code: '361023', + }, + { + name: '崇仁县', + code: '361024', + }, + { + name: '乐安县', + code: '361025', + }, + { + name: '宜黄县', + code: '361026', + }, + { + name: '金溪县', + code: '361027', + }, + { + name: '资溪县', + code: '361028', + }, + { + name: '广昌县', + code: '361030', + }, + ], + }, + { + name: '上饶市', + code: '361100', + children: [ + { + name: '信州区', + code: '361102', + }, + { + name: '广丰区', + code: '361103', + }, + { + name: '上饶县', + code: '361121', + }, + { + name: '玉山县', + code: '361123', + }, + { + name: '铅山县', + code: '361124', + }, + { + name: '横峰县', + code: '361125', + }, + { + name: '弋阳县', + code: '361126', + }, + { + name: '余干县', + code: '361127', + }, + { + name: '鄱阳县', + code: '361128', + }, + { + name: '万年县', + code: '361129', + }, + { + name: '婺源县', + code: '361130', + }, + { + name: '德兴市', + code: '361181', + }, + ], + }, + ], + }, + { + name: '山东省', + code: '370000', + region: 'east', + children: [ + { + name: '济南市', + code: '370100', + children: [ + { + name: '历下区', + code: '370102', + }, + { + name: '市中区', + code: '370103', + }, + { + name: '槐荫区', + code: '370104', + }, + { + name: '天桥区', + code: '370105', + }, + { + name: '历城区', + code: '370112', + }, + { + name: '长清区', + code: '370113', + }, + { + name: '章丘区', + code: '370114', + }, + { + name: '济阳区', + code: '370115', + }, + { + name: '莱芜区', + code: '370116', + }, + { + name: '钢城区', + code: '370117', + }, + { + name: '平阴县', + code: '370124', + }, + { + name: '商河县', + code: '370126', + }, + ], + }, + { + name: '青岛市', + code: '370200', + children: [ + { + name: '市南区', + code: '370202', + }, + { + name: '市北区', + code: '370203', + }, + { + name: '黄岛区', + code: '370211', + }, + { + name: '崂山区', + code: '370212', + }, + { + name: '李沧区', + code: '370213', + }, + { + name: '城阳区', + code: '370214', + }, + { + name: '即墨区', + code: '370215', + }, + { + name: '胶州市', + code: '370281', + }, + { + name: '平度市', + code: '370283', + }, + { + name: '莱西市', + code: '370285', + }, + ], + }, + { + name: '淄博市', + code: '370300', + children: [ + { + name: '淄川区', + code: '370302', + }, + { + name: '张店区', + code: '370303', + }, + { + name: '博山区', + code: '370304', + }, + { + name: '临淄区', + code: '370305', + }, + { + name: '周村区', + code: '370306', + }, + { + name: '桓台县', + code: '370321', + }, + { + name: '高青县', + code: '370322', + }, + { + name: '沂源县', + code: '370323', + }, + ], + }, + { + name: '枣庄市', + code: '370400', + children: [ + { + name: '市中区', + code: '370402', + }, + { + name: '薛城区', + code: '370403', + }, + { + name: '峄城区', + code: '370404', + }, + { + name: '台儿庄区', + code: '370405', + }, + { + name: '山亭区', + code: '370406', + }, + { + name: '滕州市', + code: '370481', + }, + ], + }, + { + name: '东营市', + code: '370500', + children: [ + { + name: '东营区', + code: '370502', + }, + { + name: '河口区', + code: '370503', + }, + { + name: '垦利区', + code: '370505', + }, + { + name: '利津县', + code: '370522', + }, + { + name: '广饶县', + code: '370523', + }, + ], + }, + { + name: '烟台市', + code: '370600', + children: [ + { + name: '芝罘区', + code: '370602', + }, + { + name: '福山区', + code: '370611', + }, + { + name: '牟平区', + code: '370612', + }, + { + name: '莱山区', + code: '370613', + }, + { + name: '长岛县', + code: '370634', + }, + { + name: '龙口市', + code: '370681', + }, + { + name: '莱阳市', + code: '370682', + }, + { + name: '莱州市', + code: '370683', + }, + { + name: '蓬莱市', + code: '370684', + }, + { + name: '招远市', + code: '370685', + }, + { + name: '栖霞市', + code: '370686', + }, + { + name: '海阳市', + code: '370687', + }, + ], + }, + { + name: '潍坊市', + code: '370700', + children: [ + { + name: '潍城区', + code: '370702', + }, + { + name: '寒亭区', + code: '370703', + }, + { + name: '坊子区', + code: '370704', + }, + { + name: '奎文区', + code: '370705', + }, + { + name: '临朐县', + code: '370724', + }, + { + name: '昌乐县', + code: '370725', + }, + { + name: '青州市', + code: '370781', + }, + { + name: '诸城市', + code: '370782', + }, + { + name: '寿光市', + code: '370783', + }, + { + name: '安丘市', + code: '370784', + }, + { + name: '高密市', + code: '370785', + }, + { + name: '昌邑市', + code: '370786', + }, + ], + }, + { + name: '济宁市', + code: '370800', + children: [ + { + name: '任城区', + code: '370811', + }, + { + name: '兖州区', + code: '370812', + }, + { + name: '微山县', + code: '370826', + }, + { + name: '鱼台县', + code: '370827', + }, + { + name: '金乡县', + code: '370828', + }, + { + name: '嘉祥县', + code: '370829', + }, + { + name: '汶上县', + code: '370830', + }, + { + name: '泗水县', + code: '370831', + }, + { + name: '梁山县', + code: '370832', + }, + { + name: '曲阜市', + code: '370881', + }, + { + name: '邹城市', + code: '370883', + }, + ], + }, + { + name: '泰安市', + code: '370900', + children: [ + { + name: '泰山区', + code: '370902', + }, + { + name: '岱岳区', + code: '370911', + }, + { + name: '宁阳县', + code: '370921', + }, + { + name: '东平县', + code: '370923', + }, + { + name: '新泰市', + code: '370982', + }, + { + name: '肥城市', + code: '370983', + }, + ], + }, + { + name: '威海市', + code: '371000', + children: [ + { + name: '环翠区', + code: '371002', + }, + { + name: '文登区', + code: '371003', + }, + { + name: '荣成市', + code: '371082', + }, + { + name: '乳山市', + code: '371083', + }, + ], + }, + { + name: '日照市', + code: '371100', + children: [ + { + name: '东港区', + code: '371102', + }, + { + name: '岚山区', + code: '371103', + }, + { + name: '五莲县', + code: '371121', + }, + { + name: '莒县', + code: '371122', + }, + ], + }, + { + name: '临沂市', + code: '371300', + children: [ + { + name: '兰山区', + code: '371302', + }, + { + name: '罗庄区', + code: '371311', + }, + { + name: '河东区', + code: '371312', + }, + { + name: '沂南县', + code: '371321', + }, + { + name: '郯城县', + code: '371322', + }, + { + name: '沂水县', + code: '371323', + }, + { + name: '兰陵县', + code: '371324', + }, + { + name: '费县', + code: '371325', + }, + { + name: '平邑县', + code: '371326', + }, + { + name: '莒南县', + code: '371327', + }, + { + name: '蒙阴县', + code: '371328', + }, + { + name: '临沭县', + code: '371329', + }, + ], + }, + { + name: '德州市', + code: '371400', + children: [ + { + name: '德城区', + code: '371402', + }, + { + name: '陵城区', + code: '371403', + }, + { + name: '宁津县', + code: '371422', + }, + { + name: '庆云县', + code: '371423', + }, + { + name: '临邑县', + code: '371424', + }, + { + name: '齐河县', + code: '371425', + }, + { + name: '平原县', + code: '371426', + }, + { + name: '夏津县', + code: '371427', + }, + { + name: '武城县', + code: '371428', + }, + { + name: '乐陵市', + code: '371481', + }, + { + name: '禹城市', + code: '371482', + }, + ], + }, + { + name: '聊城市', + code: '371500', + children: [ + { + name: '东昌府区', + code: '371502', + }, + { + name: '阳谷县', + code: '371521', + }, + { + name: '莘县', + code: '371522', + }, + { + name: '茌平县', + code: '371523', + }, + { + name: '东阿县', + code: '371524', + }, + { + name: '冠县', + code: '371525', + }, + { + name: '高唐县', + code: '371526', + }, + { + name: '临清市', + code: '371581', + }, + ], + }, + { + name: '滨州市', + code: '371600', + children: [ + { + name: '滨城区', + code: '371602', + }, + { + name: '沾化区', + code: '371603', + }, + { + name: '惠民县', + code: '371621', + }, + { + name: '阳信县', + code: '371622', + }, + { + name: '无棣县', + code: '371623', + }, + { + name: '博兴县', + code: '371625', + }, + { + name: '邹平市', + code: '371681', + }, + ], + }, + { + name: '菏泽市', + code: '371700', + children: [ + { + name: '牡丹区', + code: '371702', + }, + { + name: '定陶区', + code: '371703', + }, + { + name: '曹县', + code: '371721', + }, + { + name: '单县', + code: '371722', + }, + { + name: '成武县', + code: '371723', + }, + { + name: '巨野县', + code: '371724', + }, + { + name: '郓城县', + code: '371725', + }, + { + name: '鄄城县', + code: '371726', + }, + { + name: '东明县', + code: '371728', + }, + ], + }, + ], + }, + { + name: '河南省', + code: '410000', + region: 'central', + children: [ + { + name: '郑州市', + code: '410100', + children: [ + { + name: '中原区', + code: '410102', + }, + { + name: '二七区', + code: '410103', + }, + { + name: '管城回族区', + code: '410104', + }, + { + name: '金水区', + code: '410105', + }, + { + name: '上街区', + code: '410106', + }, + { + name: '惠济区', + code: '410108', + }, + { + name: '中牟县', + code: '410122', + }, + { + name: '巩义市', + code: '410181', + }, + { + name: '荥阳市', + code: '410182', + }, + { + name: '新密市', + code: '410183', + }, + { + name: '新郑市', + code: '410184', + }, + { + name: '登封市', + code: '410185', + }, + ], + }, + { + name: '开封市', + code: '410200', + children: [ + { + name: '龙亭区', + code: '410202', + }, + { + name: '顺河回族区', + code: '410203', + }, + { + name: '鼓楼区', + code: '410204', + }, + { + name: '禹王台区', + code: '410205', + }, + { + name: '祥符区', + code: '410212', + }, + { + name: '杞县', + code: '410221', + }, + { + name: '通许县', + code: '410222', + }, + { + name: '尉氏县', + code: '410223', + }, + { + name: '兰考县', + code: '410225', + }, + ], + }, + { + name: '洛阳市', + code: '410300', + children: [ + { + name: '老城区', + code: '410302', + }, + { + name: '西工区', + code: '410303', + }, + { + name: '瀍河回族区', + code: '410304', + }, + { + name: '涧西区', + code: '410305', + }, + { + name: '吉利区', + code: '410306', + }, + { + name: '洛龙区', + code: '410311', + }, + { + name: '孟津县', + code: '410322', + }, + { + name: '新安县', + code: '410323', + }, + { + name: '栾川县', + code: '410324', + }, + { + name: '嵩县', + code: '410325', + }, + { + name: '汝阳县', + code: '410326', + }, + { + name: '宜阳县', + code: '410327', + }, + { + name: '洛宁县', + code: '410328', + }, + { + name: '伊川县', + code: '410329', + }, + { + name: '偃师市', + code: '410381', + }, + ], + }, + { + name: '平顶山市', + code: '410400', + children: [ + { + name: '新华区', + code: '410402', + }, + { + name: '卫东区', + code: '410403', + }, + { + name: '石龙区', + code: '410404', + }, + { + name: '湛河区', + code: '410411', + }, + { + name: '宝丰县', + code: '410421', + }, + { + name: '叶县', + code: '410422', + }, + { + name: '鲁山县', + code: '410423', + }, + { + name: '郏县', + code: '410425', + }, + { + name: '舞钢市', + code: '410481', + }, + { + name: '汝州市', + code: '410482', + }, + ], + }, + { + name: '安阳市', + code: '410500', + children: [ + { + name: '文峰区', + code: '410502', + }, + { + name: '北关区', + code: '410503', + }, + { + name: '殷都区', + code: '410505', + }, + { + name: '龙安区', + code: '410506', + }, + { + name: '安阳县', + code: '410522', + }, + { + name: '汤阴县', + code: '410523', + }, + { + name: '滑县', + code: '410526', + }, + { + name: '内黄县', + code: '410527', + }, + { + name: '林州市', + code: '410581', + }, + ], + }, + { + name: '鹤壁市', + code: '410600', + children: [ + { + name: '鹤山区', + code: '410602', + }, + { + name: '山城区', + code: '410603', + }, + { + name: '淇滨区', + code: '410611', + }, + { + name: '浚县', + code: '410621', + }, + { + name: '淇县', + code: '410622', + }, + ], + }, + { + name: '新乡市', + code: '410700', + children: [ + { + name: '红旗区', + code: '410702', + }, + { + name: '卫滨区', + code: '410703', + }, + { + name: '凤泉区', + code: '410704', + }, + { + name: '牧野区', + code: '410711', + }, + { + name: '新乡县', + code: '410721', + }, + { + name: '获嘉县', + code: '410724', + }, + { + name: '原阳县', + code: '410725', + }, + { + name: '延津县', + code: '410726', + }, + { + name: '封丘县', + code: '410727', + }, + { + name: '长垣县', + code: '410728', + }, + { + name: '卫辉市', + code: '410781', + }, + { + name: '辉县市', + code: '410782', + }, + ], + }, + { + name: '焦作市', + code: '410800', + children: [ + { + name: '解放区', + code: '410802', + }, + { + name: '中站区', + code: '410803', + }, + { + name: '马村区', + code: '410804', + }, + { + name: '山阳区', + code: '410811', + }, + { + name: '修武县', + code: '410821', + }, + { + name: '博爱县', + code: '410822', + }, + { + name: '武陟县', + code: '410823', + }, + { + name: '温县', + code: '410825', + }, + { + name: '沁阳市', + code: '410882', + }, + { + name: '孟州市', + code: '410883', + }, + ], + }, + { + name: '濮阳市', + code: '410900', + children: [ + { + name: '华龙区', + code: '410902', + }, + { + name: '清丰县', + code: '410922', + }, + { + name: '南乐县', + code: '410923', + }, + { + name: '范县', + code: '410926', + }, + { + name: '台前县', + code: '410927', + }, + { + name: '濮阳县', + code: '410928', + }, + ], + }, + { + name: '许昌市', + code: '411000', + children: [ + { + name: '魏都区', + code: '411002', + }, + { + name: '建安区', + code: '411003', + }, + { + name: '鄢陵县', + code: '411024', + }, + { + name: '襄城县', + code: '411025', + }, + { + name: '禹州市', + code: '411081', + }, + { + name: '长葛市', + code: '411082', + }, + ], + }, + { + name: '漯河市', + code: '411100', + children: [ + { + name: '源汇区', + code: '411102', + }, + { + name: '郾城区', + code: '411103', + }, + { + name: '召陵区', + code: '411104', + }, + { + name: '舞阳县', + code: '411121', + }, + { + name: '临颍县', + code: '411122', + }, + ], + }, + { + name: '三门峡市', + code: '411200', + children: [ + { + name: '湖滨区', + code: '411202', + }, + { + name: '陕州区', + code: '411203', + }, + { + name: '渑池县', + code: '411221', + }, + { + name: '卢氏县', + code: '411224', + }, + { + name: '义马市', + code: '411281', + }, + { + name: '灵宝市', + code: '411282', + }, + ], + }, + { + name: '南阳市', + code: '411300', + children: [ + { + name: '宛城区', + code: '411302', + }, + { + name: '卧龙区', + code: '411303', + }, + { + name: '南召县', + code: '411321', + }, + { + name: '方城县', + code: '411322', + }, + { + name: '西峡县', + code: '411323', + }, + { + name: '镇平县', + code: '411324', + }, + { + name: '内乡县', + code: '411325', + }, + { + name: '淅川县', + code: '411326', + }, + { + name: '社旗县', + code: '411327', + }, + { + name: '唐河县', + code: '411328', + }, + { + name: '新野县', + code: '411329', + }, + { + name: '桐柏县', + code: '411330', + }, + { + name: '邓州市', + code: '411381', + }, + ], + }, + { + name: '商丘市', + code: '411400', + children: [ + { + name: '梁园区', + code: '411402', + }, + { + name: '睢阳区', + code: '411403', + }, + { + name: '民权县', + code: '411421', + }, + { + name: '睢县', + code: '411422', + }, + { + name: '宁陵县', + code: '411423', + }, + { + name: '柘城县', + code: '411424', + }, + { + name: '虞城县', + code: '411425', + }, + { + name: '夏邑县', + code: '411426', + }, + { + name: '永城市', + code: '411481', + }, + ], + }, + { + name: '信阳市', + code: '411500', + children: [ + { + name: '浉河区', + code: '411502', + }, + { + name: '平桥区', + code: '411503', + }, + { + name: '罗山县', + code: '411521', + }, + { + name: '光山县', + code: '411522', + }, + { + name: '新县', + code: '411523', + }, + { + name: '商城县', + code: '411524', + }, + { + name: '固始县', + code: '411525', + }, + { + name: '潢川县', + code: '411526', + }, + { + name: '淮滨县', + code: '411527', + }, + { + name: '息县', + code: '411528', + }, + ], + }, + { + name: '周口市', + code: '411600', + children: [ + { + name: '川汇区', + code: '411602', + }, + { + name: '扶沟县', + code: '411621', + }, + { + name: '西华县', + code: '411622', + }, + { + name: '商水县', + code: '411623', + }, + { + name: '沈丘县', + code: '411624', + }, + { + name: '郸城县', + code: '411625', + }, + { + name: '淮阳县', + code: '411626', + }, + { + name: '太康县', + code: '411627', + }, + { + name: '鹿邑县', + code: '411628', + }, + { + name: '项城市', + code: '411681', + }, + ], + }, + { + name: '驻马店市', + code: '411700', + children: [ + { + name: '驿城区', + code: '411702', + }, + { + name: '西平县', + code: '411721', + }, + { + name: '上蔡县', + code: '411722', + }, + { + name: '平舆县', + code: '411723', + }, + { + name: '正阳县', + code: '411724', + }, + { + name: '确山县', + code: '411725', + }, + { + name: '泌阳县', + code: '411726', + }, + { + name: '汝南县', + code: '411727', + }, + { + name: '遂平县', + code: '411728', + }, + { + name: '新蔡县', + code: '411729', + }, + ], + }, + { + name: '直辖县', + code: '419000', + children: [ + { + name: '济源市', + code: '419001', + }, + ], + }, + ], + }, + { + name: '湖北省', + code: '420000', + region: 'central', + children: [ + { + name: '武汉市', + code: '420100', + children: [ + { + name: '江岸区', + code: '420102', + }, + { + name: '江汉区', + code: '420103', + }, + { + name: '硚口区', + code: '420104', + }, + { + name: '汉阳区', + code: '420105', + }, + { + name: '武昌区', + code: '420106', + }, + { + name: '青山区', + code: '420107', + }, + { + name: '洪山区', + code: '420111', + }, + { + name: '东西湖区', + code: '420112', + }, + { + name: '汉南区', + code: '420113', + }, + { + name: '蔡甸区', + code: '420114', + }, + { + name: '江夏区', + code: '420115', + }, + { + name: '黄陂区', + code: '420116', + }, + { + name: '新洲区', + code: '420117', + }, + ], + }, + { + name: '黄石市', + code: '420200', + children: [ + { + name: '黄石港区', + code: '420202', + }, + { + name: '西塞山区', + code: '420203', + }, + { + name: '下陆区', + code: '420204', + }, + { + name: '铁山区', + code: '420205', + }, + { + name: '阳新县', + code: '420222', + }, + { + name: '大冶市', + code: '420281', + }, + ], + }, + { + name: '十堰市', + code: '420300', + children: [ + { + name: '茅箭区', + code: '420302', + }, + { + name: '张湾区', + code: '420303', + }, + { + name: '郧阳区', + code: '420304', + }, + { + name: '郧西县', + code: '420322', + }, + { + name: '竹山县', + code: '420323', + }, + { + name: '竹溪县', + code: '420324', + }, + { + name: '房县', + code: '420325', + }, + { + name: '丹江口市', + code: '420381', + }, + ], + }, + { + name: '宜昌市', + code: '420500', + children: [ + { + name: '西陵区', + code: '420502', + }, + { + name: '伍家岗区', + code: '420503', + }, + { + name: '点军区', + code: '420504', + }, + { + name: '猇亭区', + code: '420505', + }, + { + name: '夷陵区', + code: '420506', + }, + { + name: '远安县', + code: '420525', + }, + { + name: '兴山县', + code: '420526', + }, + { + name: '秭归县', + code: '420527', + }, + { + name: '长阳土家族自治县', + code: '420528', + }, + { + name: '五峰土家族自治县', + code: '420529', + }, + { + name: '宜都市', + code: '420581', + }, + { + name: '当阳市', + code: '420582', + }, + { + name: '枝江市', + code: '420583', + }, + ], + }, + { + name: '襄阳市', + code: '420600', + children: [ + { + name: '襄城区', + code: '420602', + }, + { + name: '樊城区', + code: '420606', + }, + { + name: '襄州区', + code: '420607', + }, + { + name: '南漳县', + code: '420624', + }, + { + name: '谷城县', + code: '420625', + }, + { + name: '保康县', + code: '420626', + }, + { + name: '老河口市', + code: '420682', + }, + { + name: '枣阳市', + code: '420683', + }, + { + name: '宜城市', + code: '420684', + }, + ], + }, + { + name: '鄂州市', + code: '420700', + children: [ + { + name: '梁子湖区', + code: '420702', + }, + { + name: '华容区', + code: '420703', + }, + { + name: '鄂城区', + code: '420704', + }, + ], + }, + { + name: '荆门市', + code: '420800', + children: [ + { + name: '东宝区', + code: '420802', + }, + { + name: '掇刀区', + code: '420804', + }, + { + name: '沙洋县', + code: '420822', + }, + { + name: '钟祥市', + code: '420881', + }, + { + name: '京山市', + code: '420882', + }, + ], + }, + { + name: '孝感市', + code: '420900', + children: [ + { + name: '孝南区', + code: '420902', + }, + { + name: '孝昌县', + code: '420921', + }, + { + name: '大悟县', + code: '420922', + }, + { + name: '云梦县', + code: '420923', + }, + { + name: '应城市', + code: '420981', + }, + { + name: '安陆市', + code: '420982', + }, + { + name: '汉川市', + code: '420984', + }, + ], + }, + { + name: '荆州市', + code: '421000', + children: [ + { + name: '沙市区', + code: '421002', + }, + { + name: '荆州区', + code: '421003', + }, + { + name: '公安县', + code: '421022', + }, + { + name: '监利县', + code: '421023', + }, + { + name: '江陵县', + code: '421024', + }, + { + name: '石首市', + code: '421081', + }, + { + name: '洪湖市', + code: '421083', + }, + { + name: '松滋市', + code: '421087', + }, + ], + }, + { + name: '黄冈市', + code: '421100', + children: [ + { + name: '黄州区', + code: '421102', + }, + { + name: '团风县', + code: '421121', + }, + { + name: '红安县', + code: '421122', + }, + { + name: '罗田县', + code: '421123', + }, + { + name: '英山县', + code: '421124', + }, + { + name: '浠水县', + code: '421125', + }, + { + name: '蕲春县', + code: '421126', + }, + { + name: '黄梅县', + code: '421127', + }, + { + name: '麻城市', + code: '421181', + }, + { + name: '武穴市', + code: '421182', + }, + ], + }, + { + name: '咸宁市', + code: '421200', + children: [ + { + name: '咸安区', + code: '421202', + }, + { + name: '嘉鱼县', + code: '421221', + }, + { + name: '通城县', + code: '421222', + }, + { + name: '崇阳县', + code: '421223', + }, + { + name: '通山县', + code: '421224', + }, + { + name: '赤壁市', + code: '421281', + }, + ], + }, + { + name: '随州市', + code: '421300', + children: [ + { + name: '曾都区', + code: '421303', + }, + { + name: '随县', + code: '421321', + }, + { + name: '广水市', + code: '421381', + }, + ], + }, + { + name: '恩施土家族苗族自治州', + code: '422800', + children: [ + { + name: '恩施市', + code: '422801', + }, + { + name: '利川市', + code: '422802', + }, + { + name: '建始县', + code: '422822', + }, + { + name: '巴东县', + code: '422823', + }, + { + name: '宣恩县', + code: '422825', + }, + { + name: '咸丰县', + code: '422826', + }, + { + name: '来凤县', + code: '422827', + }, + { + name: '鹤峰县', + code: '422828', + }, + ], + }, + { + name: '直辖县', + code: '429000', + children: [ + { + name: '仙桃市', + code: '429004', + }, + { + name: '潜江市', + code: '429005', + }, + { + name: '天门市', + code: '429006', + }, + { + name: '神农架林区', + code: '429021', + }, + ], + }, + ], + }, + { + name: '湖南省', + code: '430000', + region: 'central', + children: [ + { + name: '长沙市', + code: '430100', + children: [ + { + name: '芙蓉区', + code: '430102', + }, + { + name: '天心区', + code: '430103', + }, + { + name: '岳麓区', + code: '430104', + }, + { + name: '开福区', + code: '430105', + }, + { + name: '雨花区', + code: '430111', + }, + { + name: '望城区', + code: '430112', + }, + { + name: '长沙县', + code: '430121', + }, + { + name: '浏阳市', + code: '430181', + }, + { + name: '宁乡市', + code: '430182', + }, + ], + }, + { + name: '株洲市', + code: '430200', + children: [ + { + name: '荷塘区', + code: '430202', + }, + { + name: '芦淞区', + code: '430203', + }, + { + name: '石峰区', + code: '430204', + }, + { + name: '天元区', + code: '430211', + }, + { + name: '渌口区', + code: '430212', + }, + { + name: '攸县', + code: '430223', + }, + { + name: '茶陵县', + code: '430224', + }, + { + name: '炎陵县', + code: '430225', + }, + { + name: '醴陵市', + code: '430281', + }, + ], + }, + { + name: '湘潭市', + code: '430300', + children: [ + { + name: '雨湖区', + code: '430302', + }, + { + name: '岳塘区', + code: '430304', + }, + { + name: '湘潭县', + code: '430321', + }, + { + name: '湘乡市', + code: '430381', + }, + { + name: '韶山市', + code: '430382', + }, + ], + }, + { + name: '衡阳市', + code: '430400', + children: [ + { + name: '珠晖区', + code: '430405', + }, + { + name: '雁峰区', + code: '430406', + }, + { + name: '石鼓区', + code: '430407', + }, + { + name: '蒸湘区', + code: '430408', + }, + { + name: '南岳区', + code: '430412', + }, + { + name: '衡阳县', + code: '430421', + }, + { + name: '衡南县', + code: '430422', + }, + { + name: '衡山县', + code: '430423', + }, + { + name: '衡东县', + code: '430424', + }, + { + name: '祁东县', + code: '430426', + }, + { + name: '耒阳市', + code: '430481', + }, + { + name: '常宁市', + code: '430482', + }, + ], + }, + { + name: '邵阳市', + code: '430500', + children: [ + { + name: '双清区', + code: '430502', + }, + { + name: '大祥区', + code: '430503', + }, + { + name: '北塔区', + code: '430511', + }, + { + name: '邵东县', + code: '430521', + }, + { + name: '新邵县', + code: '430522', + }, + { + name: '邵阳县', + code: '430523', + }, + { + name: '隆回县', + code: '430524', + }, + { + name: '洞口县', + code: '430525', + }, + { + name: '绥宁县', + code: '430527', + }, + { + name: '新宁县', + code: '430528', + }, + { + name: '城步苗族自治县', + code: '430529', + }, + { + name: '武冈市', + code: '430581', + }, + ], + }, + { + name: '岳阳市', + code: '430600', + children: [ + { + name: '岳阳楼区', + code: '430602', + }, + { + name: '云溪区', + code: '430603', + }, + { + name: '君山区', + code: '430611', + }, + { + name: '岳阳县', + code: '430621', + }, + { + name: '华容县', + code: '430623', + }, + { + name: '湘阴县', + code: '430624', + }, + { + name: '平江县', + code: '430626', + }, + { + name: '汨罗市', + code: '430681', + }, + { + name: '临湘市', + code: '430682', + }, + ], + }, + { + name: '常德市', + code: '430700', + children: [ + { + name: '武陵区', + code: '430702', + }, + { + name: '鼎城区', + code: '430703', + }, + { + name: '安乡县', + code: '430721', + }, + { + name: '汉寿县', + code: '430722', + }, + { + name: '澧县', + code: '430723', + }, + { + name: '临澧县', + code: '430724', + }, + { + name: '桃源县', + code: '430725', + }, + { + name: '石门县', + code: '430726', + }, + { + name: '津市市', + code: '430781', + }, + ], + }, + { + name: '张家界市', + code: '430800', + children: [ + { + name: '永定区', + code: '430802', + }, + { + name: '武陵源区', + code: '430811', + }, + { + name: '慈利县', + code: '430821', + }, + { + name: '桑植县', + code: '430822', + }, + ], + }, + { + name: '益阳市', + code: '430900', + children: [ + { + name: '资阳区', + code: '430902', + }, + { + name: '赫山区', + code: '430903', + }, + { + name: '南县', + code: '430921', + }, + { + name: '桃江县', + code: '430922', + }, + { + name: '安化县', + code: '430923', + }, + { + name: '沅江市', + code: '430981', + }, + ], + }, + { + name: '郴州市', + code: '431000', + children: [ + { + name: '北湖区', + code: '431002', + }, + { + name: '苏仙区', + code: '431003', + }, + { + name: '桂阳县', + code: '431021', + }, + { + name: '宜章县', + code: '431022', + }, + { + name: '永兴县', + code: '431023', + }, + { + name: '嘉禾县', + code: '431024', + }, + { + name: '临武县', + code: '431025', + }, + { + name: '汝城县', + code: '431026', + }, + { + name: '桂东县', + code: '431027', + }, + { + name: '安仁县', + code: '431028', + }, + { + name: '资兴市', + code: '431081', + }, + ], + }, + { + name: '永州市', + code: '431100', + children: [ + { + name: '零陵区', + code: '431102', + }, + { + name: '冷水滩区', + code: '431103', + }, + { + name: '祁阳县', + code: '431121', + }, + { + name: '东安县', + code: '431122', + }, + { + name: '双牌县', + code: '431123', + }, + { + name: '道县', + code: '431124', + }, + { + name: '江永县', + code: '431125', + }, + { + name: '宁远县', + code: '431126', + }, + { + name: '蓝山县', + code: '431127', + }, + { + name: '新田县', + code: '431128', + }, + { + name: '江华瑶族自治县', + code: '431129', + }, + ], + }, + { + name: '怀化市', + code: '431200', + children: [ + { + name: '鹤城区', + code: '431202', + }, + { + name: '中方县', + code: '431221', + }, + { + name: '沅陵县', + code: '431222', + }, + { + name: '辰溪县', + code: '431223', + }, + { + name: '溆浦县', + code: '431224', + }, + { + name: '会同县', + code: '431225', + }, + { + name: '麻阳苗族自治县', + code: '431226', + }, + { + name: '新晃侗族自治县', + code: '431227', + }, + { + name: '芷江侗族自治县', + code: '431228', + }, + { + name: '靖州苗族侗族自治县', + code: '431229', + }, + { + name: '通道侗族自治县', + code: '431230', + }, + { + name: '洪江市', + code: '431281', + }, + ], + }, + { + name: '娄底市', + code: '431300', + children: [ + { + name: '娄星区', + code: '431302', + }, + { + name: '双峰县', + code: '431321', + }, + { + name: '新化县', + code: '431322', + }, + { + name: '冷水江市', + code: '431381', + }, + { + name: '涟源市', + code: '431382', + }, + ], + }, + { + name: '湘西土家族苗族自治州', + code: '433100', + children: [ + { + name: '吉首市', + code: '433101', + }, + { + name: '泸溪县', + code: '433122', + }, + { + name: '凤凰县', + code: '433123', + }, + { + name: '花垣县', + code: '433124', + }, + { + name: '保靖县', + code: '433125', + }, + { + name: '古丈县', + code: '433126', + }, + { + name: '永顺县', + code: '433127', + }, + { + name: '龙山县', + code: '433130', + }, + ], + }, + ], + }, + { + name: '广东省', + code: '440000', + region: 'south', + children: [ + { + name: '广州市', + code: '440100', + children: [ + { + name: '荔湾区', + code: '440103', + }, + { + name: '越秀区', + code: '440104', + }, + { + name: '海珠区', + code: '440105', + }, + { + name: '天河区', + code: '440106', + }, + { + name: '白云区', + code: '440111', + }, + { + name: '黄埔区', + code: '440112', + }, + { + name: '番禺区', + code: '440113', + }, + { + name: '花都区', + code: '440114', + }, + { + name: '南沙区', + code: '440115', + }, + { + name: '从化区', + code: '440117', + }, + { + name: '增城区', + code: '440118', + }, + ], + }, + { + name: '韶关市', + code: '440200', + children: [ + { + name: '武江区', + code: '440203', + }, + { + name: '浈江区', + code: '440204', + }, + { + name: '曲江区', + code: '440205', + }, + { + name: '始兴县', + code: '440222', + }, + { + name: '仁化县', + code: '440224', + }, + { + name: '翁源县', + code: '440229', + }, + { + name: '乳源瑶族自治县', + code: '440232', + }, + { + name: '新丰县', + code: '440233', + }, + { + name: '乐昌市', + code: '440281', + }, + { + name: '南雄市', + code: '440282', + }, + ], + }, + { + name: '深圳市', + code: '440300', + children: [ + { + name: '罗湖区', + code: '440303', + }, + { + name: '福田区', + code: '440304', + }, + { + name: '南山区', + code: '440305', + }, + { + name: '宝安区', + code: '440306', + }, + { + name: '龙岗区', + code: '440307', + }, + { + name: '盐田区', + code: '440308', + }, + { + name: '龙华区', + code: '440309', + }, + { + name: '坪山区', + code: '440310', + }, + { + name: '光明区', + code: '440311', + }, + ], + }, + { + name: '珠海市', + code: '440400', + children: [ + { + name: '香洲区', + code: '440402', + }, + { + name: '斗门区', + code: '440403', + }, + { + name: '金湾区', + code: '440404', + }, + ], + }, + { + name: '汕头市', + code: '440500', + children: [ + { + name: '龙湖区', + code: '440507', + }, + { + name: '金平区', + code: '440511', + }, + { + name: '濠江区', + code: '440512', + }, + { + name: '潮阳区', + code: '440513', + }, + { + name: '潮南区', + code: '440514', + }, + { + name: '澄海区', + code: '440515', + }, + { + name: '南澳县', + code: '440523', + }, + ], + }, + { + name: '佛山市', + code: '440600', + children: [ + { + name: '禅城区', + code: '440604', + }, + { + name: '南海区', + code: '440605', + }, + { + name: '顺德区', + code: '440606', + }, + { + name: '三水区', + code: '440607', + }, + { + name: '高明区', + code: '440608', + }, + ], + }, + { + name: '江门市', + code: '440700', + children: [ + { + name: '蓬江区', + code: '440703', + }, + { + name: '江海区', + code: '440704', + }, + { + name: '新会区', + code: '440705', + }, + { + name: '台山市', + code: '440781', + }, + { + name: '开平市', + code: '440783', + }, + { + name: '鹤山市', + code: '440784', + }, + { + name: '恩平市', + code: '440785', + }, + ], + }, + { + name: '湛江市', + code: '440800', + children: [ + { + name: '赤坎区', + code: '440802', + }, + { + name: '霞山区', + code: '440803', + }, + { + name: '坡头区', + code: '440804', + }, + { + name: '麻章区', + code: '440811', + }, + { + name: '遂溪县', + code: '440823', + }, + { + name: '徐闻县', + code: '440825', + }, + { + name: '廉江市', + code: '440881', + }, + { + name: '雷州市', + code: '440882', + }, + { + name: '吴川市', + code: '440883', + }, + ], + }, + { + name: '茂名市', + code: '440900', + children: [ + { + name: '茂南区', + code: '440902', + }, + { + name: '电白区', + code: '440904', + }, + { + name: '高州市', + code: '440981', + }, + { + name: '化州市', + code: '440982', + }, + { + name: '信宜市', + code: '440983', + }, + ], + }, + { + name: '肇庆市', + code: '441200', + children: [ + { + name: '端州区', + code: '441202', + }, + { + name: '鼎湖区', + code: '441203', + }, + { + name: '高要区', + code: '441204', + }, + { + name: '广宁县', + code: '441223', + }, + { + name: '怀集县', + code: '441224', + }, + { + name: '封开县', + code: '441225', + }, + { + name: '德庆县', + code: '441226', + }, + { + name: '四会市', + code: '441284', + }, + ], + }, + { + name: '惠州市', + code: '441300', + children: [ + { + name: '惠城区', + code: '441302', + }, + { + name: '惠阳区', + code: '441303', + }, + { + name: '博罗县', + code: '441322', + }, + { + name: '惠东县', + code: '441323', + }, + { + name: '龙门县', + code: '441324', + }, + ], + }, + { + name: '梅州市', + code: '441400', + children: [ + { + name: '梅江区', + code: '441402', + }, + { + name: '梅县区', + code: '441403', + }, + { + name: '大埔县', + code: '441422', + }, + { + name: '丰顺县', + code: '441423', + }, + { + name: '五华县', + code: '441424', + }, + { + name: '平远县', + code: '441426', + }, + { + name: '蕉岭县', + code: '441427', + }, + { + name: '兴宁市', + code: '441481', + }, + ], + }, + { + name: '汕尾市', + code: '441500', + children: [ + { + name: '城区', + code: '441502', + }, + { + name: '海丰县', + code: '441521', + }, + { + name: '陆河县', + code: '441523', + }, + { + name: '陆丰市', + code: '441581', + }, + ], + }, + { + name: '河源市', + code: '441600', + children: [ + { + name: '源城区', + code: '441602', + }, + { + name: '紫金县', + code: '441621', + }, + { + name: '龙川县', + code: '441622', + }, + { + name: '连平县', + code: '441623', + }, + { + name: '和平县', + code: '441624', + }, + { + name: '东源县', + code: '441625', + }, + ], + }, + { + name: '阳江市', + code: '441700', + children: [ + { + name: '江城区', + code: '441702', + }, + { + name: '阳东区', + code: '441704', + }, + { + name: '阳西县', + code: '441721', + }, + { + name: '阳春市', + code: '441781', + }, + ], + }, + { + name: '清远市', + code: '441800', + children: [ + { + name: '清城区', + code: '441802', + }, + { + name: '清新区', + code: '441803', + }, + { + name: '佛冈县', + code: '441821', + }, + { + name: '阳山县', + code: '441823', + }, + { + name: '连山壮族瑶族自治县', + code: '441825', + }, + { + name: '连南瑶族自治县', + code: '441826', + }, + { + name: '英德市', + code: '441881', + }, + { + name: '连州市', + code: '441882', + }, + ], + }, + { + name: '东莞市', + code: '441900', + children: [], + }, + { + name: '中山市', + code: '442000', + children: [], + }, + { + name: '潮州市', + code: '445100', + children: [ + { + name: '湘桥区', + code: '445102', + }, + { + name: '潮安区', + code: '445103', + }, + { + name: '饶平县', + code: '445122', + }, + ], + }, + { + name: '揭阳市', + code: '445200', + children: [ + { + name: '榕城区', + code: '445202', + }, + { + name: '揭东区', + code: '445203', + }, + { + name: '揭西县', + code: '445222', + }, + { + name: '惠来县', + code: '445224', + }, + { + name: '普宁市', + code: '445281', + }, + ], + }, + { + name: '云浮市', + code: '445300', + children: [ + { + name: '云城区', + code: '445302', + }, + { + name: '云安区', + code: '445303', + }, + { + name: '新兴县', + code: '445321', + }, + { + name: '郁南县', + code: '445322', + }, + { + name: '罗定市', + code: '445381', + }, + ], + }, + ], + }, + { + name: '广西壮族自治区', + code: '450000', + region: 'south', + autonomousRegion: true, + children: [ + { + name: '南宁市', + code: '450100', + children: [ + { + name: '兴宁区', + code: '450102', + }, + { + name: '青秀区', + code: '450103', + }, + { + name: '江南区', + code: '450105', + }, + { + name: '西乡塘区', + code: '450107', + }, + { + name: '良庆区', + code: '450108', + }, + { + name: '邕宁区', + code: '450109', + }, + { + name: '武鸣区', + code: '450110', + }, + { + name: '隆安县', + code: '450123', + }, + { + name: '马山县', + code: '450124', + }, + { + name: '上林县', + code: '450125', + }, + { + name: '宾阳县', + code: '450126', + }, + { + name: '横县', + code: '450127', + }, + ], + }, + { + name: '柳州市', + code: '450200', + children: [ + { + name: '城中区', + code: '450202', + }, + { + name: '鱼峰区', + code: '450203', + }, + { + name: '柳南区', + code: '450204', + }, + { + name: '柳北区', + code: '450205', + }, + { + name: '柳江区', + code: '450206', + }, + { + name: '柳城县', + code: '450222', + }, + { + name: '鹿寨县', + code: '450223', + }, + { + name: '融安县', + code: '450224', + }, + { + name: '融水苗族自治县', + code: '450225', + }, + { + name: '三江侗族自治县', + code: '450226', + }, + ], + }, + { + name: '桂林市', + code: '450300', + children: [ + { + name: '秀峰区', + code: '450302', + }, + { + name: '叠彩区', + code: '450303', + }, + { + name: '象山区', + code: '450304', + }, + { + name: '七星区', + code: '450305', + }, + { + name: '雁山区', + code: '450311', + }, + { + name: '临桂区', + code: '450312', + }, + { + name: '阳朔县', + code: '450321', + }, + { + name: '灵川县', + code: '450323', + }, + { + name: '全州县', + code: '450324', + }, + { + name: '兴安县', + code: '450325', + }, + { + name: '永福县', + code: '450326', + }, + { + name: '灌阳县', + code: '450327', + }, + { + name: '龙胜各族自治县', + code: '450328', + }, + { + name: '资源县', + code: '450329', + }, + { + name: '平乐县', + code: '450330', + }, + { + name: '荔浦市', + code: '450381', + }, + { + name: '恭城瑶族自治县', + code: '450332', + }, + ], + }, + { + name: '梧州市', + code: '450400', + children: [ + { + name: '万秀区', + code: '450403', + }, + { + name: '长洲区', + code: '450405', + }, + { + name: '龙圩区', + code: '450406', + }, + { + name: '苍梧县', + code: '450421', + }, + { + name: '藤县', + code: '450422', + }, + { + name: '蒙山县', + code: '450423', + }, + { + name: '岑溪市', + code: '450481', + }, + ], + }, + { + name: '北海市', + code: '450500', + children: [ + { + name: '海城区', + code: '450502', + }, + { + name: '银海区', + code: '450503', + }, + { + name: '铁山港区', + code: '450512', + }, + { + name: '合浦县', + code: '450521', + }, + ], + }, + { + name: '防城港市', + code: '450600', + children: [ + { + name: '港口区', + code: '450602', + }, + { + name: '防城区', + code: '450603', + }, + { + name: '上思县', + code: '450621', + }, + { + name: '东兴市', + code: '450681', + }, + ], + }, + { + name: '钦州市', + code: '450700', + children: [ + { + name: '钦南区', + code: '450702', + }, + { + name: '钦北区', + code: '450703', + }, + { + name: '灵山县', + code: '450721', + }, + { + name: '浦北县', + code: '450722', + }, + ], + }, + { + name: '贵港市', + code: '450800', + children: [ + { + name: '港北区', + code: '450802', + }, + { + name: '港南区', + code: '450803', + }, + { + name: '覃塘区', + code: '450804', + }, + { + name: '平南县', + code: '450821', + }, + { + name: '桂平市', + code: '450881', + }, + ], + }, + { + name: '玉林市', + code: '450900', + children: [ + { + name: '玉州区', + code: '450902', + }, + { + name: '福绵区', + code: '450903', + }, + { + name: '容县', + code: '450921', + }, + { + name: '陆川县', + code: '450922', + }, + { + name: '博白县', + code: '450923', + }, + { + name: '兴业县', + code: '450924', + }, + { + name: '北流市', + code: '450981', + }, + ], + }, + { + name: '百色市', + code: '451000', + children: [ + { + name: '右江区', + code: '451002', + }, + { + name: '田阳县', + code: '451021', + }, + { + name: '田东县', + code: '451022', + }, + { + name: '平果县', + code: '451023', + }, + { + name: '德保县', + code: '451024', + }, + { + name: '那坡县', + code: '451026', + }, + { + name: '凌云县', + code: '451027', + }, + { + name: '乐业县', + code: '451028', + }, + { + name: '田林县', + code: '451029', + }, + { + name: '西林县', + code: '451030', + }, + { + name: '隆林各族自治县', + code: '451031', + }, + { + name: '靖西市', + code: '451081', + }, + ], + }, + { + name: '贺州市', + code: '451100', + children: [ + { + name: '八步区', + code: '451102', + }, + { + name: '平桂区', + code: '451103', + }, + { + name: '昭平县', + code: '451121', + }, + { + name: '钟山县', + code: '451122', + }, + { + name: '富川瑶族自治县', + code: '451123', + }, + ], + }, + { + name: '河池市', + code: '451200', + children: [ + { + name: '金城江区', + code: '451202', + }, + { + name: '宜州区', + code: '451203', + }, + { + name: '南丹县', + code: '451221', + }, + { + name: '天峨县', + code: '451222', + }, + { + name: '凤山县', + code: '451223', + }, + { + name: '东兰县', + code: '451224', + }, + { + name: '罗城仫佬族自治县', + code: '451225', + }, + { + name: '环江毛南族自治县', + code: '451226', + }, + { + name: '巴马瑶族自治县', + code: '451227', + }, + { + name: '都安瑶族自治县', + code: '451228', + }, + { + name: '大化瑶族自治县', + code: '451229', + }, + ], + }, + { + name: '来宾市', + code: '451300', + children: [ + { + name: '兴宾区', + code: '451302', + }, + { + name: '忻城县', + code: '451321', + }, + { + name: '象州县', + code: '451322', + }, + { + name: '武宣县', + code: '451323', + }, + { + name: '金秀瑶族自治县', + code: '451324', + }, + { + name: '合山市', + code: '451381', + }, + ], + }, + { + name: '崇左市', + code: '451400', + children: [ + { + name: '江州区', + code: '451402', + }, + { + name: '扶绥县', + code: '451421', + }, + { + name: '宁明县', + code: '451422', + }, + { + name: '龙州县', + code: '451423', + }, + { + name: '大新县', + code: '451424', + }, + { + name: '天等县', + code: '451425', + }, + { + name: '凭祥市', + code: '451481', + }, + ], + }, + ], + }, + { + name: '海南省', + code: '460000', + region: 'south', + children: [ + { + name: '海口市', + code: '460100', + children: [ + { + name: '秀英区', + code: '460105', + }, + { + name: '龙华区', + code: '460106', + }, + { + name: '琼山区', + code: '460107', + }, + { + name: '美兰区', + code: '460108', + }, + ], + }, + { + name: '三亚市', + code: '460200', + children: [ + { + name: '海棠区', + code: '460202', + }, + { + name: '吉阳区', + code: '460203', + }, + { + name: '天涯区', + code: '460204', + }, + { + name: '崖州区', + code: '460205', + }, + ], + }, + { + name: '三沙市', + code: '460300', + children: [], + }, + { + name: '儋州市', + code: '460400', + children: [], + }, + { + name: '直辖县', + code: '469000', + children: [ + { + name: '五指山市', + code: '469001', + }, + { + name: '琼海市', + code: '469002', + }, + { + name: '文昌市', + code: '469005', + }, + { + name: '万宁市', + code: '469006', + }, + { + name: '东方市', + code: '469007', + }, + { + name: '定安县', + code: '469021', + }, + { + name: '屯昌县', + code: '469022', + }, + { + name: '澄迈县', + code: '469023', + }, + { + name: '临高县', + code: '469024', + }, + { + name: '白沙黎族自治县', + code: '469025', + }, + { + name: '昌江黎族自治县', + code: '469026', + }, + { + name: '乐东黎族自治县', + code: '469027', + }, + { + name: '陵水黎族自治县', + code: '469028', + }, + { + name: '保亭黎族苗族自治县', + code: '469029', + }, + { + name: '琼中黎族苗族自治县', + code: '469030', + }, + ], + }, + ], + }, + { + name: '重庆市', + code: '500000', + region: 'southwest', + provinceLevelCity: true, + children: [ + { + name: '市辖区', + code: '500100', + children: [ + { + name: '万州区', + code: '500101', + }, + { + name: '涪陵区', + code: '500102', + }, + { + name: '渝中区', + code: '500103', + }, + { + name: '大渡口区', + code: '500104', + }, + { + name: '江北区', + code: '500105', + }, + { + name: '沙坪坝区', + code: '500106', + }, + { + name: '九龙坡区', + code: '500107', + }, + { + name: '南岸区', + code: '500108', + }, + { + name: '北碚区', + code: '500109', + }, + { + name: '綦江区', + code: '500110', + }, + { + name: '大足区', + code: '500111', + }, + { + name: '渝北区', + code: '500112', + }, + { + name: '巴南区', + code: '500113', + }, + { + name: '黔江区', + code: '500114', + }, + { + name: '长寿区', + code: '500115', + }, + { + name: '江津区', + code: '500116', + }, + { + name: '合川区', + code: '500117', + }, + { + name: '永川区', + code: '500118', + }, + { + name: '南川区', + code: '500119', + }, + { + name: '璧山区', + code: '500120', + }, + { + name: '铜梁区', + code: '500151', + }, + { + name: '潼南区', + code: '500152', + }, + { + name: '荣昌区', + code: '500153', + }, + { + name: '开州区', + code: '500154', + }, + { + name: '梁平区', + code: '500155', + }, + { + name: '武隆区', + code: '500156', + }, + ], + }, + { + name: '县辖区', + code: '500200', + children: [ + { + name: '城口县', + code: '500229', + }, + { + name: '丰都县', + code: '500230', + }, + { + name: '垫江县', + code: '500231', + }, + { + name: '忠县', + code: '500233', + }, + { + name: '云阳县', + code: '500235', + }, + { + name: '奉节县', + code: '500236', + }, + { + name: '巫山县', + code: '500237', + }, + { + name: '巫溪县', + code: '500238', + }, + { + name: '石柱土家族自治县', + code: '500240', + }, + { + name: '秀山土家族苗族自治县', + code: '500241', + }, + { + name: '酉阳土家族苗族自治县', + code: '500242', + }, + { + name: '彭水苗族土家族自治县', + code: '500243', + }, + ], + }, + ], + }, + { + name: '四川省', + code: '510000', + region: 'southwest', + children: [ + { + name: '成都市', + code: '510100', + children: [ + { + name: '锦江区', + code: '510104', + }, + { + name: '青羊区', + code: '510105', + }, + { + name: '金牛区', + code: '510106', + }, + { + name: '武侯区', + code: '510107', + }, + { + name: '成华区', + code: '510108', + }, + { + name: '龙泉驿区', + code: '510112', + }, + { + name: '青白江区', + code: '510113', + }, + { + name: '新都区', + code: '510114', + }, + { + name: '温江区', + code: '510115', + }, + { + name: '双流区', + code: '510116', + }, + { + name: '郫都区', + code: '510117', + }, + { + name: '金堂县', + code: '510121', + }, + { + name: '大邑县', + code: '510129', + }, + { + name: '蒲江县', + code: '510131', + }, + { + name: '新津县', + code: '510132', + }, + { + name: '都江堰市', + code: '510181', + }, + { + name: '彭州市', + code: '510182', + }, + { + name: '邛崃市', + code: '510183', + }, + { + name: '崇州市', + code: '510184', + }, + { + name: '简阳市', + code: '510185', + }, + ], + }, + { + name: '自贡市', + code: '510300', + children: [ + { + name: '自流井区', + code: '510302', + }, + { + name: '贡井区', + code: '510303', + }, + { + name: '大安区', + code: '510304', + }, + { + name: '沿滩区', + code: '510311', + }, + { + name: '荣县', + code: '510321', + }, + { + name: '富顺县', + code: '510322', + }, + ], + }, + { + name: '攀枝花市', + code: '510400', + children: [ + { + name: '东区', + code: '510402', + }, + { + name: '西区', + code: '510403', + }, + { + name: '仁和区', + code: '510411', + }, + { + name: '米易县', + code: '510421', + }, + { + name: '盐边县', + code: '510422', + }, + ], + }, + { + name: '泸州市', + code: '510500', + children: [ + { + name: '江阳区', + code: '510502', + }, + { + name: '纳溪区', + code: '510503', + }, + { + name: '龙马潭区', + code: '510504', + }, + { + name: '泸县', + code: '510521', + }, + { + name: '合江县', + code: '510522', + }, + { + name: '叙永县', + code: '510524', + }, + { + name: '古蔺县', + code: '510525', + }, + ], + }, + { + name: '德阳市', + code: '510600', + children: [ + { + name: '旌阳区', + code: '510603', + }, + { + name: '罗江区', + code: '510604', + }, + { + name: '中江县', + code: '510623', + }, + { + name: '广汉市', + code: '510681', + }, + { + name: '什邡市', + code: '510682', + }, + { + name: '绵竹市', + code: '510683', + }, + ], + }, + { + name: '绵阳市', + code: '510700', + children: [ + { + name: '涪城区', + code: '510703', + }, + { + name: '游仙区', + code: '510704', + }, + { + name: '安州区', + code: '510705', + }, + { + name: '三台县', + code: '510722', + }, + { + name: '盐亭县', + code: '510723', + }, + { + name: '梓潼县', + code: '510725', + }, + { + name: '北川羌族自治县', + code: '510726', + }, + { + name: '平武县', + code: '510727', + }, + { + name: '江油市', + code: '510781', + }, + ], + }, + { + name: '广元市', + code: '510800', + children: [ + { + name: '利州区', + code: '510802', + }, + { + name: '昭化区', + code: '510811', + }, + { + name: '朝天区', + code: '510812', + }, + { + name: '旺苍县', + code: '510821', + }, + { + name: '青川县', + code: '510822', + }, + { + name: '剑阁县', + code: '510823', + }, + { + name: '苍溪县', + code: '510824', + }, + ], + }, + { + name: '遂宁市', + code: '510900', + children: [ + { + name: '船山区', + code: '510903', + }, + { + name: '安居区', + code: '510904', + }, + { + name: '蓬溪县', + code: '510921', + }, + { + name: '射洪县', + code: '510922', + }, + { + name: '大英县', + code: '510923', + }, + ], + }, + { + name: '内江市', + code: '511000', + children: [ + { + name: '市中区', + code: '511002', + }, + { + name: '东兴区', + code: '511011', + }, + { + name: '威远县', + code: '511024', + }, + { + name: '资中县', + code: '511025', + }, + { + name: '隆昌市', + code: '511083', + }, + ], + }, + { + name: '乐山市', + code: '511100', + children: [ + { + name: '市中区', + code: '511102', + }, + { + name: '沙湾区', + code: '511111', + }, + { + name: '五通桥区', + code: '511112', + }, + { + name: '金口河区', + code: '511113', + }, + { + name: '犍为县', + code: '511123', + }, + { + name: '井研县', + code: '511124', + }, + { + name: '夹江县', + code: '511126', + }, + { + name: '沐川县', + code: '511129', + }, + { + name: '峨边彝族自治县', + code: '511132', + }, + { + name: '马边彝族自治县', + code: '511133', + }, + { + name: '峨眉山市', + code: '511181', + }, + ], + }, + { + name: '南充市', + code: '511300', + children: [ + { + name: '顺庆区', + code: '511302', + }, + { + name: '高坪区', + code: '511303', + }, + { + name: '嘉陵区', + code: '511304', + }, + { + name: '南部县', + code: '511321', + }, + { + name: '营山县', + code: '511322', + }, + { + name: '蓬安县', + code: '511323', + }, + { + name: '仪陇县', + code: '511324', + }, + { + name: '西充县', + code: '511325', + }, + { + name: '阆中市', + code: '511381', + }, + ], + }, + { + name: '眉山市', + code: '511400', + children: [ + { + name: '东坡区', + code: '511402', + }, + { + name: '彭山区', + code: '511403', + }, + { + name: '仁寿县', + code: '511421', + }, + { + name: '洪雅县', + code: '511423', + }, + { + name: '丹棱县', + code: '511424', + }, + { + name: '青神县', + code: '511425', + }, + ], + }, + { + name: '宜宾市', + code: '511500', + children: [ + { + name: '翠屏区', + code: '511502', + }, + { + name: '南溪区', + code: '511503', + }, + { + name: '叙州区', + code: '511504', + }, + { + name: '江安县', + code: '511523', + }, + { + name: '长宁县', + code: '511524', + }, + { + name: '高县', + code: '511525', + }, + { + name: '珙县', + code: '511526', + }, + { + name: '筠连县', + code: '511527', + }, + { + name: '兴文县', + code: '511528', + }, + { + name: '屏山县', + code: '511529', + }, + ], + }, + { + name: '广安市', + code: '511600', + children: [ + { + name: '广安区', + code: '511602', + }, + { + name: '前锋区', + code: '511603', + }, + { + name: '岳池县', + code: '511621', + }, + { + name: '武胜县', + code: '511622', + }, + { + name: '邻水县', + code: '511623', + }, + { + name: '华蓥市', + code: '511681', + }, + ], + }, + { + name: '达州市', + code: '511700', + children: [ + { + name: '通川区', + code: '511702', + }, + { + name: '达川区', + code: '511703', + }, + { + name: '宣汉县', + code: '511722', + }, + { + name: '开江县', + code: '511723', + }, + { + name: '大竹县', + code: '511724', + }, + { + name: '渠县', + code: '511725', + }, + { + name: '万源市', + code: '511781', + }, + ], + }, + { + name: '雅安市', + code: '511800', + children: [ + { + name: '雨城区', + code: '511802', + }, + { + name: '名山区', + code: '511803', + }, + { + name: '荥经县', + code: '511822', + }, + { + name: '汉源县', + code: '511823', + }, + { + name: '石棉县', + code: '511824', + }, + { + name: '天全县', + code: '511825', + }, + { + name: '芦山县', + code: '511826', + }, + { + name: '宝兴县', + code: '511827', + }, + ], + }, + { + name: '巴中市', + code: '511900', + children: [ + { + name: '巴州区', + code: '511902', + }, + { + name: '恩阳区', + code: '511903', + }, + { + name: '通江县', + code: '511921', + }, + { + name: '南江县', + code: '511922', + }, + { + name: '平昌县', + code: '511923', + }, + ], + }, + { + name: '资阳市', + code: '512000', + children: [ + { + name: '雁江区', + code: '512002', + }, + { + name: '安岳县', + code: '512021', + }, + { + name: '乐至县', + code: '512022', + }, + ], + }, + { + name: '阿坝藏族羌族自治州', + code: '513200', + children: [ + { + name: '马尔康市', + code: '513201', + }, + { + name: '汶川县', + code: '513221', + }, + { + name: '理县', + code: '513222', + }, + { + name: '茂县', + code: '513223', + }, + { + name: '松潘县', + code: '513224', + }, + { + name: '九寨沟县', + code: '513225', + }, + { + name: '金川县', + code: '513226', + }, + { + name: '小金县', + code: '513227', + }, + { + name: '黑水县', + code: '513228', + }, + { + name: '壤塘县', + code: '513230', + }, + { + name: '阿坝县', + code: '513231', + }, + { + name: '若尔盖县', + code: '513232', + }, + { + name: '红原县', + code: '513233', + }, + ], + }, + { + name: '甘孜藏族自治州', + code: '513300', + children: [ + { + name: '康定市', + code: '513301', + }, + { + name: '泸定县', + code: '513322', + }, + { + name: '丹巴县', + code: '513323', + }, + { + name: '九龙县', + code: '513324', + }, + { + name: '雅江县', + code: '513325', + }, + { + name: '道孚县', + code: '513326', + }, + { + name: '炉霍县', + code: '513327', + }, + { + name: '甘孜县', + code: '513328', + }, + { + name: '新龙县', + code: '513329', + }, + { + name: '德格县', + code: '513330', + }, + { + name: '白玉县', + code: '513331', + }, + { + name: '石渠县', + code: '513332', + }, + { + name: '色达县', + code: '513333', + }, + { + name: '理塘县', + code: '513334', + }, + { + name: '巴塘县', + code: '513335', + }, + { + name: '乡城县', + code: '513336', + }, + { + name: '稻城县', + code: '513337', + }, + { + name: '得荣县', + code: '513338', + }, + ], + }, + { + name: '凉山彝族自治州', + code: '513400', + children: [ + { + name: '西昌市', + code: '513401', + }, + { + name: '木里藏族自治县', + code: '513422', + }, + { + name: '盐源县', + code: '513423', + }, + { + name: '德昌县', + code: '513424', + }, + { + name: '会理县', + code: '513425', + }, + { + name: '会东县', + code: '513426', + }, + { + name: '宁南县', + code: '513427', + }, + { + name: '普格县', + code: '513428', + }, + { + name: '布拖县', + code: '513429', + }, + { + name: '金阳县', + code: '513430', + }, + { + name: '昭觉县', + code: '513431', + }, + { + name: '喜德县', + code: '513432', + }, + { + name: '冕宁县', + code: '513433', + }, + { + name: '越西县', + code: '513434', + }, + { + name: '甘洛县', + code: '513435', + }, + { + name: '美姑县', + code: '513436', + }, + { + name: '雷波县', + code: '513437', + }, + ], + }, + ], + }, + { + name: '贵州省', + code: '520000', + region: 'southwest', + children: [ + { + name: '贵阳市', + code: '520100', + children: [ + { + name: '南明区', + code: '520102', + }, + { + name: '云岩区', + code: '520103', + }, + { + name: '花溪区', + code: '520111', + }, + { + name: '乌当区', + code: '520112', + }, + { + name: '白云区', + code: '520113', + }, + { + name: '观山湖区', + code: '520115', + }, + { + name: '开阳县', + code: '520121', + }, + { + name: '息烽县', + code: '520122', + }, + { + name: '修文县', + code: '520123', + }, + { + name: '清镇市', + code: '520181', + }, + ], + }, + { + name: '六盘水市', + code: '520200', + children: [ + { + name: '钟山区', + code: '520201', + }, + { + name: '六枝特区', + code: '520203', + }, + { + name: '水城县', + code: '520221', + }, + { + name: '盘州市', + code: '520281', + }, + ], + }, + { + name: '遵义市', + code: '520300', + children: [ + { + name: '红花岗区', + code: '520302', + }, + { + name: '汇川区', + code: '520303', + }, + { + name: '播州区', + code: '520304', + }, + { + name: '桐梓县', + code: '520322', + }, + { + name: '绥阳县', + code: '520323', + }, + { + name: '正安县', + code: '520324', + }, + { + name: '道真仡佬族苗族自治县', + code: '520325', + }, + { + name: '务川仡佬族苗族自治县', + code: '520326', + }, + { + name: '凤冈县', + code: '520327', + }, + { + name: '湄潭县', + code: '520328', + }, + { + name: '余庆县', + code: '520329', + }, + { + name: '习水县', + code: '520330', + }, + { + name: '赤水市', + code: '520381', + }, + { + name: '仁怀市', + code: '520382', + }, + ], + }, + { + name: '安顺市', + code: '520400', + children: [ + { + name: '西秀区', + code: '520402', + }, + { + name: '平坝区', + code: '520403', + }, + { + name: '普定县', + code: '520422', + }, + { + name: '镇宁布依族苗族自治县', + code: '520423', + }, + { + name: '关岭布依族苗族自治县', + code: '520424', + }, + { + name: '紫云苗族布依族自治县', + code: '520425', + }, + ], + }, + { + name: '毕节市', + code: '520500', + children: [ + { + name: '七星关区', + code: '520502', + }, + { + name: '大方县', + code: '520521', + }, + { + name: '黔西县', + code: '520522', + }, + { + name: '金沙县', + code: '520523', + }, + { + name: '织金县', + code: '520524', + }, + { + name: '纳雍县', + code: '520525', + }, + { + name: '威宁彝族回族苗族自治县', + code: '520526', + }, + { + name: '赫章县', + code: '520527', + }, + ], + }, + { + name: '铜仁市', + code: '520600', + children: [ + { + name: '碧江区', + code: '520602', + }, + { + name: '万山区', + code: '520603', + }, + { + name: '江口县', + code: '520621', + }, + { + name: '玉屏侗族自治县', + code: '520622', + }, + { + name: '石阡县', + code: '520623', + }, + { + name: '思南县', + code: '520624', + }, + { + name: '印江土家族苗族自治县', + code: '520625', + }, + { + name: '德江县', + code: '520626', + }, + { + name: '沿河土家族自治县', + code: '520627', + }, + { + name: '松桃苗族自治县', + code: '520628', + }, + ], + }, + { + name: '黔西南布依族苗族自治州', + code: '522300', + children: [ + { + name: '兴义市', + code: '522301', + }, + { + name: '兴仁市', + code: '522302', + }, + { + name: '普安县', + code: '522323', + }, + { + name: '晴隆县', + code: '522324', + }, + { + name: '贞丰县', + code: '522325', + }, + { + name: '望谟县', + code: '522326', + }, + { + name: '册亨县', + code: '522327', + }, + { + name: '安龙县', + code: '522328', + }, + ], + }, + { + name: '黔东南苗族侗族自治州', + code: '522600', + children: [ + { + name: '凯里市', + code: '522601', + }, + { + name: '黄平县', + code: '522622', + }, + { + name: '施秉县', + code: '522623', + }, + { + name: '三穗县', + code: '522624', + }, + { + name: '镇远县', + code: '522625', + }, + { + name: '岑巩县', + code: '522626', + }, + { + name: '天柱县', + code: '522627', + }, + { + name: '锦屏县', + code: '522628', + }, + { + name: '剑河县', + code: '522629', + }, + { + name: '台江县', + code: '522630', + }, + { + name: '黎平县', + code: '522631', + }, + { + name: '榕江县', + code: '522632', + }, + { + name: '从江县', + code: '522633', + }, + { + name: '雷山县', + code: '522634', + }, + { + name: '麻江县', + code: '522635', + }, + { + name: '丹寨县', + code: '522636', + }, + ], + }, + { + name: '黔南布依族苗族自治州', + code: '522700', + children: [ + { + name: '都匀市', + code: '522701', + }, + { + name: '福泉市', + code: '522702', + }, + { + name: '荔波县', + code: '522722', + }, + { + name: '贵定县', + code: '522723', + }, + { + name: '瓮安县', + code: '522725', + }, + { + name: '独山县', + code: '522726', + }, + { + name: '平塘县', + code: '522727', + }, + { + name: '罗甸县', + code: '522728', + }, + { + name: '长顺县', + code: '522729', + }, + { + name: '龙里县', + code: '522730', + }, + { + name: '惠水县', + code: '522731', + }, + { + name: '三都水族自治县', + code: '522732', + }, + ], + }, + ], + }, + { + name: '云南省', + code: '530000', + region: 'southwest', + children: [ + { + name: '昆明市', + code: '530100', + children: [ + { + name: '五华区', + code: '530102', + }, + { + name: '盘龙区', + code: '530103', + }, + { + name: '官渡区', + code: '530111', + }, + { + name: '西山区', + code: '530112', + }, + { + name: '东川区', + code: '530113', + }, + { + name: '呈贡区', + code: '530114', + }, + { + name: '晋宁区', + code: '530115', + }, + { + name: '富民县', + code: '530124', + }, + { + name: '宜良县', + code: '530125', + }, + { + name: '石林彝族自治县', + code: '530126', + }, + { + name: '嵩明县', + code: '530127', + }, + { + name: '禄劝彝族苗族自治县', + code: '530128', + }, + { + name: '寻甸回族彝族自治县', + code: '530129', + }, + { + name: '安宁市', + code: '530181', + }, + ], + }, + { + name: '曲靖市', + code: '530300', + children: [ + { + name: '麒麟区', + code: '530302', + }, + { + name: '沾益区', + code: '530303', + }, + { + name: '马龙区', + code: '530304', + }, + { + name: '陆良县', + code: '530322', + }, + { + name: '师宗县', + code: '530323', + }, + { + name: '罗平县', + code: '530324', + }, + { + name: '富源县', + code: '530325', + }, + { + name: '会泽县', + code: '530326', + }, + { + name: '宣威市', + code: '530381', + }, + ], + }, + { + name: '玉溪市', + code: '530400', + children: [ + { + name: '红塔区', + code: '530402', + }, + { + name: '江川区', + code: '530403', + }, + { + name: '澄江县', + code: '530422', + }, + { + name: '通海县', + code: '530423', + }, + { + name: '华宁县', + code: '530424', + }, + { + name: '易门县', + code: '530425', + }, + { + name: '峨山彝族自治县', + code: '530426', + }, + { + name: '新平彝族傣族自治县', + code: '530427', + }, + { + name: '元江哈尼族彝族傣族自治县', + code: '530428', + }, + ], + }, + { + name: '保山市', + code: '530500', + children: [ + { + name: '隆阳区', + code: '530502', + }, + { + name: '施甸县', + code: '530521', + }, + { + name: '龙陵县', + code: '530523', + }, + { + name: '昌宁县', + code: '530524', + }, + { + name: '腾冲市', + code: '530581', + }, + ], + }, + { + name: '昭通市', + code: '530600', + children: [ + { + name: '昭阳区', + code: '530602', + }, + { + name: '鲁甸县', + code: '530621', + }, + { + name: '巧家县', + code: '530622', + }, + { + name: '盐津县', + code: '530623', + }, + { + name: '大关县', + code: '530624', + }, + { + name: '永善县', + code: '530625', + }, + { + name: '绥江县', + code: '530626', + }, + { + name: '镇雄县', + code: '530627', + }, + { + name: '彝良县', + code: '530628', + }, + { + name: '威信县', + code: '530629', + }, + { + name: '水富市', + code: '530681', + }, + ], + }, + { + name: '丽江市', + code: '530700', + children: [ + { + name: '古城区', + code: '530702', + }, + { + name: '玉龙纳西族自治县', + code: '530721', + }, + { + name: '永胜县', + code: '530722', + }, + { + name: '华坪县', + code: '530723', + }, + { + name: '宁蒗彝族自治县', + code: '530724', + }, + ], + }, + { + name: '普洱市', + code: '530800', + children: [ + { + name: '思茅区', + code: '530802', + }, + { + name: '宁洱哈尼族彝族自治县', + code: '530821', + }, + { + name: '墨江哈尼族自治县', + code: '530822', + }, + { + name: '景东彝族自治县', + code: '530823', + }, + { + name: '景谷傣族彝族自治县', + code: '530824', + }, + { + name: '镇沅彝族哈尼族拉祜族自治县', + code: '530825', + }, + { + name: '江城哈尼族彝族自治县', + code: '530826', + }, + { + name: '孟连傣族拉祜族佤族自治县', + code: '530827', + }, + { + name: '澜沧拉祜族自治县', + code: '530828', + }, + { + name: '西盟佤族自治县', + code: '530829', + }, + ], + }, + { + name: '临沧市', + code: '530900', + children: [ + { + name: '临翔区', + code: '530902', + }, + { + name: '凤庆县', + code: '530921', + }, + { + name: '云县', + code: '530922', + }, + { + name: '永德县', + code: '530923', + }, + { + name: '镇康县', + code: '530924', + }, + { + name: '双江拉祜族佤族布朗族傣族自治县', + code: '530925', + }, + { + name: '耿马傣族佤族自治县', + code: '530926', + }, + { + name: '沧源佤族自治县', + code: '530927', + }, + ], + }, + { + name: '楚雄彝族自治州', + code: '532300', + children: [ + { + name: '楚雄市', + code: '532301', + }, + { + name: '双柏县', + code: '532322', + }, + { + name: '牟定县', + code: '532323', + }, + { + name: '南华县', + code: '532324', + }, + { + name: '姚安县', + code: '532325', + }, + { + name: '大姚县', + code: '532326', + }, + { + name: '永仁县', + code: '532327', + }, + { + name: '元谋县', + code: '532328', + }, + { + name: '武定县', + code: '532329', + }, + { + name: '禄丰县', + code: '532331', + }, + ], + }, + { + name: '红河哈尼族彝族自治州', + code: '532500', + children: [ + { + name: '个旧市', + code: '532501', + }, + { + name: '开远市', + code: '532502', + }, + { + name: '蒙自市', + code: '532503', + }, + { + name: '弥勒市', + code: '532504', + }, + { + name: '屏边苗族自治县', + code: '532523', + }, + { + name: '建水县', + code: '532524', + }, + { + name: '石屏县', + code: '532525', + }, + { + name: '泸西县', + code: '532527', + }, + { + name: '元阳县', + code: '532528', + }, + { + name: '红河县', + code: '532529', + }, + { + name: '金平苗族瑶族傣族自治县', + code: '532530', + }, + { + name: '绿春县', + code: '532531', + }, + { + name: '河口瑶族自治县', + code: '532532', + }, + ], + }, + { + name: '文山壮族苗族自治州', + code: '532600', + children: [ + { + name: '文山市', + code: '532601', + }, + { + name: '砚山县', + code: '532622', + }, + { + name: '西畴县', + code: '532623', + }, + { + name: '麻栗坡县', + code: '532624', + }, + { + name: '马关县', + code: '532625', + }, + { + name: '丘北县', + code: '532626', + }, + { + name: '广南县', + code: '532627', + }, + { + name: '富宁县', + code: '532628', + }, + ], + }, + { + name: '西双版纳傣族自治州', + code: '532800', + children: [ + { + name: '景洪市', + code: '532801', + }, + { + name: '勐海县', + code: '532822', + }, + { + name: '勐腊县', + code: '532823', + }, + ], + }, + { + name: '大理白族自治州', + code: '532900', + children: [ + { + name: '大理市', + code: '532901', + }, + { + name: '漾濞彝族自治县', + code: '532922', + }, + { + name: '祥云县', + code: '532923', + }, + { + name: '宾川县', + code: '532924', + }, + { + name: '弥渡县', + code: '532925', + }, + { + name: '南涧彝族自治县', + code: '532926', + }, + { + name: '巍山彝族回族自治县', + code: '532927', + }, + { + name: '永平县', + code: '532928', + }, + { + name: '云龙县', + code: '532929', + }, + { + name: '洱源县', + code: '532930', + }, + { + name: '剑川县', + code: '532931', + }, + { + name: '鹤庆县', + code: '532932', + }, + ], + }, + { + name: '德宏傣族景颇族自治州', + code: '533100', + children: [ + { + name: '瑞丽市', + code: '533102', + }, + { + name: '芒市', + code: '533103', + }, + { + name: '梁河县', + code: '533122', + }, + { + name: '盈江县', + code: '533123', + }, + { + name: '陇川县', + code: '533124', + }, + ], + }, + { + name: '怒江傈僳族自治州', + code: '533300', + children: [ + { + name: '泸水市', + code: '533301', + }, + { + name: '福贡县', + code: '533323', + }, + { + name: '贡山独龙族怒族自治县', + code: '533324', + }, + { + name: '兰坪白族普米族自治县', + code: '533325', + }, + ], + }, + { + name: '迪庆藏族自治州', + code: '533400', + children: [ + { + name: '香格里拉市', + code: '533401', + }, + { + name: '德钦县', + code: '533422', + }, + { + name: '维西傈僳族自治县', + code: '533423', + }, + ], + }, + ], + }, + { + name: '西藏自治区', + code: '540000', + region: 'southwest', + autonomousRegion: true, + children: [ + { + name: '拉萨市', + code: '540100', + children: [ + { + name: '城关区', + code: '540102', + }, + { + name: '堆龙德庆区', + code: '540103', + }, + { + name: '达孜区', + code: '540104', + }, + { + name: '林周县', + code: '540121', + }, + { + name: '当雄县', + code: '540122', + }, + { + name: '尼木县', + code: '540123', + }, + { + name: '曲水县', + code: '540124', + }, + { + name: '墨竹工卡县', + code: '540127', + }, + ], + }, + { + name: '日喀则市', + code: '540200', + children: [ + { + name: '桑珠孜区', + code: '540202', + }, + { + name: '南木林县', + code: '540221', + }, + { + name: '江孜县', + code: '540222', + }, + { + name: '定日县', + code: '540223', + }, + { + name: '萨迦县', + code: '540224', + }, + { + name: '拉孜县', + code: '540225', + }, + { + name: '昂仁县', + code: '540226', + }, + { + name: '谢通门县', + code: '540227', + }, + { + name: '白朗县', + code: '540228', + }, + { + name: '仁布县', + code: '540229', + }, + { + name: '康马县', + code: '540230', + }, + { + name: '定结县', + code: '540231', + }, + { + name: '仲巴县', + code: '540232', + }, + { + name: '亚东县', + code: '540233', + }, + { + name: '吉隆县', + code: '540234', + }, + { + name: '聂拉木县', + code: '540235', + }, + { + name: '萨嘎县', + code: '540236', + }, + { + name: '岗巴县', + code: '540237', + }, + ], + }, + { + name: '昌都市', + code: '540300', + children: [ + { + name: '卡若区', + code: '540302', + }, + { + name: '江达县', + code: '540321', + }, + { + name: '贡觉县', + code: '540322', + }, + { + name: '类乌齐县', + code: '540323', + }, + { + name: '丁青县', + code: '540324', + }, + { + name: '察雅县', + code: '540325', + }, + { + name: '八宿县', + code: '540326', + }, + { + name: '左贡县', + code: '540327', + }, + { + name: '芒康县', + code: '540328', + }, + { + name: '洛隆县', + code: '540329', + }, + { + name: '边坝县', + code: '540330', + }, + ], + }, + { + name: '林芝市', + code: '540400', + children: [ + { + name: '巴宜区', + code: '540402', + }, + { + name: '工布江达县', + code: '540421', + }, + { + name: '米林县', + code: '540422', + }, + { + name: '墨脱县', + code: '540423', + }, + { + name: '波密县', + code: '540424', + }, + { + name: '察隅县', + code: '540425', + }, + { + name: '朗县', + code: '540426', + }, + ], + }, + { + name: '山南市', + code: '540500', + children: [ + { + name: '乃东区', + code: '540502', + }, + { + name: '扎囊县', + code: '540521', + }, + { + name: '贡嘎县', + code: '540522', + }, + { + name: '桑日县', + code: '540523', + }, + { + name: '琼结县', + code: '540524', + }, + { + name: '曲松县', + code: '540525', + }, + { + name: '措美县', + code: '540526', + }, + { + name: '洛扎县', + code: '540527', + }, + { + name: '加查县', + code: '540528', + }, + { + name: '隆子县', + code: '540529', + }, + { + name: '错那县', + code: '540530', + }, + { + name: '浪卡子县', + code: '540531', + }, + ], + }, + { + name: '那曲市', + code: '540600', + children: [ + { + name: '色尼区', + code: '540602', + }, + { + name: '嘉黎县', + code: '540621', + }, + { + name: '比如县', + code: '540622', + }, + { + name: '聂荣县', + code: '540623', + }, + { + name: '安多县', + code: '540624', + }, + { + name: '申扎县', + code: '540625', + }, + { + name: '索县', + code: '540626', + }, + { + name: '班戈县', + code: '540627', + }, + { + name: '巴青县', + code: '540628', + }, + { + name: '尼玛县', + code: '540629', + }, + { + name: '双湖县', + code: '540630', + }, + ], + }, + { + name: '阿里地区', + code: '542500', + children: [ + { + name: '普兰县', + code: '542521', + }, + { + name: '札达县', + code: '542522', + }, + { + name: '噶尔县', + code: '542523', + }, + { + name: '日土县', + code: '542524', + }, + { + name: '革吉县', + code: '542525', + }, + { + name: '改则县', + code: '542526', + }, + { + name: '措勤县', + code: '542527', + }, + ], + }, + ], + }, + { + name: '陕西省', + code: '610000', + region: 'northwest', + children: [ + { + name: '西安市', + code: '610100', + children: [ + { + name: '新城区', + code: '610102', + }, + { + name: '碑林区', + code: '610103', + }, + { + name: '莲湖区', + code: '610104', + }, + { + name: '灞桥区', + code: '610111', + }, + { + name: '未央区', + code: '610112', + }, + { + name: '雁塔区', + code: '610113', + }, + { + name: '阎良区', + code: '610114', + }, + { + name: '临潼区', + code: '610115', + }, + { + name: '长安区', + code: '610116', + }, + { + name: '高陵区', + code: '610117', + }, + { + name: '鄠邑区', + code: '610118', + }, + { + name: '蓝田县', + code: '610122', + }, + { + name: '周至县', + code: '610124', + }, + ], + }, + { + name: '铜川市', + code: '610200', + children: [ + { + name: '王益区', + code: '610202', + }, + { + name: '印台区', + code: '610203', + }, + { + name: '耀州区', + code: '610204', + }, + { + name: '宜君县', + code: '610222', + }, + ], + }, + { + name: '宝鸡市', + code: '610300', + children: [ + { + name: '渭滨区', + code: '610302', + }, + { + name: '金台区', + code: '610303', + }, + { + name: '陈仓区', + code: '610304', + }, + { + name: '凤翔县', + code: '610322', + }, + { + name: '岐山县', + code: '610323', + }, + { + name: '扶风县', + code: '610324', + }, + { + name: '眉县', + code: '610326', + }, + { + name: '陇县', + code: '610327', + }, + { + name: '千阳县', + code: '610328', + }, + { + name: '麟游县', + code: '610329', + }, + { + name: '凤县', + code: '610330', + }, + { + name: '太白县', + code: '610331', + }, + ], + }, + { + name: '咸阳市', + code: '610400', + children: [ + { + name: '秦都区', + code: '610402', + }, + { + name: '杨陵区', + code: '610403', + }, + { + name: '渭城区', + code: '610404', + }, + { + name: '三原县', + code: '610422', + }, + { + name: '泾阳县', + code: '610423', + }, + { + name: '乾县', + code: '610424', + }, + { + name: '礼泉县', + code: '610425', + }, + { + name: '永寿县', + code: '610426', + }, + { + name: '长武县', + code: '610428', + }, + { + name: '旬邑县', + code: '610429', + }, + { + name: '淳化县', + code: '610430', + }, + { + name: '武功县', + code: '610431', + }, + { + name: '兴平市', + code: '610481', + }, + { + name: '彬州市', + code: '610482', + }, + ], + }, + { + name: '渭南市', + code: '610500', + children: [ + { + name: '临渭区', + code: '610502', + }, + { + name: '华州区', + code: '610503', + }, + { + name: '潼关县', + code: '610522', + }, + { + name: '大荔县', + code: '610523', + }, + { + name: '合阳县', + code: '610524', + }, + { + name: '澄城县', + code: '610525', + }, + { + name: '蒲城县', + code: '610526', + }, + { + name: '白水县', + code: '610527', + }, + { + name: '富平县', + code: '610528', + }, + { + name: '韩城市', + code: '610581', + }, + { + name: '华阴市', + code: '610582', + }, + ], + }, + { + name: '延安市', + code: '610600', + children: [ + { + name: '宝塔区', + code: '610602', + }, + { + name: '安塞区', + code: '610603', + }, + { + name: '延长县', + code: '610621', + }, + { + name: '延川县', + code: '610622', + }, + { + name: '子长县', + code: '610623', + }, + { + name: '志丹县', + code: '610625', + }, + { + name: '吴起县', + code: '610626', + }, + { + name: '甘泉县', + code: '610627', + }, + { + name: '富县', + code: '610628', + }, + { + name: '洛川县', + code: '610629', + }, + { + name: '宜川县', + code: '610630', + }, + { + name: '黄龙县', + code: '610631', + }, + { + name: '黄陵县', + code: '610632', + }, + ], + }, + { + name: '汉中市', + code: '610700', + children: [ + { + name: '汉台区', + code: '610702', + }, + { + name: '南郑区', + code: '610703', + }, + { + name: '城固县', + code: '610722', + }, + { + name: '洋县', + code: '610723', + }, + { + name: '西乡县', + code: '610724', + }, + { + name: '勉县', + code: '610725', + }, + { + name: '宁强县', + code: '610726', + }, + { + name: '略阳县', + code: '610727', + }, + { + name: '镇巴县', + code: '610728', + }, + { + name: '留坝县', + code: '610729', + }, + { + name: '佛坪县', + code: '610730', + }, + ], + }, + { + name: '榆林市', + code: '610800', + children: [ + { + name: '榆阳区', + code: '610802', + }, + { + name: '横山区', + code: '610803', + }, + { + name: '府谷县', + code: '610822', + }, + { + name: '靖边县', + code: '610824', + }, + { + name: '定边县', + code: '610825', + }, + { + name: '绥德县', + code: '610826', + }, + { + name: '米脂县', + code: '610827', + }, + { + name: '佳县', + code: '610828', + }, + { + name: '吴堡县', + code: '610829', + }, + { + name: '清涧县', + code: '610830', + }, + { + name: '子洲县', + code: '610831', + }, + { + name: '神木市', + code: '610881', + }, + ], + }, + { + name: '安康市', + code: '610900', + children: [ + { + name: '汉滨区', + code: '610902', + }, + { + name: '汉阴县', + code: '610921', + }, + { + name: '石泉县', + code: '610922', + }, + { + name: '宁陕县', + code: '610923', + }, + { + name: '紫阳县', + code: '610924', + }, + { + name: '岚皋县', + code: '610925', + }, + { + name: '平利县', + code: '610926', + }, + { + name: '镇坪县', + code: '610927', + }, + { + name: '旬阳县', + code: '610928', + }, + { + name: '白河县', + code: '610929', + }, + ], + }, + { + name: '商洛市', + code: '611000', + children: [ + { + name: '商州区', + code: '611002', + }, + { + name: '洛南县', + code: '611021', + }, + { + name: '丹凤县', + code: '611022', + }, + { + name: '商南县', + code: '611023', + }, + { + name: '山阳县', + code: '611024', + }, + { + name: '镇安县', + code: '611025', + }, + { + name: '柞水县', + code: '611026', + }, + ], + }, + ], + }, + { + name: '甘肃省', + code: '620000', + region: 'northwest', + children: [ + { + name: '兰州市', + code: '620100', + children: [ + { + name: '城关区', + code: '620102', + }, + { + name: '七里河区', + code: '620103', + }, + { + name: '西固区', + code: '620104', + }, + { + name: '安宁区', + code: '620105', + }, + { + name: '红古区', + code: '620111', + }, + { + name: '永登县', + code: '620121', + }, + { + name: '皋兰县', + code: '620122', + }, + { + name: '榆中县', + code: '620123', + }, + ], + }, + { + name: '嘉峪关市', + code: '620200', + children: [], + }, + { + name: '金昌市', + code: '620300', + children: [ + { + name: '金川区', + code: '620302', + }, + { + name: '永昌县', + code: '620321', + }, + ], + }, + { + name: '白银市', + code: '620400', + children: [ + { + name: '白银区', + code: '620402', + }, + { + name: '平川区', + code: '620403', + }, + { + name: '靖远县', + code: '620421', + }, + { + name: '会宁县', + code: '620422', + }, + { + name: '景泰县', + code: '620423', + }, + ], + }, + { + name: '天水市', + code: '620500', + children: [ + { + name: '秦州区', + code: '620502', + }, + { + name: '麦积区', + code: '620503', + }, + { + name: '清水县', + code: '620521', + }, + { + name: '秦安县', + code: '620522', + }, + { + name: '甘谷县', + code: '620523', + }, + { + name: '武山县', + code: '620524', + }, + { + name: '张家川回族自治县', + code: '620525', + }, + ], + }, + { + name: '武威市', + code: '620600', + children: [ + { + name: '凉州区', + code: '620602', + }, + { + name: '民勤县', + code: '620621', + }, + { + name: '古浪县', + code: '620622', + }, + { + name: '天祝藏族自治县', + code: '620623', + }, + ], + }, + { + name: '张掖市', + code: '620700', + children: [ + { + name: '甘州区', + code: '620702', + }, + { + name: '肃南裕固族自治县', + code: '620721', + }, + { + name: '民乐县', + code: '620722', + }, + { + name: '临泽县', + code: '620723', + }, + { + name: '高台县', + code: '620724', + }, + { + name: '山丹县', + code: '620725', + }, + ], + }, + { + name: '平凉市', + code: '620800', + children: [ + { + name: '崆峒区', + code: '620802', + }, + { + name: '泾川县', + code: '620821', + }, + { + name: '灵台县', + code: '620822', + }, + { + name: '崇信县', + code: '620823', + }, + { + name: '庄浪县', + code: '620825', + }, + { + name: '静宁县', + code: '620826', + }, + { + name: '华亭市', + code: '620881', + }, + ], + }, + { + name: '酒泉市', + code: '620900', + children: [ + { + name: '肃州区', + code: '620902', + }, + { + name: '金塔县', + code: '620921', + }, + { + name: '瓜州县', + code: '620922', + }, + { + name: '肃北蒙古族自治县', + code: '620923', + }, + { + name: '阿克塞哈萨克族自治县', + code: '620924', + }, + { + name: '玉门市', + code: '620981', + }, + { + name: '敦煌市', + code: '620982', + }, + ], + }, + { + name: '庆阳市', + code: '621000', + children: [ + { + name: '西峰区', + code: '621002', + }, + { + name: '庆城县', + code: '621021', + }, + { + name: '环县', + code: '621022', + }, + { + name: '华池县', + code: '621023', + }, + { + name: '合水县', + code: '621024', + }, + { + name: '正宁县', + code: '621025', + }, + { + name: '宁县', + code: '621026', + }, + { + name: '镇原县', + code: '621027', + }, + ], + }, + { + name: '定西市', + code: '621100', + children: [ + { + name: '安定区', + code: '621102', + }, + { + name: '通渭县', + code: '621121', + }, + { + name: '陇西县', + code: '621122', + }, + { + name: '渭源县', + code: '621123', + }, + { + name: '临洮县', + code: '621124', + }, + { + name: '漳县', + code: '621125', + }, + { + name: '岷县', + code: '621126', + }, + ], + }, + { + name: '陇南市', + code: '621200', + children: [ + { + name: '武都区', + code: '621202', + }, + { + name: '成县', + code: '621221', + }, + { + name: '文县', + code: '621222', + }, + { + name: '宕昌县', + code: '621223', + }, + { + name: '康县', + code: '621224', + }, + { + name: '西和县', + code: '621225', + }, + { + name: '礼县', + code: '621226', + }, + { + name: '徽县', + code: '621227', + }, + { + name: '两当县', + code: '621228', + }, + ], + }, + { + name: '临夏回族自治州', + code: '622900', + children: [ + { + name: '临夏市', + code: '622901', + }, + { + name: '临夏县', + code: '622921', + }, + { + name: '康乐县', + code: '622922', + }, + { + name: '永靖县', + code: '622923', + }, + { + name: '广河县', + code: '622924', + }, + { + name: '和政县', + code: '622925', + }, + { + name: '东乡族自治县', + code: '622926', + }, + { + name: '积石山保安族东乡族撒拉族自治县', + code: '622927', + }, + ], + }, + { + name: '甘南藏族自治州', + code: '623000', + children: [ + { + name: '合作市', + code: '623001', + }, + { + name: '临潭县', + code: '623021', + }, + { + name: '卓尼县', + code: '623022', + }, + { + name: '舟曲县', + code: '623023', + }, + { + name: '迭部县', + code: '623024', + }, + { + name: '玛曲县', + code: '623025', + }, + { + name: '碌曲县', + code: '623026', + }, + { + name: '夏河县', + code: '623027', + }, + ], + }, + ], + }, + { + name: '青海省', + code: '630000', + region: 'northwest', + children: [ + { + name: '西宁市', + code: '630100', + children: [ + { + name: '城东区', + code: '630102', + }, + { + name: '城中区', + code: '630103', + }, + { + name: '城西区', + code: '630104', + }, + { + name: '城北区', + code: '630105', + }, + { + name: '大通回族土族自治县', + code: '630121', + }, + { + name: '湟中县', + code: '630122', + }, + { + name: '湟源县', + code: '630123', + }, + ], + }, + { + name: '海东市', + code: '630200', + children: [ + { + name: '乐都区', + code: '630202', + }, + { + name: '平安区', + code: '630203', + }, + { + name: '民和回族土族自治县', + code: '630222', + }, + { + name: '互助土族自治县', + code: '630223', + }, + { + name: '化隆回族自治县', + code: '630224', + }, + { + name: '循化撒拉族自治县', + code: '630225', + }, + ], + }, + { + name: '海北藏族自治州', + code: '632200', + children: [ + { + name: '门源回族自治县', + code: '632221', + }, + { + name: '祁连县', + code: '632222', + }, + { + name: '海晏县', + code: '632223', + }, + { + name: '刚察县', + code: '632224', + }, + ], + }, + { + name: '黄南藏族自治州', + code: '632300', + children: [ + { + name: '同仁县', + code: '632321', + }, + { + name: '尖扎县', + code: '632322', + }, + { + name: '泽库县', + code: '632323', + }, + { + name: '河南蒙古族自治县', + code: '632324', + }, + ], + }, + { + name: '海南藏族自治州', + code: '632500', + children: [ + { + name: '共和县', + code: '632521', + }, + { + name: '同德县', + code: '632522', + }, + { + name: '贵德县', + code: '632523', + }, + { + name: '兴海县', + code: '632524', + }, + { + name: '贵南县', + code: '632525', + }, + ], + }, + { + name: '果洛藏族自治州', + code: '632600', + children: [ + { + name: '玛沁县', + code: '632621', + }, + { + name: '班玛县', + code: '632622', + }, + { + name: '甘德县', + code: '632623', + }, + { + name: '达日县', + code: '632624', + }, + { + name: '久治县', + code: '632625', + }, + { + name: '玛多县', + code: '632626', + }, + ], + }, + { + name: '玉树藏族自治州', + code: '632700', + children: [ + { + name: '玉树市', + code: '632701', + }, + { + name: '杂多县', + code: '632722', + }, + { + name: '称多县', + code: '632723', + }, + { + name: '治多县', + code: '632724', + }, + { + name: '囊谦县', + code: '632725', + }, + { + name: '曲麻莱县', + code: '632726', + }, + ], + }, + { + name: '海西蒙古族藏族自治州', + code: '632800', + children: [ + { + name: '格尔木市', + code: '632801', + }, + { + name: '德令哈市', + code: '632802', + }, + { + name: '茫崖市', + code: '632803', + }, + { + name: '乌兰县', + code: '632821', + }, + { + name: '都兰县', + code: '632822', + }, + { + name: '天峻县', + code: '632823', + }, + ], + }, + ], + }, + { + name: '宁夏回族自治区', + code: '640000', + region: 'northwest', + autonomousRegion: true, + children: [ + { + name: '银川市', + code: '640100', + children: [ + { + name: '兴庆区', + code: '640104', + }, + { + name: '西夏区', + code: '640105', + }, + { + name: '金凤区', + code: '640106', + }, + { + name: '永宁县', + code: '640121', + }, + { + name: '贺兰县', + code: '640122', + }, + { + name: '灵武市', + code: '640181', + }, + ], + }, + { + name: '石嘴山市', + code: '640200', + children: [ + { + name: '大武口区', + code: '640202', + }, + { + name: '惠农区', + code: '640205', + }, + { + name: '平罗县', + code: '640221', + }, + ], + }, + { + name: '吴忠市', + code: '640300', + children: [ + { + name: '利通区', + code: '640302', + }, + { + name: '红寺堡区', + code: '640303', + }, + { + name: '盐池县', + code: '640323', + }, + { + name: '同心县', + code: '640324', + }, + { + name: '青铜峡市', + code: '640381', + }, + ], + }, + { + name: '固原市', + code: '640400', + children: [ + { + name: '原州区', + code: '640402', + }, + { + name: '西吉县', + code: '640422', + }, + { + name: '隆德县', + code: '640423', + }, + { + name: '泾源县', + code: '640424', + }, + { + name: '彭阳县', + code: '640425', + }, + ], + }, + { + name: '中卫市', + code: '640500', + children: [ + { + name: '沙坡头区', + code: '640502', + }, + { + name: '中宁县', + code: '640521', + }, + { + name: '海原县', + code: '640522', + }, + ], + }, + ], + }, + { + name: '新疆维吾尔自治区', + code: '650000', + region: 'northwest', + autonomousRegion: true, + children: [ + { + name: '乌鲁木齐市', + code: '650100', + children: [ + { + name: '天山区', + code: '650102', + }, + { + name: '沙依巴克区', + code: '650103', + }, + { + name: '新市区', + code: '650104', + }, + { + name: '水磨沟区', + code: '650105', + }, + { + name: '头屯河区', + code: '650106', + }, + { + name: '达坂城区', + code: '650107', + }, + { + name: '米东区', + code: '650109', + }, + { + name: '乌鲁木齐县', + code: '650121', + }, + ], + }, + { + name: '克拉玛依市', + code: '650200', + children: [ + { + name: '独山子区', + code: '650202', + }, + { + name: '克拉玛依区', + code: '650203', + }, + { + name: '白碱滩区', + code: '650204', + }, + { + name: '乌尔禾区', + code: '650205', + }, + ], + }, + { + name: '吐鲁番市', + code: '650400', + children: [ + { + name: '高昌区', + code: '650402', + }, + { + name: '鄯善县', + code: '650421', + }, + { + name: '托克逊县', + code: '650422', + }, + ], + }, + { + name: '哈密市', + code: '650500', + children: [ + { + name: '伊州区', + code: '650502', + }, + { + name: '巴里坤哈萨克自治县', + code: '650521', + }, + { + name: '伊吾县', + code: '650522', + }, + ], + }, + { + name: '昌吉回族自治州', + code: '652300', + children: [ + { + name: '昌吉市', + code: '652301', + }, + { + name: '阜康市', + code: '652302', + }, + { + name: '呼图壁县', + code: '652323', + }, + { + name: '玛纳斯县', + code: '652324', + }, + { + name: '奇台县', + code: '652325', + }, + { + name: '吉木萨尔县', + code: '652327', + }, + { + name: '木垒哈萨克自治县', + code: '652328', + }, + ], + }, + { + name: '博尔塔拉蒙古自治州', + code: '652700', + children: [ + { + name: '博乐市', + code: '652701', + }, + { + name: '阿拉山口市', + code: '652702', + }, + { + name: '精河县', + code: '652722', + }, + { + name: '温泉县', + code: '652723', + }, + ], + }, + { + name: '巴音郭楞蒙古自治州', + code: '652800', + children: [ + { + name: '库尔勒市', + code: '652801', + }, + { + name: '轮台县', + code: '652822', + }, + { + name: '尉犁县', + code: '652823', + }, + { + name: '若羌县', + code: '652824', + }, + { + name: '且末县', + code: '652825', + }, + { + name: '焉耆回族自治县', + code: '652826', + }, + { + name: '和静县', + code: '652827', + }, + { + name: '和硕县', + code: '652828', + }, + { + name: '博湖县', + code: '652829', + }, + ], + }, + { + name: '阿克苏地区', + code: '652900', + children: [ + { + name: '阿克苏市', + code: '652901', + }, + { + name: '温宿县', + code: '652922', + }, + { + name: '库车县', + code: '652923', + }, + { + name: '沙雅县', + code: '652924', + }, + { + name: '新和县', + code: '652925', + }, + { + name: '拜城县', + code: '652926', + }, + { + name: '乌什县', + code: '652927', + }, + { + name: '阿瓦提县', + code: '652928', + }, + { + name: '柯坪县', + code: '652929', + }, + ], + }, + { + name: '克孜勒苏柯尔克孜自治州', + code: '653000', + children: [ + { + name: '阿图什市', + code: '653001', + }, + { + name: '阿克陶县', + code: '653022', + }, + { + name: '阿合奇县', + code: '653023', + }, + { + name: '乌恰县', + code: '653024', + }, + ], + }, + { + name: '喀什地区', + code: '653100', + children: [ + { + name: '喀什市', + code: '653101', + }, + { + name: '疏附县', + code: '653121', + }, + { + name: '疏勒县', + code: '653122', + }, + { + name: '英吉沙县', + code: '653123', + }, + { + name: '泽普县', + code: '653124', + }, + { + name: '莎车县', + code: '653125', + }, + { + name: '叶城县', + code: '653126', + }, + { + name: '麦盖提县', + code: '653127', + }, + { + name: '岳普湖县', + code: '653128', + }, + { + name: '伽师县', + code: '653129', + }, + { + name: '巴楚县', + code: '653130', + }, + { + name: '塔什库尔干塔吉克自治县', + code: '653131', + }, + ], + }, + { + name: '和田地区', + code: '653200', + children: [ + { + name: '和田市', + code: '653201', + }, + { + name: '和田县', + code: '653221', + }, + { + name: '墨玉县', + code: '653222', + }, + { + name: '皮山县', + code: '653223', + }, + { + name: '洛浦县', + code: '653224', + }, + { + name: '策勒县', + code: '653225', + }, + { + name: '于田县', + code: '653226', + }, + { + name: '民丰县', + code: '653227', + }, + ], + }, + { + name: '伊犁哈萨克自治州', + code: '654000', + children: [ + { + name: '伊宁市', + code: '654002', + }, + { + name: '奎屯市', + code: '654003', + }, + { + name: '霍尔果斯市', + code: '654004', + }, + { + name: '伊宁县', + code: '654021', + }, + { + name: '察布查尔锡伯自治县', + code: '654022', + }, + { + name: '霍城县', + code: '654023', + }, + { + name: '巩留县', + code: '654024', + }, + { + name: '新源县', + code: '654025', + }, + { + name: '昭苏县', + code: '654026', + }, + { + name: '特克斯县', + code: '654027', + }, + { + name: '尼勒克县', + code: '654028', + }, + ], + }, + { + name: '塔城地区', + code: '654200', + children: [ + { + name: '塔城市', + code: '654201', + }, + { + name: '乌苏市', + code: '654202', + }, + { + name: '额敏县', + code: '654221', + }, + { + name: '沙湾县', + code: '654223', + }, + { + name: '托里县', + code: '654224', + }, + { + name: '裕民县', + code: '654225', + }, + { + name: '和布克赛尔蒙古自治县', + code: '654226', + }, + ], + }, + { + name: '阿勒泰地区', + code: '654300', + children: [ + { + name: '阿勒泰市', + code: '654301', + }, + { + name: '布尔津县', + code: '654321', + }, + { + name: '富蕴县', + code: '654322', + }, + { + name: '福海县', + code: '654323', + }, + { + name: '哈巴河县', + code: '654324', + }, + { + name: '青河县', + code: '654325', + }, + { + name: '吉木乃县', + code: '654326', + }, + ], + }, + { + name: '直辖县', + code: '659000', + children: [ + { + name: '石河子市', + code: '659001', + }, + { + name: '阿拉尔市', + code: '659002', + }, + { + name: '图木舒克市', + code: '659003', + }, + { + name: '五家渠市', + code: '659004', + }, + { + name: '北屯市', + code: '659005', + }, + { + name: '铁门关市', + code: '659006', + }, + { + name: '双河市', + code: '659007', + }, + { + name: '可克达拉市', + code: '659008', + }, + { + name: '昆玉市', + code: '659009', + }, + ], + }, + ], + }, +] + +module.exports = [ + { + url: '/area/getList', + type: 'get', + response: () => { + return { + code: 200, + msg: 'success', + data: { list }, + } + }, + }, +] diff --git a/front-end/mock/controller/defaultIcon.js b/front-end/mock/controller/defaultIcon.js new file mode 100644 index 0000000..883c2b6 --- /dev/null +++ b/front-end/mock/controller/defaultIcon.js @@ -0,0 +1,2296 @@ +const List = [ + '24-hours-fill', + '24-hours-line', + '4k-fill', + '4k-line', + 'a-b', + 'account-box-fill', + 'account-box-line', + 'account-circle-fill', + 'account-circle-line', + 'account-pin-box-fill', + 'account-pin-box-line', + 'account-pin-circle-fill', + 'account-pin-circle-line', + 'add-box-fill', + 'add-box-line', + 'add-circle-fill', + 'add-circle-line', + 'add-fill', + 'add-line', + 'admin-fill', + 'admin-line', + /* "advertisement-fill", + "advertisement-line", */ + 'airplay-fill', + 'airplay-line', + 'alarm-fill', + 'alarm-line', + 'alarm-warning-fill', + 'alarm-warning-line', + 'album-fill', + 'album-line', + 'alert-fill', + 'alert-line', + 'aliens-fill', + 'aliens-line', + 'align-bottom', + 'align-center', + 'align-justify', + 'align-left', + 'align-right', + 'align-top', + 'align-vertically', + 'alipay-fill', + 'alipay-line', + 'amazon-fill', + 'amazon-line', + 'anchor-fill', + 'anchor-line', + 'ancient-gate-fill', + 'ancient-gate-line', + 'ancient-pavilion-fill', + 'ancient-pavilion-line', + 'android-fill', + 'android-line', + 'angularjs-fill', + 'angularjs-line', + 'anticlockwise-2-fill', + 'anticlockwise-2-line', + 'anticlockwise-fill', + 'anticlockwise-line', + 'app-store-fill', + 'app-store-line', + 'apple-fill', + 'apple-line', + 'apps-2-fill', + 'apps-2-line', + 'apps-fill', + 'apps-line', + 'archive-drawer-fill', + 'archive-drawer-line', + 'archive-fill', + 'archive-line', + 'arrow-down-circle-fill', + 'arrow-down-circle-line', + 'arrow-down-fill', + 'arrow-down-line', + 'arrow-down-s-fill', + 'arrow-down-s-line', + 'arrow-drop-down-fill', + 'arrow-drop-down-line', + 'arrow-drop-left-fill', + 'arrow-drop-left-line', + 'arrow-drop-right-fill', + 'arrow-drop-right-line', + 'arrow-drop-up-fill', + 'arrow-drop-up-line', + 'arrow-go-back-fill', + 'arrow-go-back-line', + 'arrow-go-forward-fill', + 'arrow-go-forward-line', + 'arrow-left-circle-fill', + 'arrow-left-circle-line', + 'arrow-left-down-fill', + 'arrow-left-down-line', + 'arrow-left-fill', + 'arrow-left-line', + 'arrow-left-right-fill', + 'arrow-left-right-line', + 'arrow-left-s-fill', + 'arrow-left-s-line', + 'arrow-left-up-fill', + 'arrow-left-up-line', + 'arrow-right-circle-fill', + 'arrow-right-circle-line', + 'arrow-right-down-fill', + 'arrow-right-down-line', + 'arrow-right-fill', + 'arrow-right-line', + 'arrow-right-s-fill', + 'arrow-right-s-line', + 'arrow-right-up-fill', + 'arrow-right-up-line', + 'arrow-up-circle-fill', + 'arrow-up-circle-line', + 'arrow-up-down-fill', + 'arrow-up-down-line', + 'arrow-up-fill', + 'arrow-up-line', + 'arrow-up-s-fill', + 'arrow-up-s-line', + 'artboard-2-fill', + 'artboard-2-line', + 'artboard-fill', + 'artboard-line', + 'article-fill', + 'article-line', + 'aspect-ratio-fill', + 'aspect-ratio-line', + 'asterisk', + 'at-fill', + 'at-line', + 'attachment-2', + 'attachment-fill', + 'attachment-line', + 'auction-fill', + 'auction-line', + 'award-fill', + 'award-line', + 'baidu-fill', + 'baidu-line', + 'ball-pen-fill', + 'ball-pen-line', + 'bank-card-2-fill', + 'bank-card-2-line', + 'bank-card-fill', + 'bank-card-line', + 'bank-fill', + 'bank-line', + 'bar-chart-2-fill', + 'bar-chart-2-line', + 'bar-chart-box-fill', + 'bar-chart-box-line', + 'bar-chart-fill', + 'bar-chart-grouped-fill', + 'bar-chart-grouped-line', + 'bar-chart-horizontal-fill', + 'bar-chart-horizontal-line', + 'bar-chart-line', + 'barcode-box-fill', + 'barcode-box-line', + 'barcode-fill', + 'barcode-line', + 'barricade-fill', + 'barricade-line', + 'base-station-fill', + 'base-station-line', + 'basketball-fill', + 'basketball-line', + 'battery-2-charge-fill', + 'battery-2-charge-line', + 'battery-2-fill', + 'battery-2-line', + 'battery-charge-fill', + 'battery-charge-line', + 'battery-fill', + 'battery-line', + 'battery-low-fill', + 'battery-low-line', + 'battery-saver-fill', + 'battery-saver-line', + 'battery-share-fill', + 'battery-share-line', + 'bear-smile-fill', + 'bear-smile-line', + 'behance-fill', + 'behance-line', + 'bell-fill', + 'bell-line', + 'bike-fill', + 'bike-line', + 'bilibili-fill', + 'bilibili-line', + 'bill-fill', + 'bill-line', + 'billiards-fill', + 'billiards-line', + 'bit-coin-fill', + 'bit-coin-line', + 'blaze-fill', + 'blaze-line', + 'bluetooth-connect-fill', + 'bluetooth-connect-line', + 'bluetooth-fill', + 'bluetooth-line', + 'blur-off-fill', + 'blur-off-line', + 'body-scan-fill', + 'body-scan-line', + 'bold', + 'book-2-fill', + 'book-2-line', + 'book-3-fill', + 'book-3-line', + 'book-fill', + 'book-line', + 'book-mark-fill', + 'book-mark-line', + 'book-open-fill', + 'book-open-line', + 'book-read-fill', + 'book-read-line', + 'booklet-fill', + 'booklet-line', + 'bookmark-2-fill', + 'bookmark-2-line', + 'bookmark-3-fill', + 'bookmark-3-line', + 'bookmark-fill', + 'bookmark-line', + 'boxing-fill', + 'boxing-line', + 'braces-fill', + 'braces-line', + 'brackets-fill', + 'brackets-line', + 'briefcase-2-fill', + 'briefcase-2-line', + 'briefcase-3-fill', + 'briefcase-3-line', + 'briefcase-4-fill', + 'briefcase-4-line', + 'briefcase-5-fill', + 'briefcase-5-line', + 'briefcase-fill', + 'briefcase-line', + 'bring-forward', + 'bring-to-front', + 'broadcast-fill', + 'broadcast-line', + 'brush-2-fill', + 'brush-2-line', + 'brush-3-fill', + 'brush-3-line', + 'brush-4-fill', + 'brush-4-line', + 'brush-fill', + 'brush-line', + 'bubble-chart-fill', + 'bubble-chart-line', + 'bug-2-fill', + 'bug-2-line', + 'bug-fill', + 'bug-line', + 'building-2-fill', + 'building-2-line', + 'building-3-fill', + 'building-3-line', + 'building-4-fill', + 'building-4-line', + 'building-fill', + 'building-line', + 'bus-2-fill', + 'bus-2-line', + 'bus-fill', + 'bus-line', + 'bus-wifi-fill', + 'bus-wifi-line', + 'cactus-fill', + 'cactus-line', + 'cake-2-fill', + 'cake-2-line', + 'cake-3-fill', + 'cake-3-line', + 'cake-fill', + 'cake-line', + 'calculator-fill', + 'calculator-line', + 'calendar-2-fill', + 'calendar-2-line', + 'calendar-check-fill', + 'calendar-check-line', + 'calendar-event-fill', + 'calendar-event-line', + 'calendar-fill', + 'calendar-line', + 'calendar-todo-fill', + 'calendar-todo-line', + 'camera-2-fill', + 'camera-2-line', + 'camera-3-fill', + 'camera-3-line', + 'camera-fill', + 'camera-lens-fill', + 'camera-lens-line', + 'camera-line', + 'camera-off-fill', + 'camera-off-line', + 'camera-switch-fill', + 'camera-switch-line', + 'capsule-fill', + 'capsule-line', + 'car-fill', + 'car-line', + 'car-washing-fill', + 'car-washing-line', + 'caravan-fill', + 'caravan-line', + 'cast-fill', + 'cast-line', + 'cellphone-fill', + 'cellphone-line', + 'celsius-fill', + 'celsius-line', + 'centos-fill', + 'centos-line', + 'character-recognition-fill', + 'character-recognition-line', + 'charging-pile-2-fill', + 'charging-pile-2-line', + 'charging-pile-fill', + 'charging-pile-line', + 'chat-1-fill', + 'chat-1-line', + 'chat-2-fill', + 'chat-2-line', + 'chat-3-fill', + 'chat-3-line', + 'chat-4-fill', + 'chat-4-line', + 'chat-check-fill', + 'chat-check-line', + 'chat-delete-fill', + 'chat-delete-line', + 'chat-download-fill', + 'chat-download-line', + 'chat-follow-up-fill', + 'chat-follow-up-line', + 'chat-forward-fill', + 'chat-forward-line', + 'chat-heart-fill', + 'chat-heart-line', + 'chat-history-fill', + 'chat-history-line', + 'chat-new-fill', + 'chat-new-line', + 'chat-off-fill', + 'chat-off-line', + 'chat-poll-fill', + 'chat-poll-line', + 'chat-private-fill', + 'chat-private-line', + 'chat-quote-fill', + 'chat-quote-line', + 'chat-settings-fill', + 'chat-settings-line', + 'chat-smile-2-fill', + 'chat-smile-2-line', + 'chat-smile-3-fill', + 'chat-smile-3-line', + 'chat-smile-fill', + 'chat-smile-line', + 'chat-upload-fill', + 'chat-upload-line', + 'chat-voice-fill', + 'chat-voice-line', + 'check-double-fill', + 'check-double-line', + 'check-fill', + 'check-line', + 'checkbox-blank-circle-fill', + 'checkbox-blank-circle-line', + 'checkbox-blank-fill', + 'checkbox-blank-line', + 'checkbox-circle-fill', + 'checkbox-circle-line', + 'checkbox-fill', + 'checkbox-indeterminate-fill', + 'checkbox-indeterminate-line', + 'checkbox-line', + 'checkbox-multiple-blank-fill', + 'checkbox-multiple-blank-line', + 'checkbox-multiple-fill', + 'checkbox-multiple-line', + 'china-railway-fill', + 'china-railway-line', + 'chrome-fill', + 'chrome-line', + 'clapperboard-fill', + 'clapperboard-line', + 'clipboard-fill', + 'clipboard-line', + 'clockwise-2-fill', + 'clockwise-2-line', + 'clockwise-fill', + 'clockwise-line', + 'close-circle-fill', + 'close-circle-line', + 'close-fill', + 'close-line', + 'closed-captioning-fill', + 'closed-captioning-line', + 'cloud-fill', + 'cloud-line', + 'cloud-off-fill', + 'cloud-off-line', + 'cloud-windy-fill', + 'cloud-windy-line', + 'cloudy-2-fill', + 'cloudy-2-line', + 'cloudy-fill', + 'cloudy-line', + 'code-box-fill', + 'code-box-line', + 'code-fill', + 'code-line', + 'code-s-fill', + 'code-s-line', + 'code-s-slash-fill', + 'code-s-slash-line', + 'code-view', + 'codepen-fill', + 'codepen-line', + 'coin-fill', + 'coin-line', + 'coins-fill', + 'coins-line', + 'collage-fill', + 'collage-line', + 'command-fill', + 'command-line', + 'community-fill', + 'community-line', + 'compass-2-fill', + 'compass-2-line', + 'compass-3-fill', + 'compass-3-line', + 'compass-4-fill', + 'compass-4-line', + 'compass-discover-fill', + 'compass-discover-line', + 'compass-fill', + 'compass-line', + 'compasses-2-fill', + 'compasses-2-line', + 'compasses-fill', + 'compasses-line', + 'computer-fill', + 'computer-line', + 'contacts-book-2-fill', + 'contacts-book-2-line', + 'contacts-book-fill', + 'contacts-book-line', + 'contacts-book-upload-fill', + 'contacts-book-upload-line', + 'contacts-fill', + 'contacts-line', + 'contrast-2-fill', + 'contrast-2-line', + 'contrast-drop-2-fill', + 'contrast-drop-2-line', + 'contrast-drop-fill', + 'contrast-drop-line', + 'contrast-fill', + 'contrast-line', + 'copper-coin-fill', + 'copper-coin-line', + 'copper-diamond-fill', + 'copper-diamond-line', + 'copyleft-fill', + 'copyleft-line', + 'copyright-fill', + 'copyright-line', + 'coreos-fill', + 'coreos-line', + 'coupon-2-fill', + 'coupon-2-line', + 'coupon-3-fill', + 'coupon-3-line', + 'coupon-4-fill', + 'coupon-4-line', + 'coupon-5-fill', + 'coupon-5-line', + 'coupon-fill', + 'coupon-line', + 'cpu-fill', + 'cpu-line', + 'creative-commons-by-fill', + 'creative-commons-by-line', + 'creative-commons-fill', + 'creative-commons-line', + 'creative-commons-nc-fill', + 'creative-commons-nc-line', + 'creative-commons-nd-fill', + 'creative-commons-nd-line', + 'creative-commons-sa-fill', + 'creative-commons-sa-line', + 'creative-commons-zero-fill', + 'creative-commons-zero-line', + 'criminal-fill', + 'criminal-line', + 'crop-2-fill', + 'crop-2-line', + 'crop-fill', + 'crop-line', + 'css3-fill', + 'css3-line', + 'cup-fill', + 'cup-line', + 'currency-fill', + 'currency-line', + 'cursor-fill', + 'cursor-line', + 'customer-service-2-fill', + 'customer-service-2-line', + 'customer-service-fill', + 'customer-service-line', + 'dashboard-2-fill', + 'dashboard-2-line', + 'dashboard-3-fill', + 'dashboard-3-line', + 'dashboard-fill', + 'dashboard-line', + 'database-2-fill', + 'database-2-line', + 'database-fill', + 'database-line', + 'delete-back-2-fill', + 'delete-back-2-line', + 'delete-back-fill', + 'delete-back-line', + 'delete-bin-2-fill', + 'delete-bin-2-line', + 'delete-bin-3-fill', + 'delete-bin-3-line', + 'delete-bin-4-fill', + 'delete-bin-4-line', + 'delete-bin-5-fill', + 'delete-bin-5-line', + 'delete-bin-6-fill', + 'delete-bin-6-line', + 'delete-bin-7-fill', + 'delete-bin-7-line', + 'delete-bin-fill', + 'delete-bin-line', + 'delete-column', + 'delete-row', + 'device-fill', + 'device-line', + 'device-recover-fill', + 'device-recover-line', + 'dingding-fill', + 'dingding-line', + 'direction-fill', + 'direction-line', + 'disc-fill', + 'disc-line', + 'discord-fill', + 'discord-line', + 'discuss-fill', + 'discuss-line', + 'dislike-fill', + 'dislike-line', + 'disqus-fill', + 'disqus-line', + 'divide-fill', + 'divide-line', + 'donut-chart-fill', + 'donut-chart-line', + 'door-closed-fill', + 'door-closed-line', + 'door-fill', + 'door-line', + 'door-lock-box-fill', + 'door-lock-box-line', + 'door-lock-fill', + 'door-lock-line', + 'door-open-fill', + 'door-open-line', + 'dossier-fill', + 'dossier-line', + 'douban-fill', + 'douban-line', + 'double-quotes-l', + 'double-quotes-r', + 'download-2-fill', + 'download-2-line', + 'download-cloud-2-fill', + 'download-cloud-2-line', + 'download-cloud-fill', + 'download-cloud-line', + 'download-fill', + 'download-line', + 'draft-fill', + 'draft-line', + 'drag-drop-fill', + 'drag-drop-line', + 'drag-move-2-fill', + 'drag-move-2-line', + 'drag-move-fill', + 'drag-move-line', + 'dribbble-fill', + 'dribbble-line', + 'drive-fill', + 'drive-line', + 'drizzle-fill', + 'drizzle-line', + 'drop-fill', + 'drop-line', + 'dropbox-fill', + 'dropbox-line', + 'dual-sim-1-fill', + 'dual-sim-1-line', + 'dual-sim-2-fill', + 'dual-sim-2-line', + 'dv-fill', + 'dv-line', + 'dvd-fill', + 'dvd-line', + 'e-bike-2-fill', + 'e-bike-2-line', + 'e-bike-fill', + 'e-bike-line', + 'earth-fill', + 'earth-line', + 'earthquake-fill', + 'earthquake-line', + 'edge-fill', + 'edge-line', + 'edit-2-fill', + 'edit-2-line', + 'edit-box-fill', + 'edit-box-line', + 'edit-circle-fill', + 'edit-circle-line', + 'edit-fill', + 'edit-line', + 'eject-fill', + 'eject-line', + 'emotion-2-fill', + 'emotion-2-line', + 'emotion-fill', + 'emotion-happy-fill', + 'emotion-happy-line', + 'emotion-laugh-fill', + 'emotion-laugh-line', + 'emotion-line', + 'emotion-normal-fill', + 'emotion-normal-line', + 'emotion-sad-fill', + 'emotion-sad-line', + 'emotion-unhappy-fill', + 'emotion-unhappy-line', + 'empathize-fill', + 'empathize-line', + 'emphasis-cn', + 'emphasis', + 'english-input', + 'equalizer-fill', + 'equalizer-line', + 'eraser-fill', + 'eraser-line', + 'error-warning-fill', + 'error-warning-line', + 'evernote-fill', + 'evernote-line', + 'exchange-box-fill', + 'exchange-box-line', + 'exchange-cny-fill', + 'exchange-cny-line', + 'exchange-dollar-fill', + 'exchange-dollar-line', + 'exchange-fill', + 'exchange-funds-fill', + 'exchange-funds-line', + 'exchange-line', + 'external-link-fill', + 'external-link-line', + 'eye-2-fill', + 'eye-2-line', + 'eye-close-fill', + 'eye-close-line', + 'eye-fill', + 'eye-line', + 'eye-off-fill', + 'eye-off-line', + 'facebook-box-fill', + 'facebook-box-line', + 'facebook-circle-fill', + 'facebook-circle-line', + 'facebook-fill', + 'facebook-line', + 'fahrenheit-fill', + 'fahrenheit-line', + 'feedback-fill', + 'feedback-line', + 'file-2-fill', + 'file-2-line', + 'file-3-fill', + 'file-3-line', + 'file-4-fill', + 'file-4-line', + 'file-add-fill', + 'file-add-line', + 'file-chart-2-fill', + 'file-chart-2-line', + 'file-chart-fill', + 'file-chart-line', + 'file-cloud-fill', + 'file-cloud-line', + 'file-code-fill', + 'file-code-line', + 'file-copy-2-fill', + 'file-copy-2-line', + 'file-copy-fill', + 'file-copy-line', + 'file-damage-fill', + 'file-damage-line', + 'file-download-fill', + 'file-download-line', + 'file-edit-fill', + 'file-edit-line', + 'file-excel-2-fill', + 'file-excel-2-line', + 'file-excel-fill', + 'file-excel-line', + 'file-fill', + 'file-forbid-fill', + 'file-forbid-line', + 'file-gif-fill', + 'file-gif-line', + 'file-history-fill', + 'file-history-line', + 'file-hwp-fill', + 'file-hwp-line', + 'file-info-fill', + 'file-info-line', + 'file-line', + 'file-list-2-fill', + 'file-list-2-line', + 'file-list-3-fill', + 'file-list-3-line', + 'file-list-fill', + 'file-list-line', + 'file-lock-fill', + 'file-lock-line', + 'file-mark-fill', + 'file-mark-line', + 'file-music-fill', + 'file-music-line', + 'file-paper-2-fill', + 'file-paper-2-line', + 'file-paper-fill', + 'file-paper-line', + 'file-pdf-fill', + 'file-pdf-line', + 'file-ppt-2-fill', + 'file-ppt-2-line', + 'file-ppt-fill', + 'file-ppt-line', + 'file-reduce-fill', + 'file-reduce-line', + 'file-search-fill', + 'file-search-line', + 'file-settings-fill', + 'file-settings-line', + 'file-shield-2-fill', + 'file-shield-2-line', + 'file-shield-fill', + 'file-shield-line', + 'file-shred-fill', + 'file-shred-line', + 'file-text-fill', + 'file-text-line', + 'file-transfer-fill', + 'file-transfer-line', + 'file-unknow-fill', + 'file-unknow-line', + 'file-upload-fill', + 'file-upload-line', + 'file-user-fill', + 'file-user-line', + 'file-warning-fill', + 'file-warning-line', + 'file-word-2-fill', + 'file-word-2-line', + 'file-word-fill', + 'file-word-line', + 'file-zip-fill', + 'file-zip-line', + 'film-fill', + 'film-line', + 'filter-2-fill', + 'filter-2-line', + 'filter-3-fill', + 'filter-3-line', + 'filter-fill', + 'filter-line', + 'filter-off-fill', + 'filter-off-line', + 'find-replace-fill', + 'find-replace-line', + 'finder-fill', + 'finder-line', + 'fingerprint-2-fill', + 'fingerprint-2-line', + 'fingerprint-fill', + 'fingerprint-line', + 'fire-fill', + 'fire-line', + 'firefox-fill', + 'firefox-line', + 'first-aid-kit-fill', + 'first-aid-kit-line', + 'flag-2-fill', + 'flag-2-line', + 'flag-fill', + 'flag-line', + 'flashlight-fill', + 'flashlight-line', + 'flask-fill', + 'flask-line', + 'flight-land-fill', + 'flight-land-line', + 'flight-takeoff-fill', + 'flight-takeoff-line', + 'flood-fill', + 'flood-line', + 'flow-chart', + 'flutter-fill', + 'flutter-line', + 'focus-2-fill', + 'focus-2-line', + 'focus-3-fill', + 'focus-3-line', + 'focus-fill', + 'focus-line', + 'foggy-fill', + 'foggy-line', + 'folder-2-fill', + 'folder-2-line', + 'folder-3-fill', + 'folder-3-line', + 'folder-4-fill', + 'folder-4-line', + 'folder-5-fill', + 'folder-5-line', + 'folder-add-fill', + 'folder-add-line', + 'folder-chart-2-fill', + 'folder-chart-2-line', + 'folder-chart-fill', + 'folder-chart-line', + 'folder-download-fill', + 'folder-download-line', + 'folder-fill', + 'folder-forbid-fill', + 'folder-forbid-line', + 'folder-history-fill', + 'folder-history-line', + 'folder-info-fill', + 'folder-info-line', + 'folder-keyhole-fill', + 'folder-keyhole-line', + 'folder-line', + 'folder-lock-fill', + 'folder-lock-line', + 'folder-music-fill', + 'folder-music-line', + 'folder-open-fill', + 'folder-open-line', + 'folder-received-fill', + 'folder-received-line', + 'folder-reduce-fill', + 'folder-reduce-line', + 'folder-settings-fill', + 'folder-settings-line', + 'folder-shared-fill', + 'folder-shared-line', + 'folder-shield-2-fill', + 'folder-shield-2-line', + 'folder-shield-fill', + 'folder-shield-line', + 'folder-transfer-fill', + 'folder-transfer-line', + 'folder-unknow-fill', + 'folder-unknow-line', + 'folder-upload-fill', + 'folder-upload-line', + 'folder-user-fill', + 'folder-user-line', + 'folder-warning-fill', + 'folder-warning-line', + 'folder-zip-fill', + 'folder-zip-line', + 'folders-fill', + 'folders-line', + 'font-color', + 'font-size-2', + 'font-size', + 'football-fill', + 'football-line', + 'footprint-fill', + 'footprint-line', + 'forbid-2-fill', + 'forbid-2-line', + 'forbid-fill', + 'forbid-line', + 'format-clear', + 'fridge-fill', + 'fridge-line', + 'fullscreen-exit-fill', + 'fullscreen-exit-line', + 'fullscreen-fill', + 'fullscreen-line', + 'function-fill', + 'function-line', + 'functions', + 'funds-box-fill', + 'funds-box-line', + 'funds-fill', + 'funds-line', + 'gallery-fill', + 'gallery-line', + 'gallery-upload-fill', + 'gallery-upload-line', + 'game-fill', + 'game-line', + 'gamepad-fill', + 'gamepad-line', + 'gas-station-fill', + 'gas-station-line', + 'gatsby-fill', + 'gatsby-line', + 'genderless-fill', + 'genderless-line', + 'ghost-2-fill', + 'ghost-2-line', + 'ghost-fill', + 'ghost-line', + 'ghost-smile-fill', + 'ghost-smile-line', + 'gift-2-fill', + 'gift-2-line', + 'gift-fill', + 'gift-line', + 'git-branch-fill', + 'git-branch-line', + 'git-commit-fill', + 'git-commit-line', + 'git-merge-fill', + 'git-merge-line', + 'git-pull-request-fill', + 'git-pull-request-line', + 'git-repository-commits-fill', + 'git-repository-commits-line', + 'git-repository-fill', + 'git-repository-line', + 'git-repository-private-fill', + 'git-repository-private-line', + 'github-fill', + 'github-line', + 'gitlab-fill', + 'gitlab-line', + 'global-fill', + 'global-line', + 'globe-fill', + 'globe-line', + 'goblet-fill', + 'goblet-line', + 'google-fill', + 'google-line', + 'google-play-fill', + 'google-play-line', + 'government-fill', + 'government-line', + 'gps-fill', + 'gps-line', + 'gradienter-fill', + 'gradienter-line', + 'grid-fill', + 'grid-line', + 'group-2-fill', + 'group-2-line', + 'group-fill', + 'group-line', + 'guide-fill', + 'guide-line', + 'h-1', + 'h-2', + 'h-3', + 'h-4', + 'h-5', + 'h-6', + 'hail-fill', + 'hail-line', + 'hammer-fill', + 'hammer-line', + 'hand-coin-fill', + 'hand-coin-line', + 'hand-heart-fill', + 'hand-heart-line', + 'hand-sanitizer-fill', + 'hand-sanitizer-line', + 'handbag-fill', + 'handbag-line', + 'hard-drive-2-fill', + 'hard-drive-2-line', + 'hard-drive-fill', + 'hard-drive-line', + 'hashtag', + 'haze-2-fill', + 'haze-2-line', + 'haze-fill', + 'haze-line', + 'hd-fill', + 'hd-line', + 'heading', + 'headphone-fill', + 'headphone-line', + 'health-book-fill', + 'health-book-line', + 'heart-2-fill', + 'heart-2-line', + 'heart-3-fill', + 'heart-3-line', + 'heart-add-fill', + 'heart-add-line', + 'heart-fill', + 'heart-line', + 'heart-pulse-fill', + 'heart-pulse-line', + 'hearts-fill', + 'hearts-line', + 'heavy-showers-fill', + 'heavy-showers-line', + 'history-fill', + 'history-line', + 'home-2-fill', + 'home-2-line', + 'home-3-fill', + 'home-3-line', + 'home-4-fill', + 'home-4-line', + 'home-5-fill', + 'home-5-line', + 'home-6-fill', + 'home-6-line', + 'home-7-fill', + 'home-7-line', + 'home-8-fill', + 'home-8-line', + 'home-fill', + 'home-gear-fill', + 'home-gear-line', + 'home-heart-fill', + 'home-heart-line', + 'home-line', + 'home-smile-2-fill', + 'home-smile-2-line', + 'home-smile-fill', + 'home-smile-line', + 'home-wifi-fill', + 'home-wifi-line', + 'honor-of-kings-fill', + 'honor-of-kings-line', + 'honour-fill', + 'honour-line', + 'hospital-fill', + 'hospital-line', + 'hotel-bed-fill', + 'hotel-bed-line', + 'hotel-fill', + 'hotel-line', + 'hotspot-fill', + 'hotspot-line', + 'hq-fill', + 'hq-line', + 'html5-fill', + 'html5-line', + 'ie-fill', + 'ie-line', + 'image-2-fill', + 'image-2-line', + 'image-add-fill', + 'image-add-line', + 'image-edit-fill', + 'image-edit-line', + 'image-fill', + 'image-line', + 'inbox-archive-fill', + 'inbox-archive-line', + 'inbox-fill', + 'inbox-line', + 'inbox-unarchive-fill', + 'inbox-unarchive-line', + 'increase-decrease-fill', + 'increase-decrease-line', + 'indent-decrease', + 'indent-increase', + 'indeterminate-circle-fill', + 'indeterminate-circle-line', + 'information-fill', + 'information-line', + 'infrared-thermometer-fill', + 'infrared-thermometer-line', + 'ink-bottle-fill', + 'ink-bottle-line', + 'input-cursor-move', + 'input-method-fill', + 'input-method-line', + 'insert-column-left', + 'insert-column-right', + 'insert-row-bottom', + 'insert-row-top', + 'instagram-fill', + 'instagram-line', + 'install-fill', + 'install-line', + 'invision-fill', + 'invision-line', + 'italic', + 'kakao-talk-fill', + 'kakao-talk-line', + 'key-2-fill', + 'key-2-line', + 'key-fill', + 'key-line', + 'keyboard-box-fill', + 'keyboard-box-line', + 'keyboard-fill', + 'keyboard-line', + 'keynote-fill', + 'keynote-line', + 'knife-blood-fill', + 'knife-blood-line', + 'knife-fill', + 'knife-line', + 'landscape-fill', + 'landscape-line', + 'layout-2-fill', + 'layout-2-line', + 'layout-3-fill', + 'layout-3-line', + 'layout-4-fill', + 'layout-4-line', + 'layout-5-fill', + 'layout-5-line', + 'layout-6-fill', + 'layout-6-line', + 'layout-bottom-2-fill', + 'layout-bottom-2-line', + 'layout-bottom-fill', + 'layout-bottom-line', + 'layout-column-fill', + 'layout-column-line', + 'layout-fill', + 'layout-grid-fill', + 'layout-grid-line', + 'layout-left-2-fill', + 'layout-left-2-line', + 'layout-left-fill', + 'layout-left-line', + 'layout-line', + 'layout-masonry-fill', + 'layout-masonry-line', + 'layout-right-2-fill', + 'layout-right-2-line', + 'layout-right-fill', + 'layout-right-line', + 'layout-row-fill', + 'layout-row-line', + 'layout-top-2-fill', + 'layout-top-2-line', + 'layout-top-fill', + 'layout-top-line', + 'leaf-fill', + 'leaf-line', + 'lifebuoy-fill', + 'lifebuoy-line', + 'lightbulb-fill', + 'lightbulb-flash-fill', + 'lightbulb-flash-line', + 'lightbulb-line', + 'line-chart-fill', + 'line-chart-line', + 'line-fill', + 'line-height', + 'line-line', + 'link-m', + 'link-unlink-m', + 'link-unlink', + 'link', + 'linkedin-box-fill', + 'linkedin-box-line', + 'linkedin-fill', + 'linkedin-line', + 'links-fill', + 'links-line', + 'list-check-2', + 'list-check', + 'list-ordered', + 'list-settings-fill', + 'list-settings-line', + 'list-unordered', + 'live-fill', + 'live-line', + 'loader-2-fill', + 'loader-2-line', + 'loader-3-fill', + 'loader-3-line', + 'loader-4-fill', + 'loader-4-line', + 'loader-5-fill', + 'loader-5-line', + 'loader-fill', + 'loader-line', + 'lock-2-fill', + 'lock-2-line', + 'lock-fill', + 'lock-line', + 'lock-password-fill', + 'lock-password-line', + 'lock-unlock-fill', + 'lock-unlock-line', + 'login-box-fill', + 'login-box-line', + 'login-circle-fill', + 'login-circle-line', + 'logout-box-fill', + 'logout-box-line', + 'logout-box-r-fill', + 'logout-box-r-line', + 'logout-circle-fill', + 'logout-circle-line', + 'logout-circle-r-fill', + 'logout-circle-r-line', + 'luggage-cart-fill', + 'luggage-cart-line', + 'luggage-deposit-fill', + 'luggage-deposit-line', + 'lungs-fill', + 'lungs-line', + 'mac-fill', + 'mac-line', + 'macbook-fill', + 'macbook-line', + 'magic-fill', + 'magic-line', + 'mail-add-fill', + 'mail-add-line', + 'mail-check-fill', + 'mail-check-line', + 'mail-close-fill', + 'mail-close-line', + 'mail-download-fill', + 'mail-download-line', + 'mail-fill', + 'mail-forbid-fill', + 'mail-forbid-line', + 'mail-line', + 'mail-lock-fill', + 'mail-lock-line', + 'mail-open-fill', + 'mail-open-line', + 'mail-send-fill', + 'mail-send-line', + 'mail-settings-fill', + 'mail-settings-line', + 'mail-star-fill', + 'mail-star-line', + 'mail-unread-fill', + 'mail-unread-line', + 'mail-volume-fill', + 'mail-volume-line', + 'map-2-fill', + 'map-2-line', + 'map-fill', + 'map-line', + 'map-pin-2-fill', + 'map-pin-2-line', + 'map-pin-3-fill', + 'map-pin-3-line', + 'map-pin-4-fill', + 'map-pin-4-line', + 'map-pin-5-fill', + 'map-pin-5-line', + 'map-pin-add-fill', + 'map-pin-add-line', + 'map-pin-fill', + 'map-pin-line', + 'map-pin-range-fill', + 'map-pin-range-line', + 'map-pin-time-fill', + 'map-pin-time-line', + 'map-pin-user-fill', + 'map-pin-user-line', + 'mark-pen-fill', + 'mark-pen-line', + 'markdown-fill', + 'markdown-line', + 'markup-fill', + 'markup-line', + 'mastercard-fill', + 'mastercard-line', + 'mastodon-fill', + 'mastodon-line', + 'medal-2-fill', + 'medal-2-line', + 'medal-fill', + 'medal-line', + 'medicine-bottle-fill', + 'medicine-bottle-line', + 'medium-fill', + 'medium-line', + 'men-fill', + 'men-line', + 'mental-health-fill', + 'mental-health-line', + 'menu-2-fill', + 'menu-2-line', + 'menu-3-fill', + 'menu-3-line', + 'menu-4-fill', + 'menu-4-line', + 'menu-5-fill', + 'menu-5-line', + 'menu-add-fill', + 'menu-add-line', + 'menu-fill', + 'menu-fold-fill', + 'menu-fold-line', + 'menu-line', + 'menu-unfold-fill', + 'menu-unfold-line', + 'merge-cells-horizontal', + 'merge-cells-vertical', + 'message-2-fill', + 'message-2-line', + 'message-3-fill', + 'message-3-line', + 'message-fill', + 'message-line', + 'messenger-fill', + 'messenger-line', + 'meteor-fill', + 'meteor-line', + 'mic-2-fill', + 'mic-2-line', + 'mic-fill', + 'mic-line', + 'mic-off-fill', + 'mic-off-line', + 'mickey-fill', + 'mickey-line', + 'microscope-fill', + 'microscope-line', + 'microsoft-fill', + 'microsoft-line', + 'mind-map', + 'mini-program-fill', + 'mini-program-line', + 'mist-fill', + 'mist-line', + 'money-cny-box-fill', + 'money-cny-box-line', + 'money-cny-circle-fill', + 'money-cny-circle-line', + 'money-dollar-box-fill', + 'money-dollar-box-line', + 'money-dollar-circle-fill', + 'money-dollar-circle-line', + 'money-euro-box-fill', + 'money-euro-box-line', + 'money-euro-circle-fill', + 'money-euro-circle-line', + 'money-pound-box-fill', + 'money-pound-box-line', + 'money-pound-circle-fill', + 'money-pound-circle-line', + 'moon-clear-fill', + 'moon-clear-line', + 'moon-cloudy-fill', + 'moon-cloudy-line', + 'moon-fill', + 'moon-foggy-fill', + 'moon-foggy-line', + 'moon-line', + 'more-2-fill', + 'more-2-line', + 'more-fill', + 'more-line', + 'motorbike-fill', + 'motorbike-line', + 'mouse-fill', + 'mouse-line', + 'movie-2-fill', + 'movie-2-line', + 'movie-fill', + 'movie-line', + 'music-2-fill', + 'music-2-line', + 'music-fill', + 'music-line', + 'mv-fill', + 'mv-line', + 'navigation-fill', + 'navigation-line', + 'netease-cloud-music-fill', + 'netease-cloud-music-line', + 'netflix-fill', + 'netflix-line', + 'newspaper-fill', + 'newspaper-line', + 'node-tree', + 'notification-2-fill', + 'notification-2-line', + 'notification-3-fill', + 'notification-3-line', + 'notification-4-fill', + 'notification-4-line', + 'notification-badge-fill', + 'notification-badge-line', + 'notification-fill', + 'notification-line', + 'notification-off-fill', + 'notification-off-line', + 'npmjs-fill', + 'npmjs-line', + 'number-0', + 'number-1', + 'number-2', + 'number-3', + 'number-4', + 'number-5', + 'number-6', + 'number-7', + 'number-8', + 'number-9', + 'numbers-fill', + 'numbers-line', + 'nurse-fill', + 'nurse-line', + 'oil-fill', + 'oil-line', + 'omega', + 'open-arm-fill', + 'open-arm-line', + 'open-source-fill', + 'open-source-line', + 'opera-fill', + 'opera-line', + 'order-play-fill', + 'order-play-line', + 'organization-chart', + 'outlet-2-fill', + 'outlet-2-line', + 'outlet-fill', + 'outlet-line', + 'page-separator', + 'pages-fill', + 'pages-line', + 'paint-brush-fill', + 'paint-brush-line', + 'paint-fill', + 'paint-line', + 'palette-fill', + 'palette-line', + 'pantone-fill', + 'pantone-line', + 'paragraph', + 'parent-fill', + 'parent-line', + 'parentheses-fill', + 'parentheses-line', + 'parking-box-fill', + 'parking-box-line', + 'parking-fill', + 'parking-line', + 'passport-fill', + 'passport-line', + 'patreon-fill', + 'patreon-line', + 'pause-circle-fill', + 'pause-circle-line', + 'pause-fill', + 'pause-line', + 'pause-mini-fill', + 'pause-mini-line', + 'paypal-fill', + 'paypal-line', + 'pen-nib-fill', + 'pen-nib-line', + 'pencil-fill', + 'pencil-line', + 'pencil-ruler-2-fill', + 'pencil-ruler-2-line', + 'pencil-ruler-fill', + 'pencil-ruler-line', + 'percent-fill', + 'percent-line', + 'phone-camera-fill', + 'phone-camera-line', + 'phone-fill', + 'phone-find-fill', + 'phone-find-line', + 'phone-line', + 'phone-lock-fill', + 'phone-lock-line', + 'picture-in-picture-2-fill', + 'picture-in-picture-2-line', + 'picture-in-picture-exit-fill', + 'picture-in-picture-exit-line', + 'picture-in-picture-fill', + 'picture-in-picture-line', + 'pie-chart-2-fill', + 'pie-chart-2-line', + 'pie-chart-box-fill', + 'pie-chart-box-line', + 'pie-chart-fill', + 'pie-chart-line', + 'pin-distance-fill', + 'pin-distance-line', + 'ping-pong-fill', + 'ping-pong-line', + 'pinterest-fill', + 'pinterest-line', + 'pinyin-input', + 'pixelfed-fill', + 'pixelfed-line', + 'plane-fill', + 'plane-line', + 'plant-fill', + 'plant-line', + 'play-circle-fill', + 'play-circle-line', + 'play-fill', + 'play-line', + 'play-list-2-fill', + 'play-list-2-line', + 'play-list-add-fill', + 'play-list-add-line', + 'play-list-fill', + 'play-list-line', + 'play-mini-fill', + 'play-mini-line', + 'playstation-fill', + 'playstation-line', + 'plug-2-fill', + 'plug-2-line', + 'plug-fill', + 'plug-line', + 'polaroid-2-fill', + 'polaroid-2-line', + 'polaroid-fill', + 'polaroid-line', + 'police-car-fill', + 'police-car-line', + 'price-tag-2-fill', + 'price-tag-2-line', + 'price-tag-3-fill', + 'price-tag-3-line', + 'price-tag-fill', + 'price-tag-line', + 'printer-cloud-fill', + 'printer-cloud-line', + 'printer-fill', + 'printer-line', + 'product-hunt-fill', + 'product-hunt-line', + 'profile-fill', + 'profile-line', + 'projector-2-fill', + 'projector-2-line', + 'projector-fill', + 'projector-line', + 'psychotherapy-fill', + 'psychotherapy-line', + 'pulse-fill', + 'pulse-line', + 'pushpin-2-fill', + 'pushpin-2-line', + 'pushpin-fill', + 'pushpin-line', + 'qq-fill', + 'qq-line', + 'qr-code-fill', + 'qr-code-line', + 'qr-scan-2-fill', + 'qr-scan-2-line', + 'qr-scan-fill', + 'qr-scan-line', + 'question-answer-fill', + 'question-answer-line', + 'question-fill', + 'question-line', + 'question-mark', + 'questionnaire-fill', + 'questionnaire-line', + 'quill-pen-fill', + 'quill-pen-line', + 'radar-fill', + 'radar-line', + 'radio-2-fill', + 'radio-2-line', + 'radio-button-fill', + 'radio-button-line', + 'radio-fill', + 'radio-line', + 'rainbow-fill', + 'rainbow-line', + 'rainy-fill', + 'rainy-line', + 'reactjs-fill', + 'reactjs-line', + 'record-circle-fill', + 'record-circle-line', + 'record-mail-fill', + 'record-mail-line', + 'recycle-fill', + 'recycle-line', + 'red-packet-fill', + 'red-packet-line', + 'reddit-fill', + 'reddit-line', + 'refresh-fill', + 'refresh-line', + 'refund-2-fill', + 'refund-2-line', + 'refund-fill', + 'refund-line', + 'registered-fill', + 'registered-line', + 'remixicon-fill', + 'remixicon-line', + 'remote-control-2-fill', + 'remote-control-2-line', + 'remote-control-fill', + 'remote-control-line', + 'repeat-2-fill', + 'repeat-2-line', + 'repeat-fill', + 'repeat-line', + 'repeat-one-fill', + 'repeat-one-line', + 'reply-all-fill', + 'reply-all-line', + 'reply-fill', + 'reply-line', + 'reserved-fill', + 'reserved-line', + 'rest-time-fill', + 'rest-time-line', + 'restart-fill', + 'restart-line', + 'restaurant-2-fill', + 'restaurant-2-line', + 'restaurant-fill', + 'restaurant-line', + 'rewind-fill', + 'rewind-line', + 'rewind-mini-fill', + 'rewind-mini-line', + 'rhythm-fill', + 'rhythm-line', + 'riding-fill', + 'riding-line', + 'road-map-fill', + 'road-map-line', + 'roadster-fill', + 'roadster-line', + 'robot-fill', + 'robot-line', + 'rocket-2-fill', + 'rocket-2-line', + 'rocket-fill', + 'rocket-line', + 'rotate-lock-fill', + 'rotate-lock-line', + 'rounded-corner', + 'route-fill', + 'route-line', + 'router-fill', + 'router-line', + 'rss-fill', + 'rss-line', + 'ruler-2-fill', + 'ruler-2-line', + 'ruler-fill', + 'ruler-line', + 'run-fill', + 'run-line', + 'safari-fill', + 'safari-line', + 'safe-2-fill', + 'safe-2-line', + 'safe-fill', + 'safe-line', + 'sailboat-fill', + 'sailboat-line', + 'save-2-fill', + 'save-2-line', + 'save-3-fill', + 'save-3-line', + 'save-fill', + 'save-line', + 'scales-2-fill', + 'scales-2-line', + 'scales-3-fill', + 'scales-3-line', + 'scales-fill', + 'scales-line', + 'scan-2-fill', + 'scan-2-line', + 'scan-fill', + 'scan-line', + 'scissors-2-fill', + 'scissors-2-line', + 'scissors-cut-fill', + 'scissors-cut-line', + 'scissors-fill', + 'scissors-line', + 'screenshot-2-fill', + 'screenshot-2-line', + 'screenshot-fill', + 'screenshot-line', + 'sd-card-fill', + 'sd-card-line', + 'sd-card-mini-fill', + 'sd-card-mini-line', + 'search-2-fill', + 'search-2-line', + 'search-eye-fill', + 'search-eye-line', + 'search-fill', + 'search-line', + 'secure-payment-fill', + 'secure-payment-line', + 'seedling-fill', + 'seedling-line', + 'send-backward', + 'send-plane-2-fill', + 'send-plane-2-line', + 'send-plane-fill', + 'send-plane-line', + 'send-to-back', + 'sensor-fill', + 'sensor-line', + 'separator', + 'server-fill', + 'server-line', + 'service-fill', + 'service-line', + 'settings-2-fill', + 'settings-2-line', + 'settings-3-fill', + 'settings-3-line', + 'settings-4-fill', + 'settings-4-line', + 'settings-5-fill', + 'settings-5-line', + 'settings-6-fill', + 'settings-6-line', + 'settings-fill', + 'settings-line', + 'shape-2-fill', + 'shape-2-line', + 'shape-fill', + 'shape-line', + 'share-box-fill', + 'share-box-line', + 'share-circle-fill', + 'share-circle-line', + 'share-fill', + 'share-forward-2-fill', + 'share-forward-2-line', + 'share-forward-box-fill', + 'share-forward-box-line', + 'share-forward-fill', + 'share-forward-line', + 'share-line', + 'shield-check-fill', + 'shield-check-line', + 'shield-cross-fill', + 'shield-cross-line', + 'shield-fill', + 'shield-flash-fill', + 'shield-flash-line', + 'shield-keyhole-fill', + 'shield-keyhole-line', + 'shield-line', + 'shield-star-fill', + 'shield-star-line', + 'shield-user-fill', + 'shield-user-line', + 'ship-2-fill', + 'ship-2-line', + 'ship-fill', + 'ship-line', + 'shirt-fill', + 'shirt-line', + 'shopping-bag-2-fill', + 'shopping-bag-2-line', + 'shopping-bag-3-fill', + 'shopping-bag-3-line', + 'shopping-bag-fill', + 'shopping-bag-line', + 'shopping-basket-2-fill', + 'shopping-basket-2-line', + 'shopping-basket-fill', + 'shopping-basket-line', + 'shopping-cart-2-fill', + 'shopping-cart-2-line', + 'shopping-cart-fill', + 'shopping-cart-line', + 'showers-fill', + 'showers-line', + 'shuffle-fill', + 'shuffle-line', + 'shut-down-fill', + 'shut-down-line', + 'side-bar-fill', + 'side-bar-line', + 'signal-tower-fill', + 'signal-tower-line', + 'signal-wifi-1-fill', + 'signal-wifi-1-line', + 'signal-wifi-2-fill', + 'signal-wifi-2-line', + 'signal-wifi-3-fill', + 'signal-wifi-3-line', + 'signal-wifi-error-fill', + 'signal-wifi-error-line', + 'signal-wifi-fill', + 'signal-wifi-line', + 'signal-wifi-off-fill', + 'signal-wifi-off-line', + 'sim-card-2-fill', + 'sim-card-2-line', + 'sim-card-fill', + 'sim-card-line', + 'single-quotes-l', + 'single-quotes-r', + 'sip-fill', + 'sip-line', + 'skip-back-fill', + 'skip-back-line', + 'skip-back-mini-fill', + 'skip-back-mini-line', + 'skip-forward-fill', + 'skip-forward-line', + 'skip-forward-mini-fill', + 'skip-forward-mini-line', + 'skull-2-fill', + 'skull-2-line', + 'skull-fill', + 'skull-line', + 'skype-fill', + 'skype-line', + 'slack-fill', + 'slack-line', + 'slice-fill', + 'slice-line', + 'slideshow-2-fill', + 'slideshow-2-line', + 'slideshow-3-fill', + 'slideshow-3-line', + 'slideshow-4-fill', + 'slideshow-4-line', + 'slideshow-fill', + 'slideshow-line', + 'smartphone-fill', + 'smartphone-line', + 'snapchat-fill', + 'snapchat-line', + 'snowy-fill', + 'snowy-line', + 'sort-asc', + 'sort-desc', + 'sound-module-fill', + 'sound-module-line', + 'soundcloud-fill', + 'soundcloud-line', + 'space-ship-fill', + 'space-ship-line', + 'space', + 'spam-2-fill', + 'spam-2-line', + 'spam-3-fill', + 'spam-3-line', + 'spam-fill', + 'spam-line', + 'speaker-2-fill', + 'speaker-2-line', + 'speaker-3-fill', + 'speaker-3-line', + 'speaker-fill', + 'speaker-line', + 'spectrum-fill', + 'spectrum-line', + 'speed-fill', + 'speed-line', + 'speed-mini-fill', + 'speed-mini-line', + 'split-cells-horizontal', + 'split-cells-vertical', + 'spotify-fill', + 'spotify-line', + 'spy-fill', + 'spy-line', + 'stack-fill', + 'stack-line', + 'stack-overflow-fill', + 'stack-overflow-line', + 'stackshare-fill', + 'stackshare-line', + 'star-fill', + 'star-half-fill', + 'star-half-line', + 'star-half-s-fill', + 'star-half-s-line', + 'star-line', + 'star-s-fill', + 'star-s-line', + 'star-smile-fill', + 'star-smile-line', + 'steam-fill', + 'steam-line', + 'steering-2-fill', + 'steering-2-line', + 'steering-fill', + 'steering-line', + 'stethoscope-fill', + 'stethoscope-line', + 'sticky-note-2-fill', + 'sticky-note-2-line', + 'sticky-note-fill', + 'sticky-note-line', + 'stock-fill', + 'stock-line', + 'stop-circle-fill', + 'stop-circle-line', + 'stop-fill', + 'stop-line', + 'stop-mini-fill', + 'stop-mini-line', + 'store-2-fill', + 'store-2-line', + 'store-3-fill', + 'store-3-line', + 'store-fill', + 'store-line', + 'strikethrough-2', + 'strikethrough', + 'subscript-2', + 'subscript', + 'subtract-fill', + 'subtract-line', + 'subway-fill', + 'subway-line', + 'subway-wifi-fill', + 'subway-wifi-line', + 'suitcase-2-fill', + 'suitcase-2-line', + 'suitcase-3-fill', + 'suitcase-3-line', + 'suitcase-fill', + 'suitcase-line', + 'sun-cloudy-fill', + 'sun-cloudy-line', + 'sun-fill', + 'sun-foggy-fill', + 'sun-foggy-line', + 'sun-line', + 'superscript-2', + 'superscript', + 'surgical-mask-fill', + 'surgical-mask-line', + 'surround-sound-fill', + 'surround-sound-line', + 'survey-fill', + 'survey-line', + 'swap-box-fill', + 'swap-box-line', + 'swap-fill', + 'swap-line', + 'switch-fill', + 'switch-line', + 'sword-fill', + 'sword-line', + 'syringe-fill', + 'syringe-line', + 't-box-fill', + 't-box-line', + 't-shirt-2-fill', + 't-shirt-2-line', + 't-shirt-air-fill', + 't-shirt-air-line', + 't-shirt-fill', + 't-shirt-line', + 'table-2', + 'table-alt-fill', + 'table-alt-line', + 'table-fill', + 'table-line', + 'tablet-fill', + 'tablet-line', + 'takeaway-fill', + 'takeaway-line', + 'taobao-fill', + 'taobao-line', + 'tape-fill', + 'tape-line', + 'task-fill', + 'task-line', + 'taxi-fill', + 'taxi-line', + 'taxi-wifi-fill', + 'taxi-wifi-line', + 'team-fill', + 'team-line', + 'telegram-fill', + 'telegram-line', + 'temp-cold-fill', + 'temp-cold-line', + 'temp-hot-fill', + 'temp-hot-line', + 'terminal-box-fill', + 'terminal-box-line', + 'terminal-fill', + 'terminal-line', + 'terminal-window-fill', + 'terminal-window-line', + 'test-tube-fill', + 'test-tube-line', + 'text-direction-l', + 'text-direction-r', + 'text-spacing', + 'text-wrap', + 'text', + 'thermometer-fill', + 'thermometer-line', + 'thumb-down-fill', + 'thumb-down-line', + 'thumb-up-fill', + 'thumb-up-line', + 'thunderstorms-fill', + 'thunderstorms-line', + 'ticket-2-fill', + 'ticket-2-line', + 'ticket-fill', + 'ticket-line', + 'time-fill', + 'time-line', + 'timer-2-fill', + 'timer-2-line', + 'timer-fill', + 'timer-flash-fill', + 'timer-flash-line', + 'timer-line', + 'todo-fill', + 'todo-line', + 'toggle-fill', + 'toggle-line', + 'tools-fill', + 'tools-line', + 'tornado-fill', + 'tornado-line', + 'trademark-fill', + 'trademark-line', + 'traffic-light-fill', + 'traffic-light-line', + 'train-fill', + 'train-line', + 'train-wifi-fill', + 'train-wifi-line', + 'translate-2', + 'translate', + 'travesti-fill', + 'travesti-line', + 'treasure-map-fill', + 'treasure-map-line', + 'trello-fill', + 'trello-line', + 'trophy-fill', + 'trophy-line', + 'truck-fill', + 'truck-line', + 'tumblr-fill', + 'tumblr-line', + 'tv-2-fill', + 'tv-2-line', + 'tv-fill', + 'tv-line', + 'twitch-fill', + 'twitch-line', + 'twitter-fill', + 'twitter-line', + 'typhoon-fill', + 'typhoon-line', + 'u-disk-fill', + 'u-disk-line', + 'ubuntu-fill', + 'ubuntu-line', + 'umbrella-fill', + 'umbrella-line', + 'underline', + 'uninstall-fill', + 'uninstall-line', + 'unsplash-fill', + 'unsplash-line', + 'upload-2-fill', + 'upload-2-line', + 'upload-cloud-2-fill', + 'upload-cloud-2-line', + 'upload-cloud-fill', + 'upload-cloud-line', + 'upload-fill', + 'upload-line', + 'usb-fill', + 'usb-line', + 'user-2-fill', + 'user-2-line', + 'user-3-fill', + 'user-3-line', + 'user-4-fill', + 'user-4-line', + 'user-5-fill', + 'user-5-line', + 'user-6-fill', + 'user-6-line', + 'user-add-fill', + 'user-add-line', + 'user-fill', + 'user-follow-fill', + 'user-follow-line', + 'user-heart-fill', + 'user-heart-line', + 'user-line', + 'user-location-fill', + 'user-location-line', + 'user-received-2-fill', + 'user-received-2-line', + 'user-received-fill', + 'user-received-line', + 'user-search-fill', + 'user-search-line', + 'user-settings-fill', + 'user-settings-line', + 'user-shared-2-fill', + 'user-shared-2-line', + 'user-shared-fill', + 'user-shared-line', + 'user-smile-fill', + 'user-smile-line', + 'user-star-fill', + 'user-star-line', + 'user-unfollow-fill', + 'user-unfollow-line', + 'user-voice-fill', + 'user-voice-line', + 'video-add-fill', + 'video-add-line', + 'video-chat-fill', + 'video-chat-line', + 'video-download-fill', + 'video-download-line', + 'video-fill', + 'video-line', + 'video-upload-fill', + 'video-upload-line', + 'vidicon-2-fill', + 'vidicon-2-line', + 'vidicon-fill', + 'vidicon-line', + 'vimeo-fill', + 'vimeo-line', + 'vip-crown-2-fill', + 'vip-crown-2-line', + 'vip-crown-fill', + 'vip-crown-line', + 'vip-diamond-fill', + 'vip-diamond-line', + 'vip-fill', + 'vip-line', + 'virus-fill', + 'virus-line', + 'visa-fill', + 'visa-line', + 'voice-recognition-fill', + 'voice-recognition-line', + 'voiceprint-fill', + 'voiceprint-line', + 'volume-down-fill', + 'volume-down-line', + 'volume-mute-fill', + 'volume-mute-line', + 'volume-off-vibrate-fill', + 'volume-off-vibrate-line', + 'volume-up-fill', + 'volume-up-line', + 'volume-vibrate-fill', + 'volume-vibrate-line', + 'vuejs-fill', + 'vuejs-line', + 'walk-fill', + 'walk-line', + 'wallet-2-fill', + 'wallet-2-line', + 'wallet-3-fill', + 'wallet-3-line', + 'wallet-fill', + 'wallet-line', + 'water-flash-fill', + 'water-flash-line', + 'webcam-fill', + 'webcam-line', + 'wechat-2-fill', + 'wechat-2-line', + 'wechat-fill', + 'wechat-line', + 'wechat-pay-fill', + 'wechat-pay-line', + 'weibo-fill', + 'weibo-line', + 'whatsapp-fill', + 'whatsapp-line', + 'wheelchair-fill', + 'wheelchair-line', + 'wifi-fill', + 'wifi-line', + 'wifi-off-fill', + 'wifi-off-line', + 'window-2-fill', + 'window-2-line', + 'window-fill', + 'window-line', + 'windows-fill', + 'windows-line', + 'windy-fill', + 'windy-line', + 'wireless-charging-fill', + 'wireless-charging-line', + 'women-fill', + 'women-line', + 'wubi-input', + 'xbox-fill', + 'xbox-line', + 'xing-fill', + 'xing-line', + 'youtube-fill', + 'youtube-line', + 'zcool-fill', + 'zcool-line', + 'zhihu-fill', + 'zhihu-line', + 'zoom-in-fill', + 'zoom-in-line', + 'zoom-out-fill', + 'zoom-out-line', + 'zzz-fill', + 'zzz-line', +] + +module.exports = [ + { + url: '/defaultIcon/getList', + type: 'get', + response(config) { + const { title, pageNo = 1, pageSize = 72 } = config.query + const mockList = List.filter( + (item) => !(title && !item.includes(title)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, +] diff --git a/front-end/mock/controller/departmentManagement.js b/front-end/mock/controller/departmentManagement.js new file mode 100644 index 0000000..83ad380 --- /dev/null +++ b/front-end/mock/controller/departmentManagement.js @@ -0,0 +1,87 @@ +const List = [ + { + id: 'root', + createTime: '@datetime', + name: '根节点', + order: 0, + children: [ + { + id: '1', + parentId: 'root', + parentName: '根节点', + createTime: '@datetime', + name: '桃花坞', + order: 0, + }, + { + id: '2', + parentId: 'root', + parentName: '根节点', + createTime: '@datetime', + name: '少林寺', + order: 1, + children: [ + { + id: '@uuid', + parentId: '2', + parentName: '少林寺', + createTime: '@datetime', + name: '达摩院', + order: 0, + }, + { + id: '@uuid', + parentId: '2', + parentName: '少林寺', + createTime: '@datetime', + name: '戒律堂', + order: 1, + }, + ], + }, + ], + }, +] + +module.exports = [ + { + url: '/departmentManagement/getList', + type: 'get', + response: (config) => { + const { name, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(name && !item.name.includes(name)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, + { + url: '/departmentManagement/doEdit', + type: 'post', + response: () => { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, + { + url: '/departmentManagement/doDelete', + type: 'post', + response: () => { + return { + code: 200, + msg: '模拟删除成功', + } + }, + }, +] diff --git a/front-end/mock/controller/dictionaryManagement.js b/front-end/mock/controller/dictionaryManagement.js new file mode 100644 index 0000000..fc30a9c --- /dev/null +++ b/front-end/mock/controller/dictionaryManagement.js @@ -0,0 +1,114 @@ +module.exports = [ + { + url: '/dictionaryManagement/getTree', + type: 'get', + response() { + return { + code: 200, + msg: 'success', + data: { + total: 999, + list: [ + { + id: 'root', + key: 'root', + label: '全部字典', + children: [ + { + id: '@id', + key: 'sex', + label: '性别', + }, + { + id: '@id', + key: 'type', + label: '类型', + }, + ], + }, + ], + }, + } + }, + }, + { + url: '/dictionaryManagement/getList', + type: 'get', + response: (config) => { + const { key, parentKey } = config.query + const list1 = [ + { + parentKey: 'sex', + id: '@id', + lable: '性别', + key: '1', + value: '男', + }, + { + parentKey: 'sex', + id: '@id', + lable: '性别', + key: '2', + value: '女', + }, + ] + const list2 = [ + { + parentKey: 'type', + id: '@id', + lable: '类型', + key: '1', + value: '新闻', + }, + { + parentKey: 'type', + id: '@id', + lable: '类型', + key: '2', + value: '知识', + }, + ] + if (parentKey) { + return { + code: 200, + msg: 'success', + data: { + list: parentKey === 'sex' ? list1 : list2, + }, + } + } + return { + code: 200, + msg: 'success', + data: { + list: + !key || key === 'root' + ? [] + : key === 'sex' + ? list1 + : list2, + }, + } + }, + }, + { + url: '/dictionaryManagement/doEdit', + type: 'post', + response: () => { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, + { + url: '/dictionaryManagement/doDelete', + type: 'post', + response: () => { + return { + code: 200, + msg: '模拟删除成功', + } + }, + }, +] diff --git a/front-end/mock/controller/goods.js b/front-end/mock/controller/goods.js new file mode 100644 index 0000000..bb9d1b2 --- /dev/null +++ b/front-end/mock/controller/goods.js @@ -0,0 +1,115 @@ +const List = [ + { + uuid: '@uuid', + image: 'https://cn.vitejs.dev/logo-with-shadow.png', + title: 'Shop Vite', + price: '敬请期待', + label: ['极简', 'vite'], + company: 'vdp', + url: 'https://vuejs-core.cn/shop-vite', + description: '全新一代前端框架', + }, + { + uuid: '@uuid', + icon: 'dashboard-2-line', + title: 'Dash' + 'board Pro', + price: 'Admin Pro + Admin Plus 1299版' + '本赠品', + label: ['敬请期待', '人工智能', '科技风'], + company: 'vdp', + url: 'https://vuejs-core.cn/dashboard-pro', + description: 'Admin Pro + Adm' + 'in Plus 1299版本赠品', + }, + { + uuid: '@uuid', + image: + 'https://p3-armor.byteimg.com/tos-cn-i-49unhts6dw/dfdba' + + '5317c0c20ce20e64fac8' + + '03d52bc.svg~tplv-49unhts6dw-image.image', + title: 'vue-admin-arco', + price: '免费', + label: ['vue3', 'arco-design', 'MIT协议'], + company: 'vab', + url: 'https://github.com/zxwk1998/vue-admin-arco', + description: + '在字节跳动' + + 'arco-desi' + + 'gn-pro-vue基础上修改的' + + 'vue3版本,仅供学' + + '习参考', + }, + { + uuid: '@uuid', + svg: 'https://gcore.jsdelivr.net/gh/zxwk1998/image/logo/vab.svg', + title: 'vue-admin-better', + price: '免费', + label: ['vue', 'element-ui', 'MIT协议'], + company: 'vab', + url: 'https://github.com/zxwk1998/vue-admin-better', + description: '绝佳的开源、' + '企业级、' + '中后台前端框架', + }, + { + uuid: '@uuid', + svg: 'https://gcore.jsdelivr.net/gh/zxwk1998/image/logo/vdb.svg', + title: 'vue-datav-beautiful-pro', + price: 'Admin Pro + Adm' + 'in Plus 1299版本赠品', + label: ['数据大屏'], + company: 'vdb', + url: 'https://github.com/vue-datav-beautiful', + description: '立志做' + '国内最好' + '的数据大屏应用', + }, + { + uuid: '@uuid', + image: 'https://xuqu.gitee.io/common/logo.png', + title: 'uview', + price: '免费', + label: ['uniapp', '跨平台', '组件'], + company: '言信网络', + url: 'http://uviewui.com', + description: + '跨 7 端移动端框架,全面的组件和便' + + '捷的工具会让您信手拈来,如鱼得水', + }, + { + uuid: '@uuid', + title: 'form-generator', + image: 'https://mrhj.gitee.io/form-generator/img/logo.e1bc3747.png', + price: '免费', + label: ['element-ui', '表单设计器'], + company: 'form-generator', + url: 'https://mrhj.gitee.io/form-generator', + description: 'Element UI表单设' + '计及代码生成器', + }, + { + uuid: '@uuid', + title: 'OPSLI', + image: 'https://www.opsli.com/static/images/favicon.ico', + price: '免费', + label: ['spring-boot', 'vue-admin-better'], + company: 'OPSLI', + url: 'https://www.op' + 'sli.com', + description: 'vue-admin-better开源' + '版结合spring boot的最佳实践', + }, +] + +module.exports = [ + { + url: '/goods/getList', + type: 'get', + response(config) { + const { title, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(title && !item.title.includes(title)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, +] diff --git a/front-end/mock/controller/menuManagement.js b/front-end/mock/controller/menuManagement.js new file mode 100644 index 0000000..8ab3fdb --- /dev/null +++ b/front-end/mock/controller/menuManagement.js @@ -0,0 +1,53 @@ +module.exports = [ + { + url: '/menuManagement/getTree', + type: 'get', + response() { + return { + code: 200, + msg: 'success', + data: { + total: 999, + list: [ + { + id: 'root', + label: '全部角色', + children: [ + { + id: '@id', + role: 'admin', + label: 'admin角色', + }, + { + id: '@id', + role: 'editor', + label: 'editor角色', + }, + ], + }, + ], + }, + } + }, + }, + { + url: '/menuManagement/doEdit', + type: 'post', + response() { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, + { + url: '/menuManagement/doDelete', + type: 'post', + response() { + return { + code: 200, + msg: '模拟删除成功', + } + }, + }, +] diff --git a/front-end/mock/controller/notice.js b/front-end/mock/controller/notice.js new file mode 100644 index 0000000..14b3ab6 --- /dev/null +++ b/front-end/mock/controller/notice.js @@ -0,0 +1,36 @@ +const List = [ + { + email: '@email', + image: 'https://i.gtimg.cn/club/item/face/img/8/15918_100.gif', + notice: 'Github开源地址:点我', + }, + { + email: '@email', + image: 'https://i.gtimg.cn/club/item/face/img/0/15640_100.gif', + notice: 'Admin Pro:点我', + }, + { + email: '@email', + image: 'https://i.gtimg.cn/club/item/face/img/9/15919_100.gif', + notice: 'Admin Plus:点我', + }, + { + email: '@email', + image: 'https://i.gtimg.cn/club/item/face/img/8/15918_100.gif', + notice: 'Shop Vite:点我', + }, +] + +module.exports = [ + { + url: '/notice/getList', + type: 'get', + response: () => { + return { + code: 200, + msg: 'success', + data: { list: List, total: List.length }, + } + }, + }, +] diff --git a/front-end/mock/controller/refreshToken.js b/front-end/mock/controller/refreshToken.js new file mode 100644 index 0000000..e76a320 --- /dev/null +++ b/front-end/mock/controller/refreshToken.js @@ -0,0 +1,46 @@ +const { Random } = require('mockjs') + +module.exports = [ + { + url: '/expireToken', + type: 'get', + response: (config) => { + const authorization = + config.headers.authorization || config.headers.Authorization + const arr = authorization.split('-') + const tokenTime = parseInt(arr[arr.length - 1]) + + if (Date.now() - tokenTime > 5000) + return { + code: 402, + msg: '令牌已过期', + } + else + return { + code: 200, + msg: '令牌未过期', + } + }, + }, + { + url: '/refreshToken', + type: 'get', + response: (config) => { + const authorization = + config.headers.authorization || config.headers.Authorization + let token = '' + if (authorization.includes('admin-token')) + token = `admin-token-${Random.guid()}-${Date.now()}` + if (authorization.includes('editor-token')) + token = `editor-token-${Random.guid()}-${Date.now()}` + if (authorization.includes('test-token')) + token = `test-token-${Random.guid()}-${Date.now()}` + + return { + code: 200, + msg: '刷新Token成功', + data: { token }, + } + }, + }, +] diff --git a/front-end/mock/controller/roleManagement.js b/front-end/mock/controller/roleManagement.js new file mode 100644 index 0000000..f8ec921 --- /dev/null +++ b/front-end/mock/controller/roleManagement.js @@ -0,0 +1,55 @@ +const List = [ + { + id: '@id', + role: 'admin', + btnRolesCheckedList: ['read:system', 'write:system', 'delete:system'], + }, + { + id: '@id', + role: 'editor', + btnRolesCheckedList: ['read:system', 'write:system'], + }, +] + +module.exports = [ + { + url: '/roleManagement/getList', + type: 'get', + response(config) { + const { role, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(role && !item.title.includes(role)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, + { + url: '/roleManagement/doEdit', + type: 'post', + response() { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, + { + url: '/roleManagement/doDelete', + type: 'post', + response() { + return { + code: 200, + msg: '模拟删除成功', + } + }, + }, +] diff --git a/front-end/mock/controller/router.js b/front-end/mock/controller/router.js new file mode 100644 index 0000000..d687f2c --- /dev/null +++ b/front-end/mock/controller/router.js @@ -0,0 +1,1019 @@ +/** + * @description router全局配置,如有必要可分文件抽离,其中asyncRoutes只有在intelligence模式下才会用到,pro版只支持remixIcon图标,具体配置请查看vip群文档 + */ +const List = [ + { + path: '/', + name: 'Root', + component: 'Layout', + meta: { + title: '首页', + icon: 'home-2-line', + breadcrumbHidden: true, + }, + children: [ + { + path: 'index', + name: 'Index', + component: '@/views/index/index', + meta: { + title: '首页', + icon: 'home-2-line', + noClosable: true, + }, + }, + { + path: 'dashboard', + name: 'Dashboard', + component: '@/views/index/dashboard', + meta: { + title: '看板', + icon: 'dashboard-line', + }, + }, + { + path: 'workbench', + name: 'Workbench', + component: '@/views/index/workbench', + meta: { + title: '工作台', + icon: 'settings-6-line', + dot: true, + }, + }, + { + path: 'store', + name: 'Store', + component: '@/views/index/store', + meta: { + title: '仓库', + icon: 'app-store-line', + dot: true, + }, + }, + { + path: 'pricing', + name: 'Pricing', + component: '@/views/index/Pricing.vue', + meta: { + title: '授权与定价', + guard: ['Admin'], + icon: 'price-tag-3-line', + badge: 'Hot', + }, + }, + { + path: 'friendly-tip', + name: 'FriendlyTip', + component: '@/views/index/FriendlyTip.vue', + meta: { + title: '温馨提示', + icon: 'information-line', + hidden: true, + }, + }, + ], + }, + { + path: '/vab', + name: 'Vab', + component: 'Layout', + meta: { + title: '组件', + icon: 'code-box-line', + }, + children: [ + { + path: 'icon', + name: 'Icon', + meta: { + title: '图标', + icon: 'remixicon-line', + }, + children: [ + { + path: 'defaultIcon', + name: 'DefaultIcon', + component: '@/views/vab/icon/defaultIcon', + meta: { + title: '默认图标', + }, + }, + { + path: 'iconSelector', + name: 'IconSelector', + component: '@/views/vab/icon/iconSelector', + meta: { + title: '图标选择器', + }, + }, + { + path: 'customSvg', + name: 'CustomSvg', + component: '@/views/vab/icon/customSvg', + meta: { + title: '自定义图标', + }, + }, + ], + }, + { + path: 'permission', + name: 'Permission', + component: '@/views/vab/permission/index', + meta: { + title: '角色权限', + icon: 'user-3-line', + badge: 'Pro', + }, + }, + { + path: 'table', + name: 'Table', + meta: { + title: '表格', + // 非editor角色的用户可见 + guard: { + role: ['Editor'], + mode: 'except', + }, + icon: 'table-2', + }, + children: [ + { + path: 'comprehensiveTable', + name: 'ComprehensiveTable', + component: '@/views/vab/table/comprehensiveTable', + meta: { + title: '综合表格', + }, + }, + { + path: 'detail', + name: 'Detail', + component: '@/views/vab/table/detail', + meta: { + hidden: true, + title: '详情页', + activeMenu: '/vab/table/comprehensiveTable', + dynamicNewTab: true, //详情页根据id传参不同可打开多个 + }, + }, + { + path: 'inlineEditTable', + name: 'InlineEditTable', + component: '@/views/vab/table/inlineEditTable', + meta: { + title: '行内编辑表格', + noKeepAlive: true, + }, + }, + { + path: 'customTable', + name: 'CustomTable', + component: '@/views/vab/table/customTable', + meta: { + title: '自定义表格', + }, + }, + { + path: 'dynamicTable', + name: 'DynamicTable', + component: '@/views/vab/table/dynamicTable', + meta: { + title: '动态表格', + badge: 'New', + }, + }, + ], + }, + { + path: 'list', + name: 'List', + component: '@/views/vab/list/index', + meta: { + title: '列表', + guard: ['Admin'], + icon: 'list-check-2', + }, + }, + { + path: 'description', + name: 'Description', + component: '@/views/vab/description/index', + meta: { + title: '描述', + guard: ['Admin'], + icon: 'slideshow-line', + }, + }, + { + path: 'calendar', + name: 'Calendar', + component: '@/views/vab/calendar/index', + meta: { + title: '日历', + guard: ['Admin'], + icon: 'calendar-check-line', + dot: true, + }, + }, + { + path: 'editor', + name: 'Editor', + meta: { + title: '编辑器', + guard: ['Admin'], + icon: 'edit-2-line', + }, + children: [ + { + path: 'wangEditor', + name: 'WangEditor', + component: '@/views/vab/editor/wangEditor', + meta: { + title: '腾讯文档', + guard: ['Admin'], + dot: true, + }, + }, + ], + }, + { + path: 'form', + name: 'Form', + meta: { + title: '表单', + guard: ['Admin'], + icon: 'file-list-2-line', + }, + children: [ + { + path: 'comprehensiveForm', + name: 'ComprehensiveForm', + component: '@/views/vab/form/comprehensiveForm', + meta: { + title: '综合表单', + }, + }, + { + path: 'stepForm', + name: 'StepForm', + component: '@/views/vab/form/stepForm', + meta: { + title: '分步表单', + }, + }, + { + path: 'button', + name: 'Button', + component: '@/views/vab/form/button', + meta: { + title: '按钮', + }, + }, + { + path: 'link', + name: 'Link', + component: '@/views/vab/form/link', + meta: { + title: '文字链接', + }, + }, + { + path: 'radio', + name: 'Radio', + component: '@/views/vab/form/radio', + meta: { + title: '单选框', + }, + }, + { + path: 'checkbox', + name: 'Checkbox', + component: '@/views/vab/form/checkbox', + meta: { + title: '多选框', + }, + }, + { + path: 'input', + name: 'Input', + component: '@/views/vab/form/input', + meta: { + title: '输入框', + }, + }, + { + path: 'inputNumber', + name: 'InputNumber', + component: '@/views/vab/form/inputNumber', + meta: { + title: '计数器', + }, + }, + { + path: 'select', + name: 'Select', + component: '@/views/vab/form/select', + meta: { + title: '选择器', + dot: true, + }, + }, + { + path: 'switch', + name: 'Switch', + component: '@/views/vab/form/switch', + meta: { + title: '开关', + }, + }, + { + path: 'slider', + name: 'Slider', + component: '@/views/vab/form/slider', + meta: { + title: '滑块', + }, + }, + { + path: 'timePicker', + name: 'TimePicker', + component: '@/views/vab/form/timePicker', + meta: { + title: '时间选择器', + }, + }, + { + path: 'datePicker', + name: 'DatePicker', + component: '@/views/vab/form/datePicker', + meta: { + title: '日期选择器', + }, + }, + { + path: 'dateTimePicker', + name: 'DateTimePicker', + component: '@/views/vab/form/dateTimePicker', + meta: { + title: '日期时间选择器', + }, + }, + { + path: 'rate', + name: 'Rate', + component: '@/views/vab/form/rate', + meta: { + title: '评分', + }, + }, + ], + }, + ], + }, + { + path: '/other', + name: 'Other', + component: 'Layout', + meta: { + title: '其他', + icon: 'archive-line', + guard: ['Admin'], + }, + children: [ + { + path: 'workflow', + name: 'Workflow', + component: '@/views/other/workflow/index', + meta: { + title: '工作流', + guard: ['Admin'], + icon: 'flow-chart', + }, + }, + { + path: 'echarts', + name: 'Echarts', + component: '@/views/other/echarts/index', + meta: { + title: '图表', + guard: ['Admin'], + icon: 'bubble-chart-line', + }, + }, + { + path: 'print', + name: 'Print', + component: '@/views/other/print/index', + meta: { + title: '打印', + guard: ['Admin'], + icon: 'printer-line', + }, + }, + { + path: 'cropper', + name: 'Cropper', + component: '@/views/other/cropper/index', + meta: { + title: '头像裁剪', + guard: ['Admin'], + icon: 'crop-line', + }, + }, + { + path: 'notice', + name: 'Notice', + component: '@/views/other/notice/index', + meta: { + title: '通知', + guard: ['Admin'], + icon: 'message-2-line', + }, + }, + { + path: 'timeline', + name: 'Timeline', + component: '@/views/other/timeline/index', + meta: { + title: '时间线', + guard: ['Admin'], + icon: 'time-line', + }, + }, + { + path: 'count', + name: 'Count', + component: '@/views/other/count/index', + meta: { + title: '数字自增长', + guard: ['Admin'], + icon: 'number-9', + }, + }, + { + path: 'tabs', + name: 'Tabs', + component: '@/views/other/tabs/index', + meta: { + title: '多标签', + guard: ['Admin'], + icon: 'bank-card-line', + }, + }, + { + path: 'watermark', + name: 'Watermark', + component: '@/views/other/watermark/index', + meta: { + title: '水印', + guard: ['Admin'], + icon: 'water-flash-line', + dot: true, + }, + }, + { + path: 'share', + name: 'Share', + component: '@/views/other/share/index', + meta: { + title: '分享', + guard: ['Admin'], + icon: 'share-line', + dot: true, + }, + }, + { + path: 'dynamicAnchor', + name: 'DynamicAnchor', + component: '@/views/other/dynamicAnchor/index', + meta: { + title: '动态锚点', + guard: ['Admin'], + icon: 'anchor-line', + badge: 'New', + }, + }, + { + path: 'dynamicMeta', + name: 'DynamicMeta', + component: '@/views/other/dynamicMeta/index', + meta: { + title: '动态Meta', + guard: ['Admin'], + icon: 'notification-badge-line', + badge: '0', + }, + }, + { + path: 'dynamicSegment', + name: 'DynamicSegment', + redirect: '/other/dynamicSegment/test1/1', + meta: { + title: '动态路径参数', + guard: ['Admin'], + icon: 'arrow-left-right-line', + }, + children: [ + { + path: 'test1/:id', + name: 'Test1', + component: '@/views/other/dynamicSegment/test1', + meta: { + hidden: true, + title: 'Params', + dynamicNewTab: true, + }, + }, + { + path: 'test1/1', + name: 'test1/1', + component: '@/views/other/dynamicSegment/test1', + meta: { title: 'Params id=1' }, + }, + { + path: 'test2', + name: 'Test2', + component: '@/views/other/dynamicSegment/test2', + meta: { + hidden: true, + title: 'Query', + dynamicNewTab: true, + }, + }, + { + path: 'test2?id=1', + name: 'test2?id=1', + component: '@/views/other/dynamicSegment/test2', + meta: { title: 'Query id=1' }, + }, + ], + }, + { + path: 'drag', + name: 'Drag', + meta: { + title: '拖拽', + guard: ['Admin'], + icon: 'drag-drop-line', + }, + children: [ + { + path: 'dialogDrag', + name: 'DialogDrag', + component: '@/views/other/drag/dialogDrag', + meta: { + title: '弹窗拖拽', + dot: true, + }, + }, + { + path: 'cardDrag', + name: 'CardDrag', + component: '@/views/other/drag/cardDrag', + meta: { + title: '卡片拖拽', + }, + }, + ], + }, + { + path: 'noLayout', + name: 'NoLayout', + component: '@/views/other/noLayout/index', + meta: { + title: '无框', + guard: ['Admin'], + icon: 'aspect-ratio-line', + dot: true, + }, + }, + { + path: 'player', + name: 'Player', + component: '@/views/other/player/index', + meta: { + title: '视频播放器', + guard: ['Admin'], + icon: 'video-line', + noKeepAlive: true, + }, + }, + { + path: 'upload', + name: 'Upload', + component: '@/views/other/upload/index', + meta: { + title: '上传', + guard: ['Admin'], + icon: 'chat-upload-line', + }, + }, + { + path: 'menu1', + name: 'Menu1', + meta: { + title: '多级路由缓存', + guard: ['Admin'], + icon: 'route-line', + }, + children: [ + { + path: 'menu1-1', + name: 'Menu11', + meta: { + title: '多级路由1-1', + }, + children: [ + { + path: 'menu1-1-1', + name: 'Menu111', + meta: { + title: '多级路由1-1-1', + }, + children: [ + { + path: 'menu1-1-1-1', + name: 'Menu1111', + meta: { + title: '多级路由1-1-1-1', + }, + component: + '@/views/other/nested/menu1/menu1-1/menu1-1-1/menu1-1-1-1/index', + }, + ], + }, + ], + }, + ], + }, + { + path: 'log', + name: 'Log', + component: '@/views/other/errorLog/index', + meta: { + title: '错误日志模拟', + guard: ['Admin'], + icon: 'error-warning-line', + }, + }, + { + path: 'cssfx', + name: 'Cssfx', + component: '@/views/other/cssfx/index', + meta: { + title: 'Css动画', + guard: ['Admin'], + icon: 'css3-line', + }, + }, + { + path: 'social', + name: 'Social', + component: '@/views/other/social/index', + meta: { + title: '第三方登录', + guard: ['Admin'], + icon: 'github-fill', + }, + }, + // { + // path: 'mobilePreview', + // name: 'MobilePreview', + // component: '@/views/vab/mobilePreview', + // meta: { + // title: '手机预览', + // guard: ['Admin'], + // icon: 'smartphone-line', + // }, + // }, + { + path: '//github.com/zxwk1998/vue-admin-better', + name: 'ExternalLink', + meta: { + title: '外链', + target: '_blank', + // 等价guard: ['Admin', 'Editor'], + guard: { + role: ['Admin', 'Editor'], + mode: 'oneOf', + }, + icon: 'external-link-line', + }, + }, + { + path: 'iframe', + name: 'Iframe', + redirect: '/other/iframe/search', + meta: { + title: 'Iframe', + guard: ['Admin'], + icon: 'window-line', + }, + children: [ + { + path: 'view', + name: 'IframeView', + component: '@/views/other/iframe/view', + meta: { + hidden: true, + title: 'Iframe', + icon: 'window-line', + dynamicNewTab: true, + }, + }, + { + path: 'view?url=www.so.com&title=360%E6%90%9C%E7%B4%A2&icon=search-2-line', + name: 'Search360Iframe', + meta: { title: '360搜索', icon: 'search-2-line' }, + }, + { + path: 'view?url=www.bilibili.com&title=%E5%93%94%E5%93%A9%E5%93%94%E5%93%A9&icon=bilibili-line', + name: 'BiliBiliIframe', + meta: { title: '哔哩哔哩', icon: 'bilibili-line' }, + }, + { + path: 'search', + name: 'IframeSearch', + component: '@/views/other/iframe/search', + meta: { + title: '自定义Iframe', + icon: 'search-2-line', + }, + }, + ], + }, + { + path: 'excel', + name: 'Excel', + meta: { + title: 'Excel', + guard: ['Admin'], + icon: 'file-excel-2-line', + }, + children: [ + { + path: 'exportExcel', + name: 'ExportExcel', + component: '@/views/other/excel/exportExcel', + meta: { + title: '导出Excel', + }, + }, + { + path: 'exportSelectedExcel', + name: 'SelectExcel', + component: '@/views/other/excel/exportSelectExcel', + meta: { + title: '导出选中行Excel', + }, + }, + { + path: 'exportMergeHeaderExcel', + name: 'MergeHeaderExcel', + component: '@/views/other/excel/exportMergeHeaderExcel', + meta: { + title: '导出合并Excel', + }, + }, + ], + }, + ], + }, + { + path: '/mall', + name: 'Mall', + component: 'Layout', + meta: { + title: '物料源', + icon: 'apps-line', + levelHidden: true, + guard: ['Admin'], + }, + children: [ + { + path: 'goods', + name: 'Goods', + component: '@/views/mall/goods/index', + meta: { + title: '物料市场', + icon: 'shopping-cart-line', + badge: 'Hot', + }, + }, + ], + }, + { + path: '/noColumn', + name: 'NoColumn', + component: 'Layout', + meta: { + title: '无分栏', + icon: 'delete-column', + guard: ['Admin'], + breadcrumbHidden: true, + }, + children: [ + { + path: 'deleteColumn', + name: 'DeleteColumn', + component: '@/views/noColumn/deleteColumn/index', + meta: { + title: '无分栏', + icon: 'delete-column', + noColumn: true, + }, + }, + ], + }, + { + path: '/setting', + name: 'PersonnelManagement', + component: 'Layout', + meta: { + title: '配置', + icon: 'user-settings-line', + guard: ['Admin'], + }, + children: [ + { + path: 'personalCenter', + name: 'PersonalCenter', + component: '@/views/setting/personalCenter/index', + meta: { + title: '个人中心', + icon: 'map-pin-user-line', + }, + }, + { + path: 'userManagement', + name: 'UserManagement', + component: '@/views/setting/userManagement/index', + meta: { + title: '用户管理', + icon: 'user-3-line', + }, + }, + { + path: 'roleManagement', + name: 'RoleManagement', + component: '@/views/setting/roleManagement/index', + meta: { + title: '角色管理', + icon: 'admin-line', + }, + }, + { + path: 'departmentManagement', + name: 'DepartmentManagement', + component: '@/views/setting/departmentManagement/index', + meta: { + title: '部门管理', + icon: 'group-line', + }, + }, + { + path: 'menuManagement', + name: 'MenuManagement', + component: '@/views/setting/menuManagement/index', + meta: { + title: '菜单管理', + icon: 'menu-2-fill', + }, + }, + { + path: 'dictionaryManagement', + name: 'DictionaryManagement', + component: '@/views/setting/dictionaryManagement/index', + meta: { + title: '字典管理', + icon: 'book-2-line', + dot: true, + }, + }, + { + path: 'taskManagement', + name: 'TaskManagement', + component: '@/views/setting/taskManagement/index', + meta: { + title: '任务管理', + icon: 'task-line', + badge: 'New', + }, + }, + { + path: 'systemLog', + name: 'SystemLog', + component: '@/views/setting/systemLog/index', + meta: { + title: '系统日志', + icon: 'file-shield-2-line', + }, + }, + ], + }, + { + path: '/tools', + name: 'Tools', + component: 'Layout', + meta: { + title: '工具', + icon: 'tools-line', + levelHidden: true, + guard: ['Admin'], + }, + children: [ + { + path: 'eyeDropper', + name: 'EyeDropper', + component: '@/views/tools/EyeDropper.vue', + meta: { + title: '取色器', + icon: 'contrast-drop-line', + }, + }, + { + path: 'speechSynthesis', + name: 'SpeechSynthesis', + component: '@/views/tools/SpeechSynthesis.vue', + meta: { + title: '语音合成', + icon: 'customer-service-line', + }, + }, + ], + }, + { + path: '//github.com/zxwk1998/vue-admin-better', + name: 'Github', + component: 'Layout', + meta: { + title: '外链', + icon: 'external-link-line', + guard: ['Admin'], + target: '_blank', + breadcrumbHidden: true, + noColumn: true, + }, + children: [ + { + path: '//github.com/zxwk1998/vue-admin-better', + name: 'GithubExternalLink', + component: '@/views/github/githubExternalLink/index', + meta: { + title: '外链', + icon: 'external-link-line', + noColumn: true, + target: '_blank', + }, + }, + ], + }, + + { + path: '/error', + name: 'Error', + component: 'Layout', + meta: { + title: '错误页', + icon: 'error-warning-line', + levelHidden: true, + }, + children: [ + { + path: '403', + name: 'Error403', + component: '@/views/403', + meta: { + title: '403', + icon: 'error-warning-line', + }, + }, + { + path: '404', + name: 'Error404', + component: '@/views/404', + meta: { + title: '404', + icon: 'error-warning-line', + }, + }, + ], + }, +] + +module.exports = [ + { + url: '/router/getList', + type: 'get', + response() { + return { + code: 200, + msg: 'success', + data: { list: List }, + } + }, + }, +] diff --git a/front-end/mock/controller/search.js b/front-end/mock/controller/search.js new file mode 100644 index 0000000..a9735c3 --- /dev/null +++ b/front-end/mock/controller/search.js @@ -0,0 +1,20 @@ +const List = [ + { + url: 'https://www.bing.com/search?q=vue+admin+plus%e5%ae%98%e7%bd%91&qs=HS&pq=vue+admin+plus&sk=HS1&sc=10-14&cvid=B01F4326D6724F76B568CBF127648BB8&FORM=QBRE&sp=2&lq=0&rdr=1&rdrig=7414F5AB9CF241C78B8CC476818B3569', + value: '官网', + }, +] + +module.exports = [ + { + url: '/search/getList', + type: 'get', + response: () => { + return { + code: 200, + msg: 'success', + data: { list: List }, + } + }, + }, +] diff --git a/front-end/mock/controller/systemLog.js b/front-end/mock/controller/systemLog.js new file mode 100644 index 0000000..a886e6b --- /dev/null +++ b/front-end/mock/controller/systemLog.js @@ -0,0 +1,47 @@ +const { mock } = require('mockjs') + +const List = [] +const count = 50 +for (let i = 0; i < count; i++) { + List.push( + mock({ + uuid: '@uuid', + id: '@id', + account: '@account(1, 2)', + 'type|1': ['操作日志', '数据库日志', '系统日志'], + 'account|1': ['admin', 'editor', 'test'], + 'executeResult|1': [ + '登录成功', + '登录成功', + '登录失败', + '接口异常', + 'dos攻击', + ], + ip: '@ip', + datetime: '@datetime', + }) + ) +} + +module.exports = [ + { + url: '/systemLog/getList', + type: 'get', + response: (config) => { + const { account, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(account && !item.account.includes(account)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, +] diff --git a/front-end/mock/controller/table.js b/front-end/mock/controller/table.js new file mode 100644 index 0000000..5245b9c --- /dev/null +++ b/front-end/mock/controller/table.js @@ -0,0 +1,68 @@ +const { mock } = require('mockjs') +const { handleRandomImage } = require('../utils') + +const List = [] +const count = 50 +for (let i = 0; i < count; i++) { + List.push( + mock({ + uuid: '@uuid', + id: '@id', + title: '@title(1, 2)', + description: '@csentence', + 'status|1': ['published', 'draft', 'deleted'], + author: '@cname', + datetime: '@datetime', + pageViews: '@integer(300, 5000)', + img: handleRandomImage(228, 228), + switch: '@boolean', + percent: '@integer(80,99)', + 'rate|1': [1, 2, 3, 4, 5], + 'type|1': [0, 1], + percentage: '@integer(0,100)', + }) + ) +} + +module.exports = [ + { + url: '/table/getList', + type: 'get', + response(config) { + const { title, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(title && !item.title.includes(title)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, + { + url: '/table/doEdit', + type: 'post', + response() { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, + { + url: '/table/doDelete', + type: 'post', + response() { + return { + code: 200, + msg: '模拟删除成功', + } + }, + }, +] diff --git a/front-end/mock/controller/taskManagement.js b/front-end/mock/controller/taskManagement.js new file mode 100644 index 0000000..ec8ebb7 --- /dev/null +++ b/front-end/mock/controller/taskManagement.js @@ -0,0 +1,47 @@ +const { mock } = require('mockjs') + +const List = [] +const count = 50 +for (let i = 0; i < count; i++) { + List.push( + mock({ + uuid: '@uuid', + id: '@id', + taskName: '@account(1, 2)', + 'status|1': [0, 1], + 'account|1': ['admin', 'editor', 'test'], + 'executeResult|1': [ + '登录成功', + '登录成功', + '登录失败', + '接口异常', + 'dos攻击', + ], + ip: '@ip', + datetime: '@datetime', + }) + ) +} + +module.exports = [ + { + url: '/taskManagement/getList', + type: 'get', + response: (config) => { + const { account, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(account && !item.account.includes(account)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, +] diff --git a/front-end/mock/controller/user.js b/front-end/mock/controller/user.js new file mode 100644 index 0000000..0e903d4 --- /dev/null +++ b/front-end/mock/controller/user.js @@ -0,0 +1,125 @@ +const { Random } = require('mockjs') + +const tokens = { + admin: `admin-token-${Random.guid()}-${Date.now()}`, + editor: `editor-token-${Random.guid()}-${Date.now()}`, + test: `test-token-${Random.guid()}-${Date.now()}`, +} +const username2role = { + admin: ['Admin'], + editor: ['Editor'], + test: ['Admin', 'Editor'], +} +const role2permission = { + Admin: ['read:system', 'write:system', 'delete:system'], + Editor: ['read:system', 'write:system'], + Test: ['read:system'], +} + +module.exports = [ + { + url: '/publicKey', + type: 'get', + response() { + return { + code: 200, + msg: 'success', + data: { + mockServer: true, + publicKey: + 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDBT2vr+dhZElF73FJ6xiP181txKWUSNLPQQlid6DUJhGAOZblluafIdLmnUyKE8mMHhT3R+Ib3ssZcJku6Hn72yHYj/qPkCGFv0eFo7G+GJfDIUeDyalBN0QsuiE/XzPHJBuJDfRArOiWvH0BXOv5kpeXSXM8yTt5Na1jAYSiQ/wIDAQAB', + }, + } + }, + }, + { + url: '/login', + type: 'post', + response(config) { + const { username } = config.body + const token = tokens[username] + if (!token) + return { + code: 500, + msg: '帐户或密码不正确', + } + return { + code: 200, + msg: 'success', + data: { token }, + } + }, + }, + { + url: '/socialLogin', + type: 'post', + response(config) { + const { code } = config.body + if (!code) + return { + code: 500, + msg: '未成功获取Token', + } + + return { + code: 200, + msg: 'success', + data: { token: tokens['admin'] }, + } + }, + }, + { + url: '/register', + type: 'post', + response() { + return { + code: 200, + msg: '模拟注册成功', + data: { token: tokens['editor'] }, + } + }, + }, + { + url: '/userInfo', + type: 'get', + response(config) { + const authorization = + config.headers.authorization || config.headers.Authorization + if (!authorization.startsWith('Bearer ')) + return { + code: 401, + msg: '令牌无效', + } + const _authorization = authorization.replace('Bearer ', '') + const isTrue = _authorization.includes('-token-') + const username = isTrue + ? _authorization.split('-token-')[0] + : 'admin' + const roles = username2role[username] || [] + const permissions = [ + ...new Set(roles.flatMap((role) => role2permission[role])), + ] + + return { + code: 200, + msg: 'success', + data: { + username, + roles, + permissions, + avatar: 'https://i.gtimg.cn/club/item/face/img/2/16022_100.gif', + }, + } + }, + }, + { + url: '/logout', + type: 'get', + response() { + return { + code: 200, + msg: 'success', + } + }, + }, +] diff --git a/front-end/mock/controller/userManagement.js b/front-end/mock/controller/userManagement.js new file mode 100644 index 0000000..6ae4822 --- /dev/null +++ b/front-end/mock/controller/userManagement.js @@ -0,0 +1,69 @@ +const List = [ + { + id: '@id', + username: 'admin', + password: 'admin', + email: '@email', + roles: ['admin'], + datatime: '@datetime', + }, + { + id: '@id', + username: 'editor', + password: 'editor', + email: '@email', + roles: ['editor'], + datatime: '@datetime', + }, + { + id: '@id', + username: 'test', + password: 'test', + email: '@email', + roles: ['admin', 'editor'], + datatime: '@datetime', + }, +] + +module.exports = [ + { + url: '/userManagement/getList', + type: 'get', + response(config) { + const { username, pageNo = 1, pageSize = 20 } = config.query + const mockList = List.filter( + (item) => !(username && !item.username.includes(username)) + ) + const list = mockList.filter( + (item, index) => + index < pageSize * pageNo && + index >= pageSize * (pageNo - 1) + ) + return { + code: 200, + msg: 'success', + data: { list, ...{ total: mockList.length } }, + } + }, + }, + { + url: '/userManagement/doEdit', + type: 'post', + response() { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, + { + url: '/userManagement/doDelete', + type: 'post', + response() { + return { + code: 200, + msg: '模拟删除成功', + } + }, + }, +] diff --git a/front-end/mock/controller/workflow.js b/front-end/mock/controller/workflow.js new file mode 100644 index 0000000..779d701 --- /dev/null +++ b/front-end/mock/controller/workflow.js @@ -0,0 +1,365 @@ +const data = { + nodes: [ + { + id: '742356ea-762b-4899-b96a-bd567e3c4361', + type: 'start', + x: 220, + y: 170, + properties: {}, + baseType: 'node', + }, + { + id: 'dacda6b6-48d3-4dff-911d-287704eb23d8', + type: 'rect', + x: 350, + y: 170, + properties: {}, + baseType: 'node', + text: { + x: 350, + y: 170, + value: '基础节点', + }, + }, + { + id: '49106603-2b88-4b2c-b1e8-723c1f2210bd', + type: 'user', + x: 530, + y: 170, + properties: {}, + baseType: 'node', + text: { + x: 530, + y: 220, + value: '自定义节点', + }, + }, + { + id: '647fa2bc-98ee-40cf-99c5-4756c0bc130d', + type: 'push', + x: 690, + y: 170, + properties: {}, + baseType: 'node', + text: { + x: 690, + y: 220, + value: '可添加下一个节点/节点组', + }, + }, + { + id: '37e7bac3-8804-4237-abe9-7b6065c207e9', + type: 'download', + x: 690, + y: 320, + properties: {}, + baseType: 'node', + }, + { + id: '6bb4396f-54c9-4b1c-b34c-87ef004f2e29', + type: 'user', + x: 840, + y: 320, + properties: {}, + baseType: 'node', + }, + { + id: 'abf76937-63b8-493c-a978-a4a58bc4f6b8', + type: 'push', + x: 840, + y: 470, + properties: {}, + baseType: 'node', + }, + { + id: 'b119f24f-2669-4a90-a837-afd853b2ffcc', + type: 'end', + x: 990, + y: 320, + properties: {}, + baseType: 'node', + }, + { + id: '60326ad9-cae2-4a85-ae98-d340fb7bd67f', + type: 'end', + x: 990, + y: 470, + properties: {}, + baseType: 'node', + }, + { + id: '414fe028-3609-4450-b0f4-e5aca7705e8c', + type: 'download', + x: 860, + y: 170, + properties: {}, + baseType: 'node', + text: { + x: 860, + y: 220, + value: '自定义节点-设置颜色', + }, + }, + ], + edges: [ + { + id: '00f55245-513e-43a2-9cb0-adb61b01adc8', + type: 'polyline', + sourceNodeId: '742356ea-762b-4899-b96a-bd567e3c4361', + targetNodeId: 'dacda6b6-48d3-4dff-911d-287704eb23d8', + startPoint: { + x: 240, + y: 170, + }, + endPoint: { + x: 300, + y: 170, + }, + properties: {}, + pointsList: [ + { + x: 240, + y: 170, + }, + { + x: 300, + y: 170, + }, + ], + }, + { + id: 'bbf9754f-603e-48e4-85fe-84ed44459a6a', + type: 'polyline', + sourceNodeId: 'dacda6b6-48d3-4dff-911d-287704eb23d8', + targetNodeId: '49106603-2b88-4b2c-b1e8-723c1f2210bd', + startPoint: { + x: 400, + y: 170, + }, + endPoint: { + x: 495, + y: 170, + }, + properties: {}, + pointsList: [ + { + x: 400, + y: 170, + }, + { + x: 495, + y: 170, + }, + ], + }, + { + id: '12bb443b-4070-4a08-ad4d-2755ee856f0d', + type: 'polyline', + sourceNodeId: '49106603-2b88-4b2c-b1e8-723c1f2210bd', + targetNodeId: '647fa2bc-98ee-40cf-99c5-4756c0bc130d', + startPoint: { + x: 565, + y: 170, + }, + endPoint: { + x: 655, + y: 170, + }, + properties: {}, + pointsList: [ + { + x: 565, + y: 170, + }, + { + x: 655, + y: 170, + }, + ], + }, + { + id: '33fa3c09-9c29-4cb7-8373-67d537b8b623', + type: 'polyline', + sourceNodeId: '647fa2bc-98ee-40cf-99c5-4756c0bc130d', + targetNodeId: '37e7bac3-8804-4237-abe9-7b6065c207e9', + startPoint: { + x: 690, + y: 205, + }, + endPoint: { + x: 690, + y: 295, + }, + properties: {}, + pointsList: [ + { + x: 690, + y: 205, + }, + { + x: 690, + y: 295, + }, + ], + }, + { + id: '2b5a5e89-005e-4fda-9a44-dc795050534f', + type: 'polyline', + sourceNodeId: '37e7bac3-8804-4237-abe9-7b6065c207e9', + targetNodeId: '6bb4396f-54c9-4b1c-b34c-87ef004f2e29', + startPoint: { + x: 715, + y: 320, + }, + endPoint: { + x: 805, + y: 320, + }, + properties: {}, + pointsList: [ + { + x: 715, + y: 320, + }, + { + x: 805, + y: 320, + }, + ], + }, + { + id: '62b54f8a-bcfd-494b-9144-5aeb09ca77a1', + type: 'polyline', + sourceNodeId: '6bb4396f-54c9-4b1c-b34c-87ef004f2e29', + targetNodeId: 'b119f24f-2669-4a90-a837-afd853b2ffcc', + startPoint: { + x: 875, + y: 320, + }, + endPoint: { + x: 970, + y: 320, + }, + properties: {}, + text: { + x: 920, + y: 310, + value: 'Y', + }, + pointsList: [ + { + x: 875, + y: 320, + }, + { + x: 970, + y: 320, + }, + ], + }, + { + id: 'ba816d4a-5785-4911-9f78-03933f1463a1', + type: 'polyline', + sourceNodeId: '6bb4396f-54c9-4b1c-b34c-87ef004f2e29', + targetNodeId: 'abf76937-63b8-493c-a978-a4a58bc4f6b8', + startPoint: { + x: 840, + y: 355, + }, + endPoint: { + x: 840, + y: 435, + }, + properties: {}, + text: { + x: 850, + y: 400, + value: 'N', + }, + pointsList: [ + { + x: 840, + y: 355, + }, + { + x: 840, + y: 435, + }, + ], + }, + { + id: '2b3007ed-7a13-4db7-a1ea-6691d7564c34', + type: 'polyline', + sourceNodeId: 'abf76937-63b8-493c-a978-a4a58bc4f6b8', + targetNodeId: '60326ad9-cae2-4a85-ae98-d340fb7bd67f', + startPoint: { + x: 875, + y: 470, + }, + endPoint: { + x: 970, + y: 470, + }, + properties: {}, + pointsList: [ + { + x: 875, + y: 470, + }, + { + x: 970, + y: 470, + }, + ], + }, + { + id: '262e2263-6c8c-4a38-b223-97848e9b5767', + type: 'polyline', + sourceNodeId: '647fa2bc-98ee-40cf-99c5-4756c0bc130d', + targetNodeId: '414fe028-3609-4450-b0f4-e5aca7705e8c', + startPoint: { + x: 725, + y: 170, + }, + endPoint: { + x: 835, + y: 170, + }, + properties: {}, + pointsList: [ + { + x: 725, + y: 170, + }, + { + x: 835, + y: 170, + }, + ], + }, + ], +} + +module.exports = [ + { + url: '/workflow/getList', + type: 'get', + response: () => { + return { + code: 200, + msg: 'success', + data, + } + }, + }, + { + url: '/workflow/doEdit', + type: 'post', + response: () => { + return { + code: 200, + msg: '模拟保存成功', + } + }, + }, +] diff --git a/front-end/mock/index.js b/front-end/mock/index.js new file mode 100644 index 0000000..0ebb361 --- /dev/null +++ b/front-end/mock/index.js @@ -0,0 +1,112 @@ +const path = require('path') +const chokidarNext = require('chokidar') +const bodyParser = require('body-parser') +const chalkNext = require('chalk') +const { mock } = require('mockjs') +const { baseURL } = require('../src/config') + +const mockDir = path.join(process.cwd(), 'mock') +const { handleMockArray } = require('./utils') + +/** + * + * @param url + * @param type + * @param respond + * @returns {{response(*=, *=): void, type: (*|string), url: RegExp}} + */ +const responseFake = (url, type, respond) => { + return { + url: new RegExp(`${baseURL}${url}`), + type: type || 'get', + response(req, res) { + res.status(200) + console.log(chalkNext.green(`\n> 请求地址:${req.path}`)) + if (JSON.stringify(req.body) !== '{}') + console.log( + chalkNext.green( + `> 请求参数(body):${JSON.stringify(req.body)}` + ) + ) + if (JSON.stringify(req.query) !== '{}') + console.log( + chalkNext.green( + `> 请求参数(query):${JSON.stringify(req.query)}` + ) + ) + res.json( + mock(respond instanceof Function ? respond(req, res) : respond) + ) + }, + } +} + +/** + * + * @param app + * @returns {{mockStartIndex: number, mockRoutesLength: number}} + */ +const registerRoutes = (app) => { + let mockLastIndex + const mocks = [] + const mockArray = handleMockArray() + mockArray.forEach((item) => { + const obj = require(item) + mocks.push(...obj) + }) + const mocksForServer = mocks.map((route) => + responseFake(route.url, route.type, route.response) + ) + const mockRoutesLength = Object.keys(mocksForServer).length + for (const item of mocksForServer) { + app[item.type](item.url, item.response) + mockLastIndex = app._router.stack.length + } + return { + mockRoutesLength, + mockStartIndex: mockLastIndex - mockRoutesLength, + } +} + +/** + * + * @param middlewares + * @param devServer + */ +module.exports = (middlewares, devServer) => { + if (!devServer) { + throw new Error('webpack-dev-server is not defined') + } + const app = devServer.app + app.use(bodyParser.json()) + app.use( + bodyParser.urlencoded({ + extended: true, + }) + ) + const mockRoutes = registerRoutes(app) + let mockRoutesLength = mockRoutes.mockRoutesLength + let mockStartIndex = mockRoutes.mockStartIndex + chokidarNext + .watch(mockDir, { + ignored: /vab-mock-server/, + ignoreInitial: true, + }) + .on('all', (event) => { + if (event === 'change' || event === 'add') { + try { + app._router.stack.splice(mockStartIndex, mockRoutesLength) + Object.keys(require.cache).forEach((item) => { + if (item.includes(mockDir)) + delete require.cache[require.resolve(item)] + }) + const mockRoutes = registerRoutes(app) + mockRoutesLength = mockRoutes.mockRoutesLength + mockStartIndex = mockRoutes.mockStartIndex + } catch (error) { + console.log(chalkNext.red(error)) + } + } + }) + return middlewares +} diff --git a/front-end/mock/utils/index.js b/front-end/mock/utils/index.js new file mode 100644 index 0000000..26e3c01 --- /dev/null +++ b/front-end/mock/utils/index.js @@ -0,0 +1,39 @@ +const fs = require('fs') +const { Random } = require('mockjs') + +/** + * @description 随机生成图片url。 + * @returns {string} + */ +function handleRandomImage(/* width = 50, height = 50 */) { + //return `https://picsum.photos/${width}/${height}?random=${Random.guid()}` + return ( + 'https://gcore.jsdelivr.net/gh/' + + 'chuzh' + + 'ixin/image' + + `/table/vab-image-${Random.integer(1, 38)}.jpg` + ) +} + +/** + * @description 处理所有 controller 模块,npm run serve时在node环境中自动输出controller文件夹下Mock接口,请勿修改。 + * @returns {[]} + */ +function handleMockArray() { + const getFiles = (path, baseUrl = './controller') => { + const files = fs.readdirSync(path) + return files.flatMap((file) => { + const fPath = `${path}/${file}` + const stat = fs.statSync(fPath) + return stat.isDirectory() + ? getFiles(fPath, `${baseUrl}/${file}`) + : `${baseUrl}/${file}` + }) + } + return getFiles('mock/controller') +} + +module.exports = { + handleRandomImage, + handleMockArray, +} diff --git a/front-end/package.json b/front-end/package.json new file mode 100644 index 0000000..b016bd3 --- /dev/null +++ b/front-end/package.json @@ -0,0 +1,143 @@ +{ + "name": "admin-plus", + "version": "23.0.1", + "private": true, + "author": "github.com/zxwk1998", + "scripts": { + "serve": "cross-env NODE_OPTIONS=--no-warnings vue-cli-service serve", + "build": "cross-env NODE_OPTIONS=--no-warnings vue-cli-service build", + "build:website": "cross-env NODE_OPTIONS=--no-warnings VAB_VARIABLE=website vue-cli-service build && npm run compress:website", + "compress:website": "node scripts/compress.js", + "build:compress": "cross-env NODE_OPTIONS=--no-warnings vue-cli-service build && npm run compress", + "compress": "node scripts/compress.js", + "test:unit": "vue-cli-service test:unit --detectOpenHandles", + "lint": "vue-cli-service lint", + "build:report": "cross-env NODE_OPTIONS=--no-warnings vue-cli-service build --report", + "build:test": "cross-env NODE_OPTIONS=--no-warnings vue-cli-service build --mode test", + "global:install": "npm install -g nrm,cnpm,npm-check-updates,rimraf --registry=https://registry.npmmirror.com", + "global:update": "ncu -g", + "lint:eslint": "eslint {src,mock,library}/**/*.{vue,js,ts} --fix", + "lint:prettier": "prettier {src,mock,library}/**/*.{html,vue,css,sass,scss,js,ts,md} --write", + "lint:stylelint": "stylelint {src,mock,library}/**/*.{vue,css,sass,scss} --fix --cache --cache-location node_modules/.cache/stylelint/", + "module:install": "pnpm i", + "module:reinstall": "rimraf node_modules && npm run module:install", + "module:update": "ncu -u --reject vue-i18n,sass-loader,unplugin-vue-define-options,@logicflow/core,@logicflow/extension,sass,chalk,unplugin-auto-import,unplugin-vue-components,eslint-plugin-vue,eslint --registry=https://registry.npmmirror.com&&npm run module:install", + "nrm:npm": "nrm use npm", + "nrm:taobao": "nrm use taobao", + "template": "plop", + "git": "start ./git.sh" + }, + "dependencies": { + "@element-plus/icons-vue": "^2.3.2", + "@logicflow/core": "2.1.1", + "@logicflow/extension": "2.1.2", + "@vueuse/core": "^14.1.0", + "@vueuse/head": "^2.0.0", + "@wangeditor/editor": "^5.1.23", + "@wangeditor/editor-for-vue": "^5.1.12", + "axios": "^1.13.2", + "core-js": "^3.47.0", + "dayjs": "^1.11.19", + "disable-devtool": "^0.3.9", + "echarts": "^6.0.0", + "element-plus": "^2.13.0", + "file-saver": "^2.0.5", + "image-conversion": "^2.1.1", + "js-cookie": "^3.0.5", + "jsencrypt": "^3.5.4", + "lodash": "^4.17.21", + "mitt": "^3.0.1", + "mockjs": "^1.1.0", + "nprogress": "^0.2.0", + "path-browserify": "^1.0.1", + "pinia": "^3.0.4", + "qs": "^6.14.0", + "register-service-worker": "^1.7.2", + "resize-detector": "^0.3.0", + "vab-icons": "file:vab-icons", + "vue": "^3.5.26", + "vue-i18n": "^11.1.12", + "vue-json-viewer": "^3.0.4", + "vue-qr": "^4.0.9", + "vue-router": "^4.6.4", + "vuedraggable": "^4.0.1", + "xlsx": "0.18.5" + }, + "devDependencies": { + "@babel/core": "^7.28.5", + "@element-plus/eslint-config": "2.13.0", + "@rushstack/eslint-patch": "^1.15.0", + "@types/file-saver": "^2.0.7", + "@types/js-cookie": "^3.0.6", + "@types/lodash-es": "^4.17.12", + "@types/node": "^25.0.3", + "@types/nprogress": "^0.2.3", + "@vue/cli-plugin-babel": "^5.0.9", + "@vue/cli-plugin-eslint": "^5.0.9", + "@vue/cli-plugin-pwa": "^5.0.9", + "@vue/cli-plugin-router": "^5.0.9", + "@vue/cli-plugin-typescript": "^5.0.9", + "@vue/cli-service": "^5.0.9", + "@vue/eslint-config-prettier": "^10.2.0", + "@vue/eslint-config-typescript": "^14.6.0", + "@vue/test-utils": "^2.4.6", + "archiver": "^7.0.1", + "body-parser": "^2.2.1", + "call-rely": "^1.3.4", + "chalk": "4.1.2", + "chokidar": "^5.0.0", + "compression-webpack-plugin": "^11.1.0", + "cross-env": "^10.1.0", + "eslint": "^8.57.0", + "eslint-define-config": "^2.1.0", + "eslint-plugin-prettier": "^5.5.4", + "eslint-plugin-vue": "9.18.1", + "filemanager-webpack-plugin": "^9.0.1", + "image-webpack-loader": "^8.1.0", + "less-loader": "^12.3.0", + "lint-staged": "^16.2.7", + "picocolors": "^1.1.1", + "plop": "^4.0.4", + "plop-templates": "^0.0.9", + "postcss": "^8.5.6", + "postcss-html": "^1.8.0", + "prettier": "^3.7.4", + "raw-loader": "^4.0.2", + "sass": "1.79.5", + "sass-loader": "16.0.1", + "stylelint": "^16.26.1", + "stylelint-config-recess-order": "^7.4.0", + "stylelint-config-recommended-scss": "^16.0.2", + "stylelint-config-recommended-vue": "^1.6.1", + "svg-sprite-loader": "^6.0.11", + "typescript": "^5.9.3", + "unplugin-auto-import": "^0.16.7", + "unplugin-element-plus": "^0.11.2", + "unplugin-vue-components": "0.25.2", + "unplugin-vue-define-options": "^1.5.5", + "vue-eslint-parser": "^10.2.0", + "vue-global-api": "^0.4.1", + "vue-unplugins": "^1.0.6", + "webpack": "^5.104.1", + "webpackbar": "^7.0.0" + }, + "gitHooks": { + "pre-commit": "lint-staged" + }, + "homepage": "https://vuejs-core.cn/admin-plus", + "license": "Mozilla Public License Version 2.0", + "lint-staged": { + "*.{js,jsx,vue}": [ + "vue-cli-service lint", + "git add" + ] + }, + "files": [], + "participants": [ + "FlowPeakFish" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/zxwk2024/admin-plus.git" + } +} diff --git a/front-end/plopfile.js b/front-end/plopfile.js new file mode 100644 index 0000000..2bdbf74 --- /dev/null +++ b/front-end/plopfile.js @@ -0,0 +1,11 @@ +const viewGenerator = require('plop-templates/view/prompt') +const curdGenerator = require('plop-templates/curd/prompt') +const componentGenerator = require('plop-templates/component/prompt') +const mockGenerator = require('plop-templates/mock/prompt') + +module.exports = (plop) => { + plop.setGenerator('view', viewGenerator) + plop.setGenerator('curd', curdGenerator) + plop.setGenerator('component', componentGenerator) + plop.setGenerator('mock&api', mockGenerator) +} diff --git a/front-end/prettier.config.js b/front-end/prettier.config.js new file mode 100644 index 0000000..61a0dbb --- /dev/null +++ b/front-end/prettier.config.js @@ -0,0 +1,16 @@ +module.exports = { + printWidth: 80, + tabWidth: 4, + useTabs: false, + semi: false, + singleQuote: true, + quoteProps: 'as-needed', + jsxSingleQuote: false, + trailingComma: 'es5', + bracketSpacing: true, + bracketSameLine: false, + arrowParens: 'always', + htmlWhitespaceSensitivity: 'ignore', + vueIndentScriptAndStyle: true, + endOfLine: 'lf', +} diff --git a/front-end/public/favicon.ico b/front-end/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..7c31c49f635508ef5fcc6df100e681631d5c101d GIT binary patch literal 4286 zcmc(hPe@cj9LFb%wnJn@M2Ap`4xJ)u*FU@Ft`MbCK?D)8u9gzInVWwo(_D8oiK6l# z5g{Z|P*i3jwuz?>;i0pq4lRg>Zh|ZlBGdQx*0I^QGp}9uNh=@c{h9fF<~MKN%wuc| z{)&ni{bz4?Gq#U0b{OCi^8vbU{BY0e7mfM4z(f{|MPrrk!5g%B2}ZyWxC<_UqVTxa zN||yG^~d_ZRC2pOJPy8rlPMz2iQRsYM-(|B_F#0%dMq}}Z}cN(^r2gmx^a0^{mC&{ zf#aC24?2J6lXBkFT&gBm%7d+C{6?3XcRVWRz3;r1^9PRUZ2h5LHxE?13~H;KE8wTZ zJdP9MK9$s;zHy(jAMme&L#jUL@;CVx%x&S%14qHE=trZ!ghwW|eF&Ok(D_FFA{P7w zU{&;?{k}&x22VvBxy;p1vEZK<{$Qv~=O2~5;@Bqtg79B&*ZPNqQ!aD$Blja`<;0Nntf32Z}N2k)~9~=p=M>yp&L;q@Rm1`-9GXdxC z+UmbK*PU@0Yk|ewACR5$vCe;M_ynhCsiXsI&uupkMcka~^?gdud3_&<`M$!jU3SXH zI=^V2ONrRDNAHw<=3~44h)3)FG&p5;sm?dSzl@jk#}RDg!jBkfA%yF5r1BnyH)=5UD@1Hs)WAvS~|=4%>fU;^P++r zY4c9J1GqQ55x;1kO9}T9DEJ?K8WV8U%563NIp$4!Q0u?kcKhL^@BA6y%*4Is@9vNJ zrm_L?C&4(N{rwpTgNxumCf-Hn;Bm(KK;atsC>;ilIQ|y5N*Gs+dyG*%YC~-auW{~( W6viF#{1lRPMSZGA_4y*p=YIgCSHK?t literal 0 HcmV?d00001 diff --git a/front-end/public/img/icons/android-chrome-192x192.png b/front-end/public/img/icons/android-chrome-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..11b6098d01e2f344ce1d709c1a3d6cc8fdb34fd7 GIT binary patch literal 4292 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 DF(NA_ literal 0 HcmV?d00001 diff --git a/front-end/public/img/icons/android-chrome-512x512.png b/front-end/public/img/icons/android-chrome-512x512.png new file mode 100644 index 0000000000000000000000000000000000000000..1500c076e864cf487a41e4a2c5f0f3091e2a2f00 GIT binary patch literal 15202 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 literal 0 HcmV?d00001 diff --git a/front-end/public/img/icons/android-chrome-maskable-192x192.png b/front-end/public/img/icons/android-chrome-maskable-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..1fb9c262cda4ae4d422f810eb3b79a02a0986bdb GIT binary patch literal 3427 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 literal 0 HcmV?d00001 diff --git a/front-end/public/img/icons/android-chrome-maskable-512x512.png b/front-end/public/img/icons/android-chrome-maskable-512x512.png new file mode 100644 index 0000000000000000000000000000000000000000..c85a8ec9b04739558baa60dff2661b3fe14c0115 GIT binary patch literal 10284 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 SKkybHh#ZZsmRz=f_J06qbtLEj literal 0 HcmV?d00001 diff --git a/front-end/public/img/icons/apple-touch-icon-152x152.png b/front-end/public/img/icons/apple-touch-icon-152x152.png new file mode 100644 index 0000000000000000000000000000000000000000..51c71ab9d8327b6e60e45f4020e4410a0599de15 GIT binary patch literal 3775 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 be+|HI-fHcyJOYqE00000NkvXXu0mjfI6#Dm literal 0 HcmV?d00001 diff --git a/front-end/public/img/icons/msapplication-icon-144x144.png b/front-end/public/img/icons/msapplication-icon-144x144.png new file mode 100644 index 0000000000000000000000000000000000000000..7d991a676cff684b5a0a0b821e51f55c5f0bee82 GIT binary patch literal 3189 zcmV-*42tuKP) zd8}Mj9mhZS-dWz(xAgTDifBOUf`Em96cA_u5ip9x1&xWuKU_kL1cDe7qar~A#s%Ys zdq6{6Fi1oM5io3##RQ1N7AneCpp??~J^Hqpx#oB0H|;Q#cc;8LckUT}pK#MR)9LS= zd*7FH&YbgGFbu;m48t%C!!QiPFbu;m48t&t9wl&fTPIw9;S3Oa{@AKOO`lV>>8b$p zz#K3QOaYU?^LlLpo&q)kj{{Ew�}gaLcJ*cG7IY;mwpC+V+jjz>~mw;C|q4;68od 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 bs|(=&>< + + + + + + + + + + + + + + + + + diff --git a/front-end/public/index.html b/front-end/public/index.html new file mode 100644 index 0000000..459adc4 --- /dev/null +++ b/front-end/public/index.html @@ -0,0 +1,51 @@ + + + + + + + + + <%= VUE_APP_TITLE %> + + + + + + +

+ + + + diff --git a/front-end/public/json/china.json b/front-end/public/json/china.json new file mode 100644 index 0000000..0c92e71 --- /dev/null +++ b/front-end/public/json/china.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","id":"710000","properties":{"id":"710000","cp":[121.509062,24.044332],"name":"台湾","childNum":6},"geometry":{"type":"MultiPolygon","coordinates":[["@@°Ü¯Û"],["@@ƛĴÕƊÉɼģºðʀ\\ƎsÆNŌÔĚäœnÜƤɊĂǀĆĴžĤNJŨxĚĮǂƺòƌ‚–âÔ®ĮXŦţƸZûЋƕƑGđ¨ĭMó·ęcëƝɉlÝƯֹÅŃ^Ó·śŃNjƏďíåɛGɉ™¿@ăƑŽ¥ĘWǬÏĶŁâ"],["@@\\p|WoYG¿¥I†j@¢"],["@@…¡‰@ˆV^RqˆBbAŒnTXeRz¤Lž«³I"],["@@ÆEE—„kWqë @œ"],["@@fced"],["@@„¯ɜÄèaì¯ØǓIġĽ"],["@@çûĖ롖hòř "]],"encodeOffsets":[[[122886,24033]],[[123335,22980]],[[122375,24193]],[[122518,24117]],[[124427,22618]],[[124862,26043]],[[126259,26318]],[[127671,26683]]]}},{"type":"Feature","id":"130000","properties":{"id":"130000","cp":[114.502461,38.045474],"name":"河北","childNum":3},"geometry":{"type":"MultiPolygon","coordinates":[["@@o~†Z]‚ªr‰ºc_ħ²G¼s`jΟnüsœłNX_“M`ǽÓnUK…Ĝēs¤­©yrý§uģŒc†JŠ›e"],["@@U`Ts¿m‚"],["@@oºƋÄd–eVŽDJj£€J|Ådz•Ft~žKŨ¸IÆv|”‡¢r}膎onb˜}`RÎÄn°ÒdÞ²„^®’lnÐèĄlðӜ×]ªÆ}LiĂ±Ö`^°Ç¶p®đDcœŋ`–ZÔ’¶êqvFƚ†N®ĆTH®¦O’¾ŠIbÐã´BĐɢŴÆíȦp–ĐÞXR€·nndOž¤’OÀĈƒ­Qg˜µFo|gȒęSWb©osx|hYh•gŃfmÖĩnº€T̒Sp›¢dYĤ¶UĈjl’ǐpäìë|³kÛfw²Xjz~ÂqbTŠÑ„ěŨ@|oM‡’zv¢ZrÃVw¬ŧˏfŒ°ÐT€ªqŽs{Sž¯r æÝlNd®²Ğ džiGʂJ™¼lr}~K¨ŸƐÌWö€™ÆŠzRš¤lêmĞL΄’@¡|q]SvK€ÑcwpÏρ†ĿćènĪWlĄkT}ˆJ”¤~ƒÈT„d„™pddʾĬŠ”ŽBVt„EÀ¢ôPĎƗè@~‚k–ü\\rÊĔÖæW_§¼F˜†´©òDòj’ˆYÈrbĞāøŀG{ƀ|¦ðrb|ÀH`pʞkv‚GpuARhÞÆǶgƊTǼƹS£¨¡ù³ŘÍ]¿Ây™ôEP xX¶¹܇O¡“gÚ¡IwÃ鑦ÅB‡Ï|ǰ…N«úmH¯‹âŸDùŽyŜžŲIÄuШDž•¸dɂ‡‚FŸƒ•›Oh‡đ©OŸ›iÃ`ww^ƒÌkŸ‘ÑH«ƇǤŗĺtFu…{Z}Ö@U‡´…ʚLg®¯Oı°ÃwŸ ^˜—€VbÉs‡ˆmA…ê]]w„§›RRl£‡ȭµu¯b{ÍDěïÿȧŽuT£ġƒěŗƃĝ“Q¨fV†Ƌ•ƅn­a@‘³@šď„yýIĹÊKšŭfċŰóŒxV@tˆƯŒJ”]eƒR¾fe|rHA˜|h~Ėƍl§ÏŠlTíb ØoˆÅbbx³^zÃ͚¶Sj®A”yÂhðk`š«P€”ˈµEF†Û¬Y¨Ļrõqi¼‰Wi°§’б´°^[ˆÀ|ĠO@ÆxO\\tŽa\\tĕtû{ġŒȧXýĪÓjùÎRb›š^ΛfK[ݏděYfíÙTyŽuUSyŌŏů@Oi½’éŅ­aVcř§ax¹XŻác‡žWU£ôãºQ¨÷Ñws¥qEH‰Ù|‰›šYQoŕÇyáĂ£MðoťÊ‰P¡mšWO¡€v†{ôvîēÜISpÌhp¨ ‘j†deŔQÖj˜X³à™Ĉ[n`Yp@Už–cM`’RKhŒEbœ”pŞlNut®Etq‚nsÁŠgA‹iú‹oH‡qCX‡”hfgu“~ϋWP½¢G^}¯ÅīGCŸÑ^ãziMáļMTÃƘrMc|O_ž¯Ŏ´|‡morDkO\\mĆJfl@c̬¢aĦtRıҙ¾ùƀ^juųœK­ƒUFy™—Ɲ…›īÛ÷ąV×qƥV¿aȉd³B›qPBm›aËđŻģm“Å®Vйd^K‡KoŸnYg“¯Xhqa”Ldu¥•ÍpDž¡KąÅƒkĝęěhq‡}HyÓ]¹ǧ£…Í÷¿qáµ§š™g‘¤o^á¾ZE‡¤i`ij{n•ƒOl»ŸWÝĔįhg›F[¿¡—ßkOüš_‰€ū‹i„DZàUtėGylƒ}ŒÓM}€jpEC~¡FtoQi‘šHkk{Ãmï‚"]],"encodeOffsets":[[[119712,40641]],[[121616,39981]],[[116462,37237]]]}},{"type":"Feature","id":"140000","properties":{"id":"140000","cp":[111.849248,36.857014],"name":"山西","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@Þĩ҃S‰ra}Á€yWix±Üe´lè“ßÓǏok‘ćiµVZģ¡coœ‘TS˹ĪmnÕńe–hZg{gtwªpXaĚThȑp{¶Eh—®RćƑP¿£‘Pmc¸mQÝW•ďȥoÅîɡųAďä³aωJ‘½¥PG­ąSM­™…EÅruµé€‘Yӎ•Ō_d›ĒCo­Èµ]¯_²ÕjāŽK~©ÅØ^ԛkïçămϑk]­±ƒcݯÑÃmQÍ~_a—pm…~ç¡q“ˆu{JÅŧ·Ls}–EyÁÆcI{¤IiCfUc•ƌÃp§]웫vD@¡SÀ‘µM‚ÅwuŽYY‡¡DbÑc¡hƒ×]nkoQdaMç~eD•ÛtT‰©±@¥ù@É¡‰ZcW|WqOJmĩl«ħşvOÓ«IqăV—¥ŸD[mI~Ó¢cehiÍ]Ɠ~ĥqXŠ·eƷœn±“}v•[ěďŽŕ]_‘œ•`‰¹ƒ§ÕōI™o©b­s^}Ét±ū«³p£ÿ·Wµ|¡¥ăFÏs׌¥ŅxŸÊdÒ{ºvĴÎêÌɊ²¶€ü¨|ÞƸµȲ‘LLúÉƎ¤ϊęĔV`„_bª‹S^|ŸdŠzY|dz¥p†ZbÆ£¶ÒK}tĦÔņƠ‚PYzn€ÍvX¶Ěn ĠÔ„zý¦ª˜÷žÑĸَUȌ¸‚dòÜJð´’ìúNM¬ŒXZ´‘¤ŊǸ_tldIš{¦ƀðĠȤ¥NehXnYG‚‡R° ƬDj¬¸|CĞ„Kq‚ºfƐiĺ©ª~ĆOQª ¤@ìǦɌ²æBŒÊ”TœŸ˜ʂōĖ’šĴŞ–ȀœÆÿȄlŤĒö„t”νî¼ĨXhŒ‘˜|ªM¤Ðz"],"encodeOffsets":[[116874,41716]]}},{"type":"Feature","id":"150000","properties":{"id":"150000","cp":[111.670801,41.818311],"name":"内蒙古","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@¯PqƒFB…‰|S•³C|kñ•H‹d‘iÄ¥sˆʼnő…PóÑÑE^‘ÅPpy_YtS™hQ·aHwsOnʼnÚs©iqj›‰€USiº]ïWš‰«gW¡A–Rë¥_ŽsgÁnUI«m‰…„‹]j‡vV¼euhwqA„aW˜ƒ_µj…»çjioQR¹ēÃßt@r³[ÛlćË^ÍÉáG“›OUۗOB±•XŸkŇ¹£k|e]ol™ŸkVͼÕqtaÏõjgÁ£§U^Œ”RLˆËnX°Ç’Bz†^~wfvˆypV ¯„ƫĉ˭ȫƗŷɿÿĿƑ˃ĝÿÃǃßËőó©ǐȍŒĖM×ÍEyx‹þp]Évïè‘vƀnÂĴÖ@‚‰†V~Ĉv¦wĖt—ējyÄDXÄxGQuv_›i¦aBçw‘˛wD™©{ŸtāmQ€{EJ§KPśƘƿ¥@‰sCT•É}ɃwˆƇy±ŸgÑ“}T[÷kÐ禫…SÒ¥¸ëBX½‰HáŵÀğtSÝÂa[ƣ°¯¦P]£ġ“–“Òk®G²„èQ°óMq}EŠóƐÇ\\ƒ‡@áügQ͋u¥Fƒ“T՛¿Jû‡]|mvāÎYua^WoÀa·­ząÒot×¶CLƗi¯¤mƎHNJ¤îìɾŊìTdåwsRÖgĒųúÍġäÕ}Q¶—ˆ¿A•†‹[¡Œ{d×uQAƒ›M•xV‹vMOmăl«ct[wº_šÇʊŽŸjb£ĦS_é“QZ“_lwgOiýe`YYLq§IÁˆdz£ÙË[ÕªuƏ³ÍT—s·bÁĽäė[›b[ˆŗfãcn¥îC¿÷µ[ŏÀQ­ōšĉm¿Á^£mJVm‡—L[{Ï_£›F¥Ö{ŹA}…×Wu©ÅaųijƳhB{·TQqÙIķˑZđ©Yc|M¡…L•eVUóK_QWk’_ĥ‘¿ãZ•»X\\ĴuUƒè‡lG®ěłTĠğDєOrÍd‚ÆÍz]‹±…ŭ©ŸÅ’]ŒÅÐ}UË¥©Tċ™ïxgckfWgi\\ÏĒ¥HkµE˜ë{»ÏetcG±ahUiñiWsɁˆ·c–C‚Õk]wȑ|ća}w…VaĚ᠞ŒG°ùnM¬¯†{ÈˆÐÆA’¥ÄêJxÙ¢”hP¢Ûˆº€µwWOŸóFŽšÁz^ÀŗÎú´§¢T¤ǻƺSė‰ǵhÝÅQgvBHouʝl_o¿Ga{ïq{¥|ſĿHĂ÷aĝÇq‡Z‘ñiñC³ª—…»E`¨åXēÕqÉû[l•}ç@čƘóO¿¡ƒFUsA‰“ʽīccšocƒ‚ƒÇS}„“£‡IS~ălkĩXçmĈ…ŀЂoÐdxÒuL^T{r@¢‘žÍƒĝKén£kQ™‰yšÅõËXŷƏL§~}kqš»IHėDžjĝŸ»ÑÞoŸå°qTt|r©ÏS‹¯·eŨĕx«È[eMˆ¿yuˆ‘pN~¹ÏyN£{©’—g‹ħWí»Í¾s“əšDž_ÃĀɗ±ą™ijĉʍŌŷ—S›É“A‹±åǥɋ@럣R©ąP©}ĹªƏj¹erƒLDĝ·{i«ƫC£µsKCš…GS|úþX”gp›{ÁX¿Ÿć{ƱȏñZáĔyoÁhA™}ŅĆfdʼn„_¹„Y°ėǩÑ¡H¯¶oMQqð¡Ë™|‘Ñ`ƭŁX½·óۓxğįÅcQ‡ˆ“ƒs«tȋDžF“Ÿù^i‘t«Č¯[›hAi©á¥ÇĚ×l|¹y¯YȵƓ‹ñǙµï‚ċ™Ļ|Dœ™üȭ¶¡˜›oŽäÕG\\ďT¿Òõr¯œŸLguÏYęRƩšɷŌO\\İТæ^Ŋ IJȶȆbÜGŽĝ¬¿ĚVĎgª^íu½jÿĕęjık@Ľƒ]ėl¥Ë‡ĭûÁ„ƒėéV©±ćn©­ȇžÍq¯½•YÃÔʼn“ÉNѝÅÝy¹NqáʅDǡËñ­ƁYÅy̱os§ȋµʽǘǏƬɱà‘ưN¢ƔÊuľýľώȪƺɂļžxœZĈ}ÌʼnŪ˜ĺœŽĭFЛĽ̅ȣͽÒŵìƩÇϋÿȮǡŏçƑůĕ~Ǎ›¼ȳÐUf†dIxÿ\\G ˆzâɏÙOº·pqy£†@ŒŠqþ@Ǟ˽IBäƣzsÂZ†ÁàĻdñ°ŕzéØűzșCìDȐĴĺf®ŽÀľưø@ɜÖÞKĊŇƄ§‚͑těï͡VAġÑÑ»d³öǍÝXĉĕÖ{þĉu¸ËʅğU̎éhɹƆ̗̮ȘNJ֥ड़ࡰţાíϲäʮW¬®ҌeרūȠkɬɻ̼ãüfƠSצɩςåȈHϚÎKdzͲOðÏȆƘ¼CϚǚ࢚˼ФԂ¤ƌžĞ̪Qʤ´¼mȠJˀŸƲÀɠmǐnǔĎȆÞǠN~€ʢĜ‚¶ƌĆĘźʆȬ˪ĚǏĞGȖƴƀj`ĢçĶāàŃºē̃ĖćšYŒÀŎüôQÐÂŎŞdžŞêƖš˜oˆDĤÕºÑǘÛˤ³̀gńƘĔÀ^žªƂ`ªt¾äƚêĦĀ¼Ð€Ĕǎ¨Ȕ»͠^ˮÊȦƤøxRrŜH¤¸ÂxDĝŒ|ø˂˜ƮÐ¬ɚwɲFjĔ²Äw°dždÀɞ_ĸdîàŎjʜêTĞªŌ‡ŜWÈ|tqĢUB~´°ÎFC•ŽU¼pĀēƄN¦¾O¶ŠłKĊOj“Ě”j´ĜYp˜{¦„ˆSĚÍ\\Tš×ªV–÷Ší¨ÅDK°ßtŇĔKš¨ǵÂcḷ̌ĚǣȄĽF‡lġUĵœŇ‹ȣFʉɁƒMğįʏƶɷØŭOǽ«ƽū¹Ʊő̝Ȩ§ȞʘĖiɜɶʦ}¨֪ࠜ̀ƇǬ¹ǨE˦ĥªÔêFŽxúQ„Er´W„rh¤Ɛ \\talĈDJ˜Ü|[Pll̚¸ƎGú´Pž¬W¦†^¦–H]prR“n|or¾wLVnÇIujkmon£cX^Bh`¥V”„¦U¤¸}€xRj–[^xN[~ªŠxQ„‚[`ªHÆÂExx^wšN¶Ê˜|¨ì†˜€MrœdYp‚oRzNy˜ÀDs~€bcfÌ`L–¾n‹|¾T‚°c¨È¢a‚r¤–`[|òDŞĔöxElÖdH„ÀI`„Ď\\Àì~ƎR¼tf•¦^¢ķ¶e”ÐÚMŒptgj–„ɡČÅyġLû™ŇV®ŠÄÈƀ†Ď°P|ªVV†ªj–¬ĚÒêp¬–E|ŬÂc|ÀtƐK fˆ{ĘFǜƌXƲąo½Ę‘\\¥–o}›Ûu£ç­kX‘{uĩ«āíÓUŅßŢq€Ť¥lyň[€oi{¦‹L‡ń‡ðFȪȖ”ĒL„¿Ì‹ˆfŒ£K£ʺ™oqNŸƒwğc`ue—tOj×°KJ±qƒÆġm‰Ěŗos¬…qehqsuœƒH{¸kH¡Š…ÊRǪÇƌbȆ¢´ä܍¢NìÉʖ¦â©Ġu¦öČ^â£Ăh–šĖMÈÄw‚\\fŦ°W ¢¾luŸD„wŠ\\̀ʉÌÛM…Ā[bӞEn}¶Vc…ê“sƒ"]],"encodeOffsets":[[[129102,52189]]]}},{"type":"Feature","id":"210000","properties":{"id":"210000","cp":[123.429096,41.796767],"name":"辽宁","childNum":16},"geometry":{"type":"MultiPolygon","coordinates":[["@@L–Ž@@s™a"],["@@MnNm"],["@@d‚c"],["@@eÀ‚C@b‚“‰"],["@@f‡…Xwkbr–Ä`qg"],["@@^jtW‘Q"],["@@~ Y]c"],["@@G`ĔN^_¿Z‚ÃM"],["@@iX¶B‹Y"],["@@„YƒZ"],["@@L_{Epf"],["@@^WqCT\\"],["@@\\[“‹§t|”¤_"],["@@m`n_"],["@@Ïxnj{q_×^Giip"],["@@@œé^B†‡ntˆaÊU—˜Ÿ]x ¯ÄPIJ­°h€ʙK³†VˆÕ@Y~†|EvĹsDŽ¦­L^p²ŸÒG ’Ël]„xxÄ_˜fT¤Ď¤cŽœP„–C¨¸TVjbgH²sdÎdHt`Bˆ—²¬GJję¶[ÐhjeXdlwhšðSȦªVÊπ‹Æ‘Z˜ÆŶ®²†^ŒÎyÅÎcPqń“ĚDMħĜŁH­ˆk„çvV[ij¼W–‚YÀäĦ’‘`XlžR`žôLUVžfK–¢†{NZdĒª’YĸÌÚJRr¸SA|ƴgŴĴÆbvªØX~†źBŽ|¦ÕœEž¤Ð`\\|Kˆ˜UnnI]¤ÀÂĊnŎ™R®Ő¿¶\\ÀøíDm¦ÎbŨab‰œaĘ\\ľã‚¸a˜tÎSƐ´©v\\ÖÚÌǴ¤Â‡¨JKr€Z_Z€fjþhPkx€`Y”’RIŒjJcVf~sCN¤ ˆE‚œhæm‰–sHy¨SðÑÌ\\\\ŸĐRZk°IS§fqŒßýáЍÙÉÖ[^¯ǤŲ„ê´\\¦¬ĆPM¯£Ÿˆ»uïpùzEx€žanµyoluqe¦W^£ÊL}ñrkqWňûP™‰UP¡ôJŠoo·ŒU}£Œ„[·¨@XŒĸŸ“‹‹DXm­Ûݏº‡›GU‹CÁª½{íĂ^cj‡k“¶Ã[q¤“LÉö³cux«zZfƒ²BWÇ®Yß½ve±ÃC•ý£W{Ú^’q^sÑ·¨‹ÍOt“¹·C¥‡GD›rí@wÕKţ݋˜Ÿ«V·i}xËÍ÷‘i©ĝ‡ɝǡ]ƒˆ{c™±OW‹³Ya±Ÿ‰_穂Hžĕoƫ€Ňqƒr³‰Lys[„ñ³¯OS–ďOMisZ†±ÅFC¥Pq{‚Ã[Pg}\\—¿ghćO…•k^ģÁFıĉĥM­oEqqZûěʼn³F‘¦oĵ—hŸÕP{¯~TÍlª‰N‰ßY“Ð{Ps{ÃVU™™eĎwk±ʼnVÓ½ŽJãÇÇ»Jm°dhcÀff‘dF~ˆ€ĀeĖ€d`sx² šƒ®EżĀdQ‹Âd^~ăÔHˆ¦\\›LKpĄVez¤NP ǹӗR™ÆąJSh­a[¦´Âghwm€BÐ¨źhI|žVVŽ—Ž|p] Â¼èNä¶ÜBÖ¼“L`‚¼bØæŒKV”ŸpoœúNZÞÒKxpw|ÊEMnzEQšŽIZ”ŽZ‡NBˆčÚFÜçmĩ‚WĪñt‘ÞĵÇñZ«uD‚±|Əlij¥ãn·±PmÍa‰–da‡ CL‡Ǒkùó¡³Ï«QaċϑOÃ¥ÕđQȥċƭy‹³ÃA"]],"encodeOffsets":[[[123686,41445]],[[126019,40435]],[[124393,40128]],[[126117,39963]],[[125322,40140]],[[126686,40700]],[[126041,40374]],[[125584,40168]],[[125453,40165]],[[125362,40214]],[[125280,40291]],[[125774,39997]],[[125976,40496]],[[125822,39993]],[[125509,40217]],[[122731,40949]]]}},{"type":"Feature","id":"220000","properties":{"id":"220000","cp":[125.3245,43.886841],"name":"吉林","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@‘p䔳PClƒFbbÍzš€wBG’ĭ€Z„Åi“»ƒlY­ċ²SgŽkÇ£—^S‰“qd¯•‹R…©éŽ£¯S†\\cZ¹iűƏCuƍÓX‡oR}“M^o•£…R}oªU­F…uuXHlEŕ‡€Ï©¤ÛmTŽþ¤D–²ÄufàÀ­XXȱAe„yYw¬dvõ´KÊ£”\\rµÄl”iˆdā]|DÂVŒœH¹ˆÞ®ÜWnŒC”Œķ W‹§@\\¸‹ƒ~¤‹Vp¸‰póIO¢ŠVOšŇürXql~òÉK]¤¥Xrfkvzpm¶bwyFoúvð‡¼¤ N°ąO¥«³[ƒéǡű_°Õ\\ÚÊĝŽþâőàerR¨­JYlďQ[ ÏYëЧTGz•tnŠß¡gFkMŸāGÁ¤ia É‰™È¹`\\xs€¬dĆkNnuNUŠ–užP@‚vRY¾•–\\¢…ŒGªóĄ~RãÖÎĢù‚đŴÕhQŽxtcæëSɽʼníëlj£ƍG£nj°KƘµDsØÑpyƸ®¿bXp‚]vbÍZuĂ{nˆ^IüœÀSք”¦EŒvRÎûh@℈[‚Əȉô~FNr¯ôçR±ƒ­HÑl•’Ģ–^¤¢‚OðŸŒævxsŒ]ÞÁTĠs¶¿âƊGW¾ìA¦·TѬ†è¥€ÏÐJ¨¼ÒÖ¼ƒƦɄxÊ~S–tD@ŠĂ¼Ŵ¡jlºWžvЉˆzƦZЎ²CH— „Axiukd‹ŒGgetqmcžÛ£Ozy¥cE}|…¾cZ…k‚‰¿uŐã[oxGikfeäT@…šSUwpiÚFM©’£è^ڟ‚`@v¶eň†f h˜eP¶žt“äOlÔUgƒÞzŸU`lœ}ÔÆUvØ_Ō¬Öi^ĉi§²ÃŠB~¡Ĉ™ÚEgc|DC_Ȧm²rBx¼MÔ¦ŮdĨÃâYx‘ƘDVÇĺĿg¿cwÅ\\¹˜¥Yĭlœ¤žOv†šLjM_a W`zļMž·\\swqÝSA‡š—q‰Śij¯Š‘°kŠRē°wx^Đkǂғ„œž“œŽ„‹\\]˜nrĂ}²ĊŲÒøãh·M{yMzysěnĒġV·°“G³¼XÀ““™¤¹i´o¤ŃšŸÈ`̃DzÄUĞd\\i֚ŒˆmÈBĤÜɲDEh LG¾ƀľ{WaŒYÍȏĢĘÔRîĐj‹}Ǟ“ccj‡oUb½š{“h§Ǿ{K‹ƖµÎ÷žGĀÖŠåưÎs­l›•yiē«‹`姝H¥Ae^§„GK}iã\\c]v©ģZ“mÃ|“[M}ģTɟĵ‘Â`À–çm‰‘FK¥ÚíÁbXš³ÌQґHof{‰]e€pt·GŋĜYünĎųVY^’˜ydõkÅZW„«WUa~U·Sb•wGçǑ‚“iW^q‹F‚“›uNĝ—·Ew„‹UtW·Ýďæ©PuqEzwAV•—XR‰ãQ`­©GŒM‡ehc›c”ďϝd‡©ÑW_ϗYƅŒ»…é\\ƒɹ~ǙG³mØ©BšuT§Ĥ½¢Ã_ý‘L¡‘ýŸqT^rme™\\Pp•ZZbƒyŸ’uybQ—efµ]UhĿDCmûvašÙNSkCwn‰cćfv~…Y‹„ÇG"],"encodeOffsets":[[130196,42528]]}},{"type":"Feature","id":"230000","properties":{"id":"230000","cp":[128.642464,46.756967],"name":"黑龙江","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@UƒµNÿ¥īè灋•HÍøƕ¶LŒǽ|g¨|”™Ža¾pViˆdd”~ÈiŒíďÓQġėǐZ΋ŽXb½|ſÃH½ŸKFgɱCģÛÇA‡n™‹jÕc[VĝDZÃ˄Ç_™ £ń³pŽj£º”š¿”»WH´¯”U¸đĢmžtĜyzzNN|g¸÷äűѱĉā~mq^—Œ[ƒ”››”ƒǁÑďlw]¯xQĔ‰¯l‰’€°řĴrŠ™˜BˆÞTxr[tޏĻN_yŸX`biN™Ku…P›£k‚ZĮ—¦[ºxÆÀdhŽĹŀUÈƗCw’áZħÄŭcÓ¥»NAw±qȥnD`{ChdÙFćš}¢‰A±Äj¨]ĊÕjŋ«×`VuÓś~_kŷVÝyh„“VkÄãPs”Oµ—fŸge‚Ň…µf@u_Ù ÙcŸªNªÙEojVx™T@†ãSefjlwH\\pŏäÀvŠŽlY†½d{†F~¦dyz¤PÜndsrhf‹HcŒvlwjFœ£G˜±DύƥY‡yϊu¹XikĿ¦ÏqƗǀOŜ¨LI|FRĂn sª|Cš˜zxAè¥bœfudTrFWÁ¹Am|˜ĔĕsķÆF‡´Nš‰}ć…UŠÕ@Áijſmužç’uð^ÊýowŒFzØÎĕNőžǏȎôªÌŒDŽàĀÄ˄ĞŀƒʀĀƘŸˮȬƬĊ°ƒUŸzou‡xe]}Ž…AyȑW¯ÌmK‡“Q]‹Īºif¸ÄX|sZt|½ÚUΠlkš^p{f¤lˆºlÆW –€A²˜PVܜPH”Êâ]ÎĈÌÜk´\\@qàsĔÄQºpRij¼èi†`¶—„bXƒrBgxfv»ŽuUiˆŒ^v~”J¬mVp´£Œ´VWrnP½ì¢BX‚¬h™ŠðX¹^TjVœŠriªj™tŊÄm€tPGx¸bgRšŽsT`ZozÆO]’ÒFô҆Oƒ‡ŊŒvŞ”p’cGŒêŠsx´DR–Œ{A†„EOr°Œ•žx|íœbˆ³Wm~DVjºéNN†Ëܲɶ­GƒxŷCStŸ}]ûō•SmtuÇÃĕN•™āg»šíT«u}ç½BĵÞʣ¥ëÊ¡Mێ³ãȅ¡ƋaǩÈÉQ‰†G¢·lG|›„tvgrrf«†ptęŘnŠÅĢr„I²¯LiØsPf˜_vĠd„xM prʹšL¤‹¤‡eˌƒÀđK“žïÙVY§]I‡óáĥ]ķ†Kˆ¥Œj|pŇ\\kzţ¦šnņäÔVĂîά|vW’®l¤èØr‚˜•xm¶ă~lÄƯĄ̈́öȄEÔ¤ØQĄ–Ą»ƢjȦOǺ¨ìSŖÆƬy”Qœv`–cwƒZSÌ®ü±DŽ]ŀç¬B¬©ńzƺŷɄeeOĨS’Œfm Ċ‚ƀP̎ēz©Ċ‚ÄÕÊmgŸÇsJ¥ƔˆŊśæ’΁Ñqv¿íUOµª‰ÂnĦÁ_½ä@ê텣P}Ġ[@gġ}g“ɊדûÏWXá¢užƻÌsNͽƎÁ§č՛AēeL³àydl›¦ĘVçŁpśdžĽĺſʃQíÜçÛġԏsĕ¬—Ǹ¯YßċġHµ ¡eå`ļƒrĉŘóƢFì“ĎWøxÊk†”ƈdƬv|–I|·©NqńRŀƒ¤é”eŊœŀ›ˆàŀU²ŕƀB‚Q£Ď}L¹Îk@©ĈuǰųǨ”Ú§ƈnTËÇéƟÊcfčŤ^Xm‡—HĊĕË«W·ċëx³ǔķÐċJā‚wİ_ĸ˜Ȁ^ôWr­°oú¬Ħ…ŨK~”ȰCĐ´Ƕ£’fNÎèâw¢XnŮeÂÆĶŽ¾¾xäLĴĘlļO¤ÒĨA¢Êɚ¨®‚ØCÔ ŬGƠ”ƦYĜ‡ĘÜƬDJ—g_ͥœ@čŅĻA“¶¯@wÎqC½Ĉ»NŸăëK™ďÍQ“Ùƫ[«Ãí•gßÔÇOÝáW‘ñuZ“¯ĥ€Ÿŕā¡ÑķJu¤E Ÿå¯°WKɱ_d_}}vyŸõu¬ï¹ÓU±½@gÏ¿rýD‰†g…Cd‰µ—°MFYxw¿CG£‹Rƛ½Õ{]L§{qqąš¿BÇƻğëšܭNJË|c²}Fµ}›ÙRsÓpg±ŠQNqǫŋRwŕnéÑÉKŸ†«SeYR…ŋ‹@{¤SJ}šD Ûǖ֍Ÿ]gr¡µŷjqWÛham³~S«“„›Þ]"]],"encodeOffsets":[[[134456,44547]]]}},{"type":"Feature","id":"320000","properties":{"id":"320000","cp":[119.767413,33.041544],"name":"江苏","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@cþÅPiŠ`ZŸRu¥É\\]~°ŽY`µ†Óƒ^phÁbnÀşúŽòa–ĬºTÖŒb‚˜e¦¦€{¸ZâćNpŒ©žHr|^ˆmjhŠSEb\\afv`sz^lkŽlj‹Ätg‹¤D˜­¾Xš¿À’|ДiZ„ȀåB·î}GL¢õcßjaŸyBFµÏC^ĭ•cÙt¿sğH]j{s©HM¢ƒQnDÀ©DaÜތ·jgàiDbPufjDk`dPOîƒhw¡ĥ‡¥šG˜ŸP²ĐobºrY†„î¶aHŢ´ ]´‚rılw³r_{£DB_Ûdåuk|ˆŨ¯F Cºyr{XFy™e³Þċ‡¿Â™kĭB¿„MvÛpm`rÚã”@ƹhågËÖƿxnlč¶Åì½Ot¾dJlŠVJʜǀœŞqvnOŠ^ŸJ”Z‘ż·Q}ê͎ÅmµÒ]Žƍ¦Dq}¬R^èĂ´ŀĻĊIԒtžIJyQŐĠMNtœR®òLh‰›Ěs©»œ}OӌGZz¶A\\jĨFˆäOĤ˜HYš†JvÞHNiÜaϚɖnFQlšNM¤ˆB´ĄNöɂtp–Ŭdf先‹qm¿QûŠùއÚb¤uŃJŴu»¹Ą•lȖħŴw̌ŵ²ǹǠ͛hĭłƕrçü±Y™xci‡tğ®jű¢KOķ•Coy`å®VTa­_Ā]ŐÝɞï²ʯÊ^]afYǸÃĆēĪȣJđ͍ôƋĝÄ͎ī‰çÛɈǥ£­ÛmY`ó£Z«§°Ó³QafusNıDž_k}¢m[ÝóDµ—¡RLčiXy‡ÅNïă¡¸iĔϑNÌŕoēdōîåŤûHcs}~Ûwbù¹£¦ÓCt‹OPrƒE^ÒoŠg™ĉIµžÛÅʹK…¤½phMŠü`o怆ŀ"],"encodeOffsets":[[121740,32276]]}},{"type":"Feature","id":"330000","properties":{"id":"330000","cp":[120.153576,29.287459],"name":"浙江","childNum":45},"geometry":{"type":"MultiPolygon","coordinates":[["@@E^dQ]K"],["@@jX^j‡"],["@@sfŠbU‡"],["@@qP\\xz[ck"],["@@‘Rƒ¢‚FX}°[s_"],["@@Cbœ\\—}"],["@@e|v\\la{u"],["@@v~u}"],["@@QxÂF¯}"],["@@¹nŒvÞs¯o"],["@@rSkUEj"],["@@bi­ZŒP"],["@@p[}INf"],["@@À¿€"],["@@¹dnbŒ…"],["@@rSŸBnR"],["@@g~h}"],["@@FlEk"],["@@OdPc"],["@@v[u\\"],["@@FjâL~wyoo~›sµL–\\"],["@@¬e¹aNˆ"],["@@\\nÔ¡q]L³ë\\ÿ®ŒQ֎"],["@@ÊA­©[¬"],["@@KxŒv­"],["@@@hlIk]"],["@@pW{o||j"],["@@Md|_mC"],["@@¢…X£ÏylD¼XˆtH"],["@@hlÜ[LykAvyfw^Ež›¤"],["@@fp¤Mus“R"],["@@®_ma~•LÁ¬šZ"],["@@iM„xZ"],["@@ZcYd"],["@@Z~dOSo|A¿qZv"],["@@@`”EN¡v"],["@@|–TY{"],["@@@n@m"],["@@XWkCT\\"],["@@ºwšZRkĕWO¢"],["@@™X®±Grƪ\\ÔáXq{‹"],["@@ůTG°ĄLHm°UC‹"],["@@¤Ž€aÜx~}dtüGæţŎíĔcŖpMËВj碷ðĄÆMzˆjWKĎ¢Q¶˜À_꒔_Bı€i«pZ€gf€¤Nrq]§ĂN®«H±‡yƳí¾×ŸīàLłčŴǝĂíÀBŖÕªˆŠÁŖHŗʼnåqûõi¨hÜ·ƒñt»¹ýv_[«¸m‰YL¯‰Qª…mĉÅdMˆ•gÇjcº«•ęœ¬­K­´ƒB«Âącoċ\\xKd¡gěŧ«®á’[~ıxu·Å”KsËɏc¢Ù\\ĭƛëbf¹­ģSƒĜkáƉÔ­ĈZB{ŠaM‘µ‰fzʼnfåÂŧįƋǝÊĕġć£g³ne­ą»@­¦S®‚\\ßðCšh™iqªĭiAu‡A­µ”_W¥ƣO\\lċĢttC¨£t`ˆ™PZäuXßBs‡Ļyek€OđġĵHuXBšµ]׌‡­­\\›°®¬F¢¾pµ¼kŘó¬Wät’¸|@ž•L¨¸µr“ºù³Ù~§WI‹ŸZWŽ®’±Ð¨ÒÉx€`‰²pĜ•rOògtÁZ}þÙ]„’¡ŒŸFK‚wsPlU[}¦Rvn`hq¬\\”nQ´ĘRWb”‚_ rtČFI֊kŠŠĦPJ¶ÖÀÖJĈĄTĚòžC ²@Pú…Øzœ©PœCÈÚœĒ±„hŖ‡l¬â~nm¨f©–iļ«m‡nt–u†ÖZÜÄj“ŠLŽ®E̜Fª²iÊxبžIÈhhst"],["@@o\\V’zRZ}y"],["@@†@°¡mۛGĕ¨§Ianá[ýƤjfæ‡ØL–•äGr™"]],"encodeOffsets":[[[125592,31553]],[[125785,31436]],[[125729,31431]],[[125513,31380]],[[125223,30438]],[[125115,30114]],[[124815,29155]],[[124419,28746]],[[124095,28635]],[[124005,28609]],[[125000,30713]],[[125111,30698]],[[125078,30682]],[[125150,30684]],[[124014,28103]],[[125008,31331]],[[125411,31468]],[[125329,31479]],[[125626,30916]],[[125417,30956]],[[125254,30976]],[[125199,30997]],[[125095,31058]],[[125083,30915]],[[124885,31015]],[[125218,30798]],[[124867,30838]],[[124755,30788]],[[124802,30809]],[[125267,30657]],[[125218,30578]],[[125200,30562]],[[124968,30474]],[[125167,30396]],[[124955,29879]],[[124714,29781]],[[124762,29462]],[[124325,28754]],[[123990,28459]],[[125366,31477]],[[125115,30363]],[[125369,31139]],[[122495,31878]],[[125329,30690]],[[125192,30787]]]}},{"type":"Feature","id":"340000","properties":{"id":"340000","cp":[117.283042,31.26119],"name":"安徽","childNum":3},"geometry":{"type":"MultiPolygon","coordinates":[["@@^iuLX^"],["@@‚e©Ehl"],["@@°ZÆëϵmkǀwÌÕæhºgBĝâqÙĊz›ÖgņtÀÁÊÆá’hEz|WzqD¹€Ÿ°E‡ŧl{ævÜcA`¤C`|´qžxIJkq^³³ŸGšµbƒíZ…¹qpa±ď OH—¦™Ħˆx¢„gPícOl_iCveaOjCh߸i݋bÛªCC¿€m„RV§¢A|t^iĠGÀtÚs–d]ĮÐDE¶zAb àiödK¡~H¸íæAžǿYƒ“j{ď¿‘™À½W—®£ChŒÃsiŒkkly]_teu[bFa‰Tig‡n{]Gqªo‹ĈMYá|·¥f¥—őaSÕė™NµñĞ«ImŒ_m¿Âa]uĜp …Z_§{Cƒäg¤°r[_Yj‰ÆOdý“[ŽI[á·¥“Q_n‡ùgL¾mv™ˊBÜÆ¶ĊJhšp“c¹˜O]iŠ]œ¥ jtsggJǧw×jÉ©±›EFˍ­‰Ki”ÛÃÕYv…s•ˆm¬njĻª•§emná}k«ŕˆƒgđ²Ù›DǤ›í¡ªOy›†×Où±@DŸñSęćăÕIÕ¿IµĥO‰‰jNÕËT¡¿tNæŇàåyķrĕq§ÄĩsWÆßŽF¶žX®¿‰mŒ™w…RIޓfßoG‘³¾©uyH‘į{Ɓħ¯AFnuP…ÍÔzšŒV—dàôº^Ðæd´€‡oG¤{S‰¬ćxã}›ŧ×Kǥĩ«žÕOEзÖdÖsƘѨ[’Û^Xr¢¼˜§xvěƵ`K”§ tÒ´Cvlo¸fzŨð¾NY´ı~ÉĔē…ßúLÃϖ_ÈÏ|]ÂÏFl”g`bšežž€n¾¢pU‚h~ƴ˶_‚r sĄ~cž”ƈ]|r c~`¼{À{ȒiJjz`îÀT¥Û³…]’u}›f…ïQl{skl“oNdŸjŸäËzDvčoQŠďHI¦rb“tHĔ~BmlRš—V_„ħTLnñH±’DžœL‘¼L˜ªl§Ťa¸ŒĚlK²€\\RòvDcÎJbt[¤€D@®hh~kt°ǾzÖ@¾ªdb„YhüóZ ň¶vHrľ\\ʗJuxAT|dmÀO„‹[ÃԋG·ĚąĐlŪÚpSJ¨ĸˆLvÞcPæķŨŽ®mАˆálŸwKhïgA¢ųƩޖ¤OȜm’°ŒK´"]],"encodeOffsets":[[[121722,32278]],[[119475,30423]],[[119168,35472]]]}},{"type":"Feature","id":"350000","properties":{"id":"350000","cp":[118.306239,26.075302],"name":"福建","childNum":18},"geometry":{"type":"MultiPolygon","coordinates":[["@@“zht´‡]"],["@@aj^~ĆG—©O"],["@@ed¨„C}}i"],["@@@vˆPGsQ"],["@@‰sBz‚ddW]Q"],["@@SލQ“{"],["@@NŽVucW"],["@@qptBAq"],["@@‰’¸[mu"],["@@Q\\pD]_"],["@@jSwUadpF"],["@@eXª~ƒ•"],["@@AjvFso"],["@@fT–›_Çí\\Ÿ™—v|ba¦jZÆy€°"],["@@IjJi"],["@@wJI€ˆxš«¼AoNe{M­"],["@@K‰±¡Óˆ”ČäeZ"],["@@k¡¹Eh~c®wBk‹UplÀ¡I•~Māe£bN¨gZý¡a±Öcp©PhžI”Ÿ¢Qq…ÇGj‹|¥U™ g[Ky¬ŏ–v@OpˆtÉEŸF„\\@ åA¬ˆV{Xģ‰ĐBy…cpě…¼³Ăp·¤ƒ¥o“hqqÚ¡ŅLsƒ^ᗞ§qlŸÀhH¨MCe»åÇGD¥zPO£čÙkJA¼ß–ėu›ĕeûҍiÁŧSW¥˜QŠûŗ½ùěcݧSùĩąSWó«íęACµ›eR—åǃRCÒÇZÍ¢‹ź±^dlsŒtjD¸•‚ZpužÔâÒH¾oLUêÃÔjjēò´ĄW‚ƛ…^Ñ¥‹ĦŸ@Çò–ŠmŒƒOw¡õyJ†yD}¢ďÑÈġfŠZd–a©º²z£šN–ƒjD°Ötj¶¬ZSÎ~¾c°¶Ðm˜x‚O¸¢Pl´žSL|¥žA†ȪĖM’ņIJg®áIJČĒü` ŽQF‡¬h|ÓJ@zµ |ê³È ¸UÖŬŬÀEttĸr‚]€˜ðŽM¤ĶIJHtÏ A’†žĬkvsq‡^aÎbvŒd–™fÊòSD€´Z^’xPsÞrv‹ƞŀ˜jJd×ŘÉ ®A–ΦĤd€xĆqAŒ†ZR”ÀMźŒnĊ»ŒİÐZ— YX–æJŠyĊ²ˆ·¶q§·–K@·{s‘Xãô«lŗ¶»o½E¡­«¢±¨Yˆ®Ø‹¶^A™vWĶGĒĢžPlzfˆļŽtàAvWYãšO_‡¤sD§ssČġ[kƤPX¦Ž`¶“ž®ˆBBvĪjv©šjx[L¥àï[F…¼ÍË»ğV`«•Ip™}ccÅĥZE‹ãoP…´B@ŠD—¸m±“z«Ƴ—¿å³BRضˆœWlâþäą`“]Z£Tc— ĹGµ¶H™m@_©—kŒ‰¾xĨ‡ôȉðX«½đCIbćqK³Á‹Äš¬OAwã»aLʼn‡ËĥW[“ÂGI—ÂNxij¤D¢ŽîĎÎB§°_JœGsƒ¥E@…¤uć…P‘å†cuMuw¢BI¿‡]zG¹guĮck\\_"]],"encodeOffsets":[[[123250,27563]],[[122541,27268]],[[123020,27189]],[[122916,27125]],[[122887,26845]],[[122808,26762]],[[122568,25912]],[[122778,26197]],[[122515,26757]],[[122816,26587]],[[123388,27005]],[[122450,26243]],[[122578,25962]],[[121255,25103]],[[120987,24903]],[[122339,25802]],[[121042,25093]],[[122439,26024]]]}},{"type":"Feature","id":"360000","properties":{"id":"360000","cp":[115.592151,27.676493],"name":"江西","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@ĢĨƐgÂMD~ņªe^\\^§„ý©j׍cZ†Ø¨zdÒa¶ˆlҍJŒìõ`oz÷@¤u޸´†ôęöY¼‰HČƶajlÞƩ¥éZ[”|h}^U Œ ¥p„ĄžƦO lt¸Æ €Q\\€ŠaÆ|CnÂOjt­ĚĤd’ÈŒF`’¶„@Ð딠¦ōҞ¨Sêv†HĢûXD®…QgėWiØPÞìºr¤dž€NĠ¢l–•ĄtZoœCƞÔºCxrpĠV®Ê{f_Y`_ƒeq’’®Aot`@o‚DXfkp¨|Šs¬\\D‘ÄSfè©Hn¬…^DhÆyøJh“ØxĢĀLʈ„ƠPżċĄwȠ̦G®ǒĤäTŠÆ~ĦwŠ«|TF¡Šn€c³Ïå¹]ĉđxe{ÎӐ†vOEm°BƂĨİ|G’vz½ª´€H’àp”eJ݆Qšxn‹ÀŠW­žEµàXÅĪt¨ÃĖrÄwÀFÎ|ňÓMå¼ibµ¯»åDT±m[“r«_gŽmQu~¥V\\OkxtL E¢‹ƒ‘Ú^~ýê‹Pó–qo슱_Êw§ÑªåƗ⼋mĉŹ‹¿NQ“…YB‹ąrwģcÍ¥B•Ÿ­ŗÊcØiI—žƝĿuŒqtāwO]‘³YCñTeɕš‹caub͈]trlu€ī…B‘ПGsĵıN£ï—^ķqss¿FūūV՟·´Ç{éĈý‰ÿ›OEˆR_ŸđûIċâJh­ŅıN‘ȩĕB…¦K{Tk³¡OP·wn—µÏd¯}½TÍ«YiµÕsC¯„iM•¤™­•¦¯P|ÿUHv“he¥oFTu‰õ\\ŽOSs‹MòđƇiaºćXŸĊĵà·çhƃ÷ǜ{‘ígu^›đg’m[×zkKN‘¶Õ»lčÓ{XSƉv©_ÈëJbVk„ĔVÀ¤P¾ºÈMÖxlò~ªÚàGĂ¢B„±’ÌŒK˜y’áV‡¼Ã~­…`g›ŸsÙfI›Ƌlę¹e|–~udjˆuTlXµf`¿JdŠ[\\˜„L‚‘²"],"encodeOffsets":[[116689,26234]]}},{"type":"Feature","id":"370000","properties":{"id":"370000","cp":[118.000923,36.275807],"name":"山东","childNum":13},"geometry":{"type":"MultiPolygon","coordinates":[["@@Xjd]{K"],["@@itbFHy"],["@@HlGk"],["@@T‚ŒGŸy"],["@@K¬˜•‹U"],["@@WdXc"],["@@PtOs"],["@@•LnXhc"],["@@ppVƒu]Or"],["@@cdzAUa"],["@@udRhnCI‡"],["@@ˆoIƒpR„"],["@@Ľč{fzƤî’Kš–ÎMĮ]†—ZFˆ½Y]â£ph’™š¶¨râøÀ†ÎǨ¤^ºÄ”Gzˆ~grĚĜlĞÆ„LĆdž¢Îo¦–cv“Kb€gr°Wh”mZp ˆL]LºcU‰Æ­n”żĤÌǜbAnrOAœ´žȊcÀbƦUØrĆUÜøœĬƞ†š˜Ez„VL®öØBkŖÝĐ˹ŧ̄±ÀbÎɜnb²ĦhņBĖ›žįĦåXćì@L¯´ywƕCéõė ƿ¸‘lµ¾Z|†ZWyFYŸ¨Mf~C¿`€à_RÇzwƌfQnny´INoƬˆèôº|sT„JUš›‚L„îVj„ǎ¾Ē؍‚Dz²XPn±ŴPè¸ŔLƔÜƺ_T‘üÃĤBBċȉöA´fa„˜M¨{«M`‡¶d¡ô‰Ö°šmȰBÔjjŒ´PM|”c^d¤u•ƒ¤Û´Œä«ƢfPk¶Môlˆ]Lb„}su^ke{lC‘…M•rDŠÇ­]NÑFsmoõľH‰yGă{{çrnÓE‰‹ƕZGª¹Fj¢ïW…uøCǷ돡ąuhÛ¡^Kx•C`C\\bÅxì²ĝÝ¿_N‰īCȽĿåB¥¢·IŖÕy\\‡¹kx‡Ã£Č×GDyÕ¤ÁçFQ¡„KtŵƋ]CgÏAùSed‡cÚź—ŠuYfƒyMmhUWpSyGwMPqŀ—›Á¼zK›¶†G•­Y§Ëƒ@–´śÇµƕBmœ@Io‚g——Z¯u‹TMx}C‘‰VK‚ï{éƵP—™_K«™pÛÙqċtkkù]gŽ‹Tğwo•ɁsMõ³ă‡AN£™MRkmEʕč™ÛbMjÝGu…IZ™—GPģ‡ãħE[iµBEuŸDPԛ~ª¼ętŠœ]ŒûG§€¡QMsğNPŏįzs£Ug{đJĿļā³]ç«Qr~¥CƎÑ^n¶ÆéÎR~ݏY’I“] P‰umŝrƿ›‰›Iā‹[x‰edz‹L‘¯v¯s¬ÁY…~}…ťuٌg›ƋpÝĄ_ņī¶ÏSR´ÁP~ž¿Cyžċßdwk´Ss•X|t‰`Ä Èð€AªìÎT°¦Dd–€a^lĎDĶÚY°Ž`ĪŴǒˆ”àŠv\\ebŒZH„ŖR¬ŢƱùęO•ÑM­³FۃWp[ƒ"]],"encodeOffsets":[[[123806,39303]],[[123821,39266]],[[123742,39256]],[[123702,39203]],[[123649,39066]],[[123847,38933]],[[123580,38839]],[[123894,37288]],[[123043,36624]],[[123344,38676]],[[123522,38857]],[[123628,38858]],[[118260,36742]]]}},{"type":"Feature","id":"410000","properties":{"id":"410000","cp":[113.665412,33.757975],"name":"河南","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@•ýL™ùµP³swIÓxcŢĞð†´E®žÚPt†ĴXØx¶˜@«ŕŕQGƒ‹Yfa[şu“ßǩ™đš_X³ijÕčC]kbc•¥CS¯ëÍB©÷‹–³­Siˆ_}m˜YTtž³xlàcȂzÀD}ÂOQ³ÐTĨ¯†ƗòËŖ[hœł‹Ŧv~††}ÂZž«¤lPǕ£ªÝŴÅR§ØnhcŒtâk‡nύ­ľŹUÓÝdKuķ‡I§oTũÙďkęĆH¸ÓŒ\\ăŒ¿PcnS{wBIvɘĽ[GqµuŸŇôYgûƒZcaŽ©@½Õǽys¯}lgg@­C\\£as€IdÍuCQñ[L±ęk·‹ţb¨©kK—’»›KC²‘òGKmĨS`ƒ˜UQ™nk}AGē”sqaJ¥ĐGR‰ĎpCuÌy ã iMc”plk|tRk†ðœev~^‘´†¦ÜŽSí¿_iyjI|ȑ|¿_»d}qŸ^{“Ƈdă}Ÿtqµ`Ƴĕg}V¡om½fa™Ço³TTj¥„tĠ—Ry”K{ùÓjuµ{t}uËR‘iŸvGŠçJFjµŠÍyqΘàQÂFewixGw½Yŷpµú³XU›½ġy™łå‰kÚwZXˆ·l„¢Á¢K”zO„Λ΀jc¼htoDHr…|­J“½}JZ_¯iPq{tę½ĕ¦Zpĵø«kQ…Ťƒ]MÛfaQpě±ǽ¾]u­Fu‹÷nƒ™čįADp}AjmcEǒaª³o³ÆÍSƇĈÙDIzˑ赟^ˆKLœ—i—Þñ€[œƒaA²zz‰Ì÷Dœ|[šíijgf‚ÕÞd®|`ƒĆ~„oĠƑô³Ŋ‘D×°¯CsŠøÀ«ì‰UMhTº¨¸ǡîS–Ô„DruÂÇZ•ÖEŽ’vPZ„žW”~؋ÐtĄE¢¦Ðy¸bŠô´oŬ¬Ž²Ês~€€]®tªašpŎJ¨Öº„_ŠŔ–`’Ŗ^Ѝ\\Ĝu–”~m²Ƹ›¸fW‰ĦrƔ}Î^gjdfÔ¡J}\\n C˜¦þWxªJRÔŠu¬ĨĨmF†dM{\\d\\ŠYÊ¢ú@@¦ª²SŠÜsC–}fNècbpRmlØ^g„d¢aÒ¢CZˆZxvÆ¶N¿’¢T@€uCœ¬^ĊðÄn|žlGl’™Rjsp¢ED}€Fio~ÔNŽ‹„~zkĘHVsDzßjƒŬŒŠŢ`Pûàl¢˜\\ÀœEhŽİgÞē X¼Pk–„|m"],"encodeOffsets":[[118256,37017]]}},{"type":"Feature","id":"420000","properties":{"id":"420000","cp":[113.298572,30.684355],"name":"湖北","childNum":3},"geometry":{"type":"MultiPolygon","coordinates":[["@@AB‚"],["@@lskt"],["@@¾«}{ra®pîÃ\\™›{øCŠËyyB±„b\\›ò˜Ý˜jK›‡L ]ĎĽÌ’JyÚCƈćÎT´Å´pb©È‘dFin~BCo°BĎĚømvŒ®E^vǾ½Ĝ²Ro‚bÜeNŽ„^ĺ£R†¬lĶ÷YoĖ¥Ě¾|sOr°jY`~I”¾®I†{GqpCgyl{‡£œÍƒÍyPL“¡ƒ¡¸kW‡xYlÙæŠšŁĢzœ¾žV´W¶ùŸo¾ZHxjwfx„GNÁ•³Xéæl¶‰EièIH‰ u’jÌQ~v|sv¶Ôi|ú¢Fh˜Qsğ¦ƒSiŠBg™ÐE^ÁÐ{–čnOÂȞUÎóĔ†ÊēIJ}Z³½Mŧïeyp·uk³DsѨŸL“¶_œÅuèw»—€¡WqÜ]\\‘Ò§tƗcÕ¸ÕFÏǝĉăxŻČƟO‡ƒKÉġÿ×wg”÷IÅzCg†]m«ªGeçÃTC’«[‰t§{loWeC@ps_Bp‘­r‘„f_``Z|ei¡—oċMqow€¹DƝӛDYpûs•–‹Ykıǃ}s¥ç³[§ŸcYЧHK„«Qy‰]¢“wwö€¸ïx¼ņ¾Xv®ÇÀµRĠЋžHMž±cÏd„ƒǍũȅȷ±DSyúĝ£ŤĀàtÖÿï[îb\\}pĭÉI±Ñy…¿³x¯N‰o‰|¹H™ÏÛm‹júË~Tš•u˜ęjCöAwě¬R’đl¯ Ñb­‰ŇT†Ŀ_[Œ‘IčĄʿnM¦ğ\\É[T·™k¹œ©oĕ@A¾w•ya¥Y\\¥Âaz¯ãÁ¡k¥ne£Ûw†E©Êō¶˓uoj_Uƒ¡cF¹­[Wv“P©w—huÕyBF“ƒ`R‹qJUw\\i¡{jŸŸEPïÿ½fć…QÑÀQ{ž‚°‡fLԁ~wXg—ītêݾ–ĺ‘Hdˆ³fJd]‹HJ²…E€ƒoU¥†HhwQsƐ»Xmg±çve›]Dm͂PˆoCc¾‹_h”–høYrŊU¶eD°Č_N~øĹĚ·`z’]Äþp¼…äÌQŒv\\rCŒé¾TnkžŐڀÜa‡“¼ÝƆ̶Ûo…d…ĔňТJq’Pb ¾|JŒ¾fXŠƐîĨ_Z¯À}úƲ‹N_ĒĊ^„‘ĈaŐyp»CÇĕKŠšñL³ŠġMŒ²wrIÒŭxjb[œžn«øœ˜—æˆàƒ ^²­h¯Ú€ŐªÞ¸€Y²ĒVø}Ā^İ™´‚LŠÚm„¥ÀJÞ{JVŒųÞŃx×sxxƈē ģMř–ÚðòIf–Ċ“Œ\\Ʈ±ŒdʧĘD†vČ_Àæ~DŒċ´A®µ†¨ØLV¦êHÒ¤"]],"encodeOffsets":[[[113712,34000]],[[115612,30507]],[[113649,34054]]]}},{"type":"Feature","id":"430000","properties":{"id":"430000","cp":[111.782279,28.09409],"name":"湖南","childNum":3},"geometry":{"type":"MultiPolygon","coordinates":[["@@—n„FTs"],["@@ßÅÆá‰½ÔXr—†CO™“…ËR‘ïÿĩ­TooQyšÓ[‹ŅBE¬–ÎÓXa„į§Ã¸G °ITxp‰úxÚij¥Ïš–̾ŠedžÄ©ĸG…œàGh‚€M¤–Â_U}Ċ}¢pczfŠþg¤€”ÇòAV‘‹M"],["@@©K—ƒA·³CQ±Á«³BUŠƑ¹AŠtćOw™D]ŒJiØSm¯b£‘ylƒ›X…HËѱH•«–‘C^õľA–Å§¤É¥„ïyuǙuA¢^{ÌC´­¦ŷJ£^[†“ª¿‡ĕ~•Ƈ…•N… skóā‡¹¿€ï]ă~÷O§­@—Vm¡‹Qđ¦¢Ĥ{ºjԏŽŒª¥nf´•~ÕoŸž×Ûą‹MąıuZœmZcÒ IJβSÊDŽŶ¨ƚƒ’CÖŎªQؼrŭŽ­«}NÏürʬŒmjr€@ĘrTW ­SsdHzƓ^ÇÂyUi¯DÅYlŹu{hTœ}mĉ–¹¥ě‰Dÿë©ıÓ[Oº£ž“¥ót€ł¹MՄžƪƒ`Pš…Di–ÛUоÅ‌ìˆU’ñB“È£ýhe‰dy¡oċ€`pfmjP~‚kZa…ZsÐd°wj§ƒ@€Ĵ®w~^‚kÀÅKvNmX\\¨a“”сqvíó¿F„¤¡@ũÑVw}S@j}¾«pĂr–ªg àÀ²NJ¶¶Dô…K‚|^ª†Ž°LX¾ŴäPᜣEXd›”^¶›IJÞܓ~‘u¸ǔ˜Ž›MRhsR…e†`ÄofIÔ\\Ø  i”ćymnú¨cj ¢»–GČìƊÿШXeĈ¾Oð Fi ¢|[jVxrIQŒ„_E”zAN¦zLU`œcªx”OTu RLÄ¢dV„i`p˔vŎµªÉžF~ƒØ€d¢ºgİàw¸Áb[¦Zb¦–z½xBĖ@ªpº›šlS¸Ö\\Ĕ[N¥ˀmĎă’J\\‹ŀ`€…ňSڊĖÁĐiO“Ĝ«BxDõĚiv—ž–S™Ì}iùŒžÜnšÐºGŠ{Šp°M´w†ÀÒzJ²ò¨ oTçüöoÛÿñŽőФ‚ùTz²CȆȸǎۃƑÐc°dPÎŸğ˶[Ƚu¯½WM¡­Éž“’B·rížnZŸÒ `‡¨GA¾\\pē˜XhÆRC­üWGġu…T靧Ŏѝ©ò³I±³}_‘‹EÃħg®ęisÁPDmÅ{‰b[Rşs·€kPŸŽƥƒóRo”O‹ŸVŸ~]{g\\“êYƪ¦kÝbiċƵŠGZ»Ěõ…ó·³vŝž£ø@pyö_‹ëŽIkѵ‡bcѧy…×dY؎ªiþž¨ƒ[]f]Ņ©C}ÁN‡»hĻħƏ’ĩ"]],"encodeOffsets":[[[115640,30489]],[[112543,27312]],[[116690,26230]]]}},{"type":"Feature","id":"440000","properties":{"id":"440000","cp":[113.280637,23.125178],"name":"广东","childNum":24},"geometry":{"type":"MultiPolygon","coordinates":[["@@QdˆAua"],["@@ƒlxDLo"],["@@sbhNLo"],["@@Ă āŸ"],["@@WltO[["],["@@Krœ]S"],["@@e„„I]y"],["@@I|„Mym"],["@@ƒÛ³LSŒž¼Y"],["@@nvºB–ëui©`¾"],["@@zdšÛ›Jw®"],["@@†°…¯"],["@@a yAª¸ËJIx،@€ĀHAmßV¡o•fu•o"],["@@šs‰ŗÃÔėAƁ›ZšÄ ~°ČP‚‹äh"],["@@‹¶Ý’Ì‚vmĞh­ı‡Q"],["@@HœŠdSjĒ¢D}war…“u«ZqadYM"],["@@elŒ\\LqqU"],["@@~rMo\\"],["@@f„^ƒC"],["@@øPªoj÷ÍÝħXČx”°Q¨ıXNv"],["@@gÇƳˆŽˆ”oˆŠˆ[~tly"],["@@E–ÆC¿‘"],["@@OŽP"],["@@w‹†đóg‰™ĝ—[³‹¡VÙæÅöM̳¹pÁaËýý©D©Ü“JŹƕģGą¤{Ùū…ǘO²«BƱéA—Ò‰ĥ‡¡«BhlmtÃPµyU¯uc“d·w_bŝcīímGOŽ|KP’ȏ‡ŹãŝIŕŭŕ@Óoo¿ē‹±ß}Ž…ŭ‚ŸIJWÈCőâUâǙI›ğʼn©I›ijEׅÁ”³Aó›wXJþ±ÌŒÜӔĨ£L]ĈÙƺZǾĆĖMĸĤfŒÎĵl•ŨnȈ‘ĐtF”Š–FĤ–‚êk¶œ^k°f¶gŠŽœ}®Fa˜f`vXŲxl˜„¦–ÔÁ²¬ÐŸ¦pqÊ̲ˆi€XŸØRDÎ}†Ä@ZĠ’s„x®AR~®ETtĄZ†–ƈfŠŠHâÒÐA†µ\\S¸„^wĖkRzŠalŽŜ|E¨ÈNĀňZTŒ’pBh£\\ŒĎƀuXĖtKL–¶G|Ž»ĺEļĞ~ÜĢÛĊrˆO˜Ùîvd]nˆ¬VœÊĜ°R֟pM††–‚ƂªFbwžEÀˆ˜©Œž\\…¤]ŸI®¥D³|ˎ]CöAŤ¦…æ’´¥¸Lv¼€•¢ĽBaô–F~—š®²GÌҐEY„„œzk¤’°ahlV՞I^‹šCxĈPŽsB‰ƒºV‰¸@¾ªR²ĨN]´_eavSi‡vc•}p}Đ¼ƌkJœÚe thœ†_¸ ºx±ò_xN›Ë‹²‘@ƒă¡ßH©Ùñ}wkNÕ¹ÇO½¿£ĕ]ly_WìIžÇª`ŠuTÅxYĒÖ¼k֞’µ‚MžjJÚwn\\h‘œĒv]îh|’È›Ƅøègž¸Ķß ĉĈWb¹ƀdéƌNTtP[ŠöSvrCZžžaGuœbo´ŖÒÇА~¡zCI…özx¢„Pn‹•‰Èñ @ŒĥÒ¦†]ƞŠV}³ăĔñiiÄÓVépKG½Ä‘ÓávYo–C·sit‹iaÀy„ŧΡÈYDÑům}‰ý|m[węõĉZÅxUO}÷N¹³ĉo_qtă“qwµŁYلǝŕ¹tïÛUïmRCº…ˆĭ|µ›ÕÊK™½R‘ē ó]‘–GªęAx–»HO£|ām‡¡diď×YïYWªʼnOeÚtĐ«zđ¹T…ā‡úE™á²\\‹ķÍ}jYàÙÆſ¿Çdğ·ùTßÇţʄ¡XgWÀLJğ·¿ÃˆOj YÇ÷Qě‹i"]],"encodeOffsets":[[[117381,22988]],[[116552,22934]],[[116790,22617]],[[116973,22545]],[[116444,22536]],[[116931,22515]],[[116496,22490]],[[116453,22449]],[[113301,21439]],[[118726,21604]],[[118709,21486]],[[113210,20816]],[[115482,22082]],[[113171,21585]],[[113199,21590]],[[115232,22102]],[[115739,22373]],[[115134,22184]],[[113056,21175]],[[119573,21271]],[[119957,24020]],[[115859,22356]],[[116561,22649]],[[116285,22746]]]}},{"type":"Feature","id":"450000","properties":{"id":"450000","cp":[108.320004,22.82402],"name":"广西","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@H– TQ§•A"],["@@ĨʪƒLƒƊDÎĹĐCǦė¸zÚGn£¾›rªŀÜt¬@֛ڈSx~øOŒ˜ŶÐÂæȠ\\„ÈÜObĖw^oބLf¬°bI lTØB̈F£Ć¹gñĤaY“t¿¤VSñœK¸¤nM†¼‚JE±„½¸šŠño‹ÜCƆæĪ^ŠĚQÖ¦^‡ˆˆf´Q†üÜʝz¯šlzUĺš@쇀p¶n]sxtx¶@„~ÒĂJb©gk‚{°‚~c°`ԙ¬rV\\“la¼¤ôá`¯¹LC†ÆbŒxEræO‚v[H­˜„[~|aB£ÖsºdAĐzNÂðsŽÞƔ…Ĥªbƒ–ab`ho¡³F«èVloޤ™ÔRzpp®SŽĪº¨ÖƒºN…ij„d`’a”¦¤F³ºDÎńĀìŠCžĜº¦Ċ•~nS›|gźvZkCÆj°zVÈÁƔ]LÊFZg…čP­kini«‹qǀcz͔Y®¬Ů»qR×ō©DՄ‘§ƙǃŵTÉĩ±ŸıdÑnYY›IJvNĆÌØÜ Öp–}e³¦m‹©iÓ|¹Ÿħņ›|ª¦QF¢Â¬ʖovg¿em‡^ucà÷gՎuŒíÙćĝ}FϼĹ{µHK•sLSđƃr‹č¤[Ag‘oS‹ŇYMÿ§Ç{Fśbky‰lQxĕƒ]T·¶[B…ÑÏGáşşƇe€…•ăYSs­FQ}­Bƒw‘tYğÃ@~…C̀Q ×W‡j˱rÉ¥oÏ ±«ÓÂ¥•ƒ€k—ŽwWűŒmcih³K›~‰µh¯e]lµ›él•E쉕E“ďs‡’mǖŧē`ãògK_ÛsUʝ“ćğ¶hŒöŒO¤Ǜn³Žc‘`¡y‹¦C‘ez€YŠwa™–‘[ďĵűMę§]X˜Î_‚훘Û]é’ÛUćİÕBƣ±…dƒy¹T^džûÅÑŦ·‡PĻþÙ`K€¦˜…¢ÍeœĥR¿Œ³£[~Œäu¼dl‰t‚†W¸oRM¢ď\\zœ}Æzdvň–{ÎXF¶°Â_„ÒÂÏL©Ö•TmuŸ¼ãl‰›īkiqéfA„·Êµ\\őDc¥ÝF“y›Ôć˜c€űH_hL܋êĺШc}rn`½„Ì@¸¶ªVLŒŠhŒ‹\\•Ţĺk~ŽĠið°|gŒtTĭĸ^x‘vK˜VGréAé‘bUu›MJ‰VÃO¡…qĂXËS‰ģãlýàŸ_ju‡YÛÒB†œG^˜é֊¶§ŽƒEG”ÅzěƒƯ¤Ek‡N[kdåucé¬dnYpAyČ{`]þ¯T’bÜÈk‚¡Ġ•vŒàh„ÂƄ¢Jî¶²"]],"encodeOffsets":[[[111707,21520]],[[107619,25527]]]}},{"type":"Feature","id":"460000","properties":{"id":"460000","cp":[109.83119,19.031971],"name":"海南","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@š¦Ŝil¢”XƦ‘ƞò–ïè§ŞCêɕrŧůÇąĻõ™·ĉ³œ̅kÇm@ċȧƒŧĥ‰Ľʉ­ƅſ“ȓÒ˦ŝE}ºƑ[ÍĜȋ gÎfǐÏĤ¨êƺ\\Ɔ¸ĠĎvʄȀœÐ¾jNðĀÒRŒšZdž™zÐŘΰH¨Ƣb²_Ġ "],"encodeOffsets":[[112750,20508]]}},{"type":"Feature","id":"510000","properties":{"id":"510000","cp":[104.065735,30.659462],"name":"四川","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@LqKr"],["@@Š[ĻéV£ž_ţġñpG •réÏ·~ąSfy×͂·ºſƽiÍıƣıĻmHH}siaX@iǰÁÃ×t«ƒ­Tƒ¤J–JJŒyJ•ÈŠ`Ohߦ¡uËhIyCjmÿw…ZG……Ti‹SˆsO‰žB²ŸfNmsPaˆ{M{ŠõE‘^Hj}gYpaeuž¯‘oáwHjÁ½M¡pM“–uå‡mni{fk”\\oƒÎqCw†EZ¼K›ĝŠƒAy{m÷L‡wO×SimRI¯rK™õBS«sFe‡]fµ¢óY_ÆPRcue°Cbo׌bd£ŌIHgtrnyPt¦foaXďx›lBowz‹_{ÊéWiêE„GhܸºuFĈIxf®Ž•Y½ĀǙ]¤EyŸF²ċ’w¸¿@g¢§RGv»–áŸW`ÃĵJwi]t¥wO­½a[׈]`Ãi­üL€¦LabbTÀå’c}Íh™Æhˆ‹®BH€î|Ék­¤S†y£„ia©taį·Ɖ`ō¥Uh“O…ƒĝLk}©Fos‰´›Jm„µlŁu—…ø–nÑJWΪ–YÀïAetTžŅ‚ӍG™Ë«bo‰{ıwodƟ½ƒžOġܑµxàNÖ¾P²§HKv¾–]|•B‡ÆåoZ`¡Ø`ÀmºĠ~ÌЧnDž¿¤]wğ@sƒ‰rğu‰~‘Io”[é±¹ ¿žſđӉ@q‹gˆ¹zƱřaí°KtǤV»Ã[ĩǭƑ^ÇÓ@ỗs›Zϕ‹œÅĭ€Ƌ•ěpwDóÖሯneQˌq·•GCœýS]xŸ·ý‹q³•O՜Œ¶Qzßti{ř‰áÍÇWŝŭñzÇW‹pç¿JŒ™‚Xœĩè½cŒF–ÂLiVjx}\\N†ŇĖ¥Ge–“JA¼ÄHfÈu~¸Æ«dE³ÉMA|b˜Ò…˜ćhG¬CM‚õŠ„ƤąAvƒüV€éŀ‰_V̳ĐwQj´·ZeÈÁ¨X´Æ¡Qu·»Ÿ“˜ÕZ³ġqDo‰y`L¬gdp°şŠp¦ėìÅĮZްIä”h‚‘ˆzŠĵœf²å ›ĚрKp‹IN|‹„Ñz]ń……·FU×é»R³™MƒÉ»GM«€ki€™ér™}Ã`¹ăÞmȝnÁîRǀ³ĜoİzŔwǶVÚ£À]ɜ»ĆlƂ²Ġ…þTº·àUȞÏʦ¶†I’«dĽĢdĬ¿–»Ĕ׊h\\c¬†ä²GêëĤł¥ÀǿżÃÆMº}BÕĢyFVvw–ˆxBèĻĒ©Ĉ“tCĢɽŠȣ¦āæ·HĽî“ôNԓ~^¤Ɗœu„œ^s¼{TA¼ø°¢İªDè¾Ň¶ÝJ‘®Z´ğ~Sn|ªWÚ©òzPOȸ‚bð¢|‹øĞŠŒœŒQìÛÐ@Ğ™ǎRS¤Á§d…i“´ezÝúØã]Hq„kIŸþËQǦÃsǤ[E¬ÉŪÍxXƒ·ÖƁİlƞ¹ª¹|XÊwn‘ÆƄmÀêErĒtD®ċæcQƒ”E®³^ĭ¥©l}äQto˜ŖÜqƎkµ–„ªÔĻĴ¡@Ċ°B²Èw^^RsºT£ڿœQP‘JvÄz„^Đ¹Æ¯fLà´GC²‘dt˜­ĀRt¼¤ĦOðğfÔðDŨŁĞƘïžPȆ®âbMüÀXZ ¸£@Ś›»»QÉ­™]d“sÖ×_͖_ÌêŮPrĔĐÕGĂeZÜîĘqBhtO ¤tE[h|Y‹Ô‚ZśÎs´xº±UŒ’ñˆt|O’ĩĠºNbgþŠJy^dÂY Į„]Řz¦gC‚³€R`Šz’¢AjŒ¸CL„¤RÆ»@­Ŏk\\Ç´£YW}z@Z}‰Ã¶“oû¶]´^N‡Ò}èN‚ª–P˜Íy¹`S°´†ATe€VamdUĐwʄvĮÕ\\ƒu‹Æŗ¨Yp¹àZÂm™Wh{á„}WØǍ•Éüw™ga§áCNęÎ[ĀÕĪgÖɪX˜øx¬½Ů¦¦[€—„NΆL€ÜUÖ´òrÙŠxR^–†J˜k„ijnDX{Uƒ~ET{ļº¦PZc”jF²Ė@Žp˜g€ˆ¨“B{ƒu¨ŦyhoÚD®¯¢˜ WòàFΤ¨GDäz¦kŮPœġq˚¥À]€Ÿ˜eŽâÚ´ªKxī„Pˆ—Ö|æ[xäJÞĥ‚s’NÖ½ž€I†¬nĨY´®Ð—ƐŠ€mD™ŝuäđđEb…e’e_™v¡}ìęNJē}q”É埁T¯µRs¡M@}ůa†a­¯wvƉåZwž\\Z{åû^›"]],"encodeOffsets":[[[108815,30935]],[[110617,31811]]]}},{"type":"Feature","id":"520000","properties":{"id":"520000","cp":[106.713478,26.578343],"name":"贵州","childNum":3},"geometry":{"type":"MultiPolygon","coordinates":[["@@†G\\†lY£‘in"],["@@q‚|ˆ‚mc¯tχVSÎ"],["@@hÑ£Is‡NgßH†›HªķÃh_¹ƒ¡ĝħń¦uيùŽgS¯JHŸ|sÝÅtÁïyMDč»eÕtA¤{b\\}—ƒG®u\\åPFq‹wÅaD…žK°ºâ_£ùbµ”mÁ‹ÛœĹM[q|hlaªāI}тƒµ@swtwm^oµˆD鼊yV™ky°ÉžûÛR…³‚‡eˆ‡¥]RՋěħ[ƅåÛDpŒ”J„iV™™‰ÂF²I…»mN·£›LbÒYb—WsÀbŽ™pki™TZĄă¶HŒq`……ĥ_JŸ¯ae«ƒKpÝx]aĕÛPƒÇȟ[ÁåŵÏő—÷Pw}‡TœÙ@Õs«ĿÛq©½œm¤ÙH·yǥĘĉBµĨÕnđ]K„©„œá‹ŸG纍§Õßg‡ǗĦTèƤƺ{¶ÉHÎd¾ŚÊ·OÐjXWrãLyzÉAL¾ę¢bĶėy_qMĔąro¼hĊžw¶øV¤w”²Ĉ]ʚKx|`ź¦ÂÈdr„cȁbe¸›`I¼čTF´¼Óýȃr¹ÍJ©k_șl³´_pН`oÒh޶pa‚^ÓĔ}D»^Xyœ`d˜[Kv…JPhèhCrĂĚÂ^Êƌ wˆZL­Ġ£šÁbrzOIl’MM”ĪŐžËr×ÎeŦŽtw|Œ¢mKjSǘňĂStÎŦEtqFT†¾†E쬬ôxÌO¢Ÿ KгŀºäY†„”PVgŎ¦Ŋm޼VZwVlŒ„z¤…ž£Tl®ctĽÚó{G­A‡ŒÇgeš~Αd¿æaSba¥KKûj®_ć^\\ؾbP®¦x^sxjĶI_Ä X‚⼕Hu¨Qh¡À@Ëô}ޱžGNìĎlT¸ˆ…`V~R°tbÕĊ`¸úÛtπFDu€[ƒMfqGH·¥yA‰ztMFe|R‚_Gk†ChZeÚ°to˜v`x‹b„ŒDnÐ{E}šZ˜è€x—†NEފREn˜[Pv@{~rĆAB§‚EO¿|UZ~ì„Uf¨J²ĂÝÆ€‚sª–B`„s¶œfvö¦ŠÕ~dÔq¨¸º»uù[[§´sb¤¢zþFœ¢Æ…Àhˆ™ÂˆW\\ıŽËI݊o±ĭŠ£þˆÊs}¡R]ŒěƒD‚g´VG¢‚j±®è†ºÃmpU[Á›‘Œëº°r›ÜbNu¸}Žº¼‡`ni”ºÔXĄ¤¼Ôdaµ€Á_À…†ftQQgœR—‘·Ǔ’v”}Ýלĵ]µœ“Wc¤F²›OĩųãW½¯K‚©…]€{†LóµCIµ±Mß¿hŸ•©āq¬o‚½ž~@i~TUxŪÒ¢@ƒ£ÀEîôruń‚”“‚b[§nWuMÆLl¿]x}ij­€½"]],"encodeOffsets":[[[112158,27383]],[[112105,27474]],[[112095,27476]]]}},{"type":"Feature","id":"530000","properties":{"id":"530000","cp":[101.512251,24.740609],"name":"云南","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@[„ùx½}ÑRH‘YīĺûsÍn‘iEoã½Ya²ė{c¬ĝg•ĂsA•ØÅwď‚õzFjw}—«Dx¿}UũlŸê™@•HÅ­F‰¨ÇoJ´Ónũuą¡Ã¢pÒŌ“Ø TF²‚xa²ËX€‚cʋlHîAßËŁkŻƑŷÉ©h™W­æßU‡“Ës¡¦}•teèÆ¶StǀÇ}Fd£j‹ĈZĆÆ‹¤T‚č\\Dƒ}O÷š£Uˆ§~ŃG™‚åŃDĝ¸œTsd¶¶Bªš¤u¢ŌĎo~t¾ÍŶÒtD¦Ú„iôö‰€z›ØX²ghįh½Û±¯€ÿm·zR¦Ɵ`ªŊÃh¢rOԍ´£Ym¼èêf¯ŪĽn„†cÚbŒw\\zlvWžªâˆ ¦g–mĿBş£¢ƹřbĥkǫßeeZkÙIKueT»sVesb‘aĕ  ¶®dNœĄÄpªyސ¼—„³BE˜®l‡ŽGœŭCœǶwêżĔÂe„pÍÀQƞpC„–¼ŲÈ­AÎô¶R„ä’Q^Øu¬°š_Èôc´¹ò¨P΢hlϦ´Ħ“Æ´sâDŽŲPnÊD^¯°’Upv†}®BP̪–jǬx–Söwlfòªv€qĸ|`H€­viļ€ndĜ­Ćhň•‚em·FyށqóžSᝑ³X_ĞçêtryvL¤§z„¦c¦¥jnŞk˜ˆlD¤øz½ĜàžĂŧMÅ|áƆàÊcðÂF܎‚áŢ¥\\\\º™İøÒÐJĴ‡„îD¦zK²ǏÎEh~’CD­hMn^ÌöÄ©ČZÀžaü„fɭyœpį´ěFűk]Ôě¢qlÅĆÙa¶~Äqššê€ljN¬¼H„ÊšNQ´ê¼VظE††^ŃÒyŒƒM{ŒJLoÒœęæŸe±Ķ›y‰’‡gã“¯JYÆĭĘëo¥Š‰o¯hcK«z_pŠrC´ĢÖY”—¼ v¸¢RŽÅW³Â§fǸYi³xR´ďUˊ`êĿU„û€uĆBƒƣö‰N€DH«Ĉg†——Ñ‚aB{ÊNF´¬c·Åv}eÇÃGB»”If•¦HňĕM…~[iwjUÁKE•Ž‹¾dĪçW›šI‹èÀŒoÈXòyŞŮÈXâÎŚŠj|àsRy‹µÖ›–Pr´þŒ ¸^wþTDŔ–Hr¸‹žRÌmf‡żÕâCôox–ĜƌÆĮŒ›Ð–œY˜tâŦÔ@]ÈǮƒ\\μģUsȯLbîƲŚºyh‡rŒŠ@ĒԝƀŸÀ²º\\êp“’JŠ}ĠvŠqt„Ġ@^xÀ£È†¨mËÏğ}n¹_¿¢×Y_æpˆÅ–A^{½•Lu¨GO±Õ½ßM¶w’ÁĢۂP‚›Ƣ¼pcIJxŠ|ap̬HšÐŒŊSfsðBZ¿©“XÏÒK•k†÷Eû¿‰S…rEFsÕūk”óVǥʼniTL‚¡n{‹uxţÏh™ôŝ¬ğōN“‘NJkyPaq™Âğ¤K®‡YŸxÉƋÁ]āęDqçgOg†ILu—\\_gz—]W¼ž~CÔē]bµogpў_oď`´³Țkl`IªºÎȄqÔþž»E³ĎSJ»œ_f·‚adÇqƒÇc¥Á_Źw{™L^ɱćx“U£µ÷xgĉp»ĆqNē`rĘzaĵĚ¡K½ÊBzyäKXqiWPÏɸ½řÍcÊG|µƕƣG˛÷Ÿk°_^ý|_zċBZocmø¯hhcæ\\lˆMFlư£Ĝ„ÆyH“„F¨‰µêÕ]—›HA…àӄ^it `þßäkŠĤÎT~Wlÿ¨„ÔPzUC–NVv [jâôDôď[}ž‰z¿–msSh‹¯{jïğl}šĹ[–őŒ‰gK‹©U·µË@¾ƒm_~q¡f¹…ÅË^»‘f³ø}Q•„¡Ö˳gͱ^ǁ…\\ëÃA_—¿bW›Ï[¶ƛ鏝£F{īZgm@|kHǭƁć¦UĔťƒ×ë}ǝƒeďºȡȘÏíBə£āĘPªij¶“ʼnÿ‡y©n‰ď£G¹¡I›Š±LÉĺÑdĉ܇W¥˜‰}g˜Á†{aqÃ¥aŠıęÏZ—ï`"],"encodeOffsets":[[104636,22969]]}},{"type":"Feature","id":"540000","properties":{"id":"540000","cp":[89.132212,30.860361],"name":"西藏","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@hžľxŽŖ‰xƒÒVކºÅâAĪÝȆµę¯Ňa±r_w~uSÕň‘qOj]ɄQ…£Z……UDûoY’»©M[‹L¼qãË{V͕çWViŽ]ë©Ä÷àyƛh›ÚU°ŒŒa”d„cQƒ~Mx¥™cc¡ÙaSyF—ցk­ŒuRýq¿Ôµ•QĽ³aG{¿FµëªéĜÿª@¬·–K‰·àariĕĀ«V»Ŷ™Ĵū˜gèLǴŇƶaf‹tŒèBŚ£^Šâ†ǐÝ®–šM¦ÁǞÿ¬LhŸŽJ¾óƾƺcxw‹f]Y…´ƒ¦|œQLn°aœdĊ…œ\\¨o’œǀÍŎœ´ĩĀd`tÊQŞŕ|‚¨C^©œĈ¦„¦ÎJĊ{ŽëĎjª²rЉšl`¼Ą[t|¦St辉PŒÜK¸€d˜Ƅı]s¤—î_v¹ÎVòŦj˜£Əsc—¬_Ğ´|٘¦Avަw`ăaÝaa­¢e¤ı²©ªSªšÈMĄwžÉØŔì@T‘¤—Ę™\\õª@”þo´­xA s”ÂtŎKzó´ÇĊµ¢rž^nĊ­Æ¬×üGž¢‚³ {âĊ]š™G‚~bÀgVjzlhǶf€žOšfdЉªB]pj„•TO–tĊ‚n¤}®¦ƒČ¥d¢¼»ddš”Y¼Žt—¢eȤJ¤}Ǿ¡°§¤AГlc@ĝ”sªćļđAç‡wx•UuzEÖġ~AN¹ÄÅȀݦ¿ģŁéì±H…ãd«g[؉¼ēÀ•cīľġ¬cJ‘µ…ÐʥVȝ¸ßS¹†ý±ğkƁ¼ą^ɛ¤Ûÿ‰b[}¬ōõÃ]ËNm®g@•Bg}ÍF±ǐyL¥íCˆƒIij€Ï÷њį[¹¦[⚍EÛïÁÉdƅß{âNÆāŨߝ¾ě÷yC£‡k­´ÓH@¹†TZ¥¢įƒ·ÌAЧ®—Zc…v½ŸZ­¹|ŕWZqgW“|ieZÅYVӁqdq•bc²R@†c‡¥Rã»Ge†ŸeƃīQ•}J[ғK…¬Ə|o’ėjġĠÑN¡ð¯EBčnwôɍėªƒ²•CλŹġǝʅįĭạ̃ūȹ]ΓͧgšsgȽóϧµǛ†ęgſ¶ҍć`ĘąŌJޚä¤rÅň¥ÖÁUětęuůÞiĊÄÀ\\Æs¦ÓRb|Â^řÌkÄŷ¶½÷‡f±iMݑ›‰@ĥ°G¬ÃM¥n£Øą‚ğ¯ß”§aëbéüÑOčœk£{\\‘eµª×M‘šÉfm«Ƒ{Å׃Gŏǩãy³©WÑăû‚··‘Q—òı}¯ã‰I•éÕÂZ¨īès¶ZÈsŽæĔTŘvŽgÌsN@îá¾ó@‰˜ÙwU±ÉT廣TđŸWxq¹Zo‘b‹s[׌¯cĩv‡Œėŧ³BM|¹k‰ªħ—¥TzNYnݍßpęrñĠĉRS~½ŠěVVе‚õ‡«ŒM££µB•ĉ¥áºae~³AuĐh`Ü³ç@BۘïĿa©|z²Ý¼D”£à貋ŸƒIƒû›I ā€óK¥}rÝ_Á´éMaň¨€~ªSĈ½Ž½KÙóĿeƃÆBŽ·¬ën×W|Uº}LJrƳ˜lŒµ`bÔ`QˆˆÐÓ@s¬ñIŒÍ@ûws¡åQÑßÁ`ŋĴ{Ī“T•ÚÅTSij‚‹Yo|Ç[ǾµMW¢ĭiÕØ¿@˜šMh…pÕ]j†éò¿OƇĆƇp€êĉâlØw–ěsˆǩ‚ĵ¸c…bU¹ř¨WavquSMzeo_^gsÏ·¥Ó@~¯¿RiīB™Š\\”qTGªÇĜçPoŠÿfñòą¦óQīÈáP•œābß{ƒZŗĸIæÅ„hnszÁCËìñšÏ·ąĚÝUm®ó­L·ăU›Èíoù´Êj°ŁŤ_uµ^‘°Œìǖ@tĶĒ¡Æ‡M³Ģ«˜İĨÅ®ğ†RŽāð“ggheÆ¢z‚Ê©Ô\\°ÝĎz~ź¤Pn–MĪÖB£Ÿk™n鄧żćŠ˜ĆK„ǰ¼L¶è‰âz¨u¦¥LDĘz¬ýÎmĘd¾ß”Fz“hg²™Fy¦ĝ¤ċņbΛ@y‚Ąæm°NĮZRÖíŽJ²öLĸÒ¨Y®ƌÐV‰à˜tt_ڀÂyĠzž]Ţh€zĎ{†ĢX”ˆc|šÐqŽšfO¢¤ög‚ÌHNŽ„PKŖœŽ˜Uú´xx[xˆvĐCûŠìÖT¬¸^}Ìsòd´_އKgžLĴ…ÀBon|H@–Êx˜—¦BpŰˆŌ¿fµƌA¾zLjRxжF”œkĄźRzŀˆ~¶[”´Hnª–VƞuĒ­È¨ƎcƽÌm¸ÁÈM¦x͊ëÀxdžB’šú^´W†£–d„kɾĬpœw‚˂ØɦļĬIŚœÊ•n›Ŕa¸™~J°î”lɌxĤÊÈðhÌ®‚g˜T´øŽàCˆŽÀ^ªerrƘdž¢İP|Ė ŸWœªĦ^¶´ÂL„aT±üWƜ˜ǀRšŶUńšĖ[QhlLüA†‹Ü\\†qR›Ą©"],"encodeOffsets":[[90849,37210]]}},{"type":"Feature","id":"610000","properties":{"id":"610000","cp":[108.948024,34.263161],"name":"陕西","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@˜p¢—ȮµšûG™Ħ}Ħšðǚ¶òƄ€jɂz°{ºØkÈęâ¦jª‚Bg‚\\œċ°s¬Ž’]jžú ‚E”Ȍdž¬s„t‡”RˆÆdĠݎwܔ¸ôW¾ƮłÒ_{’Ìšû¼„jº¹¢GǪÒ¯ĘƒZ`ºŊƒecņąš~BÂgzpâēòYǠȰÌTΨÂWœ|fcŸă§uF—Œ@NŸ¢XLƒŠRMº[ğȣſï|¥J™kc`sʼnǷ’Y¹‹W@µ÷K…ãï³ÛIcñ·VȋڍÒķø©—þ¥ƒy‚ÓŸğęmWµÎumZyOŅƟĥÓ~sÑL¤µaŅY¦ocyZ{‰y c]{ŒTa©ƒ`U_Ěē£ωÊƍKù’K¶ȱÝƷ§{û»ÅÁȹÍéuij|¹cÑd‘ŠìUYƒŽO‘uF–ÕÈYvÁCqӃT•Ǣí§·S¹NgŠV¬ë÷Át‡°Dد’C´ʼnƒópģ}„ċcE˅FŸŸéGU¥×K…§­¶³B‹Č}C¿åċ`wġB·¤őcƭ²ő[Å^axwQO…ÿEËߌ•ĤNĔŸwƇˆÄŠńwĪ­Šo[„_KÓª³“ÙnK‰Çƒěœÿ]ď€ă_d©·©Ýŏ°Ù®g]±„Ÿ‡ß˜å›—¬÷m\\›iaǑkěX{¢|ZKlçhLt€Ňîŵ€œè[€É@ƉĄEœ‡tƇÏ˜³­ħZ«mJ…›×¾‘MtÝĦ£IwÄå\\Õ{‡˜ƒOwĬ©LÙ³ÙgBƕŀr̛ĢŭO¥lãyC§HÍ£ßEñŸX¡—­°ÙCgpťz‘ˆb`wI„vA|§”‡—hoĕ@E±“iYd¥OϹS|}F@¾oAO²{tfžÜ—¢Fǂ҈W²°BĤh^Wx{@„¬‚­F¸¡„ķn£P|ŸªĴ@^ĠĈæb–Ôc¶l˜Yi…–^Mi˜cϰÂ[ä€vï¶gv@À“Ĭ·lJ¸sn|¼u~a]’ÆÈtŌºJp’ƒþ£KKf~ЦUbyäIšĺãn‡Ô¿^­žŵMT–hĠܤko¼Ŏìąǜh`[tŒRd²IJ_œXPrɲ‰l‘‚XžiL§àƒ–¹ŽH˜°Ȧqº®QC—bA†„ŌJ¸ĕÚ³ĺ§ `d¨YjžiZvRĺ±öVKkjGȊĐePОZmļKÀ€‚[ŠŽ`ösìh†ïÎoĬdtKÞ{¬èÒÒBŒÔpIJÇĬJŊ¦±J«ˆY§‹@·pH€µàåVKe›pW†ftsAÅqC·¬ko«pHÆuK@oŸHĆۄķhx“e‘n›S³àǍrqƶRbzy€¸ËАl›¼EºpĤ¼Œx¼½~Ğ’”à@†ÚüdK^ˆmÌSj"],"encodeOffsets":[[110234,38774]]}},{"type":"Feature","id":"620000","properties":{"id":"620000","cp":[103.823557,36.058039],"name":"甘肃","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@VuUv"],["@@ũ‹EĠtt~nkh`Q‰¦ÅÄÜdw˜Ab×ĠąJˆ¤DüègĺqBqœj°lI¡ĨÒ¤úSHbš‡ŠjΑBаaZˆ¢KJŽ’O[|A£žDx}Nì•HUnrk„ kp€¼Y kMJn[aG‚áÚÏ[½rc†}aQxOgsPMnUs‡nc‹Z…ž–sKúvA›t„Þġ’£®ĀYKdnFwš¢JE°”Latf`¼h¬we|€Æ‡šbj}GA€·~WŽ”—`†¢MC¤tL©IJ°qdf”O‚“bÞĬ¹ttu`^ZúE`Œ[@„Æsîz®¡’C„ƳƜG²“R‘¢R’m”fŽwĸg܃‚ą G@pzJM½mŠhVy¸uÈÔO±¨{LfæU¶ßGĂq\\ª¬‡²I‚¥IʼnÈīoı‹ÓÑAçÑ|«LÝcspīðÍg…të_õ‰\\ĉñLYnĝg’ŸRǡÁiHLlõUĹ²uQjYi§Z_c¨Ÿ´ĹĖÙ·ŋI…ƒaBD˜­R¹ȥr—¯G•ºß„K¨jWk’ɱŠOq›Wij\\a­‹Q\\sg_ĆǛōëp»£lğۀgS•ŶN®À]ˆÓäm™ĹãJaz¥V}‰Le¤L„ýo‘¹IsŋÅÇ^‘Žbz…³tmEÁ´aйcčecÇN•ĊãÁ\\蝗dNj•]j†—ZµkÓda•ćå]ğij@ ©O{¤ĸm¢ƒE·®ƒ«|@Xwg]A챝‡XǁÑdzªc›wQÚŝñsÕ³ÛV_ýƒ˜¥\\ů¥©¾÷w—Ž©WÕÊĩhÿÖÁRo¸V¬âDb¨šhûx–Ê×nj~Zâƒg|šXÁnßYoº§ZÅŘvŒ[„ĭÖʃuďxcVbnUSf…B¯³_Tzº—ΕO©çMÑ~Mˆ³]µ^püµ”ŠÄY~y@X~¤Z³€[Èōl@®Å¼£QKƒ·Di‹¡By‘ÿ‰Q_´D¥hŗyƒ^ŸĭÁZ]cIzý‰ah¹MĪğP‘s{ò‡‹‘²Vw¹t³Ŝˁ[ŽÑ}X\\gsFŸ£sPAgěp×ëfYHāďÖqēŭOÏë“dLü•\\iŒ”t^c®šRʺ¶—¢H°mˆ‘rYŸ£BŸ¹čIoľu¶uI]vģSQ{ƒUŻ”Å}QÂ|̋°ƅ¤ĩŪU ęĄžÌZҞ\\v˜²PĔ»ƢNHƒĂyAmƂwVmž`”]ȏb•”H`‰Ì¢²ILvĜ—H®¤Dlt_„¢JJÄämèÔDëþgºƫ™”aʎÌrêYi~ ÎݤNpÀA¾Ĕ¼b…ð÷’Žˆ‡®‚”üs”zMzÖĖQdȨý†v§Tè|ªH’þa¸|šÐ ƒwKĢx¦ivr^ÿ ¸l öæfƟĴ·PJv}n\\h¹¶v†·À|\\ƁĚN´Ĝ€çèÁz]ġ¤²¨QÒŨTIl‡ªťØ}¼˗ƦvÄùØE‹’«Fï˛Iq”ōŒTvāÜŏ‚íÛߜÛV—j³âwGăÂíNOŠˆŠPìyV³ʼnĖýZso§HіiYw[߆\\X¦¥c]ÔƩÜ·«j‡ÐqvÁ¦m^ċ±R™¦΋ƈťĚgÀ»IïĨʗƮްƝ˜ĻþÍAƉſ±tÍEÕÞāNU͗¡\\ſčåÒʻĘm ƭÌŹöʥ’ëQ¤µ­ÇcƕªoIýˆ‰Iɐ_mkl³ă‰Ɠ¦j—¡Yz•Ňi–}Msßõ–īʋ —}ƒÁVmŸ_[n}eı­Uĥ¼‘ª•I{ΧDӜƻėoj‘qYhĹT©oūĶ£]ďxĩ‹ǑMĝ‰q`B´ƃ˺Ч—ç~™²ņj@”¥@đ´ί}ĥtPńǾV¬ufӃÉC‹tÓ̻‰…¹£G³€]ƖƾŎĪŪĘ̖¨ʈĢƂlɘ۪üºňUðǜȢƢż̌ȦǼ‚ĤŊɲĖ­Kq´ï¦—ºĒDzņɾªǀÞĈĂD†½ĄĎÌŗĞrôñnŽœN¼â¾ʄľԆ|DŽŽ֦ज़ȗlj̘̭ɺƅêgV̍ʆĠ·ÌĊv|ýĖÕWĊǎÞ´õ¼cÒÒBĢ͢UĜð͒s¨ňƃLĉÕÝ@ɛƯ÷¿Ľ­ĹeȏijëCȚDŲyê×Ŗyò¯ļcÂßY…tÁƤyAã˾J@ǝrý‹‰@¤…rz¸oP¹ɐÚyᐇHŸĀ[Jw…cVeȴϜ»ÈŽĖ}ƒŰŐèȭǢόĀƪÈŶë;Ñ̆ȤМľĮEŔ—ĹŊũ~ËUă{ŸĻƹɁύȩþĽvĽƓÉ@ē„ĽɲßǐƫʾǗĒpäWÐxnsÀ^ƆwW©¦cÅ¡Ji§vúF¶Ž¨c~c¼īŒeXǚ‹\\đ¾JŽwÀďksãA‹fÕ¦L}wa‚o”Z’‹D½†Ml«]eÒÅaɲáo½FõÛ]ĻÒ¡wYR£¢rvÓ®y®LF‹LzĈ„ôe]gx}•|KK}xklL]c¦£fRtív¦†PĤoH{tK"]],"encodeOffsets":[[[108619,36299]],[[108589,36341]]]}},{"type":"Feature","id":"630000","properties":{"id":"630000","cp":[96.778916,35.623178],"name":"青海","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@InJm"],["@@CƒÆ½OŃĦsΰ~dz¦@@“Ņiš±è}ؘƄ˹A³r_ĞŠǒNΌĐw¤^ŬĵªpĺSZg’rpiƼĘԛ¨C|͖J’©Ħ»®VIJ~f\\m `Un„˜~ʌŸ•ĬàöNt•~ňjy–¢Zi˜Ɣ¥ĄŠk´nl`JʇŠJþ©pdƖ®È£¶ìRʦ‘źõƮËnŸʼėæÑƀĎ[‚˜¢VÎĂMÖÝÎF²sƊƀÎBļýƞ—¯ʘƭðħ¼Jh¿ŦęΌƇš¥²Q]Č¥nuÂÏriˆ¸¬ƪÛ^Ó¦d€¥[Wà…x\\ZŽjҕ¨GtpþYŊĕ´€zUO뇉P‰îMĄÁxH´á˜iÜUà›îÜՁĂÛSuŎ‹r“œJð̬EŒ‘FÁú×uÃÎkr“Ē{V}İ«O_ÌËĬ©ŽÓŧSRѱ§Ģ£^ÂyèçěM³Ƃę{[¸¿u…ºµ[gt£¸OƤĿéYŸõ·kŸq]juw¥Dĩƍ€õÇPéĽG‘ž©ã‡¤G…uȧþRcÕĕNy“yût“ˆ­‡ø‘†ï»a½ē¿BMoᣟÍj}éZËqbʍš“Ƭh¹ìÿÓAçãnIáI`ƒks£CG­ě˜Uy×Cy•…’Ÿ@¶ʡÊBnāzG„ơMē¼±O÷õJËĚăVŸĪũƆ£Œ¯{ËL½Ìzż“„VR|ĠTbuvJvµhĻĖH”Aëáa…­OÇðñęNw‡…œľ·L›mI±íĠĩPÉ×®ÿs—’cB³±JKßĊ«`…ađ»·QAmO’‘Vţéÿ¤¹SQt]]Çx€±¯A@ĉij¢Ó祖•ƒl¶ÅÛr—ŕspãRk~¦ª]Į­´“FR„åd­ČsCqđéFn¿Åƃm’Éx{W©ºƝºįkÕƂƑ¸wWūЩÈFž£\\tÈ¥ÄRÈýÌJ ƒlGr^×äùyÞ³fj”c†€¨£ÂZ|ǓMĝšÏ@ëÜőR‹›ĝ‰Œ÷¡{aïȷPu°ËXÙ{©TmĠ}Y³’­ÞIňµç½©C¡į÷¯B»|St»›]vƒųƒs»”}MÓ ÿʪƟǭA¡fs˜»PY¼c¡»¦c„ċ­¥£~msĉP•–Siƒ^o©A‰Šec‚™PeǵŽkg‚yUi¿h}aH™šĉ^|ᴟ¡HØûÅ«ĉ®]m€¡qĉ¶³ÈyôōLÁst“BŸ®wn±ă¥HSò뚣˜S’ë@לÊăxÇN©™©T±ª£IJ¡fb®ÞbŽb_Ą¥xu¥B—ž{łĝ³«`d˜Ɛt—¤ťiñžÍUuºí`£˜^tƃIJc—·ÛLO‹½Šsç¥Ts{ă\\_»™kϊ±q©čiìĉ|ÍIƒ¥ć¥›€]ª§D{ŝŖÉR_sÿc³Īō›ƿΑ›§p›[ĉ†›c¯bKm›R¥{³„Z†e^ŽŒwx¹dƽŽôIg §Mĕ ƹĴ¿—ǣÜ̓]‹Ý–]snåA{‹eŒƭ`ǻŊĿ\\ijŬű”YÂÿ¬jĖqŽßbЏ•L«¸©@ěĀ©ê¶ìÀEH|´bRľž–Ó¶rÀQþ‹vl®Õ‚E˜TzÜdb ˜hw¤{LR„ƒd“c‹b¯‹ÙVgœ‚ƜßzÃô쮍^jUèXΖ|UäÌ»rKŽ\\ŒªN‘¼pZCü†VY††¤ɃRi^rPҒTÖ}|br°qňb̰ªiƶGQ¾²„x¦PœmlŜ‘[Ĥ¡ΞsĦŸÔÏâ\\ªÚŒU\\f…¢N²§x|¤§„xĔsZPòʛ²SÐqF`ª„VƒÞŜĶƨVZŒÌL`ˆ¢dŐIqr\\oäõ–F礻Ŷ×h¹]Clـ\\¦ďÌį¬řtTӺƙgQÇÓHţĒ”´ÃbEÄlbʔC”|CˆŮˆk„Ʈ[ʼ¬ňœ´KŮÈΰÌζƶlð”ļA†TUvdTŠG†º̼ŠÔ€ŒsÊDԄveOg"]],"encodeOffsets":[[[105308,37219]],[[95370,40081]]]}},{"type":"Feature","id":"640000","properties":{"id":"640000","cp":[106.278179,37.26637],"name":"宁夏","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@KëÀęĞ«OęȿȕŸı]ʼn¡åįÕÔ«Ǵõƪ™ĚQÐZhv K°›öqÀѐS[ÃÖHƖčË‡nL]ûc…Ùß@‚“ĝ‘¾}w»»‹oģF¹œ»kÌÏ·{zPƒ§B­¢íyÅt@ƒ@áš]Yv_ssģ¼i߁”ĻL¾ġsKD£¡N_…“˜X¸}B~Haiˆ™Åf{«x»ge_bs“KF¯¡Ix™mELcÿZ¤­Ģ‘ƒÝœsuBLù•t†ŒYdˆmVtNmtOPhRw~bd…¾qÐ\\âÙH\\bImlNZŸ»loƒŸqlVm–Gā§~QCw¤™{A\\‘PKŸNY‡¯bF‡kC¥’sk‹Šs_Ã\\ă«¢ħkJi¯r›rAhĹûç£CU‡ĕĊ_ԗBixÅُĄnªÑaM~ħpOu¥sîeQ¥¤^dkKwlL~{L~–hw^‚ófćƒKyEŒ­K­zuÔ¡qQ¤xZÑ¢^ļöܾEpž±âbÊÑÆ^fk¬…NC¾‘Œ“YpxbK~¥Že֎ŒäBlt¿Đx½I[ĒǙŒWž‹f»Ĭ}d§dµùEuj¨‚IÆ¢¥dXªƅx¿]mtÏwßR͌X¢͎vÆzƂZò®ǢÌʆCrâºMÞzžÆMҔÊÓŊZľ–r°Î®Ȉmª²ĈUªĚøºˆĮ¦ÌĘk„^FłĬhĚiĀ˾iİbjÕ"],["@@mfwěwMrŢªv@G‰"]],"encodeOffsets":[[[109366,40242]],[[108600,36303]]]}},{"type":"Feature","id":"650000","properties":{"id":"650000","cp":[85.617733,40.792818],"name":"新疆","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@QØĔ²X¨”~ǘBºjʐߨvK”ƔX¨vĊOžÃƒ·¢i@~c—‡ĝe_«”Eš“}QxgɪëÏÃ@sÅyXoŖ{ô«ŸuX…ê•Îf`œC‚¹ÂÿÐGĮÕĞXŪōŸMźÈƺQèĽôe|¿ƸJR¤ĘEjcUóº¯Ĩ_ŘÁMª÷Ð¥Oéȇ¿ÖğǤǷÂF҇zÉx[]­Ĥĝ‰œ¦EP}ûƥé¿İƷTėƫœŕƅ™ƱB»Đ±’ēO…¦E–•}‘`cȺrĦáŖuҞª«IJ‡πdƺÏØZƴwʄ¤ĖGЙǂZ̓èH¶}ÚZצʥĪï|ÇĦMŔ»İĝLj‹ì¥Βœba­¯¥ǕǚkĆŵĦɑĺƯxūД̵nơʃĽá½M»›òmqóŘĝč˾ăC…ćāƿÝɽ©DZŅ¹đ¥˜³ðLrÁ®ɱĕģʼnǻ̋ȥơŻǛȡVï¹Ň۩ûkɗġƁ§ʇė̕ĩũƽō^ƕŠUv£ƁQï“Ƶkŏ½ΉÃŭdzLқʻ«ƭ\\lƒ‡ŭD‡“{ʓDkaFÃÄa“³ŤđÔGRÈƚhSӹŚsİ«ĐË[¥ÚDkº^Øg¼ŵ¸£EÍö•€ůʼnT¡c_‡ËKY‹ƧUśĵ„݃U_©rETÏʜ±OñtYw獃{£¨uM³x½şL©Ùá[ÓÐĥ Νtģ¢\\‚ś’nkO›w¥±ƒT»ƷFɯàĩÞáB¹Æ…ÑUw„੍žĽw[“mG½Èå~‡Æ÷QyŠěCFmĭZī—ŵVÁ™ƿQƛ—ûXS²‰b½KϽĉS›©ŷXĕŸ{ŽĕK·¥Ɨcqq©f¿]‡ßDõU³h—­gËÇïģÉɋw“k¯í}I·šœbmœÉ–ř›īJɥĻˁ×xo›ɹī‡l•c…¤³Xù]‘™DžA¿w͉ì¥wÇN·ÂËnƾƍdǧđ®Ɲv•Um©³G\\“}µĿ‡QyŹl㓛µEw‰LJQ½yƋBe¶ŋÀů‡ož¥A—˜Éw@•{Gpm¿Aij†ŽKLhˆ³`ñcËtW‚±»ÕS‰ëüÿďD‡u\\wwwù³—V›LŕƒOMËGh£õP¡™er™Ïd{“‡ġWÁ…č|yšg^ğyÁzÙs`—s|ÉåªÇ}m¢Ń¨`x¥’ù^•}ƒÌ¥H«‰Yªƅ”Aйn~Ꝛf¤áÀz„gŠÇDIԝ´AňĀ҄¶ûEYospõD[{ù°]u›Jq•U•|Soċxţ[õÔĥkŋÞŭZ˺óYËüċrw €ÞkrťË¿XGÉbřaDü·Ē÷Aê[Ää€I®BÕИÞ_¢āĠpŠÛÄȉĖġDKwbm‡ÄNô‡ŠfœƫVÉvi†dz—H‘‹QµâFšù­Âœ³¦{YGžƒd¢ĚÜO „€{Ö¦ÞÍÀPŒ^b–ƾŠlŽ[„vt×ĈÍE˨¡Đ~´î¸ùÎh€uè`¸ŸHÕŔVºwĠââWò‡@{œÙNÝ´ə²ȕn{¿¥{l—÷eé^e’ďˆXj©î\\ªÑò˜Üìc\\üqˆÕ[Č¡xoÂċªbØ­Œø|€¶ȴZdÆÂšońéŒGš\\”¼C°ÌƁn´nxšÊOĨ’ہƴĸ¢¸òTxÊǪMīИÖŲÃɎOvˆʦƢ~FއRěò—¿ġ~åŊœú‰Nšžš¸qŽ’Ę[Ĕ¶ÂćnÒPĒÜvúĀÊbÖ{Äî¸~Ŕünp¤ÂH¾œĄYÒ©ÊfºmԈĘcDoĬMŬ’˜S¤„s²‚”ʘچžȂVŦ –ŽèW°ªB|IJXŔþÈJĦÆæFĚêŠYĂªĂ]øªŖNÞüA€’fɨJ€˜¯ÎrDDšĤ€`€mz\\„§~D¬{vJÂ˜«lµĂb–¤p€ŌŰNĄ¨ĊXW|ų ¿¾ɄĦƐMT”‡òP˜÷fØĶK¢ȝ˔Sô¹òEð­”`Ɩ½ǒÂň×äı–§ĤƝ§C~¡‚hlå‚ǺŦŞkâ’~}ŽFøàIJaĞ‚fƠ¥Ž„Ŕdž˜®U¸ˆźXœv¢aƆúŪtŠųƠjd•ƺŠƺÅìnrh\\ĺ¯äɝĦ]èpĄ¦´LƞĬŠ´ƤǬ˼Ēɸ¤rºǼ²¨zÌPðŀbþ¹ļD¢¹œ\\ĜÑŚŸ¶ZƄ³àjĨoâŠȴLʉȮŒĐ­ĚăŽÀêZǚŐ¤qȂ\\L¢ŌİfÆs|zºeªÙæ§΢{Ā´ƐÚ¬¨Ĵà²łhʺKÞºÖTŠiƢ¾ªì°`öøu®Ê¾ãØ"],"encodeOffsets":[[88824,50096]]}},{"type":"Feature","id":"110000","properties":{"id":"110000","cp":[116.405285,39.904989],"name":"北京","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@ĽOÁ›ûtŷmiÍt_H»Ĩ±d`й­{bw…Yr“³S]§§o¹€qGtm_Sŧ€“oa›‹FLg‘QN_•dV€@Zom_ć\\ߚc±x¯oœRcfe…£’o§ËgToÛJíĔóu…|wP¤™XnO¢ÉˆŦ¯rNÄā¤zâŖÈRpŢZŠœÚ{GŠrFt¦Òx§ø¹RóäV¤XdˆżâºWbwڍUd®bêņ¾‘jnŎGŃŶŠnzÚSeîĜZczî¾i]͜™QaúÍÔiþĩȨWĢ‹ü|Ėu[qb[swP@ÅğP¿{\\‡¥A¨Ï‘Ѩj¯ŠX\\¯œMK‘pA³[H…īu}}"],"encodeOffsets":[[120023,41045]]}},{"type":"Feature","id":"120000","properties":{"id":"120000","cp":[117.190182,39.125596],"name":"天津","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@ŬgX§Ü«E…¶Ḟ“¬O_™ïlÁg“z±AXe™µÄĵ{¶]gitgšIj·›¥îakS€‰¨ÐƎk}ĕ{gB—qGf{¿a†U^fI“ư‹³õ{YƒıëNĿžk©ïËZŏ‘R§òoY×Ógc…ĥs¡bġ«@dekąI[nlPqCnp{ˆō³°`{PNdƗqSÄĻNNâyj]äžÒD ĬH°Æ]~¡HO¾ŒX}ÐxŒgp“gWˆrDGˆŒpù‚Š^L‚ˆrzWxˆZ^¨´T\\|~@I‰zƒ–bĤ‹œjeĊªz£®Ĕvě€L†mV¾Ô_ȔNW~zbĬvG†²ZmDM~”~"],"encodeOffsets":[[120237,41215]]}},{"type":"Feature","id":"310000","properties":{"id":"310000","cp":[121.472644,31.231706],"name":"上海","childNum":6},"geometry":{"type":"MultiPolygon","coordinates":[["@@ɧư¬EpƸÁxc‡"],["@@©„ªƒ"],["@@”MA‹‘š"],["@@Qp݁E§ÉC¾"],["@@bŝՕÕEȣÚƥêImɇǦèÜĠŒÚžÃƌÃ͎ó"],["@@ǜûȬɋŠŭ™×^‰sYŒɍDŋ‘ŽąñCG²«ªč@h–_p¯A{‡oloY€¬j@IJ`•gQڛhr|ǀ^MIJvtbe´R¯Ô¬¨YŽô¤r]ì†Ƭį"]],"encodeOffsets":[[[124702,32062]],[[124547,32200]],[[124808,31991]],[[124726,32110]],[[124903,32376]],[[124438,32149]]]}},{"type":"Feature","id":"500000","properties":{"id":"500000","cp":[107.304962,29.533155],"name":"重庆","childNum":2},"geometry":{"type":"MultiPolygon","coordinates":[["@@vjG~nGŘŬĶȂƀƾ¹¸ØÎezĆT¸}êЖqHŸðqĖ䒊¥^CƒIj–²p…\\_ æüY|[YxƊæuž°xb®…Űb@~¢NQt°¶‚S栓Ê~rljĔëĚ¢~šuf`‘‚†fa‚ĔJåĊ„nÖ]„jƎćÊ@Š£¾a®£Ű{ŶĕF‹ègLk{Y|¡ĜWƔtƬJÑxq‹±ĢN´‰òK‰™–LÈüD|s`ŋ’ć]ƒÃ‰`đŒMûƱ½~Y°ħ`ƏíW‰½eI‹½{aŸ‘OIrÏ¡ĕŇa†p†µÜƅġ‘œ^ÖÛbÙŽŏml½S‹êqDu[R‹ãË»†ÿw`»y‘¸_ĺę}÷`M¯ċfCVµqʼn÷Z•gg“Œ`d½pDO‡ÎCnœ^uf²ènh¼WtƏxRGg¦…pV„†FI±ŽG^ŒIc´ec‡’G•ĹÞ½sëĬ„h˜xW‚}Kӈe­Xsbk”F¦›L‘ØgTkïƵNï¶}Gy“w\\oñ¡nmĈzjŸ•@™Óc£»Wă¹Ój“_m»ˆ¹·~MvÛaqœ»­‰êœ’\\ÂoVnŽÓØÍ™²«‹bq¿efE „€‹Ĝ^Qž~ Évý‡ş¤²Į‰pEİ}zcĺƒL‹½‡š¿gņ›¡ýE¡ya£³t\\¨\\vú»¼§·Ñr_oÒý¥u‚•_n»_ƒ•At©Þűā§IVeëƒY}{VPÀFA¨ąB}q@|Ou—\\Fm‰QF݅Mw˜å}]•€|FmϋCaƒwŒu_p—¯sfÙgY…DHl`{QEfNysBЦzG¸rHe‚„N\\CvEsÐùÜ_·ÖĉsaQ¯€}_U‡†xÃđŠq›NH¬•Äd^ÝŰR¬ã°wećJEž·vÝ·Hgƒ‚éFXjÉê`|yŒpxkAwœWĐpb¥eOsmzwqChóUQl¥F^laf‹anòsr›EvfQdÁUVf—ÎvÜ^efˆtET¬ôA\\œ¢sJŽnQTjP؈xøK|nBz‰„œĞ»LY‚…FDxӄvr“[ehľš•vN”¢o¾NiÂxGp⬐z›bfZo~hGi’]öF|‰|Nb‡tOMn eA±ŠtPT‡LjpYQ|†SH††YĀxinzDJ€Ìg¢và¥Pg‰_–ÇzII‹€II•„£®S¬„Øs쐣ŒN"],["@@ifjN@s"]],"encodeOffsets":[[[109628,30765]],[[111725,31320]]]}},{"type":"Feature","id":"810000","properties":{"id":"810000","cp":[114.173355,22.320048],"name":"香港","childNum":5},"geometry":{"type":"MultiPolygon","coordinates":[["@@AlBk"],["@@mŽn"],["@@EpFo"],["@@ea¢pl¸Eõ¹‡hj[ƒ]ÔCΖ@lj˜¡uBXŸ…•´‹AI¹…[‹yDUˆ]W`çwZkmc–…M›žp€Åv›}I‹oJlcaƒfёKްä¬XJmРđhI®æÔtSHn€Eˆ„ÒrÈc"],["@@rMUw‡AS®€e"]],"encodeOffsets":[[[117111,23002]],[[117072,22876]],[[117045,22887]],[[116975,23082]],[[116882,22747]]]}},{"type":"Feature","id":"820000","properties":{"id":"820000","cp":[113.54909,22.198951],"name":"澳门","childNum":1},"geometry":{"type":"Polygon","coordinates":["@@kÊd°å§s"],"encodeOffsets":[[116279,22639]]}}],"UTF8Encoding":true} \ No newline at end of file diff --git a/front-end/public/static/css/loading.css b/front-end/public/static/css/loading.css new file mode 100644 index 0000000..a9ee0fb --- /dev/null +++ b/front-end/public/static/css/loading.css @@ -0,0 +1,96 @@ +.first-loading-wrp { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 90vh; + min-height: 90vh; +} + +.first-loading-wrp > h1 { + font-size: 28px; + font-weight: bolder; +} + +.first-loading-wrp .loading-wrp { + display: flex; + align-items: center; + justify-content: center; + padding: 98px; +} + +.dot { + position: relative; + box-sizing: border-box; + display: inline-block; + width: 64px; + height: 64px; + font-size: 64px; + transform: rotate(45deg); + animation: antRotate 1.2s infinite linear; +} + +.dot i { + position: absolute; + display: block; + width: 28px; + height: 28px; + background-color: #1890ff; + border-radius: 100%; + opacity: 0.3; + transform: scale(0.75); + transform-origin: 50% 50%; + animation: antSpinMove 1s infinite linear alternate; +} + +.dot i:nth-child(1) { + top: 0; + left: 0; +} + +.dot i:nth-child(2) { + top: 0; + right: 0; + -webkit-animation-delay: 0.4s; + animation-delay: 0.4s; +} + +.dot i:nth-child(3) { + right: 0; + bottom: 0; + -webkit-animation-delay: 0.8s; + animation-delay: 0.8s; +} + +.dot i:nth-child(4) { + bottom: 0; + left: 0; + -webkit-animation-delay: 1.2s; + animation-delay: 1.2s; +} + +@keyframes antRotate { + to { + -webkit-transform: rotate(405deg); + transform: rotate(405deg); + } +} + +@-webkit-keyframes antRotate { + to { + -webkit-transform: rotate(405deg); + transform: rotate(405deg); + } +} + +@keyframes antSpinMove { + to { + opacity: 1; + } +} + +@-webkit-keyframes antSpinMove { + to { + opacity: 1; + } +} diff --git a/front-end/scripts/compress.js b/front-end/scripts/compress.js new file mode 100644 index 0000000..c69960b --- /dev/null +++ b/front-end/scripts/compress.js @@ -0,0 +1,87 @@ +const fs = require('fs') +const path = require('path') +const archiver = require('archiver') + +// 压缩文件名 +const zipFileName = `dist.zip` +const zipFilePath = path.join(__dirname, '..', 'dist', zipFileName) + +// 创建输出流 +const output = fs.createWriteStream(zipFilePath) +const archive = archiver('zip', { + zlib: { level: 9 }, // 设置压缩级别 +}) + +// 监听错误事件 +archive.on('error', (err) => { + throw err +}) + +// 监听关闭事件 +output.on('close', () => { + const sizeInMB = (archive.pointer() / 1024 / 1024).toFixed(2) + console.log(`✅ 压缩完成!`) + console.log(`📦 文件名: ${zipFileName}`) + console.log(`📏 文件大小: ${sizeInMB} MB`) + console.log(`📍 文件路径: ${zipFilePath}`) +}) + +// 监听警告事件 +archive.on('warning', (err) => { + if (err.code === 'ENOENT') { + console.warn('⚠️ 警告:', err.message) + } else { + throw err + } +}) + +// 管道输出 +archive.pipe(output) + +// 检查dist目录是否存在 +const distPath = path.join(__dirname, '..', 'dist') +if (!fs.existsSync(distPath)) { + console.error('❌ 错误: dist目录不存在,请先运行构建命令') + process.exit(1) +} + +console.log('🚀 开始压缩构建文件...') + +// 递归添加dist目录内的所有文件和文件夹到压缩包根目录 +function addDirectoryToArchive(dirPath, archivePath = '') { + const items = fs.readdirSync(dirPath) + + items.forEach((item) => { + const fullPath = path.join(dirPath, item) + const relativePath = archivePath ? path.join(archivePath, item) : item + const stat = fs.statSync(fullPath) + + if (stat.isDirectory()) { + // 递归添加子目录 + addDirectoryToArchive(fullPath, relativePath) + } else { + // 跳过压缩包文件本身,避免自包含 + if (item !== zipFileName) { + // 添加文件到压缩包根目录 + archive.file(fullPath, { name: relativePath }) + } + } + }) +} + +// 添加dist目录内的所有文件到压缩包根目录 +addDirectoryToArchive(distPath) + +// 添加package.json到压缩包(可选) +archive.file(path.join(__dirname, '..', 'package.json'), { + name: 'package.json', +}) + +// 添加README.md到压缩包(如果存在) +const readmePath = path.join(__dirname, '..', 'README.md') +if (fs.existsSync(readmePath)) { + archive.file(readmePath, { name: 'README.md' }) +} + +// 完成压缩 +archive.finalize() diff --git a/front-end/src/App.vue b/front-end/src/App.vue new file mode 100644 index 0000000..89c212f --- /dev/null +++ b/front-end/src/App.vue @@ -0,0 +1,34 @@ + + + diff --git a/front-end/src/api/area.ts b/front-end/src/api/area.ts new file mode 100644 index 0000000..37c3dd8 --- /dev/null +++ b/front-end/src/api/area.ts @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/area/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/area/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/area/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/defaultIcon.ts b/front-end/src/api/defaultIcon.ts new file mode 100644 index 0000000..5fe7654 --- /dev/null +++ b/front-end/src/api/defaultIcon.ts @@ -0,0 +1,9 @@ +import request from '@/utils/request' + +export function getIconList(params?: any) { + return request({ + url: '/defaultIcon/getList', + method: 'get', + params, + }) +} diff --git a/front-end/src/api/departmentManagement.ts b/front-end/src/api/departmentManagement.ts new file mode 100644 index 0000000..7f4e25c --- /dev/null +++ b/front-end/src/api/departmentManagement.ts @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/departmentManagement/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/departmentManagement/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/departmentManagement/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/description.ts b/front-end/src/api/description.ts new file mode 100644 index 0000000..4fc7b7d --- /dev/null +++ b/front-end/src/api/description.ts @@ -0,0 +1,13 @@ +import request from '@/utils/request' + +export function getList() { + const params: any = {} + if (process.env.NODE_ENV === 'production') + params.u = btoa(process.env['VUE_A' + 'PP_GIT' + 'HUB_US' + 'ER_NAME']) + + return request({ + url: 'https://api.vuejs-core.cn/getDescription', + method: 'get', + params, + }) +} diff --git a/front-end/src/api/dictionaryManagement.ts b/front-end/src/api/dictionaryManagement.ts new file mode 100644 index 0000000..1469b73 --- /dev/null +++ b/front-end/src/api/dictionaryManagement.ts @@ -0,0 +1,33 @@ +import request from '@/utils/request' + +export function getTree(params?: any) { + return request({ + url: '/dictionaryManagement/getTree', + method: 'get', + params, + }) +} + +export function getList(params?: any) { + return request({ + url: '/dictionaryManagement/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/dictionaryManagement/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/dictionaryManagement/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/goods.ts b/front-end/src/api/goods.ts new file mode 100644 index 0000000..b97336e --- /dev/null +++ b/front-end/src/api/goods.ts @@ -0,0 +1,9 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/goods/getList', + method: 'get', + params, + }) +} diff --git a/front-end/src/api/menuManagement.ts b/front-end/src/api/menuManagement.ts new file mode 100644 index 0000000..93641b0 --- /dev/null +++ b/front-end/src/api/menuManagement.ts @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export function getTree(params?: any) { + return request({ + url: '/menuManagement/getTree', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/menuManagement/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/menuManagement/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/notice.ts b/front-end/src/api/notice.ts new file mode 100644 index 0000000..9c3792d --- /dev/null +++ b/front-end/src/api/notice.ts @@ -0,0 +1,8 @@ +import request from '@/utils/request' + +export function getList() { + return request({ + url: '/notice/getList', + method: 'get', + }) +} diff --git a/front-end/src/api/publicKey.ts b/front-end/src/api/publicKey.ts new file mode 100644 index 0000000..289001a --- /dev/null +++ b/front-end/src/api/publicKey.ts @@ -0,0 +1,8 @@ +import request from '@/utils/request' + +export function getPublicKey() { + return request({ + url: '/publicKey', + method: 'get', + }) +} diff --git a/front-end/src/api/refreshToken.ts b/front-end/src/api/refreshToken.ts new file mode 100644 index 0000000..bdd6ae0 --- /dev/null +++ b/front-end/src/api/refreshToken.ts @@ -0,0 +1,15 @@ +import request from '@/utils/request' + +export function expireToken() { + return request({ + url: '/expireToken', + method: 'get', + }) +} + +export function refreshToken() { + return request({ + url: '/refreshToken', + method: 'get', + }) +} diff --git a/front-end/src/api/roleManagement.ts b/front-end/src/api/roleManagement.ts new file mode 100644 index 0000000..600de61 --- /dev/null +++ b/front-end/src/api/roleManagement.ts @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/roleManagement/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/roleManagement/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/roleManagement/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/router.ts b/front-end/src/api/router.ts new file mode 100644 index 0000000..c0e0bf5 --- /dev/null +++ b/front-end/src/api/router.ts @@ -0,0 +1,8 @@ +import request from '@/utils/request' + +export function getList() { + return request({ + url: '/router/getList', + method: 'get', + }) +} diff --git a/front-end/src/api/search.ts b/front-end/src/api/search.ts new file mode 100644 index 0000000..a0aee8a --- /dev/null +++ b/front-end/src/api/search.ts @@ -0,0 +1,8 @@ +import request from '@/utils/request' + +export function getList() { + return request({ + url: '/search/getList', + method: 'get', + }) +} diff --git a/front-end/src/api/systemLog.ts b/front-end/src/api/systemLog.ts new file mode 100644 index 0000000..ba808fd --- /dev/null +++ b/front-end/src/api/systemLog.ts @@ -0,0 +1,9 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/systemLog/getList', + method: 'get', + params, + }) +} diff --git a/front-end/src/api/table.ts b/front-end/src/api/table.ts new file mode 100644 index 0000000..539019f --- /dev/null +++ b/front-end/src/api/table.ts @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/table/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/table/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/table/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/taskManagement.ts b/front-end/src/api/taskManagement.ts new file mode 100644 index 0000000..1e23dfe --- /dev/null +++ b/front-end/src/api/taskManagement.ts @@ -0,0 +1,9 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/taskManagement/getList', + method: 'get', + params, + }) +} diff --git a/front-end/src/api/user.ts b/front-end/src/api/user.ts new file mode 100644 index 0000000..48bc5bc --- /dev/null +++ b/front-end/src/api/user.ts @@ -0,0 +1,47 @@ +import request from '@/utils/request' +import { encryptedData } from '@/utils/encrypt' +import { loginRSA } from '@/config' + +export async function login(data: any) { + if (loginRSA) { + data = await encryptedData(data) + } + return request({ + url: '/login', + method: 'post', + data, + }) +} + +export async function socialLogin(data: any) { + if (loginRSA) { + data = await encryptedData(data) + } + return request({ + url: '/socialLogin', + method: 'post', + data, + }) +} + +export function getUserInfo() { + return request({ + url: '/userInfo', + method: 'get', + }) +} + +export function logout() { + return request({ + url: '/logout', + method: 'get', + }) +} + +export function register(data: any) { + return request({ + url: '/register', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/userManagement.ts b/front-end/src/api/userManagement.ts new file mode 100644 index 0000000..6a91cc6 --- /dev/null +++ b/front-end/src/api/userManagement.ts @@ -0,0 +1,25 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/userManagement/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/userManagement/doEdit', + method: 'post', + data, + }) +} + +export function doDelete(data: any) { + return request({ + url: '/userManagement/doDelete', + method: 'post', + data, + }) +} diff --git a/front-end/src/api/workflow.ts b/front-end/src/api/workflow.ts new file mode 100644 index 0000000..118703b --- /dev/null +++ b/front-end/src/api/workflow.ts @@ -0,0 +1,17 @@ +import request from '@/utils/request' + +export function getList(params?: any) { + return request({ + url: '/workflow/getList', + method: 'get', + params, + }) +} + +export function doEdit(data: any) { + return request({ + url: '/workflow/doEdit', + method: 'post', + data, + }) +} diff --git a/front-end/src/assets/cropper_images/user.gif b/front-end/src/assets/cropper_images/user.gif new file mode 100644 index 0000000000000000000000000000000000000000..ee994f6f2fbbe7cd837bade6b9737cf1574dbf9a GIT binary patch literal 8019 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 literal 0 HcmV?d00001 diff --git a/front-end/src/assets/empty_images/data_empty.png b/front-end/src/assets/empty_images/data_empty.png new file mode 100644 index 0000000000000000000000000000000000000000..fccccf2d8b208f95f1378b13c63a8ad8305955e9 GIT binary patch literal 67649 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 KMNUMnLSTZ5dSL+o literal 0 HcmV?d00001 diff --git a/front-end/src/assets/error_images/403.png b/front-end/src/assets/error_images/403.png new file mode 100644 index 0000000000000000000000000000000000000000..b1dfc1f4d97d5a111f1313a186e93977afc7fba5 GIT binary patch literal 149303 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

)-;aa$nG-syMz@ncdL08{IbbN?o z{u)LPlH*89rz6LXDYRtTv$E*R*k5%ingf|A{TRnu(PiY zT#pyaaqJ!}Sy*jVSiEYQN(L71X*IXB?D=6RD3TE@&tgnG6YrOnl4yV(#(p^b+Gy11N2vFgD^dTc&A*CY#4t$HlTON!zT^*@35dBw)(g8Yy#xp5o){0##=`&rAZazb z(6N;>HMqfY@XQ6^cFJ>Df_GcHga5$v_jr!7ENG4X8S>L}_Qo9?EbLQ# zf8-q#3tRq$(l+fM4x>cPlNP33jshASRp)r)h6I8odwrfdikLQI&6@UnJI*ZjZsp)w zlRWz*AJXiRKg6K^@>3$p+g(ac^k5Y_Er0 zZTS38xNr>OJ*9qW9tkV;9We<+`>lrA+e&F3&pSv|%rE=Ug?K*p7}kf4M8@?Y6e_WQ@8@b&T~6rZ5^4~S{IG;5yGe?{L`9I&()x_+fdZT zx0us?^O$6gF)-fEU&ZZmyNeWep!u!vFLEQ#G%j40CVr*kL;LWqK&`eq)GG#I7Rj$w z0eQIyU^Z0}tapPy24!w{iJA1;CR9%M1%HY7*o^Ni67#N@bhb<0ZC16@gRcFPIZ!C; zwm*6&5N?(pTpl@Q8?Ooft;u7~`8@?q?M2zXnEXk=&rY4sr>xpAMY^z~T`br%L&+#L z_34Iqbs?llW^^A6Cr@f-+|N8IlW?CuBjS403L5cU*RJb-q8FSaO>PvuQKu%0fnxNK zwH-4q`-l-G9_}T+Efx%o!@E|0^%cxG979vCOn`Sl0QP@0`Z7 za+GBC0jdLsZS5+Ks zS3u#AbK0i~py=-V#AwHQ^}9(zfmSQ{af3>}!4Zah1zSz6L2)$<8YTg){4+i404=f_ zPLRelVmddr(N>6Q19{S#JufK_wk8P9t)gebRZlX*;KxSOo7#!mLDzM5{vU;ulb&+7 zqPJ6m$yF{X=E)cxn6bSdab)iDAYV^*$RB+CTKMNXeF0TSOKTsrN@MIC*LjTxAoEXR zNSKk`CP}dT=LDTw>nBS>cq@~K8si(`-vp(SeS*^HQaWZ(uMDBxr|%JNp#F$P2(1CL zTyM(m;iO_&;nS*N4EDQ{|1RkBt!wN(QrS`q_eanhO1bP6;3d zjHje|lku`&Z}yur(;>_?3LN@WVQaU#|DcIzTyx22AO#7JwsxbAi0aP;)+;!Rf4-Aq z46_J}?CM)1oflpuEFJTz7OJ$AMLd5A5s0So_J>+I=<8apM?KpscD}DhBu+tWzZJtSk_YS#^$ZzjZ#XpisqfEBa@n(>ugF zlp=|7s(Ap4*0lBxh|1nAL?bJYWjm1xn?m#f=D0cO;Y+eybTOg!**{mq9;RGTh^Cs@ z<-cXtOr1CS!Gom`cSqAu#R%O%D=NF03RP=+r^OSL$mJ>`}bv>s*hT%dA+!>`=g!KMa8s}XSV3U_S_ zMVIn)QMX{Nbx;KVEy;(~P6SC}YjZbOJ3Xvli++~%5q z$E-+#6Mk6x8{*wc2X24`R_{5N)U)lai6>tRBG)UqKmf~KuqSkk77pMn^^}OF3n>S? zZrs+xQRQF^$$)5zuP}l#6aA^GZ?EmdVg(2lMIFces}gbPcEfkty-*7EPMpxQewK`@&2W}lgZQ}!zeD}88c4#IQc`y|D<;z(-T?; ziFmsA`=GpFj$WBnyg?ch1}}Dxb=g$m^r*YWqk}eSr@dOce4ka-%KApuxGm*>GAW-#=B&RDDe`O* zcB5Dzm{{Kp8o)QdmAbezyq4~0)3E+(`g|EHOr zl+{0$H;@aJbjCoSrS3@@x&BO%ODB1yme5F?_cK(sqEfcHg#eq}rh&JuBAxPCGYQ5V z!XU!!qipc|y%YvRI9R!ldSlG2=h#?4=V}eVOm_W;LZ}GD4fT0Pd>h|zY^Ska2@jr( zTBn;Qf~|*i5Am5PNVPvw7fecp8MNJq5WU=b43`v0MM%JujF6ZEZR88?pH|ABI5>l(4|xoNY9(hZr?HCXeIp;@u~%YuQVa0*Dj`op!ZrNxw*1KP;Fq5pTrGP6`C>H|szP}@VwhNOV*PRi} z+~-}RKaTxqiTj_HQ9L5bnUkDCJ_{jd=^N$t*McgjEM!X%Fe-!jnLprP5Zj3@$WqMM9=*<$UuXDdB*k;)OxWdVbtP1f2ux@rAD_p**gWQa58Ed-@~WNHIIkp~ z-Z%cBv+tFX2|qa3OHKp5{*~3GYkeA8&9V&de_@?I9#^S*7!dy!Ola^>=|1$jwr|5@MRL_TWa;9MxYjuu%IpM z2phz$;Z5$Ap18(Tubvv(8qe|;S)f@gT!7f@5oo!@sTcVj!#unN^q$ZOMlCX5<@DX1 zojXkT-m3-Pd2YRgZ^8jO%*RujgKoSJ9Yve4%Kj9?`@|W(Rzv&LL#vP0MDlx`)16v> z!W6RBIfOT&CUCb2h_)`{?zu8)+>a@OW49+NN4m9K*T*?pL@(EOPe4DX@YB}@ianF@*L{WFOy6? z7_|WY_XMgSPJ>*MlP#F1FGai+G&j0fqiAd&G2WQ&Qj#9;GQY4;PR@d# zX>L75>c$pP)t}7)HS#j_Fs+UeeRMRoF8jYvV_!a2_RfC{WHG*$STs<@Sgiuh8NrRVdluBJ ziBC;^wR1FtNvp1<$(Tn`-pTT!z zv}}WAa7g`OFNL7oFMaPr7}}mRTpz*liKbHK)12IC=vYk*!2G(EtaOzZ?_eY!Bd)Ea zZz{1ktb!Yl3B;rL8HP?{v-Dg%E0cTtTvS9-I95*;jN^gq*=YkgjVngP2G!89$A5bJ z82=yh2v-+3CPJl?@(Q_L<0BSJ#CMKa*5`WJdF!uUfLI;nDdJegn7Ve;Q1o;-uR%(X z5i1a2<4QwDB2)D4hg^Yufq8|m5JHcIN-e0V zlUdU>=Hd@!dmBqJ&_<&zPzRup`W%Uq>`0lV_yoDzHG`$(O-4D?GA5tsa{VJH!yT0< z&Hox@ zAkwj`FJeG%Y47_qsN(~nt(EMl=4OUi)Oi}23h6Q85YWRruMOvNv*c zLXabwacujdX?NI6c!UOaEpkSqJu+z%-A#*V(3z#HE&$_LH?s5LJ5=vy!WSbD>;o%! z(k?kY>E;h?qnNm=TikSJPY$NcwFaYsUbPrdM83|-AvE7cW)`4~xl&ssuiZ(3kkY+x zwL9WOB<2Z7(g8z#18GIq9X9I0COr|6IhcLMNW4X~_9Ybmuod@Iou3$WULW%8ZJ<1{ zXxOd_gooM{r3L0CEIE5ZnjnoFIcbL8XBIbt9I_p9kw(>pgouecT}%qvr1PrvV0706 ziniu3i~Wt5&4lmSqINyVXp&D`<5aSI`^PZ{!*K$!7LbVhG!B~u`cr^pg%D~UO@0WX zByIy!rSxD^4oh{1Y!kiUlrE~Lqh8Lxu|3Fsb*-6tiWwES0*QWb$B8J6<#2Wy_2|(! ze)JW2*R5-x82OEyL|RbXehal<>p1`LpxL*n*Ins*s&DiPe{{L=-xwY*I>Q8+wFDGb zch6ib+h#2ind)=B6)>;|v-C_{(NHg9qk$UhnYPB(<+M|NC|DDp!{=j-yHk>(%} zdD#hsXZ5+KwV6`e58W4_TraNHOK4v7$BwWXX5)qp2Z@lOsNvnnBJ9%IW|}18`L{t3 z(y%6?hL=DXbuW!Uj5Is%*FKt6b?(C!5T@fw*nIWUXymLd+RL!OkW-<#U4wR3a6ghn zkp0=9oO?~u1k)+xVWeBRb6RWGR_>8whF4Y_oRnsM6B(TY|IZ6hx`_oc**#;cqzEVw zJ~@Tg8=^mc%zkb7$dYu6Or4-5lM{sU#hASXgRB{^e%z%0hfX8#*C#Wf@~uQbXvuJ$ zSpRWLam7CR1&Sv=1VV`d#dOh<_$@}HLrl89QL_4G%WTQaUDLwv>ko5Pg1wi{Ax zUZ8D0z1+E=^H<%v_KW0?iQ6?i>!q59E znxf?h%+(}#$L2GKHlqDCY>fp6qIszD66rBKsHoyj%SoxSVE5`GKD)1^GmCi$Egum%ISHR0xE_9Iz!S^-#b*OJzuee2D8$LF-n4|Ddj2`9${X zvD0xRujeJBa;_py|G;Dpmw@U5FbV&J0>^3jx871yIMQTTy}n zFNTfvPQ`W;V|YX3@lJRCKrYca=B= zHh#u8%?6|GQ^$jd;R|K_$9XD8m(!3Js-eBy)`=|t|3}j|_*MFMU7vKan{3;*ZQGn` zs;MU1=2TNn)?^zePxgtEZ5wa*@ASTdmx885rDS5&I!RoA4>=&-=;rR6E*F{NR7kyPmdK8+bQ7 zwU8FAlp-L2l90qN3_{1pH9%Y)>fX>6W3)?sz$>I z!gjy3e33bK`&{j?SG63OawH=5gj(0r_UyD}OOLDQh(+b`=k2_!yNRXb@4K{+ez)r> zk5wtdhXDlsv%Xgg$dFLDygl^?>hc9SYH{~t_6tVu7wTA*=Py4<4%lVgumFW@AaJ5- ze!}J75TNl(-kbA6|At&v-4)wW|0fph)MHm&Eml$0imQ{#o#^RR+n8DLj14%N<+?cp zPm9%LDxa@0+m?3QK15*K`4lGb@8h1bPOXxtmB-|`b}T@-!F`i4xF&p{LrxUKMH;WD z>TRdOIMO-9ApfR1p4*Z5+Pzfjz+tTuOpN)=cTiP#h$|^(|Mt~G^M4I0KfPIlv*w$7^!HP$_Y#mm@oUHc zXd45su%zuTO5KruN~f*6slM}1nL#_QejJI@pfA{)z^@cv5P)PJ4s!x~pUIGZO}UuG z*`DI1n+81YyfHTo;TC}tOb<&%LozQyzL^tg{^_z6LeGJ0J;^ZrY6zWwG;_TlAzr)3 z7LQGy$LAiUxsB>e!QwrV%}1K7gziH#Hlj-P3J!M?q|*bZaK8&@MLFGq(`H-iqP|;< z!LB#KeqP+$LVp>nP`HHJ%`iudrO_APREqWU>w`ND3sDT`rWJY?>KxFXnh7=CKCC+< z^L^X5RxAm$-S+KIEvLH-EizWgzJhFQB1!TbYl;#nrB9ZJ_<2r0CBVgVE4WCW)uog- zbF>jm=U(pd2R0!p6nNNd38FQFVSbZ7`NJEiqa^P}C#JQfG?yW_L9sockB?9lHQjl& z19^L`i>@lWI7sPKT_Vi!tYE2}nWELV;Ii>eT5gpWr|_iA!_qPA4+1Adp0U1gct4rV zv}jJl?4;n?x0v467^`pf*<)s3u6!UDo8Kav;SrW*(mk70xu*^$WEoPS!N#;lSu8XJ zL`Nj*a~%@tWSugQtiIcaqkQ`%qq2({%e%fO`cIW+ey6oke}PjhK-%=`?T(i4M~RV^ z=nLZ|JK|H9;{9pg;m2T}oY8veQU6z_nv1u7o=)rt1w=T5RcM0#vOg)7BT<#?-=a02 zJKh|Y|GMSMyUJaEL!i-V4=<#{i>>={zV!lFf24g|wUF7YSt5?dlma-JJD}i0MS{tv zAy1`L&9s1S%DxNC##a?Oi=U{37mfB34+4`y#3Ca(U%Nz6NaU0MP?|Vsd_XG}wn(v! z9}nrt_PM@4b zr>Hot{3iUyTsh((ARJP^ITtqcos@0IHbz+Lg|$$G1phfFqmviV`l#VTsmp(TSNn}= za>zLV1yZ&YXaV)G)SOHFw{7p5JL&(1qk?2wG+*T#Bs--LoeniY4(WP2KjaD)B=8mp z55941G7TQmI)joU9q$rhB=!v(*$16Y`nD6Uxo@^fmXG@ILDBSbw0ghXFS8bqnpQS( zP~?Q!>@Q258j}w3SurK-8Mp-pX}B+b)$@!cpPr4_FePrxjwU}{W)YwGJ@uKt_1fe< zyxr))`69C(vDwBbK6CG{Bj!P-SWCC)49LslRlyXFhhTe^Mk=LZwGMgeY`ZC==0JMR zoxHOA^C|yWtQvHM9CDPWtj?728P1)aE>V;Jagp6|Fv?}KEII0iP_hfQ<~Ve@1Pyie@JSZZ)CVsmeg zpT`=)Y8u;@MNLh;rhc>xm!cm60x-md$WrkrzxgO~Xg$f-C`Pb#xma9x1636I4(`T)y|&2o>iSei3qB#X)T zozFPA0FI*lYbvuel)R?ZF6&e3d2;Q13XjAATD7AmIJxWY5&f}wFzk5aa$j~n+@A<_ zRS)00y>do8qq1uI<1%e=Il#km@%%o&9S^Q3((qMqiVV8(gFa${aNx&xFFfJUz(qr)3g|lB(9 z0-CveWy;2IXB90@#EH_*)!vGr|Iv-Lk*sy&4J=78tIg>I2isS4jYoev1AQrIxbeA0 zo2~6g$UOXe`c~yYhVByLOt=!mT1xXX!8^wl6C9o*G*_lFx;;L zdL7cp#oe`=ds-?toaZ-a?CCnH|KV+I+2XxrHESlWZg}lJX^MIsg5R^+Qji)?)J!|| zGn2F|&Y;Zu?q%{N&9Oa2DXsRBx+AqV<3oXEU+R)d*Mlvt()gKxwpu_>JV56Gy!|ii z=JqP4uszuatHJtrli!U(f*|MP?s4=-QfW?w$mOgal+GdE2C3kN9SRcvn4DiW!=thraRj6|6DR2zB@F zXKguwsC1*AUv43kdxv)r`+xd zou1c>3b~EfERicDn_Oxx)d z`d`lk2Fj5|b#uhcPxmtX_8**m9Bl1(QuJ||0Hw(%?10voBT?y59z(@kIx_&%cjyu= z2(Fea)Qx}4uA)D1Mt_S!({@`lTu;MiB(wT3;elv#v7>&>$D}OgIh0zCbn_OctgKyI zmo|DD?L{U`q{1ghr!+b=^M=%HjD%N=vX06LpJ-{mg;NA_9IR24ewrs3nKW~qQNm~c z7ugHT0Ye4*M7I_hq)qPo@p{E|vq54ss3DU8N_ilx=-KYG`lya$I<0Z?)ZK_BrJjZf zH5w!jGm2G@&a&NS$K_HDfq@zu11jgTIy+1R?9ao$Ru#&W=bmUi()3R5U^ zWO#5u)G9zOOg$%&^CLp6QxkE?JYphpndNw<{o-yRf%tQLWCy>jB$e5h)T(V>-L9i>#Lg%7N zBVL~GoOQGNjQV7r0iX@c7Cxr$u2;9i;U-?WKvvE}?KyTyK;u$>g`tyZgv-d@YN|jn z5y1CpbspS|Vd-!(F=+nqXJ!3J{yh-_F5#aZqF9)38W&)Z5?9O$#9KUlJw|w~;_0sT zIPQH}dvN&H--0BAU1M04&SHG^p!9V$y)$KUxi+ccY!Eki5XM>Pgqc_b-0{P*xNlHO zVtDaV1Y%YN+53^sp4Btysn+XLwAZ60??K#gMEwe6l?s^OS;-X)sPn&giczzG?L{Q8 zfVN}DjIbSzpM;D``&ZTTgtq;KDtv{Prej=16E&63(iuO}dn5kXA-Z&1gPK&0;af0) zSj3+@;A?H>8OTkwm2dFu;|Z2`nmS+soz#de5>s5)l~_g8vUSOt2?sR)Xhs_9C=8Bi zGM*uou5@yqFYesk#k=y!@C@GBVe9Itf0XGG&X$X4AR?sS|6XB*^7ov4gyyrq|JbYz zsn1di&_Yocx>(9{?`kl-qvw(!EzJQm2EO?Ym<<~hB9H-Ge~ zeEiY5`kxB^EMBNVa1({od>L_7ziNo$)7%dlr$XPzR7hrO zGJ<7TbGGvbR|ocT!#j3l--~TZYq5Yg^Ci$m1iM5-AAEwFI0e3%px#eeVe4KN2h~2Oq{U@5wLw;q6DlEnX3ShHaeb+?vJWJG*ksmQ3vJ z|0PWPXVoWSv(EaBvi_(Uo2~y8jfkp(tPC09Crd&Jjcv-Lxc%O>>R&VW-4dWMWSV8l z*GDG0>xuCb`b7;o8PVUskhn65J7TRiG)FQ^FFR`c+wipuJX{qxW}_?TbBt_bgRqu+ z?|aN4PM&kW$cW{&@bO;G`%q#9WfA$uUQO)dJ*igQzz{Z@1Y)*a_juv)S6efV0?{i` zTSb^8gI)QB5DxaCahD+`8`8Ab_JQCMu|WLaAqvMf@>6D+p>sNmNB<63lC0X}jKBP0 zzRzxL>&Jpe*o_STL!_io1>`EAfN@rH{iZVEf{ax+z7u|AOeFdJ=TCUU@gwfy$b$Ih z)E*-GLm`CoZGPtt`LFyJO)&*^!MJQAT{gcWppy#eN6@y!N4@Npk2dhzM_I@CrU`J!)wiLBs8njR{bQmSv891_aG}=h`7g&1ok};;6MOfc)N02V<@2Rv z{pd3atI@esW4|jHPL=W!-43eeQ~-QU)u0=g!n~;A+8}ECtrA9Y&~d(K$9dX~QpIp% z)?2mWTf?h$eM0gOak-G-=%gMek^eVARBmn|!Mp4r3z@ZzfJ5O|q`;>PPPMZae1|jJ zg|A0qXqkj^XRW$hM0@SdGOB?2_@VV)j)_YNq(HJ;uj9&14Qy6J3Uep0c0(?cZ2yV0 z58b!4@!*S2SXamXw`ok34v*hmqCrUMT&UYlU-t1%$L$uthFtVn`wBV{7AGs*E3ujN zf2~_^0{^)y70E^UP3&*erF3VOJ;#22-bhg!F=OSY?>N5!kBrJegR6$Sf@o-w^cS>?!3)~jk>Y2q8o$O^ zH&SSP5uG7CMi`8g4!ubid>yelniCDlIe|^z(XE{s+NSH-NrT{qO)tKbVJ)JFGPPU9ONj0dlJW@CJv?G&HwM1W}a*C}Jk#()S`a@7JF zGTRD=U_wSAYt4QLrcUh>X5~U^@S8_u2Qk9*B7g5vJM3*euABx z{&Odud_208#sN*Hq?ACGs^nZ{w@n=J+^!~(EG#)GOM2G>#v{%*%ixLDWfvl-sU2qb z=`638n|~{;#bO$pZZ3hfTX2&`&X)sok4lI!_brRsmlOqO*TleVZ@@#^PTfgei}<&B z8i%y`Q3P4D9SU4nasPzUDPw06?_)lmC45LmWL5zCMf3;QxB!BqR&AtHZrn#;9HA;~ z;zG?n=%=0!D)Iy@3S;?i-l@VgCV|U~>AY~gFYax{OwXWtog~8I2*t3Jv{=Aox`lM` zQi!dyKwH#(2no*5O>mKBRfq{5mBM#Zv_f{+Le*n^=E7XXLm|0tP||NODEwjCgIHM; zoB0L7gjngY`wI6xyXkTm3`)53M%q*_rwSDNiv&uVs zRJ@9%04JW+u$Ru` zWbrf8O{3eH6#AL5TTl{EDiqr+_?W(eDLeosQ)D65zYsiyM3b)i?cMer%%|EzMlAn> zXJcdGFo&>oucq7>rhsh<+S-|2+)|Ax><0uq`oHwHhYve`0cFI$x7$O~tBHhcSlyGUn8V@j|#5^SMIdNz>Gfxz|~i(DWCyOG%y= zE=eWfu^)X`U-nQ~CRHPBOwr&ppU(+}$>O#`1XK(ou$Q(mt0UZ)*pGxb=&w&YqowKQLa`FsEim?v!wD zobmr=)}5wmNL{MfA*m+ygvZScgal`7(3MO;SSYD;t4(uTna&*x{>m!QbA^X?!881( z*lx1qgg%xr)`_+uB_D<;LpBJHF*-TKJ{d?nMi@vu8(_j-ICCNKwuPSc zwl~%Oo`k|6B2Gg!9);d14Uy*cD8eygTO2z`!MbB~&zf@>|4&ol5v(Znu{Y;~WGA1c zEqM8BH#PrvEZgyMKeZl>MhQ1T^zs1JcLsT^)m}F{HRV>m%vmZ|72cB18xGUBpuABA z*}iTTQ)VE3`ENuG<>C4fuMtRQK;WqK=}OM}EE^w8l4QA@ADvT4ryk2KSrMD}781wK z;>Bxli+0cBrriq>;BqGtYU;%nS{)Fyfnvq|sU_ z1ZyeZZVHbeLb-gVb}pyMwnil2=^gTXwo{gtIcwW0*`9$bJ!?8!-uL&feYY>!jJQFeUC_>is?1F2_Ee~{rF>l@a)YXl$Jn_-c|s|xZtCeWxN zdmhV?)qOTF_Ej6(7bI?=wnSJ0WxRY(5!C$DonH|LO!GaK8%y=D5dLE_(v5RbC+v zwc?AVY?Z{!C04IFBZY$}9e`{a1$qMiWls|G&pt8Q2QS8FKjLHav(8%*{`4N`4HKpR zx_DYoe3+{(K{EA$10{tFwX)O$Kc4fmu&^u4g)8*FgGdYeT+IyPG_gxgBdy~OYl^;ICnV5mhgPbP&Eqzmg(8nh^c z#ElFPWnXJC%XtAaZ3{f$cf*WUqd)i4Dz`}|Fmu__GsSg687NTS(crzTFwJ8!b?szl z=@o_$l@UbX=gERDrN;M-zAu4rBTH7Xkog4WeNdffIBVqMZ(grhf6!Iy7u^+!VGR3) z`&$2hEdcy23eHn~`SwL}I;}k@BbFt*inoUsEXj$+tydfxZn?rKmog>2_eHr96>YZg z>N9Pv2p+GjbC?TUf;@bAE{9x`JAcWgB^3Y=J@A76!F1Gwc5}C{{8e&^5EDd&r6| ze4b{i>8R0NRL(U%v2Acx2}lqSD`qCI_R05Ruc7r%vg3IOv4gY>e=}jOPT=)X)vQgS zZ5`G*^qy*pu^B;hwU^8WY>zIUSy=1BQJXH-61S@FV%-kBVT> z7-8IKCIOiGm{YjyV$_;p+_aRPh2K}TFe(ZQEz1Ty( zX?l^#9Kt1s#K=Zy zY+N8Tu|Ao!!CP(C<|1PbTE+@s*3+XcS2M_^%e;ns8fo>O>qMR@iMl)oVOg770j3OO z-j zm|5QSOtls-H;ckO7Px%L(1o(K!yPRSVJt4?LT>AuoYzUSIpC1Qhw@0!ngWxjeTFls zi#`5g^=9^LWe7X*hF)YTZuYXKD5}mxgl-P8(uz@seMyW2Z~v4$9rdd}6v~#R^05dE z()n}_#8pT;3uH--A|!VaB5#+lIZu>iz#Uw2>MtQxJ4hsaO5sfbxi^oSvjtB& zh~fVKv_13D4cOB^dBM->OrIh9m!|!_3{F+)U6Q-`yLv8Nw}V^RIhD(^PN#CFUBMO~ z@&vL%Il3+MbxsB7H)Q-^nO^+x(BEG?zY^)BDQS(jLuDUltRuc6Y$^x`-K|6ADosc?%m&WD8CXKg5OO}6d4-Sbe~aA`sELP-?x z6dchDFf}9X_F=D1gn*?qj;(Y}i5xi{TPhcYeA>1t@oSfrLS|5~5GGYEIbpgHCu=`^ zl$PRP?4{O2&pt>;2v-w>MxODbwZ3uN{2P&(DqeXTrfj43tu$j5eJCXhLufhg8$-fo z*;n1QrR$3;;tiQl6V4n^M|L4h-QRo0Y&PskG7uF&c~vUi@iyJNz5aHlJa`xx#Ofnh zR_%BPv^;4@5Hx%BDW`GsjrjE&>SiBdn9|t)l5lDfSbUqx zU*<0a1ny%3RE8%NHMzULTPPH#bl)r2WbLig;yq(bq&-YDMjun@1nPI>v{iF}$e#)j zGrl5q83TS)X=n0&4<9qU`3Pc|wpP+3 zn#k_>%3eymkPjtug#;*A_Y`*`QrT2-bbNWh%wS<1s;vD1hy0>UhWYXhS3%<9DAn~6 z2wBeiB=jKDQ*hud^eSYqGt8indq^gz+$5r-WliXNNSOGu=#%sjAGmQdc@imbpO;~b(y{Q0IKk#{ITKaqL!mpjTn!GJAfaO7MgbtnFban>SUVcP3IwhlI(_YDa`D~kw?N7T zbPrOByJ-S*_KV1pBHJPU#Mq4CvX>W!`n7zyPA3G+4qJ>9IZclGo##==5UgOFDRc*i zJ{<>?6BGX%i${yMoTq@eUJ>PUiTrALd^L+aDH@6#GCTE(vw%-y7Rj2kM$nYW*V6+<9*?g&WxGQoeJ|0T5Mlx>PrlS)8KdTwGW`sc87{W4U_Ep*XSvt!{^$K~D-2C;8#{#F z(&bLnqh-E2wM6&xLv!FS%`@hr3&jjN0SNl`C`+SMQFNsrm_tYus3tBujG>9nrR2(G7PB*MjUeO+hPEBX|wcm7J-mz+r(eWvVy4R1?y_!aS? zFL-}cq3|$*F+aY1veqvo0eyZuh&J%mRWd9mqvbAgZzt?T@*MSI^Z3bp;waF`MaEOZ zdKTLYu9c%(WfYO<(Gs1h5ntD#I1eDGn9{WU_uOQ8jUwtR(xJrP4Oh%D;%w;)tL~G2 zWW--wi=LjJ@F+BzIzS5Kz+5E+n^HcAu2wthJH{a?>m(k)x=SI3{h@OJI zFq^615g&X}##rNj)?BQSuTCz(KSt93YSIynqv*#qb5=4TaKeEw01KTJ{lc&>_{+W6$7}uG)HCFvrBn;+pfxy&fJLtS6utF)PhiH_WMbM)2 zceDuE)KKAT^^IG99Fm#%xSIBRMC?KcXg==cpv4bqgf9#u^CEOEu*CG!rG4mi*xS3! zpjE9WIcgU^V`Y9o@2#7O6uw=S(%^eBmeXO3TM zO(Fmz&b6)J7n$_KDxiOPh9Dn11)k_1@pi;9yx$)#-b(uRNWmA@j?uSKvX}A`?BspIM$^0^nHGnQifL#q|W@LSpBd~X_1>A;=X>M zX=y!vwpKDw#%Za%M;A9VvP7yeRG$F4*H^aJ_irO^uHR69*qGb#L`@;dr=0G^MmZOh zTgmwDdgRo+6qcua6Ya#`ArBO*d&5ee@F_ore{Dk4Sqr!yzd3iz^-GI4?3NaD=f+iq zip48-k$^E2g*x`LeHCp?9~n`Gdg=P6&GaMM5ZHIVA|p1)4t~C5tzdElE%{4B86CEz z0|>-Nlf2(=R6>PF zbuWprXErHS$9Q=iBfSapaf8((fkH7X4S)U#@J~FElVu)a7rNpQ|4E!A+ibnRePX+2 zdra$c2=qP`utM&J1}IGScR7?ugx$OJWiE37ie#&+Jt<-{6 zkAN$5?qN^xHVnW9_g~xx&iB!N+Mstl=av52?d1qniWs zNp-&jv>{-&-?nuWEP3!rcpwG2Yg^*Q>a#=}>OF|YvL1bQY^~m52A~e85$P|dqvF8v z?60UDGYd-c-VAfeE$NNEQV7!+T0rHZGa4Y=Fd>@(gZt%6=fIjde6@)*5+_E@UN!OJ zrKwdA{F4b}s7+;9%;qJViks%kkEk$%9epg6)Y%%&8~ueWpEqBydqd8mmhwAs3Q8Rk zSFs&-Ny!5tUvvmqV?U7bzpTSr1wGq>9%Lq#d_?QEc4~XZW7-a8*3{mSSgZUobiRO6 z&@5x1m_8!J#GZ|c@;@T?^fE={N{0x%KNXdy9`g`{xBCRz8jB7d9Vjs|=#T7P^!91O z&vJrKuXqn}s2e=b#}VfjT_*!|$2)*a*CA)}y}S`P4}}7cH(R5Le?C?LC`ib}d zbjS1i;;(+X@-+won@-p(zUA#>H#JsY|DHB-4wU{YfQT##9&#}fk17d*&`cm2TAtTk z)Qpq9ZQ8;Az=A3qWlhkDe6}F2v4Hk<-294CBJsoU;WI(k=GtAsu3ZP7u&t~~lG}yZ zOi^S0fmlVl#0RLBjhQS)kkZiC+zUz`#jj~vaw3$2f54bw3#R~wyGbEV&P8!v@QFy1 zAQGFeS$!8#t$ps;&9OD;`I7z!Pqm<4i$uUZ^>tCcIpRB|Wn=*S;wZ*Ir&Ttr1}ksC zCggAD2zzSu1>XRI#6e0lmoV8WYcvDAB95U=DRSOS*@gsHYJi35oWA!gxj*v+yx(r? zi5T90+N3%-#1!Et7g-@D_zTCiUxN#)$R#0DhUb#MG=QKt+wW+23(*m2#+HC;%S;97X?9I zjrv!gXe`J*323Z+aRBQSd zp>R_QYnyCwp4IG$U9Wz|+(UKW)59{knut!HeJ;a*tIdnZ9xVrKaNB2Aylj`J3eYx_ zaj*}Br9HkMbcm(O&%+m8!>^r9Zg_Ax`udgrxeIC|v7BpNVQN2aW0J$xK`Tus=Rzr& zX_1#iS*wpmQ@Jjspa0)on}Vt%YGDBGMLQ(*Ljl>pDUX(pafBaBRTBau#*H2$hDSbr z8pDz6XrNUN>hYki=oajjof~JWy#c{~(I_}@#wa=8HEN_YNS`TsrO6&!B9$tjB|7QX z2P0Gj(mn6L#0V{mO+ka*IfU<&=7fageOA`buz`i^{ZNWlz5Zr@*11dQ2iahf7XZr4 z;<43+tZdxj5dXYUx5{XAtzZ8laC3T62lWYKFegV4UPX@vx- zTcf>To5)6FQ9-0$KHw>-L}DtZP_0oOr`qI(V@02WLg6o zGB}8fA}8Rm9wGm&mdI`=8otmlR76S9KRFq0ar_gH9syq&K$-$JCImsfJ^yV$zkrPwMXZDn{q(RA)|Z#> zk)w4bw%agB<}oNy1N};H&u7bZ2-L9N|Ath(Br@*f`I~aXdODn2mBUan)CL#iJnLX_ zsbA33F)&3ItO2eMk1C{sx_RS;AnUgN4Pgf9lpeL2zkBh6s&37M6PUwBtODByh6`n; zGHJ20o|hR5L|dEz9jMnw@YK~1m`{Iwy3L`G%~i%{*q0UfHC}?n73fI@!H&Y(I&>zv zdwrF?`zi?y)OdZJfL1ttyS&6yqkM*p@0@Zaz}wQohAjFqE?} zRoCJl5Yu{;`h9~^@O!N;IOa?TO)6ky%1aBj13EVMc zl%P7ysZUYI0?O$i19j|;h8X-x{uU8{$3})440~`pz30BV<_!$Y3Nq$ z5d!CIb#hrjne*orxt{IsCjpPV5U^iZzd*^Xu=g^RT5KO=VZiXGZ>}!h{`QgDhZ!t- z7X%_gak`(qM4=Q)YZOpF=w_!MPRJpn!ia{6HDFdQj9m4kgTtem8yiwYvX0S0z<*0W zbgDLw*MC3*uZq(IW77{u{0G4UU%`a9uIf z$zd9>wkP4o;1wXxNk1o}Yp5G3`qi($f8j*&=S;{5w2GLlDIq;ILA_R%RB4{tnmrR+ z?+47X8x!*66U%p>s##HF4LxDI1zca@Y*96p zAWn6^LH(*1+|**5D7%>vk89zs=AX?B)ETDI@46&eIc(UkiH*qya)?W%n=RNY!zG4b z6#kgo;jSF7?q(aX3O zqCn~2>=>9TonN#7Qk{b8j89bSGDba^@`{2o4KHRlg37aq%_>&rbaHD-dXyVO&6^c- zS?F8~z|hZbRgcqgKNqXy{HQV;gCJvzKr2zupw^nD?6KS`(!MdW%YPt+H{o|Pt1WLx z3!kX6E{0Em;{JD;(QU}qJ*vlM+xyO=EX-SI@`tOheyNT}~R^Ck#9ya_*a-WPU!g|XMt@^H^xKgjku zm`u!GmO{D^_VLj1(9zQIyQ^yI{t27g_JRS2K6y}tQwQa&Y%nDQfg~Nyy13RP3=nM~ z+y(Ze*}Tg4#ZN#i$9~dBPCZ5U{*gBt_G}`b7qvoBa?>Li&VD=HEjr8Y48nvPI0Q+O zY8$orSrV;=q~*1@(o=3siBvC0u^EaW|4SI2e?~TDU}H9@hPiRxn8iLR3vk);K(c8) z_ADcpgU|ojSnpLM*WL@2TO6m$_Y~kTzgpctHsK1egy0dgZk;W;R>y#|!ovu7nPd9u zR{51(=@D(Ne2N{^aNP!rj8P*&N0;Z&N*ys!I1X2R8~eN7llxIwPBt6)7d#`F6W(W| z;jy!|hAIEkxqqMSl9fL(%k8*&ic%rbMt#!z2Nj&*N5Xt0k$y`SzHzLDD=>Kg&gdJ; zsLbvmV!>nuIr2)lA0maF2cz*qK{|E1&6bly{t4u6x z|1NiMo3V!?x*xnF1g)`l73xwL2s0c7kHPQTWA2v(lSTP%Ni7-J+^Ykf@ICh-#6(8~ zFw6*z7#RSb2-S1#jbQRK{^KEFc;g9qOUfoEUS@$+-9%WO#U2KEUkwdpd~Q>_HssFk zzzD!WglPb3Rz^mpM)qV|T~bNVCnEwPkd7a`J^@GsONMG2H-v_sry8Q3CuNSn=T#7+ zZI82yebdt!d7qtx-drT4tL^RS57PL5Z=mVOwwV5LQRGc@Y*cw{qKGenTh7pp%q4ed z-c)ir0Tp~OR=sXWCHxo_gEdAn$me;+1AWKX- z2fSHdYo3vXaMeUH-(^NH{t>rAIy5SULR*hAfGFfCyOEDv(Ynw8$;@SgVh!$` zI>fj2p&Qo-yShjpgFu^HlbL7kW;ycdQD6#Op#?zbN^kFp@iRtn3+BPTRFGpaz1 zzW|j5sOj?!Uwj)R*SMeaN4&0A0aR^#y~x9!)PdDin-nGX8q*M~2##~84|{zaj4~vg zQN&X7K5LfB?OcK;t)+)P*e@fYP3QWFFz6*0mVmH6#^|-dc14A@pbwU*t5sR#jk>2y zp2E*z09{@o%Ainj=?Vbn;b!{6Ri>y!P``?;0Y8(k9D6gpA;Z9XGML5^?$_$SjVqR> z=T1q2f-LlfQ~&>K0d~p${P0P@#vz0Jc4$c|UVrQME0vcNl*dmDG4jp^C0Lk4Eojf= zV^|}^R)CaTXc0B8qu?8Hk!qnL&Nykb7;x*VWI>D-jCVKFzcaIbnV`?g;x*L6o&CX!vy8+ykKX>5p>JZ50MF{IhrEO51*DtmGz*92B z7q_N@YQcMI)JdX#uNf*y$(X+s(48vfGuw_2QS>g^H~XZgXI~tuau<5og1_0(z2tI( zqe=7#r)hrtSa@n-KauN3MQ8uIiajgU*tR>)yu^Ohs1)>~*LvOuiu;@zPcKY1vx?sY zE(9K&F_+$NJWYNCS;sX5ME!Vtt5kY3jO<2S0UWrbW^M%o8N5=HiO*WS&KXJhD@>sk zlj;;Ubyl-^JCw3!;OvNGj1E@bSjSFRwGe3@*6-fT+#*;9!rV<2fLAAm23!wlb_{w& zB+}OfnF3bK+`t+FsPt?NKobBIGs!y7!@S8zt<7!%SUOZ zYYtl>>j{(L(be7qgpd7l$P1z5E0q!gCDjOF-&t7@0yDqfL)5t6^K%Fz zGakSBW(^cY(b8oqlW+gobh@YJFubiKydVd)0KS~UN4{_jKV}CCT6Rl9KNNRCi*Q_G zq2q|}?n;wK)e+q;Ja1`jKx~RYfevCI{~rL%Kr_F7Ld?Pa9{EBMgJ?d#}r3_j^zD*ErSjemx^&mYxorRz!C z;B4m2GPHAb?yKXdecTO_9}(V2vBUlN^{%ukR4 zKNNQES)T{9Liz(quS5iw5qRVnpJB%1M7U+GTiV^T$H|xlli@Y35B0u;ZChm4MCubl z-f~_qttVSeWu<*b~O5JxC;Kz4*8{t1MP)?sN& zSSu|2;%JP&#LSD<^6IpN=LoUqoKq7e8QhlLkRkp`uZLgA4ZdWEKikW3g5Ig4a$rq1 z@)Z?%_Y1egZ@?C0{+6UIc$fJ-(2s>n2 ztHk6-XphFTc8qALN6h+V$?crQkEQ4{#&ps%O2p#(ZjYO7z{ygA=`-Q}eyOSmNg)qR z9^P)BSlFJj+EUI9O{C3l?CG5?dLhw$5H-mgu{WAt!4s7B!LS@>uNdA6; zb3O%sIq}OAz`FyM`~IDgMCBZPs3*jdH35gh683uVPx?9j--h6N=)^h6@DODV$c|9N zXTUmiWx+qPGvdELp7N)rQ&{#sVyNlzk#v_MX*3p#spdUfHU`d@4*w!BkA?&IH6r+j z{S5cQL`1a%$P6c?c{!-)OCC*>RNMG;avV=o_o~0KCaGEoc6Xh3URJ3929v8N4I{fs zL0oFkh_z%2k?%DTwm3k$kW(^owu#5fan-sRzK_T2%xnBfE|sZt!J!)Kgw9frG5dKx z7Zyc5rc6w7VZjt2rC`b>$5QJ#q6v)yJCi&|^;~fg4d+F92^TmFbqE(f{N(wnu^T`P z1>sf>@|Kk360M%cC7NXqQ84+htAyW+gKDh(`_Q*#t1Tjk@u6wbUN#&+!OB{z&QnnR z?;0CYcM4?uSn}soV=e`Twqp)RKr*|?y!r3cAz!Xxl8u9Ft$sm@A{`3~;1gj3j^h;l z4nlp^(zbAZoK^RcyerVEml^i8rTC5sI$2&M*jO`?&SzU)2n=9i5k3kK+t)Ve&6ant z;9DWNw3{LdJnxrklb^J!$9NUoSzChrs1h@?jdr5B$0?QM%$mDS}8WMr;65$&@ zK*YzXs6QC;O?A3g=1hTBKT1-BjW_w^-28wD-}H4Wr)opqN`179VC>M{=d!p@z1}6q zZjD)(INl@$J!nFVhVTvbc zIWI>o3DeVe4l*Q|7=&^f5~U0V{0FNm{EJIN+}POx^*OUyWNx&Z)*NH&{UZtu;0v9g}6N4oDbV z_TzhR4C=$VwrpT^3HsA145;q`S!+}rc^CvHNthfc>l}WjD57gUlppeRA{~ zS>U4(c~cT%3s`fOmmI40{Ly}!iZ^x94Zp@v>u-7g`doTIT3&<|oCXfWht_{4%1uF&yAOH5qyp z0SLADGT%u&Olk1p95$7@esVu&$TIUUkFE00t}Ye--p$*f`d1N}{fA4|wZ=zqt$UVU{CJL*VnppCvhbmC4n zK!>f~CISZ!s*-&=dA7%e8x}CzZVO0(8%ELF8f3We9D>v0cM;G4HtS1^6KB5gR21W|93u(_z+*+>opL7F}%uPeF49yc4rJb28RLJpypG zP2%_pn;2!t7+`IMd3_DPK*Tpw|2o!ysA}#z@*L<@;L#HC4T%u6CH$mwumZ@EvPXih z-b`MH(kCNVpRhGR6c%a0sRO+NsTGgkaiwH_O4%ksNrW1%h0Du!_-Vi@8FAKpZ z88~CWjR4#t`?c;E1sq;d0OPgHdNo7F6CV(SC&2OXz|ujI834Q)5;Jzt#|)Ohi`ia7 zfOQ6VO6s)UB)Jg5X-LV`3qxR;9b61!>n&!z_u~NQ1!NJ2&hZ%l%+>Jf$J=>SQ4xbe{5KT_bIzpBhc#jA+$>0|=gRk~;{z8`FcD(P0OocTsq09kUUDADfoDbPr z=#2~brO^ccrgOZIsbb0Y3Oi&LQjEqxUG}Ewt zm(n1K^aKYs4I>)k+6ge_UtG(KXKe}_v655>xi`U zKgvc%4qNvpgSxIuSVPYOdVedm=djnlax+F{#qQ{>)b^>^mKeSlCls69yHEVB0Wten zqr=_-3=4ZpGULGF5)nWbo|!9?v5&B+*}J+eC>dC>uehSlVw+=#xNi0hhmn+-8r*rE zFW(>H*q#anclEEe&Gw7{H(ok2s9vc)wL8~Mh!HGOlQB&xU2bK0tjv)rHq7dd(dc(u z-v@?qtR~&?y^8M2B&g%as7kCdy%wRLBOG7jtBVWpt9edWLvwQI+eexIrqSe`_wagd z-RFxEeg+wz5aQbqe3_7Mu!0Y5Ve9i(un-Y5W*&&CPNFIq zP}sKfBAzM?l-JASZLi{@j{ZwQBBMwdF?kIUdD|eeb#N*OxK5pdGc|r^$UI<$%qkgS zg4{+KI?+sRc09{a94sh|!41dw!4N!91UV1!gA>R7wea1R2bc;H$70?@0dgYw;czLa z`cHl2sWNpXJ2-`eg+YG9F_QpOW*i2vHw^L~vS3{hHZmjl(>&wP&bZPO= zTgzWEf(zzD_i>eq9`^#GUh}HgH+13{z|!IrHn*KDU>NtGx zH79M&HBhVksRD?9)OWph+)r4gU>~NGf=mY+G(U0`RnXpc)*q6m5BJNBNKpm2(U=zB zn%D$l!z0UH0N8lr0(wzq0fHNA2&YcagUsMJ6Ti=RCvBtlQA+i$%XNA=zFZXiX=~x% z)@Z^|C#u;Jr={g}0DM*=FGcFX3#W?AHXN!2lxk>N5zCkB}4f#k?!_xAHz)Nu~B`K5y7+ym_X^&yZ5U>@7W*GpW zH0F>UO9Jv`31|q}4g~Z`(8RZ*#04STBIIx68U9|shp!UBgQBci_c<7Qdu0yD>XHs5 zuBJJmg-g32y9XrN2|JS1mBp(^*7FuZ;s%n`Nnux*7lpg%`nZsZ_};tugztkA&49wj z^fLYY(%Pzhbz=>m+uk9~Ynf->m#khOQ-&ek;zz8xtv*lRr1_D6Q%4by5TlLx3LCUg3IGYN} zas#lWzSo`i7M?ePI>KPYWrHFwVgewU#c*{nW>twMW^0cQ#yV|+j6f#W&b)N-VkCS z114)VDal%uztihsMl-4?_&*T6G67@B8*Rn<<5;i#EC63cWHE7m5C8{6@H!FP^#KU* zW}e~enSm>^CNl3g&CkoDmpLHoDDo0J$81X&P7C~*q9{f4CZ{b!nhMsr(CO;4 z5R$1f*XjwWkz*uOxO3dMj2EoM<&t2}P_T;lGRJ3cvqaw~aopENwfuW0*6AOeISIdd z;=8(MQ|*PKxlT2}rpyuKYh(f#I%piYbmF_)ZV?1TQ!GD-vtb3>}%T zSX2*!n-d zB`TxV%kdS*@M&xL1J>cQ1iV3_PbT{_gClnEhWKu&&pmU@S1IPbO@lbZC~=|xs(iFG zVb8Nne1kwXy%%!BcSO*SS<+N%gv(-Bakq$gn;lH!i&wAa^#COj zo4ttkL0?p)1<)lM-gZ*jd3l>9nneT*EDW+&HrA#)!v$QLOuUIvz=5IE2aJMs1}j6e zF2v+*j0&qNR>U8}VKK^NN<~6{C<7xQB&I*E$AB^nF;`-Ac!qGF(fU-~MuW3W>Px=& z{#t?Y3z_N+lIDx7u@Z&P43%v%xTQnQ&3OzJ(Ob(zSuNYtHob+I`(Wae`=BbHSj{@t zsnNez1%nS)WU0J8$%Du^0;Jt)Hj}VkWUK{j2)$|y90t>KUANE~F6QYB?d1|LsR(!? z0LG-gv`s;;$zj|?);2Mh>KJ!bfBFjqk;5p>5m_;+O|&lLM2$Xikq1>^PgpTtX=llO z80}Y#evVkNeieqtDlJyX;p@+J0PCv+Pn^XsEe+ux8xKbO{XM4HE_PX#;mrZ^?-vDJ zDji$}h9xApEy>5(sqdF;imwB!0Lely334#+6~@3Du`>mItH3HKP!py4vl?sdR2D*B zR|!nmbmBi84Am-M!J&I}(~hf7qZWO1V_@k{S%FrBk{|P4&<`{I71Ax?P4&q#aE~l3 zBH?Xo3rj>d2R(CH5~9lxB7+B4t(Ik6J9$EqHM()dvhct z>rPKI5&+yV8E$HBPUKxc_*yTA&-8NqE`%TsZt$9fn3gOk*RD;wlH=+f@-x?A5Ckywj><(-+=-udx7LuV?WD-CHP-Byo(eJOL zLF1k1^}{{Z;}sgrXcg7T-c)Gfu>cJRefexdBN4`kU_Sx*aSRFh)dY6HVZ6m~&k(4A zl}v{ZCW*lp63imitgj-RIF@haIbC*R4Jc5>xY9d#Pl~LzN$Gv9jup@CFkbtEW@w&bNmLP=#^EnJy`9qP@WeX-k=ZT z<2f(;%N&p$Tre76f{K$P!a}Kdc6)hlbi?g~x!CVOqW5jI3n0dqL#B;9?71h%>_nSK zSQ?26{Jwnp_d-FPq`$qkYJT(7ard*AuLBB87JZf~Ae{Q=u+uFcRuTtwQ7{r5`QyCf zTy5rw3uXi!X{2Jw^>w`cDqW{*aL~w?m|UNE|0-79k4+A$7$2x~vp88;)BCr{4Mv+< znOuaTj6=d|1cI$D5yv7xBT9wq=U4VDdvwS4M=8;sMZtTVIbul1NXu4dGJw_3sFQi$V=qG;a+sTZZYrxLGx0Uq25AyO@iCG zp&jeoY4KIVO6RQh&P(ozV+avPb$=x%`4$oGu*1~=vJw#+Efi82tq@iMt~U|XKP(q| zl34*Ehxq8kx}uSh*vb#u2$~4fg7m~LA>NU|24xc^KP9q&$i6;M= z{Aru5pO?2^=76lDu=huh3C`47VO)47i*?6=o}$m3g9TJ^zACCEj@+8okQdHR!f}06 z?ee&2x5LZlm(QNcrVFofe`}`{bF}ucFbV16G%-f<| z;A9RPt?4c~<$csK-|@S)i!QCtkRaDg0|FYDF#&GvvJYU!1xSeria~}4mWnJ)f+Rv; z1=sz^Q5{lG4C7A7Tt7-{hgEenRz8wO5q zz?T;W^v|H(oR7a$uR&(up0oH$3H(Do;+;2v@i=?&*8-TYX%cPJq}c@kUq+3d$JOvY z6)jD)FdS5weh|KkfbO8~6HUAVk?#R2TPACVMmh$)%C&Hvv>pLFk{k0lf?Q7{DDSgp z$Cguog|%i`>{1iHuNkq9dlKI_K=B#l%;)CRc92O=G7P-d%i(J#!+QxX@7RLP%i}I{ zK-MZgqKmn7V9JtTa1M_J(}0E`qo$b zad7&6IEzeWpi0s@YHXr7+-s^jA31keC9L2{WBsao=ji`-#1eJ4YQHL{22<sGk61Y*zb!ZTUjyHpcQ%>I8DU5t@!Dnx1#ahhbk&3Uy`8`9h zNxPU}hKsa~Wydg-&x!L{xHaDfb?}Zb`uO7aM1pmCW_>{H$ymKsmV6vkgv-g7A z_U?{2^}b~+az-nb;Rys3z>uApg*49W-giSBIeFw`NknJz}4%t%l$KYd*c|~_J00ZkVH^e(( zauI5n^9-)C&sAn5jJY-Vl9CplV^A|8SV-c8_$5beIR+J^|tgo7XIpW6& z001BWNklPwa{v{{F^@Ya4q2Qpg-LDHd4P@bBfj=s!b<#*&W z0s9r$1yAmy)DxjT?}M1lc)o+{z$RN1MlkQ=3J<=KDD%+pM~jh$?kGIlqZf7{@&TI6 zI_CG}xTG*v>4fUd5H=aKVE*&L8Zm&QX^OO5r-MAGM58CQV>A+wb$D}PY}S1;CzYY< zkUCtDt?)oBkoO*rRd;b%9gX{_>V=A-^O3ZYm4sEWc4fuEQy1V%E6e?VUe)m~83O|P zwRr|_7=rtI4%Pw1XGn@i~5Kv ztSXN6vf&>1luin8qRl5Ode7b)3K0+~N zC~_~?5YyJEk5zDrj_eoCSVfw+CHhNoV-8OjU2cJ+hOS3;CbzQk7=04G=WQKEoj_2zPcv_+^Gov{&#k6_0POilzdR2T$sV=ff%i-D+ z>jh!u+E>7-dcI_OxdmcwWmshaVj4jf)sz%`35XnUNED7fpXVU>#@$20%Z_;n3@4!S z8LI+xCz4FUuT@+C<9R?>Fa}=AGyGP-*0}@j880aND8jw-@(5)P$XX@(@?<%TGK*iA zjQJLLkQ3fyO-{?&W^B^rkE9Ixbt|HKeH@UsR! z5}ay8l080MpZ8jcERza%4tjX!_&WcWCyv3dyfJ`NJG%^dsnQmz?4QbOMZYqRvsmJ1 z6G*h6sg?9e^{M{8Y%RhzENJmx;E=Go)rD~ZjOSOtu0xY7I$_r`9?knIgAZC+WdqoM zAIw}W(`E9kPyqsfwqcA~{%x^cpwn51HTuu1+dtfpkBdGYVYU)OV4v_0KJt9_-<&(0 z{UQ;F&RUv9sbcz!!D(g~UwdjVfu&mL7tSOfE z0O2wqUq^u3{@o9(Zj9FQe_CO^#Mz!fA|7GMr^@3iS%y7OpD`?iJhvr3NrVrK!7I)x zcsnLC6(TI_JPDCF~7p1s1f`zR3j5)g3G2mA7UB)I4QMp9p8 z?GqX?xa)x_vmIbqbkefY!Lu?DvK;OZ(oWD#EC|s)3Om-YHoS|h=zF2e0a++%1e1>@ z(l>colDi^sk!5hpF)XmdV=m-HaVn6f4*oLadR`6`8C&yS{U%A;4!&$M{C2O0lO(GA z;qRA2gwx}B{P%M4vZtOzD0?~n-jiqf_3ymFr#80{N>T0~?4PNcW}L1rI$GN|kKwAm zwBCcv)?Fa4>obPPy)MRdze%e5J}PIJ1n+g9-*q4LckL7v)qS+;eb^FBjRzGUYy-P1 zi}?4~SMXnm2`L5?Ht$kZKX>vB&F&uk7rnmu+2VnJc1b`VgKbQbN~zrjRl8LE*WI3- zZPEVwkUBcgNsfz8)$Z4W&hIMSWAX5MqD;(a?3uXZYYv_~NB`^6kbW!r{L>@Ob#J3Y zhFoTWNw0^Oyy+SZ7CaJldS<*RLZ||4$l#sKi2Q^6t%~34!O7oML9wWxb7VBCI7lc= z*;cqk0XSpX{{<=DB4~`U=FcR!lmXrj(iO5>m-Koz%iudT$u5~cRjXNa%_QHZw40{t zV-bR7AIl;7Ur2C`RB#+Ng)JkZm>8}f+%6;OrSesbn!{{DD5lVQ7x8v>5cAzfUD8O!P@Lo<)kNL~_9SJC%w}tA zJve)^gqwFtO?KUP^|>9s!JSa3rS34Zr2P|*YyVpdZYIYcL?_I^X6_K9cN-A3|E;bY zl{Pybtn+!G`5n$^6AI~-tbN3F`5{g#EsU+>7rW|k!GA2HNK2V*BG=fI0YD{m3JjIQ zSo&O%QH{pK&h~`a-vvLXTC_Fk^nC={jAw5Xrd|IYbUvix0-_Hgcb>~LbFBL3FH6)^ zNqG)%;Vi+N^@LW9RsoV>m@5Y!_VD zv`FlO7lOZABtK2at*dez3^*pqw^?hAJ<>}m@3zdd;tG&;g)Pj>fn^TJS_QoiN}Qa< zUwfKmcuQ1?<)spzF(09#BC%1s^RDbd1h9ekIcOKLgQ%4=Be-o0TnU1qeZneqdR`tw zX#rgHqP)s>vQOE9_t%#BA6`6%|LH5Q;|up6cyncz2j_1WPEP0zJjlex$vIu)i4GS) zbxAU6P5@cDtjK=+pu&gT$Dz*=FUuIT(4gCQj(FxKAg~YKXwq>n$`u69cuv6EkxSF& zc7$hX{T)shxf5Z*!gCyF$3yWS6CqQ=Cd5bp0lOn}^NW0GJ8?1Gt`4Gl+R^MVJ zw{mb}&Kw)bxM(H0iSi z@RoZf44rG(hJ`uQV@;3!ci3S)F+|Vv#TtoFYV*!bK z8PPS7z!VKMLIF@Xah6XY;*J0_2@()LHuOx|kO7~N_%jv6^`(MH%(_nXo#T_QA)_Rwt^9r;>P48BBlIOoMunPu5`CdO!+&x1 z6#m@#GxWmFuJt>*9P4aF6mk$Ap)?k#j^bQY1L#;Vy8uRufvHv&=Yh_nmZLt8zwm66 z<3WsU9PDCrIjr~qibr^uhXiHSY2opEebnen6?Arzf(FKUjuTK5Wjjx34bH15%@mKs zJ~;rOGULGz4glJ*etbJ@#8KNcj0-Ye(cfAB{L!CvH1W9)o;VAmi)YIJ(-3`z zNYwlkaD1<#^%|or*={ir@AZ55vNWG9`DAI~qHL_KgL48@h(wSTAF!rcQcOAYn`qt> zZ8Mdfh<0Z0+cixtC0o4BEQ8(B@efTW_LI|MGGZ9?7Z>PvC5NUVcUAn3#lnIiubKEM zTZVo{EKJ%R$21J)#cO0({M*)S!RsRVrh00inrLqX7eHb3#QZv%7FL)t)9aZlk`j#f zPgGK8&VU<2KJ+rUo*9wM=r9w^Dx84aITm{?We&(%B~IK~hFp~HiX>tMhOa;%?H%{bX(38DLD=L^ z3Wk*>di{wruDo&sv#o80qVTybk4p^`}!_m!tq~<5p2y3xio)zo%`+~r{sCJgc zLrv3N3`m?TE7Ld}>`&ANfX}!4f=>#OWbbbrdnhP# z(e33Oc=jK#(g0-acb8dU&b=RRNLv!~We1uJ`#lM~Fu#8BT>0Z~UNt|ryDNaq0rjZ@ zW3}lr3W?61quRiwxv(9OUPN;rlj!NQcvGah9YbN9f9q$)>4%d!O>DZxA*8ME$ zJ=Za2*f2@X1gPQv{4;UIs>Frcg>5w%Y%qWiRUU#Ri_g*Ts~=$#a1y|H#B~3G>qUmi zwLnJ-F!g)lh6&R9S0C*uFqlKDG*syQ2c0G<@2;a_R=LT>Vnh-_T>7x*uf}9dIv@YW z_Fg%?sB{_EB|8OU)I95ZS~vkDL5K|<5!@!^ zySc&3;{rBI3r{&oFwS^he7ACfH*&()KxK@$X9%tbR!s7NtvH(vAdj+Hqet4rlVAxw$YMTqYhgD;gOoCN@Jz}!1vIjFenR-OI>!nQH+s`!u1 zU_|(!i7En$M>W~J2TR3_MZ$$0_bZr?b2N7jIeT9Z%DPA*_r>hHy>e`9(fuxWaj^d+DznWKu>Bf~z%0 zc?y3}7o$?u+2Q3=fw}bfLwwbueK>-Z+S(WOLs^yFoqK18a(u@I9bhaLaZku%F4+*d zOj!-a8&Czkr%?)PXZ34k=4`lJ)eR7ro27HE4IsoBgWG-Nm#E-7*5R|xfeO7c!-=Bgk0Qd3`lbR~>)etL?y9!QtUh6) zn9nLna$d}kgm`T@Fkf=6x3s-I`k5U8Ws7~+@6n$E@Wc?^AldLEPr$46uK_wqxpbcy zr$jgwD-AL_>jjth48nb5@OJ6=L}B^a(WrcGG%7xnnS66Fpl=u=i2&`jWHVwB)=V7v zugE-^Wi*ye0ke0^SD;TbvscW^J5=U?Y=6=DC(AUY#$;OZB(anqw0@+&#}~jsGVeJ* zIjum@EI-OX=b(NaHHzl%Mpdf55WfzQ$|r++&hi2hNEr7-Gq^aPLs6Xey;vLoS-+4C z`t&;&&*H!Hoj2h8?k?&?lzEx#>LN|8vHjg|8UQ5TP|Z-qflzBVwdx3t{2Y|w>#ySv zSUDEj8Fk1Qk%*=gC=g%+pkege>Uav~n#oENB(=?z{ysR#(b>9>C}!Ibkj2Vj-3yC~ zU5MYl1MrbHCJg;P%>-kOBX#ja$bhT&On^>`JyRfhSX)4F)F(&*aSDKHpzC51_68vH zfDIk)OKcR+C5Q|a2eV^}q_N5zF2`roY%&VRq|Gub_*KS79##qrVTS@Bjq!%Mvh+^< zYb!?5ByF!O(!W&o5eL0V;f`kp#kz1ONT)!D|e7%`q$s`!p@w zCkqRI-Voo(415Dn)8`#e0AB7T+cZnmf@6LHfh1q1SVA%hoy-khSz7FWX*4Q7y0tU? zv6bcCLceFe!oW962TzHBEFo@&9ux_UsRxRDJ2&`sNx0xFJXu;kPX=vad0;Jka(lP@ z@zJQbFzB0CmzH{;F$P}NT+2EHH5$}mD;1QcXYv9Ag-k7(sn?}+V=yo8UYP^3{l$f> z|Db|;UR^n^iP;R_B}k6JB(f*|7gAfmfGzfqN(ZNo&+q31_X;G!)tFImY&((i5uN`t% z?(-AkB$0IZU_0tSFWv2TqNyz<0YfSE8nX|!>xiscdQI#YtjzmY#R!(VT)G-{LNs|r z)~m$~s^OraB>m`W z(ADUZmTU&b`Z#2cFxWU}f4>GEvV8+#+~z?dpE(@|O&H1hHXlh%8eSMP1#s1u0>Y*R z!=wNh4iGM$LpZqsFPh9;1K$T_mf<}SJVicYH$28t>EWS|eYXK@AHbFdxfh5&4{Qkb zoP|Aye3uzT(@uPWw;6cRIa&qa3=vB|_p|zr5y4%9xFd|3PXG`1{H6`}dOiF`zn8zB zW#-!U_W0vlJChIfduFgW%op;Ez6lI_>f(YZ5uA63MYvYhAQgk%Hso$2(4=I(SXh3( zwD`&CqXSn4YtT@LfK!-r<1q_*YnVqDAT5%Fp>a~#T zHkn&v-qkV(WHXAeDn-ftpwX9tv6x*yO?gDgcWHVM&tbC$0m!;LWP}Y(OToG;>D>KV zO_Vnm)O&~$llnr?g@dWVW!jzmt^AFz{1vfB@|_zO!Py*)8RN#OH*skN#>bz&+COpZ z_n&%h@jt(GZSU{A`lcI75^B*D#|VOh!?T2ml^sip2q0=InPfqYs^t~)5f(+$Q3nM} zhYM+GqWXFYj$Bv-voI!#j>RM{wsB!K*c?CUV%s&Y;_;4~#~So@Uzez}i;TESvKch) zBSfh%*NmQt2={Rh=q{knk^QWn=b@`j{Jbz}J4`YraA*_h6ABEdOVsR|i5P)s;)KLP&(N zG}x)*2p@Rb++ACte*nx|5%3vhc5Z2H zWgtrbSDoY4D68byTtr|=DlY!V7753|JYolDClme)qfzl=*1A*uUjE(1#okx5jK3x4 zvQM-mLvR<3WFp{Rdjo|&<3NuYS2Ze>RYbOIA2cuTUYP^3?xLx7glaFX8Vtozb6Xwq zeS~G|Z6WXYAl17`ioEv|rHWbgW)?~dpC}6cPOpdGX)h+4AhQfRQv5!d#lC+_gSb%u zWC2Q}VEPx#&A0xo{A-{4H{r$qcgel>O@Ps^DE)${R`T-NhxyEtu<*n)z(4fkA3pnm zAN$JF&#jEF+?ou><5K;$y&nau^EpM)&W^$zsbn12YzrnJscUX?++;Q)3sH8=g|q5_ z4#4I1rP?{TRJjRT=TzyITG#5TJ2GwUbE+PAR|I6_mV;|aR@rBuS(eRK@Qu0rh$h_6>nQyJF4BXbvq(7PRllQkqKeM*H zupnBOj(H*)XN){f;{UPV!#9$7l^;o$>3vpQ1y-30 z8+>GpxA&Df7~U=ZgM~l+onJPe|LrsGr9T9>c@NMAr?DW>?zZj&UwQ@H*OtNj(WifM z;U|9TCog>b-z}Fnp0#^#k(r8sPYh(YKKV%_9Z(A_V;C_y$ufDHJdhg1X zM-ws`9A$`aO{Z?dF-Y#mfdl-2%+sZgT>ixFUhy;`j0Xerm6es= z|B(@V-Dx%%^$R=6%zf0X0LYGcLlPIM8ST2w?VriN@&|vLe)~7U ze)S6gdpm%O%K#gvMdhb*t`bF16vk|48~FBh;LY3cl%3KC&;709R{ulBj>cem1ih?I z^HcevxDe#tcDTaBC$PuSt?%m4NS+BJ#q&1rL4A;1;z0g3AE*uRqTkm22L-IH8W;`; z?2L_$Fk!t6Y`>31S#}?Dl=8lNT>~%?;5%FZ`0#W1*4dNhpNVrn<(M2*6@(u=!Rszp zJq2db+M8vxBP=Kb?2#~L3`1ai4p7aK+d`5W!p#tyI|46#Gzj&I%*8b}?#_ZScb&_7 zyCZw1EXogzC*|cqzxPEX*vd1yI++w7E=%|k%<$fLVxQgKnLN)7mzI_Wf7b8Q%Ng-E zBme*aHYE2ZFsuXc-C)t_tND|0#WAc&&_L@sEg^2n{?=QD=8MnwvdjTlU3Bvo+#`xS zM=mXFl%;zLeWupS3cLsxG+GF`2;p@-=Mxy8Zo2>n%atU7-2uSDIbH`qvFHrS5`S_s zbzgK2zbU^P#Nx0UjQ%855OeG2c-hC?F5l~d(M&9x)Ixk$cE>+&uD<@)u_!;tfY0UI zw-(Ia1IS+cX5W4FkDw&s`EUf`7ECG!7z-`?F^Mya8AO34E z(6>*WFR#7X&x+EjQ@Dvv;lbSGN`7AlSUiqWX_~#wGAqqbm18n0%eNfbV-Xgu-$Q$R zohH)XbB6lhf&q{SYdkHze%`rb1W%tgpIup||30SN>T=zH?(g5tk|*n(jhpGjC%6*b z51WvN6{PDvi39{8S7l{!^)tkjJzYxV{20Rs1 zn;X@t|ExIh`}}2N%X*Bws85b3@C&8I=Q0DYHikL@h8vF=3U@o0=&Hgc6$?G`yRk#q?#oH zwlMF7P*uC%Aws?rA*JOtfawI>-7PqCSqvI^e zFH0t2JZ;IED%uBibSz0n>6g@`Jxk)IYpFYGzaCU~d#O99t{KZMraEd>rU%aqm!ds3 z0a#u_c;XzwiR0NT64Q_@tL-~F*qiSiDjJMnVdxy6W(O-e^i)60TbWT3cN1(HgIgG4 zWn{VtLc83aOB*mP6p6yj4BQk^ScxVjVu>o<3IGMd8jyR|O4nPF*)14Q!cI;(=8@={ zm4LWrt+v5kZ4ZN+0$y9LkXVnd&N1`8EOS5>O0aZHqJCmg@eA1}}0EA#=7~xhmQ5U^^QO!Hstz+q_Q~ z7jD?6FTB9t-a_0NF|3D#BeF;bHrzHT)BA11m0ccsOglP zJKP^FUgGZN6f)C;YQP?%F+x-tVLbH#52ubB_{ekFZ>=uj zZ-{BXiXz?5Ab(HhB4MP;lFyZvKPst?458$Q95Hhqk3omK*6~ea@UE!jW6kCq1|p;V zUeYdY7A3r*IWJM=a%KL`unuDpU*digr$H213Qc>|cMjGNHAnImAzba}rpVXKbZ=Db z?CeZ`ipYotnsu%m4Hx=;>(H>=B-+-UX|Ri$qS)6aC;Nncu&C;F0BH^)e@((ktDfI;tATHPkg zcfxlvn%VAbYA!TbUNnieAHaCZ=FWXL&=fO{1L*Z_ZVL`WCOp5bb=4|%AbD0!+5mzK zM$C|4JH|-Wwk01pF5-9HWG8w?FPU{>y%nPi9pf+nctD50jL%s1kG)VYKo#;W*AQp^ zy%EFOD#9~Q5S%%cy+{OCnGa6kbd;`YJl5MRGUqzWLwP$5;!P*2BEY4U+fx!wXZ9xE*il#=WKK2ImJ3o=Zk(X-6tyxYwarR5JH!YD(20}$^K zz9d%V0D`hv5M+C+dYAfd=Pa5b=PExu|9He=HA_ek;5NM3Qm$zcOQg!^%pQz!@XSXQ6O*Yz<{8Ly?p-_!^yFEB z>(>Fcb^+Fxp>hmouEANlcygP0i6}0Bop>(WW`4r-_w@E-9ezxP-@-L`#`)=W8t2ct zMk_z(zVi>NqatPa@aG8E@+^=z*}HCM{C8;Z#{7|G1tjb5%Mxfhm&P~*Xes+QpQEZ5{RtRS zG>t}1--Yw15I*)n_>F}={9o}oA47?-vWv|*l=V+27vmf(s%1j_a|tdHV*m%RPCn7O zvSQ*DQS@cYWA1)qxP9t`m&WiavS=|EVq<jU%$4f7idi&p2HN_xYoc~bg;dP}#OkVFMJSx^v_=9 zKer{Ydl}WtmRO_IoZ~{o;6Z!OMoE*xcTGcw`41h%Z|$IZ4*Tt>$AoFLtR4{eEEKfF1UyQ$9z8lJR4jiBA<*`EcV_ixC=` zwNU3`FAcMYD8LCb$9y+&Wnn^ej%7ws7D=j|NU9|Ck(r?(2MS;Fe!! zAOqA?NEEc*27!g!JX$mFYjeqUx!}Q_t~bK+ol;&EtO648DZX(4xE4$h^86!Bp+zcF2%$}I&XhIF9FT=FE%-wWuvnJ(@uF}a z4L${9K)fcq7iK)ol@%R#5IqI$9B-fx2#^$3aJ$Aev{5Aai`QEa~dylJnM(1Enx?eu|v47nA z>7W0v?e4DO@4gJYbr)!18Q2)V|D?>bV~zHx*9#mj`veTu=cW?G%YpK8V74-Z|LnOZ z>2G}eBiWz({Ffc#3VVMI=Fdv3dh%T zji3c@wj^sIYNE`YT4t2sAP>Eq-~&(D@|lbD+W_>naCE1}7$0(katXhU8LN&W_?Kj3F0TSN%T|v=QEEFo>%?dzvG;-4MMe8Ij65l`z z0-B~sP$YyY1O{JJbc}4CJ+mmdmDfDl;2okypqKh`k=OhxgV9)AGPVRjT86U%fKVhd zPyx*C;X?jkQnr$0cQ$K8HT~ zZ*o8BnAe?y4GDP5yf2=R6(tdG2KNO+1gosz4km{1uJe*0LTrfd*tFG;Q4e`OewE=2&^S+Bf|Jsns|)k-ShnJEDa6+RbQ zSnTtNx15ugtD>4uis~|;ykz32iH^LZz7A^Vql8Rw1=;d(VEQr&=U|a4D-yg1b{vYH zLS&96!3Do4*sO$tR~LW9{^h^EZ2AlTvHg?Z1$h120Mn7*ri zpka1ro&JulXK)broYeN@jgjog)haKiNb+RS`n!H>0t& z?SZ0%Xga!qmGm-`zqYp_+M=hM`B3c>(+ z$A6ZZC4>T_WP}C843NjjAil{Ggs>{%2h2Q)$-qNh>h2N(d{SADqpt(HVDYy1hlM@K z!x`&lW(ho75+5=(<&vK?MBhx!l-{p-Jp{@)vCm-TU8_J->e^G#3F@h^0+tt1<^Q>3Mn{N3t8q zOvsj2U-t*KR319sRHDwXJz$g&bH4>1F8?RvpZbL?d-|iF%3uEc^Kj$J20ys1QWhfm z3YT94*u3riW{gquC5x}w2Y-~|r~dU)LR&GzoJA_*{%tUVurvh7Nn2mY2!8+EY5I+4 zE}Fl0<4y^qvCmtWXMQG`TJO-8883eAW-NMGtteP6b}s(?FrAbFA8sn%A@5Iu-FbdI zz5+(r0E!2dwzX7O;Z}m`u6s*M%-A0pu1DD!r}+pEC@Z}jKK5X{T$~nAEDbT4?7gg5AT;Y5aI*I z%B(`+zOAFs4j%E?kjr&E0VpiMQx_1%Gt5Fm5hk+jyjbx8blmwOoxLd>)e8Mx>4*If?Xm3OhV3~#BHdg1$lRt z9o6Gv-DG>>&&wtm_GZ29&~-!h(iD=X^1gr{ky3I_@`K>V2s&Aa+|=o<{Ym1 zc4lSw7+DB{ULD8FLE1w>-eDOMNH>+_HpSQ3``PJz3c;|z%sa-wZDv@?5MT58HAC)8 z-z%h+A7LQHe_HRKi{MLEBJfR6_E4fsA-5KeA-KY1w1v#QvQ+Tg)1bI{nFF#|kl+^j z_#>r~je*yLv!%RgXVr;cBX!`EM&fuqG4TnwA@p*GLlL)SWX#M~$3NAo$R}HCd47|s785Lgfw7>R^ zclB{$HW>8&o_pqnW5wC${<3*+>+it5YcJqMop1SY`04~GH^XJ5Y2+LG4Bxs)*fQ>ct|NQWW+~2ryi=O!AYb9*&0<5isU8R6A z@+p?=5g7;aLgJ9OybYc$RuldCzEs2Cv&m2jzzBG6ax&6_^WwSsXUtqi!b}@sl!80q$@&*wB*0s z4j@k=#7tS*Ra74g7zi1l?4DQqmz(Z6r)vpgvcL0Dn7S$GA4r|XN9QVZXvyd2^jY4} zTPZfh=UJ?ePM*~}mqEP`;F4K{Z`D*O{m;RY6l-6C`rd@m>lGGHFepPQ?gGccO!B@5 zWH1M0b@B2O8qFw)-9_)=(%^sF89ec3-dp;$h3%_9YX5)s-UHgQ<17>X|Ej%DxT$kc z&Y@+gC0UkaOR{A-V&kz*4u-*i->_g{9%*1rdd$oN)?;`J48y=VlRXSxHeeeY zVat{**|H@or|y>2>TtVnI%)5!|E>S8s=e#%6Yja)ZH4ahYhCrd=j>g(cI{AK{o(r> zn~&hamKiYlJRErr@P++AX+y%9h{}S}YtU)Uk+p=P98cpvW_BcH@Q43ueC z>bC8Xr(o+p++|oxKH0ng&6tHhFREbt2 z;v9R70#(fr^XmgH)UqpDAv5pKMQsF&SWYlyFzJgVEFvv3U?NUtCk9Xw#zUWLwW1W~ zjydgpu2e)vQVSu$orhhyiu^jW{L8x^Rbs52v(~2I`084Y!wefvdr}I^T1ZqU=Y`_1 zY+VA7G(g5P%&fnI=Q*cYaHop``A{p(8RGD&WQuL7Ec*T2CO|hHRMr1|UmtRX$RXbC zehib!^*W<%3dp?q(qvA|l$(QPCj2dCTpXNs61b`puKq*7HYj#cV`GwcvUuAR=12nk zTJmT)UNhb~iH?<_3q^+gj3@vQt^qMItT=~U2vg&}S^@_>#ZwVI`I-*Yi)Z6rBn2pw z`A6a@K$-WLQpw!Oiw((@ z1b~arvvBR6`t$W#`gZ_Ds1l02D3ppr6DRTecNGJYS}uwkQmDz~qYJW>B2hTA5xYG3 zM0<&rVmUvB#c5GjA@B zRhY`@mkwFC1GD4xJU~z8B`fTxUwwod7GeY9@=-le@9idFt0!Ts>=wT+GpU2 z{hUvxAWf8rp2p<=03{VfK#T>M>;xxPy^(}o!%wiRR50vD8~0i9uP3kz+zyl6v@xe{ z%)IWsv>Q5)U=mKWZo;=TNFE#Km5s_V3q+l@gu%k_aTV7^0x&m=a*bwZ`oUlSIbykl z58*z~VqeTY)W1)-Cf1{maq+ofu9b3sD2RMF)P_H%R^?z-y^ZU&3B|qP6Iw;I0)6p= z^KG@eD7llH78G1{DL!=0F8!0%R;vbsCq*olPvSas1__Bj*E+dSpLn!n*xli5v_D3P z{8Rw3@^OlRMVum1c;Z+{KtgO*65-Qm7;NRy=reMmN26F?h$MmDI@W$ntD6oPX6pe` z9fBv97wSZ;6W+!pBn}BnXPRS>dORLw-iGtObre#|x_YtNhBZ$O>S|xsA!B3EZtU94H7>$M1hS zSarqHgOzg9cH5XhN*bY1@VQOO=dbCg-8iR7La9FV7E1#S+s{(Jl8SbrROWS^upR>)~b*DbFEI`g~ExeK!>{FFd|Wn zTok$MY0T#RNM%6%zzDIdzV*Kk+#MJtywPBi90pg9R3lpCe5Dz33GVR%mxk=?z9Uk` z;wD5|O%hyTwKXeTh~?#Gk5#$($V5Gq3=_*?L`bA6vjA;wO%t^-v?`xHQe-Jl5`7>^ zv>y{LWT3S~qcw&YHrJKHItbXMt{3;>&}kP@v6@WFRe-__xcskyxnazBpnx(3jLg<@ z!{K2X08i^&lSz)HM&)0hi8cjf6PQ$;_~o=?9iC`4P&Lj=>xs|~sb=6Iop4_kG3OY6 zQz<;IH9S;HaUUmt`tMI$Ko*6K%6TWGx{#NP%=6py>d_BK-UYAqYxQHuI((hZW}(C2 zJ-hKh5tK&8vfe#-wXpMo6Cn9$lJQMUq=c~6-g z;!$HznTb~}c$UH-xDIDtatNzLso{F~->VWjVH^_SN5Htr{xJ>LD1-&6oO;S*M%NUf z|GtRYD6gs8NYn&uKNuc&U&QB#(Ju)7N(4;#(ao5b5k)3x`xb<2uD}D^HsfCgj%CZ9 zFBH0otk1n8AQ4h)Y0enO`=vFq099g1NUfKLc<()ilGF_49F`QG_v%$IhPuLE=KD{+ z+EbYDjZ;%8cMQLdz4givoT!9|gk2v9DFDULK9qg2UDuA}OXXUzhl?vLi77Y|UtrLS zh{WUbRYEL_csxzj5)f?mV&$k5_Sns4g(FQ#g(d(OAaFm4-&IUUVY3V_K%|bR5gB%j zQR7h=PfXmS#kqZb-qCT_WP}YJdt8rW?o6^NAS*588JNmTgXu12U8N58B1BK*n3Fl~ zo<<=wh}_uj58_xpkXFJD%@h?Edlzt=%oy(*{#Jhf+!F013)@i9C+eyCqEbcP1)k1q z$FW~KoTD)XO_IDZsh7X8zVzJND6Iq4XP0qirfZjv0zJQv;P_!=9V*eUWVco)v)Da^ zbl?euBL{(M%_p$oq;WJ&lqJV z6TF#XPnqPDg?{jm8n5?BUf|mf?i(bB_*_xN-nr1<@>~KabA5CGr|>ETAcf_42LeGJ zzcAJXc=i1>(GzQ^9J4T%*7q^=AH7%6O1s#1pI|iI8e1Maz9#W?;&#Pr3e{`n#&UJd z!c3iD@8tQn)_Y!fD8|v?(AfjJnY?tzGT|-^8*^*vcyV|NlDSWD?MUXrI zxs7`1UU7zw2$ClgF2N>~Q_{&$TLrVJfn+)07*naR9bp(cmC|BYVAW8 z;Oen?T72Phdh7vE58ns2y#`dP12&poP}~62X9;$k1F&ru;My`k+625}FPPWA`|;lS zmwq56`l9zXV50Gm6Ys^<*%|!tS6!|bo;{eqacEJw zWd0bag+B9ld@k{K@ihzmFRq^lb^OEO^V}B-P;?#mJ5P02^dkmSV%48a0fQO;L@l&6S?4KlMc%u0ctOO5Uc<38c}47{wR=Ms(2 zAX*Wmf&8VhGzxnbE|ul$WGVRmudE3}6-BD=WH z)rb!z8or#S%$L?@r)$obn2_l@0nnCAR0=`&)_!89b?8lbGW+Lt%l6;Z4gFEOAyd4&|dr0fm}QZb2C_gj_TwVPr6}( z%_6^O0AFEp4}S;X6HmG^poqa%ICk*Rh0j#Q>jROeOgtoc|8WB#$n&z#!3)FN1TR+M z@yq-BXDXm4ZXV8BppyRmSzpneB7ju z%5dd&rW9(e<0~f~f(A=9B^vqrRR%sR+}+FZW@}(ayPIFNvf4X$+m_}>6V1|plG%~0 zcP^|h#xxqCTGP4;(NwDZnTlg_yns&mKzKXX%b6Yr*3LMa0r{7=t7~!aN^#|g)`Z!#Z`~gN;Dqu`4Q+|VscL|5YbKmA(>^5S*D%B zJ~Ih!=jy;z;|sZ^%>>MQChUwX;JTy~u=x1CD71tyxoiIwYy5&hCr#yI5jmWdEFXHm ze*WRh)a;h)dujb3&2Rc}UQ?d~m^t43!Y4MH2kukiqL|wRc78KJuOmOWvIKVNs6r-K zy5iN(;uY7ov-+mLhfNE=rwNYK01hx1V>oO*k3~FZvgBo=@bE?FC3oGl*Ic`_qF`yo zh1WQjsT#5ja+y_*vZ^O-ls9ag#glOrAjO~yDmhv4@v6Y0+V{{#JRMZ~9@?*Z)v9e2 zVX=sH(up^-5V3gaC^yc-#a>SpjRA&sJYy1$5L(eH0AFkcuu+Ik4>|8)Va!ouACK#> z>osgVtJf&(pO4_Orzk`jhY_nDtr%R60%b8^t9nK$dTYejkgs2>ZG{5lnkyKPso&VL zpnuDcAr8?V+?gNAntT7Zg%T(|*)oS?QW?iRt*SvXorG3-v zY#r0NWKk)2Kxw9vkZYkV!A#sI$+siXlT=x5+O^rP=!|KlS-%#8Ji`8!R95wtM-}LkT)yO5x%umXU$h@*Y zlprn=3yiz6GH9kPF4?HWL8%})n~R^mE5Ed zKHN~SKRfTDpUE$|?pNT^2VA0Ao&mO2ff$f+xKd(Ub)NMVc3WGr#{8pZe&N5*EBKPU zxm_ZUVqH4m5J1Uqgnqy!394C#U)p<>zUsNd_=bDF>}8c^%lB1Ck}kYhgngc)c(M&3 zF7~#pd#?@wTEVKHjoOAPIZN?(lk@>9lYR^$LfEm|3}QK$3^F?1d>%ow_u#8qLsM&) z38fVzgt$A;EvE{wgr1~ZaU!!;YE?0bv+B=75{d$Zl{}|QTOIQOmT(T^3(yZL$Bj!h zfq&Tc!>(I(JVpWTVHSJihV>`DH{yF|Blk+|Emc0REbF*wmKPIjoeoK!;6>*$7}IN; z7xagQ^{HrEWOO)LUp!;O-bb=ER~b6KUgmNh3`JU(rmLQ{0_8SVE&CW^z7#{l3Mk1Or&4sts|qBO zpd;`j8Ec%SNul)SOKLnKyKvtz|Duw3$k^X?fU$N6gj4ugQ;pAw>e;Obf&= zdX~pvu9yLl({LBwPdo4lMr9{PU@fFG6;W+a4ZGUFI@dv&)Z6CkR-g_5N>$o5&tTh4W zw*p*z72(t0KkzAoFb{r*&xeO%FHmeFSB0j?RQ8lskDa@# z_Cq&c+xxYHhv1D*9RTR|EHoR+Pk2@Od-J`r;uOQmrx(PN#L$qd>%RqClB1QP#&u|rgd!;Ri_2T#wf3xPl@sa zZG6VRs#8p48o0j6Q;TNIYj)5$!Ug3^nImX-@UPc zNm^L=qk4|&$!ec#w9(0X)b<-nLp;I#Mz+KEp$~g|p@ufPN0jwCXE^l*T>$_ix}MUaS{PXMa=|{nKJD|2~2RQ3OLzi6*xO2CwpHzg(WV;lZ+p-*fKTRe1qop($ zNY(Sk*!k!M77}~O=Q?p{`@xIPg+G4vtKf|+tF*Xegg>fYbD1P8{>G|IVbW77@GPMN z1-{v8E>SRY2unN`fqJ6&E@F`%NOke$VgbZSA%Vue2|oa@(j7q+bVEgWF;uk|e}fm` zrT`kC_}3-W2Oclq55j_wmdC)6x&pLX7CwJJHtu}@-b|ExKpDgE@~i~Vgmmy|*&g>g z04J>ixBvmjap=q4bi$pT2=^)9(8SH=_Ap?bV9ieW_xx#F0?9Kl`eU5&2h=d%9G_ZxYB5qOOz9h zi*eM)S1I{I_cLbIA;T%)h9J?c)wia{_rEq^Q~;v^C4XcaPh2$)3MAAsfPax)eDyKf za@Ke2=O4R9nfx5YWHUC>I@B8lTA^-7TpgI|M-X81zGt(aFcv7$_Mz=t)4R1+Uydr> z0$T-nbdp#=(`?r6yzVOX*Uuj8z5Da`D_C8lA~7EQY>3Y5CKIYw0Z5g+Sz%JO1tRb# z@6X;iVkJjn>MJWNoSJ>gg#q*dhCD11a0ot*;+7e~-4om?*eCj3;tK}^*h5p&HUv)( z7TslV!2L`WdLZF>#uXNopcEL4na@lk^m2feC4zRx%@3hs6DuA>{)|DD2uVkj9l`S# zhZw`}oP*YAD41UTwY{)Pfr+6WMb95AiRLX@?Zfz>sD zi_X{Zx>whhc5KtX%JNf^lLy#>^7M$x@no*P22B_aJB9Xgcn6N{gU^%W=Z~q9x|V1b z0dua5oNcO)A#vZg#fz%-l@!S6b79z!jzr)Fn)d;Zth(n&~k*o>P07*c6a? zQwXar4@K_S;2pD`UYwV?OxCwzEh!@0q!b~CJotu}q*OieEzFumTGEPFN_b3_s~DGqQC9k$NiN{>TrK2OZyG==$|f+^ zB(S-U10@MpEjlU)v#-ZIbE|ot=tO9oU6SVF zr(ZBX^f!Ok`LT9S!6oM)UHdA$>%wzuzh$lcTZQ<%(rCR$MS0;%&gbJY`G?Nlsabsd zvS*&7Jx@OiqIEgbbdw>fGW=&eF%@eiQZeyT5qd1-bm9RBvN}GS8VkTu!gYiQx>E_+ zt(VgYcZ~odjRD=yN5JQbFQiwxw1eGEH98AEsk$hDc7e1Fnhil=zVV26UUH~!P{PXU0 zF@uVN^F{{moG2w22i8=jnj=Upg+7@G>?PKFvO=iR_amqk1ixG07z2OJL^I7$3GVye z5dFll5DBxps!At~wAKPxnAdRK9tG#^#y`^vKj+6$RlqDpwz%K` zaf3HJfG!J_C&o!C_2rxmYXdxSE|W{oleLOc)SN54FpHmPHqytJSMzta+U7P(_~s<3 zv9S1^TEX$4@s3Kh6_T;mLZ>+_Bo~y`fgqi*wENV`)P731x>%rf-m? znss4fw<`Z+i zl*~(pU?s29Q%BEgXRC8fOjB#~T-VIJId6BmdsB^A{B{*wa;v;5k34VcGjmB36g+D3 zg-3S4!J8CyXDF2H>6AFeN!{MNzVfKmpZ}_XwN4KEUr6xb{dCKp%R!n-fKsPS)Z+ME5=@>+(+nbs^RbC*JRNJT`SMGlw{_4pGl zfYk7TsD|r8f;|77M*t$^u0iF^8-SVdNozWYXxpH@RZ1a*W0(=`Q1rG24=m#I3KPDq z&gKD#_%UH`Vl71p-I)leFz^W;oOm_}$CFDuBoUtcdBk4E;GK+T)nY6wR1)O%A^Cpe ziqA9(^-=)@(dWpOXuxAk*+{#bgW?<+@CDD9P?IRvP|zj~Z5QA<8fZDTE%OMCEkm7d z+$)-CQRq}|apog4?hEHJ>zCqU-nKQas!R}WyawToH>bZdH;ez?T3FWF$PPX#cO+lQFx#>pe)?)^hrd3hk07bYKcq_Wad zeGJIK+`x=uGh|c+8giIVQ_=fuX+`@MW|Kc{)b(TC9=&mGE&qnRrp}#hs*j+8gWl=M zZS%3XD5B>HXSa4Uc6>I*Xxc z$nkXv5gGRX@_8HYkX6B9KIB|a=DNa|`|6CeDIhCNfiUhIFZyD<4k9UdC@Ob?*(=Bu^b$v=@K& zJ}Y53=ENfJrBY>5l}yZqCUnGdZzo)bk_T0Z&ri!u2&eh5)C3`kkZ2x4X8d>0xcnmO z%W=Xe$Eh?d`Vpj+$|$Juz+;r54{3&w8gC!GNrh%6LLXom=zo;g6-@bXsR=H<3eXwV zRvz-oRKI)_pF@siE?vkO8)ja%LjZQsh6i{OqFkpc5~Fj9om?TG&6xFX4FP>r=I=4E zPGEE!qxvCVMbxJz*b|Ja4D zi-TV=2ozqjS(h6+06wY0Ge#3I^A8Twl&Qb4DIn`NJpf}=1REOI3eJ=G4@9ueJfh8=f;yA@17>mu=vigra32T*$ zD>fI7^d6chglMQtj*qJa$M(M>Jw>{Pcx3CmD+&O&_D%kgt}AOWwY7qt z_xSW}8%Rypd7>QnDuumm5DnL*lSsHF*|QYwQv|G;U7vL&BNEyw$V7L|u#ET{P&Z80UsJC^Ec;L5WjkYS3dp<>S(e+Vp;C2{>PUG(^nj?V6Kq=m zsfgqxORZqp5*%d6zWL!@>0M83u7C021|I8J zz`FHy>IluchP8$j8i0LAyKwk(8dg`}?eBSe`?oGQr};i(@F06b`F`OS>g)_!ljBFP zxm^9gvE%u#Jb#FGab6Bf0|kpG$MRDQS^6WnsD|xdH4`!Oj{{Kgch$B67}AkDX;@p; zewYXq1#Yf!eJw!BkmJYS7Zed=&ZEMKHMXDYwGljb40Okh;kY(}_cC}8<8v8hRYrd^ zBxb$dH600lL*G2`w^9C`h~uXSdoBUE{35t_W=8!IQQ=XXWCVrq2xAo^S!o$h9kvga(($haCbg~iBzMph0Qmnye1x$R&cSWd~!VI6rxYKANKgpJv9ei<-> z_%Wqm)mqy?P`tk?ieENB%DLWz^GY{g$=7`0P=5LSkK}N4)d*0UsViB<9@jZEnl+f8 z5o&|IYistGKK{AvyFUC69XNU{7cjJSr-DQQ-2Vt92ajymTkEX(#<7T*x&6mBtAmR@ z=;a1lRYeg=Q^J}n{YU5QZhkicK8H+TO0r^S z2v17G|GMr~>32POfZlcYmnbz5r5Xl)iwrL2ClfG9~Gs8 zNyejkjQE-s1rgEMa+s1mxK~`N;I`MO$M#%W`>|SzkL6~tt#wRINP8g|6@y2u)J5E= z1uu|-uT4UKUw;cgGH55>2PMiQVGQ_sB(91ca#YZ6)ZuS5swXmwH?-UN`PRY?Ywh+V zNjmkq`o~5c|CS}0l){8KuMUg;R?VWTxLofV@pW+=b2Ok(fFnMSx3Hp8gQ7g30~p+( zO+94Zrhv?w*1**)JxfAEk$AR&1zt4gmW~jxZWt|DVsThmLvj#m!Qm)6!eLAo4G_WC z79cWd-!AaX{p>B{lmkisQMhImaK$Dcw-r^lPYsIK0JhutcRur+dF#^$jR2>GxkN%j znNQwsqzKKXf>sOOcK=rmeB{n9ys(tP+$=()sU!!A2mIh_7oI)>2+58bD~3{Lz-BGb zb%1)qy>AUEs2SxrtWuXGuWiQ5dZ2j?$By;jGxw*kWmEE|ciut&&$i9@?~#DXdnE$J zMVna;-G#a2H*dcgZ#lNy+xpPs8T2yFmr^n@RwZ+=QW?0OT++DjDblxG&&F-LULOEP z1B6MBKgqU}^kY~X@n@6tXWTZE^kGyR@feLeMpg54RJ-Ha7#mg&Y7r0w(_K~Nmdy%o zd$oouFRA@SqVdi=&IH@oyJ%=aJCujT%EVqoR{g(f#DpB@7OBcU@ivtZT3>abjs70h z#(L+5L)xwOz4~3ePrMC`kQ0*2V-3wRXstEWmur?D(<-^S+oLyUJvh>+VTmcrfJ;QIz5H7JL^#LufsnAHDkFoEMm9%LBrg`3*xZCQ_?)p67-uYOemS6!|@pCtIdLY~|y zyElA3t=C4>5wP;byb>0!dELa}u-8S9Q}G_T_H5KPL~WZ8KJ>}xHOcF8^&KheM3NK9 z4%=+>TpSgk=N1EulGY_%P!`#>xNiY0`OoDu<|gAGpL52!TdD6?crjSXyCRrj<`@EK zD}<-Cg6Epe%*!E5Db$ueq*5M(eM$9kc7zFI%5qATF%kVwBA=1A z{+MtCNqNs+kuxWS1mW}en)RD?V@h5llW+>jN}B>QZzLqGm~rS**o2U}O2I*=*bkcl z@H}gg!<4z!oXlx+WCB@qx|i&X;l#$=5LZ*~vVdE;fF6jB0nkxE_N@8Ugj5TOd{V;_ zrRvPCrWC`FcvB?P(cGb<+3f!34Rkx!mHsP&9y&VfdXk98>G7v>`23f;@c90o1dJ2j z(3h$iB@m}+a#9S;8m~2@W3Cei%Vkw*?$f&b8-iKiF@c&z*i@?nd)M|K zZo`9*_29^&*{d`cX81gESB8`dF)YCEzxrzRlW(|5b?0UkEG==)j_ucenA+4{BnxE4 zs~xVoRB+`b5~{p+*N*i2)1=@WJC$JFKNCXSob*ldKJ8qz8pnsXe8M@U5fxCpf6eDN z1#eK;sa6)g@}w_G>q)fl#?PcYUcX|edsXQISVc$RbEmS{3;em%eV+r^9M}*1;!X~# zWZ}Q;lH^5ljJ;!BUl)=nm&ex)<2k~+6^`Jbu>4JAVeM=lU#I( z(lMhQ#!wB}|BSb3$g(uPnG=?}K%!$Th$}a-@c#(!IE#IslN*Uwid>J6p2-c(CBiHQ zYpr<3SeK85VxLt=OQ<+M0NK4<2V&-Bw;<)RW>V8>IyPZuN7SvZ{ib~f^4p#}W+c(M zq5C~dX_Mf1H;1(+5!P}G#u}KLb<7qvFe?gCsRE`bQM_pO#HNlQ)4ics$=YTX2rX+= zI)-^!#Bt#OIuMsT$jl_Bt)790p0seobLPi)Zcp|rfZvXYOF0#dFKss4On>{e*WuZV z$FraLv{Sr1JRhstwC;+DQIb*nU_+Ks*(!*H$%`&h6y(KhZok zg5k&CNEB{l8)MFEU_6JkF*5Of#I~`W3V`I;_(`-rF1<*>TW`}3Tz+BtJqYk%U`sir z)B`>Q#()ANO#*Lj$)jk^>o^QQLszic9g0Hi=$zwio9&D#`^c~c6FvBY(8lxUW!z}x~g6~Zx<(2_B5u_a`&W0M;$#^Wj> zzTbG6 zpFj-2`!aW#N+_0Er7)(HP`9Vl{3xaox{y${$ldVFWa##`Ni9B zG8Y|RQSbl!myEEYvyfJzaLiJ6GNWiVcY@$?YlH7WEY7g{{rLTcwc$(P{jq~yhCX?pa*e$nS4G)!&~5a844el>{X-nxr|PzG8}Vm-$18e6g|flOHll6%jyH7d z*Gu2onDK4i>5?c&?A)Q@_M7R+Yp&4WkBATY0){#6HM6{*)Pc(G+Ct8h3!O;voCZKb zL7^~)Zq8T!4NWQ+KtO|u_5Sm4{LBw@a>4`YdB%otaE0$lzUv27t{>pRmJo{j3ex_u zC>}`hf+@`X zzSSGsdi9X;js~X)GB9pux=jI@H>E`KukPQI9NSK%R9i#avJSOn!B%P#(_fIRP`H3n zdpGX_0PgVN%a&AGA{|FZKbpFvekm5<=vkxGMMS32XxXs38?%}|&CT=FfE90(1?={+ zO)G09zZ7Z*wvZi-)&VD;WLeCc0UNK?9QTqNUGnwuyxcSa{)D;TI(;Q>Q~uNL?Z!x3 zWR5_|5Bnx|i|;>h5aH|eqS4D8TP>d>=(SQE^Diq$JI7eOqK3;jLBH5 z=VJpKJ_UyRl8%2Qh>I!>DbkLt_5&&vi39=kjVUqnCC*ei7atZX<&UB^;%lKR?Z@L8 zOyM8^w;s4czYJxcEY>hWUZ}L=a#+jQowfZJp8xFjoWAGvdkC)EQ~&EUP414WdV5rQ zv4#%Qh+IdkFu#k4fmGYMmg+RFx^Mi1&7Q8z=Z7Ueyw;Ci2S2N}i=_zn39o-V7o|L= zwV_+Mwg>xC0uAm%$Ag_l@$JC*V%JApQuqE~PDQTbXWSzdn3<;;VQ-cqC#R&M;|*)K z&%DPm-OzZ(+qkjFiZ&|OAIbuO^^Jz!&S$($0a0oC^ztm+quun1c9u zfPw?@A%*26?*+D9yWY#?fsl7HhSvMTn1MVt=vrc_Vju!#v3wErd*G}mTNTACC_x59 zGXMo}<2h)8JP>-0Hl<1-ZHNJ0p_f^D(PAQ1OHpA6#vnK1k|Ol7SfyaOiN-VR5!^;W zqp8|P0g9=7(y0(U_afqjYXgh13Igz9B@ixN*q*ucdKto%7XiHXI{n1_T>3x!IH1pa z?5Q$rIdpOyu|OnwcLg$3Nv8Kye(rDODTFq{$X^`N1Czvik4BNbj%pX>T}~K##x~Li zhsQ~@7ix}Pt{^)d=lrd<;XGe}A-_xd6@^f%=UfX^8%#WlK%CUdBH=USbI<&1i~(zq zG}2NehB&HU6vj`+wDdL(8;_yq5XPe@R2T$Z=yfXA16NZ|*g7@^WZo2Fmz^)JTE*S8 zeDhh>0ZVa(%Z)8zFY9r*QDWzrtS;TlH4iT|t>93Ss^j2*L@Q(6HAA(ULavB0EVX2b z*vrPM{yoIPMNMM>8MvF?t)BQHXQ>SBBr@_b`@E7&6m^7;iI9#iqCUKwLC+YdC+<1U zD9p;qV+V!Vs2aaD5mRo!m|yxjvk?3kwE+2bi$vho@VQPg{&RWSn=&<=OtgH6nvnqyx?l)ySA~J7v7A7{73B z<+^AeruE||%=pptEDwRJa4BW5{Fnz#PA#JN{lbFA7p@?nm+Aso>sV;F0e0;~xZ{@O z@yjo&|0ocAF^aHaSS+5%Vh^39kjtHPKqKg`=R9agC*|vpa{)H|j>FRPiW`1MqW5+a zX2m$2Kp&vI55l?RWB852RWW|Ip4QNYT-H%JmfrWmo2lG+8B*gxZ*fe2OHST-w3QMZ~!IRqcs6;#Ysm3q=94{ma=#7vDBi1CUJK@< zd*jVDxN&bfw2jctC-2JO{)hA6XDe=oFn-}8TR;9G2hNFw_g{4t>sbcxn+L599C~o& z+rYjBg9pguT>TV)?MUbyhJ@#jqRuJ)c{srFA0m$^`= zl8RWojc_A?bHlz$zb+m2mG|^{V92*t4%i>24%_tI7bn}N)7YkftTeyiMuW^pMt!dW z^oiP5Xvqe0B?eKs zK|e7?fD2v7C$QeTL}e_P?URK109g3l7!-X;@F30U7MB3c+UVj}Mk!{Ck3WMU`RLpS z_Jjf9;`wK*Uw`Xu@UzRS1dlvnV0D#XX2vo3i|536Z$zp&gA(HQ6kjS)XCwj8?kw z`-%1(>77yut}#6Zx+H!jMF0>bTKdW!sb1nzV9)zP^6G_@YciF_HkMT@0L6Sl+8UZ+ zZymWxno!ZgT6@fA!;|)k$TN`xaT`2GTY2fdEY>J4#O6-(AcpSihHflW31 z{GLnjSMRtvf!(_h7TXytubDm;c8v0oBz|E6P$@lH4se#tH^-naUa;^&QQ(pw>lJr*EJ0yB19FZ|)n8R^ zKJXx}RJ@lAp`nWRWmkl3Fska|h=+n!n&R<9V+XL{i{WikAIc2J82ZD}41N(?DnR2X zowgUlD9R_$;8J2VPww3wCyJ?=P7k3MlJy0oD3_Qn;-FXnr|`P~H9r|!i48vp#0DWO6N5uh;!Jv#Gs-^0uUVEMT^|##$ zuzPDN6>zI-Wq-o)Wg-q0rbB>|+*VZnRLxiq%q+>|9?rindEB=FL-sGnroc|#{9AWe z8x}V zyX6L_jXJ6g9=j|r!{z1ug5@}@(+|EMxeXh6BQe^xn7yc+$A-ElDqdmEh2v*nWtD_5 z`SObueBB$8N3(=d!h+(Yjd1ix$;)a;z7N%qEIe)nC{bH0ToqtO zeYqI%%^Ge%r*$bM-A)g4NJk_xgiai`>uEK72{-l<4J*->E>+0TtQB4}?D|~x!3Twk z^dfD`>&}Uxy_fK%$~j{*d@fo;$5SELJO|V6<y*|8c0n0w0uUJ+S!rR|aAK3Pb z4`lG){>ZIEF26v-zy5*QzVA0JD0u5F3H;q>^5}f1*!S=MsRxff6Y#$aF@D=S8}R1a z2EpRR=PJ1W5j%w2t*`gqqlytX+2D8%YlD0^b?`cae@L+}v>w9g!}<_Bm@d4{d1EY% z1aQu71@E{$S$frF$&cv-|B#D~iJ&RuqyUDCfut6KpFQL}ROl3qo|ugaJ)J0quwy3t zN%ue5J{0fl6Wkx7@f;N}rSP}NiiL~7q!6q~R2K?*!dUG9n=WE$Lk=(h zmqjmz5M{yj!c~>vc)Hr&yHvzvP!#tg51y-=QU!4$6>g0hmrzIFvuaR%RMO^)V&20T z9$=oQ3~PU91`0j|KHNTrwSB87XZ5RDS-k-o7RxELcwc-15%XKMS zdFlA|p7VT`=X>3iTEJCo?Ac;47TSO0X)7SBYJ0Ct`^Jj@{oOz9$i9z06Fa2c@&5QD zU1_^&doD@Fj!F33jrZ{DQSC?ncm3D3|JszmI$Y1{b}o$VJ;I)HLn{(5>*5l@_N@qa z+)V8o_ohFbrucjAo~5lJ83Q8*`RMnPeg0|4q<<!SantH=d(58UQThR7WA|WBG$abRfI9E+dWu*V!dasrj81H$pSTWC? z6U0^J<)?zstS@EuFTlR=r++c_LLq?vE`$@pgJf0koRx`_E+1H7OKV&~1s&*5u7zTM z2kcCg6IbM`k@Hd|(e^K@yp{~wTGTKaTb}A9nVSH_f^PZqF|v(WRaFu2)1rk@cJ87=PkF^e|V;$ z|4_o#?D1FF4vWf)CyUEwPBm@LsYr)7*?H+yrDVK>3ssjxh7ckceJ=uvK=34Y+{uo` zi#;ctu{I4^dJ`3VCg4Lzxsp<0QLLrG`U*=&e}NvnVW@6Irnk_N+%MITp8PNO9FZ6$DvBj+q!T_wPT#G$8DaydvKeFpUjKx!m+>j&|oeZA8%m}fh$-i zwJi&S*YD8LI21hmyhr^WkK?HZX08auwaZnx4957L?e!3j9J6xF*If_Yx7?Ec+U8BQ z-{oyt?Tb?grOJCSw>9qJsY+QGmm9kgJK51YRipn>dv^FGlYyn)*li|hXKJqqn|jE+ zDHmGoabAVVX=lzX`;tKpARRritP9skBigsolkdDtMfmYRO}2C7MUwl`6@1`6PdwKq6m4K%8$D^$d)QPs z1_+l~&lC5(6uM$z?0Sx-0(37ImhU1&CZpqlSdfYVpZFfC5Qp8#)_cfGrgjI$I43Ny z-iJ2gB>!sXY*f9+)-%{w8M%>jEmo_DtIYPFB>2cxm(_mj>u#?JXlZu=*4hCyx_qxJ z8_XT4QhyBl9b(WFz-lFLDG=P26`X_njoV*EK3x9$ZMXG@Dmg6psm~6dPeM19@5eCE z_Qd`YE5!X67H;JHuRfC1VbmnvgZD4r*BA(oKE2-*UbT1}hH=!58_y~&%BX%+e+L*m z)+j??aeQRa0#{I8du0l@-`qHG&hFYTyJ}cjsKslB7i&_UG=w$%SwF-#X{hnV7|W@> z2sZVQm1dZtf!igy--{Ln7U#+jKhzGW+fK{L=!Wpp#2toHp)D32~YqbghBfs*l`cA%hPg+{KfWB2=t|JO&8OZW1{DLJb-TI zy$vB$lUtw51U|$lxiOCET%7kI(L8F|v#1AfR~#n~9yXU(RFItrw;A2M??^ORsy8Zx4!eLfT=w4 zcgEf`sCapz;VRk*N#@2^td84148^4vD0uJN`jhhi@UJ=p$AQ2i>AW~##`tHBM`6X_ zt>Zp$zSO3L5d&QTJm2}Qx{PC^4sh;n4HpgxZ*t}3hyHhGVBdI5hV_HTco=9K){pqQ z@HH(dRopf_7O{6N0K0I#V^1X)q;RN`$L`8Y5_snwslEKd^!JQ~=Y0A&2KiBNq7QxE z?`aI`I_g8I8K(#EY+XoCH#KrQ~8LOAUuSPi+UKMJt&WZmlp{;jBI z;a8tIp;T~BR^1HVo93$wrP4BS2quI)0|{x-h8jHW;>GCO4585zd{Lr@jV=;S5>A@o zKb684c5YMezvHzvmg4$0W{!X1i0fmsjuL8(C5GaOdRU+1&|}r}6<+iKbd92SaNFa= z`!CEQe9t%aS5c63?XN&fWNaxFzLrY$N}hbFo$g$d#6G_hgDO?cHdVr z_=}JA#5)#;QTbTICdR&gL;!h!Pi{zPIJ6hGjoY@iAE5OOR{+8srpy4^9fDrZf#7d= zE3RC(NBvxy!mkh&gJZmIeceULE7CvH$^K<&U+X-?slB{y3dkykPG4?K)l?_TXsb0e z-?P-LrEo-RT#fi9jpjsI!Zae0Wr?HNtjD6_zyj2V5na`0SOgC_L#8A)|f94yP%Ep@V0E;Ui9Z(Bw=?G=XsmZ}tSyD-7f&JdI;4u@Rrd_gN zkSq#DwxlRXYhlL-2u(ifMF~F%fv|X1xw2H5oHiRvX{`o_(c<#v1^nl4d~MojwedY4 z|7;IBT@s}MR3#n4FspjZ#=X!t0w#y$LXF!02jAC#-8;)$nZtj7^w-_t8^hrE?b^P6 z$G#R5)xkqnz|Am29PddCHVW8QZIW$9P_J!;ri$`PzH6xKc6zFO&Cg8#uG_Y&{%G zko7#+Gad*|auuRO`TRfTqn+>e=)y$9u{6bJb%KjZ3Phaug7X-6ZP(xT`WwxMk1wm& z-+e#9a<2=s2`3-+S1nd^mtxP(sO<*MY{YlN!gS-dd*8e3u;;S!Rl?!FU;dr;_?;*0 z<3_g|m!CDv7)0*gS%cT?P2n#;)`h?Qr>xjF_HwP)kLqU|?ZXKxR5ulVil3Q*k%Bu)o9fc)j#>O04qYZsH zb%P!s^A7kRV)oDe;cf-T78PupC#ctO zU6Ax*+uLtT;jORl4+;L#Z?|B1ZTu~UmDR=L&wTAp>{oxURs4S8IU3GAOTnuyPx`{E z{5w;19A30=-&ei7?91dS3HN-fW8v5m2-nzKZq@LvH>JP4WmEERjnhSEIki9x&3)&j z{sxp(J8HrO-PB%W8|fKy#ap>kqK`hE0Ti%$VI6$Smq!`o8 z$-k2>PHtR2AOCcE1S@My)dB1ogLk~K{wrHH>HlC1^^`{RsT4(wnB4P}N6-D#JN7cP z33A4qmy-oToPO=8T3=4>WoT1CHi7wvhC`D_8#T4U3Hw<_b6R6ZYo?w+REjdKV1=3V zv43@avM<6aL-U5af0D-^+2~1n5Lh+0Mi!OU@`4dM_C#~|&XBR0ON34wGk-{I=R;<_ zOvqh@6`l#q0&p_!`=StlS=MwpJ3*z|l02^%IX3h1yjbuv4f$ybq=VWxfM?eauRXcTNIc@ljks-r10#;=hc7YU2n>FWI4U%z6UZ`TD6iqUmN2oivifi!5Fw@d0!i& zUlFr2gY!ZN0j_6U=@?f#jsj%o>_B+-P`?@(gYqhnVtecvQ@SsGlrH2KqIWEy&mnyF zkbyt>n-2V+-#63OM%9%{58%c zTx(mHpVjcT+pzoYx72@e$5#Dctc5nedx!=-Ul@pAr&IUK)+S8gmz9N=x(fHm6kMOC zHU(s3tjgzvuIh}#PRCFf<(XRyQ;pEVn(8nwSeSE9_ZMMb*8PbYqoFPV%~%UHonZIa zQcgVCr8>8Ux}IVJ1bhV^FwRb9(pDQLL-4@KJMx8d%;$T_gy}t7=mob`pvmx6n%pSo zrUlPh@VJS*lIIMNicAc8mN1rs>;#vu#cP?>7T9x`=g>?NIC}LJ$#>)iKGf^co9}%v zhvO>*TQ(u2N!gDe;iM{=+vVgQ{+_I7@qRJ6?nc@;5#vIDDka4=S0wQKk*sgx+H=uh z)#mYKD;^}kL7m6|nhH0w-)0!WY-~gj$zuiiA}=g!Cjn#C_9*(@h2rHNr?{%Myn}dq zuBc=d{>}3mUVA;jJMU=x!j7%U&qRQH8isrY+KE7^6P_ltcRuY1A zp&skm`Q!If09jD+a8UGj2_{RASMQ?^!#OpXYH8LORhuQ&9E_v6G>;m{MY#-Zlkf8#5JE1acMS8dyq1JbZXF z)8xzXhDw1~jt1DgkV=(hqXDzCGfhCnf6LtC{ZMf7j>_0@FD85IE-&yT}Iqvct>PZ6o_g+!^m#H>AOXl0}{i=oKmVvp3 z67pD!{l^FrJ10sm8311794dPl*`v=G_~36x`Bqp0nQ$_Ey)HOc!F%7{pKHe4U!VDc z3rin7;fsyA}Ru_xAKZS}STG;{2Uv620>5RPc-$F9SEV)6b@WY<(M5sVD;D zR-qX)Gf#ooXba;Q$oOGlUQ@dZ-Cf)5Gq+r?wj-wS#6AtHYZf|f1Be>Z)Pl9S&kJ+6 zZwS?~_W`k-K-U8!VPcI#eX-XABfU)Y?eq7{4d%JbMk;6z14ASFQ>7q5zip2_uU@NE z5#hl-mo|U!o8OUb>GZm9|H>lrPjqPj7)m$98n z($_eRVAMS~4Q;;iYzoLGv-s|hf1lp*8@D0^?3u)COqfpqZ4MEpnqJtwUA^x;Z)twl zRhOvuKm0^~)|30Kesq5hFC59Bz1D+z1N%H>MSdCfd$ZhUgWfLm-mO5k>L$53cgKZC zJq<;{Sr#VF8fMU}nLJHu&nZ0V5>|@F#Ks*7sZUu>n-HL_6du3olJviP{q3~3*UQej z|Dg;H9L!keoxc{Z*JS4H7UHs(m%bJ_amfAElj5C46)VDc^a z*gUu0$v*AF3OeL7Qh>TEq2f*}6}c!ri_5M^;OlNr^YhP6e%o67v?r=XmlBCxpF)Ar zJ=34qKYcsBZ0sb!Sg~88v40{O)86#jzcOtqE zoj9GXqm*C`uCV;%>t3Dyn{RnXx_HgyDYV)EM~)fjc*28WV9Y4X43pz~5xk00luEJ> zQmLFT{A*Y^kNQub0At~oGAZ5AaH*+~WN#%r=a4zy1ou3U!5{wRqZX;Tl`$=mey-QA>_0{IxpS};^tB*RW zfO=gON$k~s*}LUDTkP_Q@({C8cr=K)i+qcj!Xx(6RMaLpbAXYCxKqZt{8Nbmk)2LI#39p4Y? zL&pYv<5ZrT>#|eq9%Y3GjK_eztyUF<91P+))sg?^1b!Zic1Od}V@7huZoMIecfTcN z(eVG6DEJj7u+s>EYfLVXDsSB}f#p|*1uwPn&u>@+@!~8jwuazoB1h_9aw|_o6 zeAL2I`we{cNn6|-ai7IyOa5;mezKB9&z~{PD{2B|umD-ri(gFWu%n^fHqpWk2L#w|1CD6B9pR=OO*ak^g2ou!fY5}5B+yhP)jVb8ocVM3^BeBH z=j@KX&p!8^_x}HxRh22JP`wjMW!C@i-FM%;=bpXJ+H0@PK(MO%J4T3%X+6J_Yp1Uf z2H6h+M|$N%?Z9BdmtBBB@c2lN{CXH8KsFj*&#~ho6Ecz9nhKz-DC1O8r^;*dOl}wB z)CU+r7EICR_iz?{O1=o=F6L2*eu& z^|Y(AQK+n%l4{ZZByJ=+PQ_>jpuu7=L(r{1d35R*ehaZk66$_^+tqQOaarNXc@y=%I7MbENtI}ZcGtrotjcG219c$ zmW(t2q0t0s`L({`VR_w&>G30PZNU4!)h-`BnElg6jvwT7nbucqzOt(^8n3nSD(njD zfd(pT;R<;sRPhGw`d^zP*(25Zz}H&3{IxVjfb1{fh?D#qc}_Fo!GTGGlZ=!hOJ1qf zlpG!Np?}B5s z>d+4nR?ZmQXg0CK#8y>7!y3GD`;qJ?fAssYJ>Kg5@JByW!SbquqC}V&H_-4|NW0vM zNP`68qh|omDb4ky_uh|?Mjaxr%0(?}N#fv`K@`oLFnoRqGst8i~UD2tjT)*`a++UkabP6uGmLI&@7*usDP z9nF8TYu5foRl$pTZ^kL?CM-ff)2Ta+(RdvVoyu-_GdVoHMswmDXN&;Z&5sfI|7wjS zWl7W*P%{|i;1;bZ1f7&n7b^14t?jcUsd233K7nMQDEQwcIA_FpKg$f1rLUQuTBxpd zcU8qAc^oS$I>f#}&Qsf3{95WdVivIOl*CN~oQFvw$~_^wBd}xt)!AwI$?tq5Z_P~8 z_x=7yOE_~r#By%4ls8^JDD$eLiemu7Z1eu@kGb`SUSaG_i=Nr%th&jFL@?kl)`w`y z>*?<}RaxuEUcrdhy4xe^I8nF?jvj2mcRiB3_q?O=bGv5EFGIhj7Unsg^P#mtOwezu zQ5=oe&$td4Gs*lI&5>__F#=>aHHh2VWFt^^>jzP&PGfBlgAQiE#&U7umFmGlI8xdHEb`sc2+yo*T(0;`6WN zLKt-99>$OxAOgC~;x&)Zz~F8RHdLK1FU*@Cf8RUvQ!`WWW54}JIK!Z9v+JSh5XQ!~ z+C;F`1^NIwr2PEuVjbbL7Dq z#P!XfPrUoKG5G%XHsI}VvOhC9ZhlpPe?)nF#L^gHKVh`4jK&SdO@Xo3gY@Mu+ZX|| zn;V$yR7T?#Ut2XKC4>0n?p^rIp83Wd<1LF-NkGl8nnW>q1Z9Ewa+$sY63-8Y*fU@&@;dN_ZqD~ z0BN0Lplbm;n8-9TgZ!GSV@>nR4?mQhnVEEN`@>IUKlr(?I9Tg;08A5_xv6z^UUgjY zOoa_nYktZ~Kp&O~!U~Y`8-L?%P9BnKSyboy6!g8K5y3ZuY8(8*Ue$4u6Rf{Z0yO2Y z9+W2~u*QJ%zHZxb+`ugx(6WH&dwsKRli?|3<*@4}5Q%Xym@ z4x1s9Q6F2Jr+@X(J@{|F@KnQ|da1)dho-bQ#9Fu?UHVCzS;q#>q@{q7>EJY%%>bq* z8_;N4IVWbu;<+&x6YsCmhm>gll(2805&k=#YW;$pnUjH^dfMW-lrFHt!FAxh+)4>- z$ffnI&<0!|1owEtm9a+luio;;thIZtx->Oa{CA&zv$uXeF|ZtYbB$&L*~AHV6yz79M`c(6@hc<1=?0%Rgige$5BpHw*nD%({pq z*oTDs>pjr*o|Uw9*o}sx>!K)gg8+{(XiEEPxJgR?af`IDnB3Ku%iC@(4SEd#l&>~W zit8`WWjpfye@%`NAiIfyh!vXAuJ2~XbrvDcRs>L2`c2KT+7;ho8nh0Yi6LzO>*Pwwu z33IiZe?+4Lt*5rTgMH2(F0z4^}rz`6!S z-e@?46c|zh48w_eH8$QUPzz8DATG8*-{PO;L)t(5%nqhqw}+^M_b?$0hi}K=wbiQ7 zWDhg^IuqyrP3i}?V*_7Fy=?!}_1l+KocmuNWEP9H;^T&2%ku5fc+HFvAiIg7&Bb#d zEJum>TRy~_RpKl_cIk5U-A_DknwwpOU9(nFK%_dc%9T(Qxfr3M4G#0%1_hMqX*2?p zVKW1b+(6z!G3YFnIV*bwv^xl6O(U!uYBXo(ZDu%}FQ9S^{;*kAu&7ck7Xwe+c@|Z_ zeTqxcsA?Wt2dQl`Wc;d3joyg}xvw%IHYJnA~NS1kz4>1j)*cMm_&qQS%a&_K&Nsr z={?Lq0Od~MQ`dXA#yD@A^tS*UQ#XANfUe!;E)KjY2=4LGq7O|3li?t0DHFfgb{mBO zMiA6$gh)F|flRylnpSE{!|a|hTku3oy}pXp?*rrIq)NB_F2h4wS+QwyImCCrM#gZr zi_!STA0t3^6GK)UL=QOH$h_K-`bVWhwKF}o3%GpE|LlMIlj48*lTSO#0dH}C6MV%Q z9k11v<1ju>1C|GDxXFM8+5a~xDXOiuzd z8b;WO${8ruHenN+a>pG(lM6YB$Z=~Y4o)%UM@bW8-f>Iw=nMxjOu`P-irgSQYEvSj z=VRJIW`xpzZC$7Z>U5nKG&g3#cXbA7liRwKB{iB2Q!MVz{`Py`;m=HtXaD%4pE35a zXS=YxQ9`Gi!PFG@3q^3Yl&Vs67K~L;>gr71;HM@te<1C*&3}{cf1i|+sX@=sQ>0#R z10P!V;v9bBk_#MQ*n_YrD zLwM*7IlSlXxbe=n*k72Q%73ZTqs6L%H&3qFBaqN9{vsge#wP5T3kwV1U7lGbK@ z#72^Z#lC6pD-od$3D5_o&(@hxXSLJ&yhQ>)q#L)_DDWwHvB^h>?DaH8fb8bS%i4{l zVCk(`NyeE;})iZOv2yVvV=LLUBu_5UU4c-*x~EuA|4q9Ij~R<&6e3=KV+6>)#v^J4Mu4n8wp4*cN@~ zz1`}C^O^gTFHT!)nvh!qm^+x9s-RaiU}~CRX3}-XT6lp85n)Ljw0tn~w4Pv^#FQG@ zJa!jbW3c?FSI}-Q+*D&LldQ8|vvC|ykCYA{B2Nn(xGG089GuZWN1F{m6kStDmo|`_ z4hJG_%zN0y$F+to8iWg;;Fu@8-5@++44m;Ek2()`c@K@u(sw%t|4*}lzkSzn{LH@H zbB<9rCk7a)L8tz_-S$vA2h)=|96w~?;WuUQ zru*{sV+ZgDtudcnS@YlIJbW(zP9ws&wXl|F@Cj?_vxqoTRd5slrer=K&nsvrpIvc( z{i=e)Xkec~Sku;{E$3jLn1&*>J;5Y-7z4dm>bG}+0#t7h(j*afMAJ_KpqS4!M0hMD zGNC}kbpTjHgbgBGkWNow&TTO3rmZh}o;M|kV}R5};^W|)_uK&8U$aJ@4QApdtbub3 z(6}BNfNffUefyp;hF;R+=Al`Yq++=ox@!zv;j7@oXY*!ejXz(f2s^-abS7FNs%UsC z93=wDd`Q3@#i~{Q@1lg7DIJZ`c&&^PAiIgdx?UvNRo;*#>j#>V@yqo_44jptpZMYv zh`@5DCE9QVnnsS5dyf-nC8#$r1a=0FGs;k0MT9*7c(_}_PnDH_s?oq- zS=`Z4FK-SG+V#a~Vm~yk?Q?^C)91v&#MeNhIjib1L zDGKRVH`GQ2RoE2;NjEcR`j#dAl-Mg3jt4E^ATtvYu+wf0@pqjr!DgGFS9n-lFz`+H z=kRTBv!@=oC;zwBn&mF1C>{NeMF59Dc)v;W#^NReV*onc$l*MZ+^f5Y-~a&3B0?|R ztF1zH!}>C2#}L}8Bg4?j3tj{u2Ik8|upkT;!jgEqgt^iKo_h$aadoMwi7rC9TBxv% z%O(-e4cJQrs|paCx@nlCz|8Tr$R%4UO|S79@0mQ&A?I)pxAG!_yPT)pveC%!v=4n= zt$;j$UghXP#|V(!+^9^bEZR{Jn^w1asY1iFLMo;HcTjd?^8Qz>uS4*6ymZ$8<3IjXvGCOM>yR0Msi`~! z_aba-y$a4Laec>>9rOJYjQ`IhT4St)iX5E2nB#ALs*zt^ugZsyUhO$Qi_b01=hj-t zGZGfgl}u|L-z#Zyvjaa1goiT=ANPa|q>k`uRE_}{H7EpAPV2O* ziVgu_JIml1#1N#Mhl4;gZV=Xibw2=?!N3v%Z1T?taNQtW((5=z1apYO7_4isjOnW^ z%b*3UZ4>4ICiF8dFh*iP$Z4kB!b>dh5BfKltvr6a>%#p2{^uuJ=HI^gzO0;|p&#G3 zuleRrea^wNFILdK9Gv~9ConLRRcJyUwLuJ2hV@tJzaw}twQm>J8{+ zJa7eLR!^p#7`F7YQl>Qk!3r|80khJ;d=AGor2b*aaZLOVGr*uprK1TIm2C3bZWCm= zf#XM;@b(7{y!&B%?9Su)Pa9)Cv9|8t)h+N}dJl&ix&0W=Qs-bUv+yxv;4xR>yPbn? z7CSZz&k_kEv`c}CPo6dY$}KeTJchZ@)HT}&aE9@j<@-G*Agq6hjI>}Pc~37Ti}ct$ zmnQVORETgM0A?f|8Rk`NY;N=qgUa<}bHL!JV+pU=hI~dNY(%0(vy8~Hbq&HfPk4v- za6%YkUOSC|P?1bJ2eU*pWe|CT(<9>VgDxp%;B(rL&5ba}$k(caNQJU(+~c(}hL)^> zB?gUvzBGW#Xo#7=YX&9t%d9lNxA5Y>BJbtY>4p-n>-?P6>C+uj@+P^OJH2j)vE3_Q z_8Lk3t`2eD-ioz^X^D!D%CLKYqJm#(@0;s5(YarBd)??71)%+6$Ba}*Ij zYsDBKk&l&ji3b^{CtYA+V%n>AbB}d+$R?d64*V~kMfgx>F8{(y90v?MciI}Rlw&}~ zie(0Sd^|2=n;frTZrU_FVXJcRutDe;3m=md6Q_YfP~-sH(MWDYn**?tWq8$lVIbxu zP=wQIXyI8eh`QzXP67l%+XV1c=%vZ^GM5^(BQ~j&!D!VfP=H0E@VXGxe`0OHo@fqg;W>XUYYvTqF`t)UnH}_8;DONV60|!W zdIiD!E(>qG)4)65YKsT%&Of$qG5bf}(UU71{_k-r&=`1@0ZZlRPGyO>A^maZ@USB| z78tWSMcGUqCqK0L;d?x-Af}NpX}SJ8zK4rV_5mcttKq%9p*6(l`K$-Vi*;r&ugq0f z=TKVBnLg@K|CK3to7JBe6o4P!w##}Bjd(6Z!nn;U8y71x<$LLOudIO=^fZl1!AP}o z6Kdt+^mALTf@1(;KeJ*jr$yy^FpE|?hj(+ceR=*2UX$xy(k>Pa8bePTl#2LC=cvJ_ zVk}lbv}_E%6iitBHESjHI!;6dgHWBmMO;!U2W#F_hmVB>9kry?{vswU$+se|5pb|VrD1?w?-C#Oaz!&)_;T7t#~Y{XB!1cV~Nn7 zS`_pnu{U37Pyh)3ek!E-h*N4VxA0V+<3_tfKl-0Pvia|R{dYFU&s{8FZW>@>G6Q2R zRBY5LDXzh)%)SAveqm0pdDWHqkkx|(@Wp@kdVIc3AZB6=8>4Q9M&=k&qmV zr7THQyJQI%gXG^n3FL9PXOMPP1Mgl9;H4fLG?805uEg^+)okGJw;J#(%_crsIsX&q zFVW9@_DkjQFFszv(=U3seANjco16&X*EA||@MrrF4nmcqT96;WF?WVH16>p%00Zia z@;#xn$a0$YkHDnWdkB2J(dwNeB$?sEem2L*D z{z*rvpPMDGsq|;fA>dc1{t_0Al7B-2@|-eqRskjHIb!^t$#E$8Hx~t5OkOjs%r7%< zmy_4!TI@2b%%Rh30YN`jKL@h3>i6vEoX<4HiVFU?0B6>Fnz9zJNCC71?nle(QfaN+ zi*rVSq!!=g-m`pws?6XS&GWVt^l^8L(?IfE_YA-a0dY0>OUA&G;glB?<^@ zY+<91g+asuk=nY8U?nKg5Fm@24F>+rMxVjupLKhoGL)@W__@il(A7bgv~+H44G2TV zus2fBcwK#7jd^dMkm$=4;^%MYt7q-2_>gbFF=EKRN~3;=UfJPyqO&8%GrVA@@53a3 z@A$DA>yUAcOUzHTLQfu;()C@mo#SmjiN{ypG*zDB30-TYwWN16q2ve`>~l(vchI{$ z(SGM}x1L)kv$7y}9nl_F(K{=T4;TYajW^)`Fvc%F^@9J!k9?*#zI0_B#+o@aTe(Es zs*ESe_4KaZX4@=GVW(A=0@Qq9%5p5hS`VEv3#PDussrMp04IGc4K|=E3*hXDF(kk* zcx4q(RTY#K!t7WM3$s{Fj{Dz6%wF&Whk3z9pkinb%q@&AM@B&J!xS?k8pyf{>lN9G zXn!w(g##9mFb8`Q(3b1pZU?{~0UckK3mTLblwoKlpbzvMNbwD)jV@Fk7kUN!h%tBu zk$x@9%>RC9ADoATR{#);1AD4kX~aOu$zJFeU*u ze5J1`!+C^XtMg=^GDT$qTH<<CF=gI(<8esOFEV)o zP>q4EF#^V_z+BUcv3QZel!9djdAs6gFyP}fu0_$wwH1ubL-0i`!NV+1C7r@K0d|Ps zWU%SOM(}s0tJdO^;aV}@E=4$8cyr!bTmqyvC&7J5Y)!M8S=<0G-&N`L@a)HG<5~ic zRB%^n>%x0ZL3_dbE$!}ruSPO*9d*EHe3i!tkbRv-ozjCu39`MX4%CZd@W2}55Cb5U zPj1`S4ca914@Uhz(LZR5n?Xp8Oq-DQDcQEGaxhkL<)EW+=OHh9#I_2&%gj+Nh`gu0 zp5Oq6#f_={lZenJk4HVhotz#M-yfv5v3L>yd)~tvs*3I(Yv8BQ;GL(>SHJkDpDPc2 z@yPWdkGPLgt1wJrFAa#t0i;q0BBAZUqT8H+H!`-*p^RqMg?>iTM4G7CV?9>Hl8Utr3Xj4S@qUoTi zBn7ja1Q%XFod%*kNf2!YAvc`&Uhczu5+F$n12**7{NJS-iS9{sHmomNk)64hfV)@U z&%e7QjnN1DBl>0z8_v-|?_pn2(%&d5@D}mh^b~&Y1NYdw5ADPM_0V42`-#7R-6zi& zxOBxq=PEZTCovx#YZ=+e^F(l^M3GuA2FhlJjsgMX*G!qtR!^!kgV4T8Om#CS>>GDH zU_Yj`14B%mhvW29r(T8IUIb(YoVICVSN#~wqK!r-CKD*YyrN3do2|^sd)Y&7W0Qo9 z;P>uSBKGx|`t8(;LdOi4uM7S%@>DP^+lPuWxp17)# z@5y<+$NWsZz+jyS_Uqi>d&sHeWz~^|hgeNvy_b7883C6vNiQjIcbfk8x{kBu#FDZ@ zUYVi&3c9LzuOr)L44m>_K+u%_ZjI-it`m`IwLi)cn*;+>ucu7BLg$5*XIDRWC7_SSI_df>Qp~S zp}>Y`=`lX8LE7+ydsJ3XBGQr(%MdyZhI-Dy9U^rw^t3f}$^-6#01mGiL#Lg?vo@m@ zt)G!~pYJV(KEG{p&?~C2Y022BM|-N;&{9mUz^fnyFxeE)(4UMI=Y^{G5|lkm^?Ed?R6j5Jd0Elj&cj0x zc62@R#G0gCMZvp6jA;sf`!(^y;($S1&WMxjb;WurYvDAaq$4&wK?}q27sII`FW~Gx zE?}gQ!-rcf{9PjV_9ve09s1M1Sci6}2Xj-IH2HQeG(jNQ2CD4>X(=3-x=&^QA`rw} z0E!_|zqXzANs-q_G?yZNRDJW80Zi{YM0AnT~8 zdqaU#6;s$M^ap*v(X<$8&}FvHDI3z1UB89r*(?+Q_w^YAxYTIimpG_0n5Z1zf3lT_ z-)dy=k@-3MH{SCO+;{9Cec;Q_&|AOqw85ud@NjL#L9a*9?Rsd9q3BxrDRt`W!yr^y z1~!b6-9FaMxI;QwX$@1ioeCPT=s^~b5gp+%W#2;aMW0K?z=mn@N9Drnr9D>El4;yA zOf7hXq9EuLUUWK~8r`#C;PxX99=NCBAG+6k;I19uRQ0{SCuXCx)mQzM%pWf@9zNVHKQ0NBbv}*F20-jj)*iC>Hzkfx+ zeyJORSP|(J*sLjIJDGfj2<H5@EeVtPy-c7A!?)W}ijauz_#u_{=yf8t_c|5L_%opS4im#_9oYJ(b zrk!!l5$oQt1rDZIzX@S;eoq;gzg*h0AziWv&y|SAb^W3gcLa^EMK`=mZ43wlC~_v86f;UXbU!$0K?SUPQ+DIEb`q4PMsRXJxSq3ssk$B+$TB1bEJ5 z@D+ZKvH-jQO{yixRkjGR%-jH1Tgi^}HiL9_tckyxS(rY3&i$P~f2e5MW%z;5T@u7Ze7YtOct_{BSqkNwYw_7!iv|4#bbPdw-E{PV}S{gQ`k zs}43h1moIzDz-P0Dok}ajXJHq{!1sTf}<$7_o@eEF+bJ!C4e=;7;yuTb6UA6iEK^3 z3nOOwfXiz^fKiPOYFh-*^Ae`aWzuP()AMqkyJifWIA-C^_aQuVZ{t56-k<+gvtges zD;#V0=>0|M@60Sb!GYKioi!PJguUJ>2j7i`t7GYt>aBHDi#ZrjUnT8>ssIXt>-+uw(Vuc`~oEB!$Rx zv7;a>4x5~>i(n>h?1uDgWs)jK1&Y^_KU^1$j@ftMO7>Vz7%qYo2Hy0&+Hj zd-(Du_MkC%mNO0x;Sg&;5vUV1eQa?#l|fC*Y#F&afLHq75WGXt0-x&UCc^q=28#fBr4g>+WR}A6`CB~cD zbo-cUaw6-%L8Z{t&mO(U9risl2G_NbxYu?`6994!ahJcTOqofn5>|v-^)!nHHxML{ zh+#Pq<<7xj6ng?(218$FHWWdAez*5@U)#gMJcmDRHX9#0aSTo$*jIhq@gw%Vk3U04 zpM0@^XHQme@gl)Sn_#So&}^c70V$$L!Z^kXlB8O<78hfnC%httSp66QIYxU7RDhFq=$#yrKz`jKThxS>x?@kMEx!-OcJz#%lV#53j zi}>PZm)_Rx(tqOtjv9ookVg)VN7?w4EA0@ev=$%b{-I)pgK&<5cg8N&5%%=nf`aJH zSbPzH8f~J%RqV4oj6X~7X#oHy6Cpe#BKll4f>QxB(Ir-mQy)wP<)!DIrnso=Ph01O zRq^^BWy=_t@mg_F@k$EnnbGDH+_-|5OaYuxV3(`NA9a2c_218Pv_}9l&I!Xdo_zOs zp1A@mKHjugV*vGxFi>@dn%6W|f*zKQ-e7S+eC{}m73_YPcfk{s|p{!un7&eh= zKB=0oFt*RqyF{=U)sdX_Q05?1XBiM95|h; zq;*dOP@*Ygk(E^H^^3t6a0LdY->9pusE5SccNjAQI=G z!z(?7N(W|WE-MgYs4>d`-biH_ZHTv1U^vgIse9oipx_&M$8QWhiHMhhXtyUkiWb@y z>8$g3xZ9&2bB;ciW%zhA&(7X+f}T8fh`#y33)#0n_Ea_V=#vGUI!|zIgGu>LC}{v8XKrZRRdB+MuQ_W5GZK%>DO8Ka+F=6ZBGc{}iMI5&P03ZNK zL_t)$(&DyCC^7@c9Eou-uNgeAt{KEDvB0M;6hbP6Tts;-Z%D31&>wn=N1B-~7{v3~ z$G;TksA|+ueaObS9TWnw-xw>PIDI>%tP+1$Mvm)%>U$P+gARj&Y}_;8;_DTzoA%%2 zHIL;0I3?*&q7?=zvgr)x2cgK8l^WC~LMdwCYtABnPk4aOCCl&`w!5etzFSj`vEbs2 zh$S2y;4T@6^faQhrWzAHm@;DudYNVBmSy7mXAE7|Do&=9ZUcffG;o^biJqj3g80hu zW?Qwmhou5lv}JgbL9T2&S++pLyX8Cefmk-;LPO63!ln%y89t|@6qvRi5Z+T&aK8u2 z5s~YPuT}(a7EL4Y_m%~r;JeEp+Zg{`Zt+QDq`z1Ol~^}#8o*VM`=wPgp%vC98v;8Y z8r)km80T&T%rs>jU-i28P=gU5>yOwUZ+N7R-O%^Y8SsCpH}X1sQV}D0cP}xh;aR^G z%n&(6a=^3Z3dMe4lhb(4;cepD&d36w=?V9Hq6|W)<%hfkqA5-JMYEoDi*T9)H398% zUUXdzB^CIbc#*7vz?K&VT;@J=9CXDs9)%U7khVap|6UD&Om>L-E266zFAO2`#f%2+@O%E92qYRIs}g`; z1?%f=(UCoP?;L#Rw~W)f-ah_``8oLKMUNgWO8V=F*l6bPQDY_L%Ey>PKxRf-e7{U+ z8xuwQ!rvGUa)8VXVhEI?faB{h9tF~fI0Xa+2X2yk#Y`41L);Og*nVwtz{S8+^82Ij z7{)$<2JuqJ6~HC}2cnQ_BBFJ)vin~Gl0uM7(?edTYD0-w_H$Zv9*%SB5)s=L;VIqq zGth6cVXY@PR1|bO!<$BqUzi*>e{#n$`s4k3@^?RYFTC;jm*}p?o^tT~DbId#;%2|T z8FC@5CP=wHYBzpsD6yQNdb2{2*+Nu1j3Ds$QC~LHzmP#Xi}kZC=2pV*rCL~*dB$Iz zu2;=iucF1t*;W&;S_8l3Jw8*E{_T|mcGSNO5!rC}j1l2F z0|+WJOJ5+w26<+6cpl&)8c7|lI)YY)!cttwEImdc7@j8vK!IIimiVGYx_9MlD*uMi-!aXVsk8x)R0TE#X$RIF^FS#z3&1rc~eV%|84d6uzX>y+DTqRgw@YTDh@`q^C5pNXd zpSu8Zo^uAJDBuFm$58u0ZBNKLr9wpdgv`9;nzHm-sLQprPKqGHoLvqZM$95WK%i+y z#OcIyRyHoO_Oz1gVMALsyy}3sg8^$D&q+EpX!<(LXd&SW61Scby{Bw)R1?V8bAmyX zHDa`U9*|~@!Sl*y*XcYdW+0eGHmXHDUu*ABSU(25O~)xwfJv+DBuNz~PHQ2-6&w16 zo(I6dauXC11yK5rayNpuvSz%tVobfxds^aFYjIB!mco|EC=4tc$+p0K z$f5xi>rvJv#Y+p68~MPptzC6YCiGXYEYlH=e~yg zXVE*@CjR@fqQCz~pDcd*Km7J( zIC=USOpfQk$Oj_eq4B=kck&LJ{UCW44#HT36fdVRJhOhXKp_X~ z0zx2(HX=?J=>gqEvT#F`Rf&6eVEk)_gSYY?C^H7DB$bu^NvmtC1f=za*(8f2MxA@| z`}jW5p?OaXl)0n8oIyHo3|>wigJ95v$bTIsPu5xqGMwVPm}T&ImPsGYJ66~IkF2g& zN0zR-g(siK`&j({;%Nt~8(uu>xS?}Qaj<!8a%q<|qO(yT!yfZjQLH zAT}T`Vq+?H+$~9}aK$D={qz=hBOKXp;K;!Y4()ZPP8>CtcFnaeOi$rIGYDTSD|id1 z)>z}i!HH9Xp6CFl9ubM}@g*+gV3vf_MgsFa9Q14)D$f;;BN7+2cqE*X&Pztx{}iYx zI_Xg_-hI3z)cqChzF^ZK>U6z{2TrHlk&g*f7Y!dTofZKGcFE11Zzj zpYx(2^PX5o#q8H*1uLRs^PZYKhnY=grVoS3vW3BCMc2AeXb{dIO7-_- z0BJPG>m6TrW|uUz>cz%F?p-J|(hNsknHp-4Xk5){+t`2ZF}YT<{w5kMy(eU&c{HMQ zBfzkk4f4l6IZPf6lGePWphmu0OvHFk2DYvhK}f(^3y?MYFd*A?1pnqBT_FbND_p3; z_e@#B_;hik+>i}I@TZ(&jj=W2t+#0`NV_j0Dy=d6@N(LEoeQB*TFM1kf^$R-^;yeC zK4daRS3w5@GBG@@%S=>NtLCnT8v%>g7I7JN!&);NsutN#3t8xGJ^6Vc)|L?WBRq(R zE$^A)mfhvWI?%E?r0fRif+w6;k*XLrhIKmFC=7Y|KvMQy3%Dia6c!iOhZ$?}MOE!s zUGQA!JtucN3W7`Bf!5{cp+6$+VPKe9s z=7cb25uTo!z~5NgD1YvQzqkB>-~7*4Vd+`{^Sj0+%^1^_pbUs}G{9Cy;dTUFQ8z?M z)UKV`>r)RPEjsLWyCoDw37O5{o8LSQKl=T<&fj-u<@cAzqrwcpCiCS*1{Ko zYQt9(D~@=fOiUY798W6rkBezKwyQ*n0k+a$Wb1$|4V>k(@@)c3`hKrfa(3u5omQ%4 zDKJdms{x=SWzV$fd3+D*cPUk(HKD(2J5LM5^V~qs7CS@JrkEAH2*?)Ik)iXN{;eV}Vp%al7uC-{09WKp*;HZ8s0r51>S zUSqq%eGQegApJ`T2Lo?Bj??EnyFuC~-p449h;y#gIh`qSc|FF$>m1Ee(Y_u7wwddL z-zB6LQEfX+s#8nm{;>J+z&zD7SF8nb$!EsuK%+86f4%so*G{x<`fPa$Y24g-x{b3I z7V!)PU2W_VP`^*Fd3ijZXZ~@8v$djLYZS4ecjoJ3x6}0NV zv*iBs^(k~eV|3jbe1ALE_TsL2rW0 z6g7NU>}JXe_7Ktj0Hm-{Il9{yB*u>3OCLiP$X{eDh~WK$vz(6LUy=y%gDZ6;-GX2f zrbOjr=mj8TP_>U~Xbj?a(k9e5q;s`zGk4{?Leld^c7>FD7B4u>0bLtz5uk(mhcQLo z)rUDcc~`2_>F?4)br$IS8Q2-38XCg(fySt2yQ^MhMYroZm#$Q>zFCQ3EBBD(y;`b2 z@I&UHXrKmKeM49n0Amo*p)T!SDlR$Q6*|szy9Kn{73`kN;9K9i8-DORW=_8Gp5_lZ zM_=C9gzv3**O$Ymz)K&>8T~$k+Q5MM;(ZzpB-wB(`+Bz#1_N3`>kSxX?{utKz1G;~ zbtxmaZP3@>%MMx7H$eTh!6)+pCDj!qS~h5)h@H$Qox?YEDu29k_*v7#tHzl2+_d?J z3v;k>?;SL@yy|}9>?Qa+XU>-sm#!FCT?cdS5@qaZ#%ax9&Prm$+wPS?^XCDID%g`m zyNp~-VPjh^-dQu~@>R&UOpYT=Ph_xrmw|(O(a+65xqHszfxXS@*rDv-&rAZhiegPA zIZtJ$2Y;>Cqjxb;(QLqnt-&ulfJ5HHgNW2a#20vXujxOT)7+z!JTY796=b>e9;x7+ z8RU!l40O|b6YulOxUXRYhQhAF&>W*A5W@|?So{n-#N>ch|1mpTCdc1tnC<4+4S-nv zT`(~JKGC1no0y?BYR7r1EK#ALEIkJ5YodL|Fv~YEB0!4vboItENTDw3b_v-aDMu1F5Rl)59H13GT$#DvTcB{EU=EYNna?Snk@`QJ4YL6e* zan?{7pi5kiERAhNLqSW{%0syafqi4(fcJQJEM*Vr9=d1^KIJ`KCNE-C%K~p*tkV8= z!=rwt5}>lFZGjred-83LLAt1=3xO^oQM^CErew)y(9q6y_}Dm9IzN2ws#SwlGl#~N zYZaV4vy9I!yBUI7(eosq1J;a_E#;$E} z;I{CNH%-G2eCMvuzVYttZy=lBPW9Dc_mWNd7?gFtmVAa<(;DpM7i z%^MvbHSK9`5L9=5f3ykcnP{kvuZ zKTjT($H(k{c*7m=p}TK`qNu=hyYQoDFTvkGf2k}kUn5vvqpa5hyS5InvX)7;CZ{$T za97Sq8ySue&8Ajk8iesN6adD?wBzFhyJz!aVHRm((l&R`(dv=?_Fs>W;eTSo%x1&( zIvtu`+khV;f;%}S!#bp10e{^&cvF_)$N4$tVvL}tlJB#iX)j2uDO6z2BIo)!8Mxjt zH6_CISW`f9oL4$eVmdPo`nP(X#Q=ZHk2^GIsJ+u5ND1lCmjk4X0-icWm;7y#_3!0= zpZdHoF#Clu7;R}@&2^D=(-^Iy49w$KV|{>x8LzOPnte6LXs7`%OC4{6&X&wRE*5I=cT&1ToOJ}u!Wo+od8eVu{sLxz@5e|T_ z>phsU2{ojj;L;xea3UjN*S>1$h7nR{*miW`FzGryXoqq21 z?roh~zRvq8(W>#~XH5^=D$HsT>hQC6i0S6Kg-=SI?-Y(zUT7SfYr zWB$|o7P1dcP2dIRuwji~$}{sgXQnF;3+)aq_6mA$D7fp6PTurp$JzXSi7|W)HToGx5QK*-So=~M|G|6@e4LoasCfK$D zh=V-)gCUFgXQk{NckERNk;RIqo4B<@lDeSe0o!g+aEhmKu{H=*fmX$(Gc4*ip+c|R z;XDxfI<{(?#VFN)_-)Q3rq-xekzd%&Oh|<}Ml&19^iXe1u9WIJg2FjC4i@v=(jQ>XW|zpq z_=U>B!)$)b0{eC6kLMQH=d71!@VQ3AykHGmwbAa$NhS>RX@ zFe5Y?*{1I3wH=MLnfXd1$4`oPo#AR)9N+BF!=N4PI5LK|>iFPkj-7GXVwH8?1<9#(~+ltJr@&vgBFX>7JzE0*9Wv z$Y@3tox9FC#OF5Zt~@|3>K|r;u6G=}%{)(!lU?Wi_4=jPFuLxu7xAPA*vtBGE+$dG zw(aJ6x(3EH<1pyRQc?SL&ZQaxLhLh~g(4kfZ?4trfSB}Iamja%`#_)Q!mjtcp|V@U z*NhT|&h2mv(*GOhjwu*GO;0spP8q+(b=KnaTEssr-(4fZWvy12)N@DHiTV%Ymk`i#Er2aEt&e~7*T zumU9Zh=~G2-V-zxSn3v318tA@qf9LJ#u4MeFag={QOeQfXGRw0 zP=PZ}gk9pGkD_T=QkJTZO!^}};Hv48vgTc}Cn1S3C9cH^Db)jPw|nI8GtWYGrjQXN z__R!D&%%B2>D7mi2lxJ3njl zm6gmFRiFIfr?}{qK>-~7U|ndNRCOI#EMZ~V!$#4PiaK%IcfK}=t-ma(j~N8J45{2C zfR&Y==#U<|djj6_;KYBKo`m1%6?Cv$z>hGX;Csrh`e=b|J1%;Xd*z~JZD`t1B8=t5 zWmob$BmQl{LIkx!s~idF!M@MBsGfBQuYVGek)O;~3cmp5<_ zJ%1K0ia?&AVUeCe3zxY+V^QJzg_N#nx!Z#!?)1Rc9&9k2TlkGE#}#(YuPT(L_G~oE zIqq5#=mSVY%YtLswvRgp2R2IoPG*?dE6RDik9C@Xg%)$oCrB(~kg<6yI?Frn=S2(0 zjn-L=oZ$uUX^zd0_1-8zX8%7fXpm-1>>0JD;_02(qNwv~gw{tw|Hf;~*J@J<-8d(< z-H0VXxX0Z#Lf=y4i&5w^U+SjH?Z6uO7?|ZXay}##*$^5du*cL!Am?LSjBVK*38@T< zfoKtfk!cl<%TBOz|5uad`CAwtJr4@j3G%F15sn8hw7txtV85-{FxZOEN*=0`X;!`c z>h&^!O)0Wy)7Eo<1mH37T0lfz1AF>2-T*b#(&T)w`wG`D`9ATUMziHo>`qX8{6Npe zCTsHgHs2$C-cZ-_sUb;(2=md%T3V*v1qQzd@ftD5n+=29Wq{U#CQt}~4xm(cg02HM zx-Sv9Nl{RkAH+ottOwEDrdPrWw@ZvRC)3 zBN+1@4~2z5sN-i?`=w6W9fDf(G<=MXu@W@7nen2SBO+LCt3g2Q^zFrEJM^J!#GN!G zRh7YWOdh2Ptq_e5a#M^7*&>3~`3PJx?vi8FC*-6KaJ^?iuLnb*O@e z5}h$dQrO%+i5ItV25t#MVYO-SMy!_dfP1|c$Nkvyh|P76Xs^@u@H4C8<}y^pax-N1 zuES~Q11|;yoh*Z=B;Wvy>E}~&j0mrK+Tw=wj)(PoD zl@-1NfKI3fQE3f4!yZy1`~}+M37E+{!_Ss9V|FxO63kh|%N5eYdN%8PUfx5mYlyF* zrPzy*pC?BP5V}gR#lY=yFT(jR1PzSXM4V@HWHiW?ak=+6PsmJSsB&i4dFSy2aZn8& z2HX$x1@>F3JnY9{Nw6MhXJPyH2XQ(sTZAXY<_2q~42JHD?H5T9>(LGp;vI575LPmT zrzu!vOzK8w80@10&|Y+ar_iK&pUg4B4j?_7S?p<5UZ$0ykb(#b^)S7DLvosO9*?R; zk263ofMF+o21v+rxg7dF@fZwPHh?JCwTH6?(RYup=Ot+gh0>M4CRN9A?I7#iJ>@Wv#Q zLaLDYh|fdRpE<2wo%Ep-LY+$0YY~lhy%;wm-liL{UIZOtN5p+ZL1KX!x+h%y*pb#s zD1hp?0^#_~%GzOB?!s$4Zmpo@^@cUSvUUJ1dj^vHCtM{y=kvykPncMdQ0OL*rR%YJ z);aAc;^Mi7jh}!qUdK1p7jq)G_j3mqY*4)!=g*ZL8yn$X2<@N5^|8=(I52_oD20Z1 z5Ov5w4sbnI^>sH!fJ_H_YLOGPZ=}A9WGcJN8m^oyfB_k|1ah@$V>hrO*a*2SWFMSq zGqmi!BZxNqy~)=(Hp?&oUK@h=&pT=&WTUV9R2pN!r;E8RfE$Jf4tzG!Oa*w-QKO^qUdnUBYVXfB@4(gf`O0{au zU@l9~u@4gkAl6Z^-=V%U{8*4jO5oWpWeuvS3Il|mG4wbu>{5|TIDw(L^B4nv zK=F6uq%#LUW||kI;j~yzP*yq#_7|idYN!U|YUllGBXLRr>tPH{wy)|Af0fx^W8f(e zq7)wrT`=eglq@*j#^1|I_X3EmiCC&O37&&Fa=>PW?AiXkmX7wFaKT{3c`+b80U+#o zZyOdQ4|9N?H3m+GKApHNGJc-wpf*Cb+GmBp) zFP~pZ1z@UcL+G#{bJzgmzNCUOJ}Vmh={d{&AgOLC6-{gl6xJ!w!k%!^i;l2v4jpY9sqoHk`PI5apKmkz=PD3Jy zAKPsJbkGB@U9eks+d zFCqzU3+f(z){5CCMh~keLs_-B=u1;t@KS-flCVzm6-$c%03ZNKL_t(hIL(XRhSKV6 zPq3;Q2eCBpOs^BLBRlVwC$*_-*!w%nL%r0D!nzaoF{0%NJs{MpzN=;fVUz#08!SxXK!Cn`FN1JXMX{EG*79pwY4- z-cQ>bi3u-*{eP)QwA79!AfYi;4 zctNf_Edt?Guxt=|k+JX@E}`cx2cD44RQG68BnB?04A3qQ(u(FKH27R-%LVrZyE$pM zb=iC3pupWHo>vBh`P8SjXl+m|YS@i@$rFiY(;8fs&PoE*#B|dcgcp_lbfNeF_L4AP zqID^Qho6{ia0T_*a9^n)!i=Pam3&$`d_9<{4#5?A#^MF?)Wy)=j6$Z0(>9DAU|m7b zFyp9|gkr5>Gwy#XYf7pi<0@C;XPyK1q&DS_MF_01l#l(;oz38S^VuNk%cgaiAE?(m;A*bq=k>Z*y@$WWmt(5gYa5Lz8$X)V1(q0N-8#d22)=`U=+qn9*p zmZX#+JnQ1O*3tgPD@HZYx^DBU_@3@dq!p9e$M|ZnA(4B=&lO8>4xkA4`T2kYa<%I? zCU)o-bVHFN?ohY>Iv*oIrb8WxL;DEnB^DB8k|PhhV}6J?!fudqYd8=RFElS0gX~y; zMbmJi2V&~O2v{N3+i*kJNfa%RxlH;qW(K^cLkQS5M%s>CCV*$QIXy;98=eE1=g;Qd zE;Dq*?`H$rGB~I6&Wuk7gqa{St|^8qr-F^P z1FQjr_-%BgoZG-EJ9Cp4wxOG4@Oe*iPZA4KL5&spuxJHeB$`7+W)U_eCGBC6fEwJ} zkHH!@Wmj!tEmlUcK*3FRFlPsRK`jA{EVI^%P*OU4tydXn1^pckSLz8nY0z|KSMU8k z-tBUWCl;-<*AIpC9k+0~NQ0Gr1CIdjig_-P_X|N&CCu%iP&^Dv#+VJ&fNa&FN%~$2 zD41=Tl^wUC&)W?7ynAA{iExGIe_*w^kE)nV@{Ljb5pnOu^C9rjOIrE$oXkaH){i!_ z44)4l$D5E~MMJf_y8>9E3CHb@nE67wU@d%{7-$8p4yO{Y{QvB|d9Y;Hc^~$D=icsq z`+Kv`0D~E9BnXlKNf2B>QsM@Rrlcs5#KksaS+Z0vm;O*iag}3N;)*Jpl1O%_RGdUr zj?0Ri$VynUoB)$RY`-E!m#NJn#hm~l5F`i!AboJsmJcNa;Y8ebf@)4Il1E5z z28Flr0@TlEFeEYyH*Yv*)ClBGo=K*eh*Ur{N3f#wP?XElar5Bi=4HBC$e}W8ut$2w z0X%75b0{U9d+~M@|+*#<6t3SDjN%Kpasl#VWi~&}~hetv61LGuiOn30X z&2&sBm6H{o7bBI^a<9vd9=ZHdHQ-&MWbLo8!6XJYO!u=4wAo z#4E}k8Rqys!JLttyM;*1mD?Kbf-)iTCcY%g#qfgNH+Zh+cs>*yS=M&nBW*f_#|N@5 zp*u$4Ij12&!Ku5DB*?jBoKwX_;&XaIqg`Z!iPxoC7xzT=EUa%J&=fqX-2p0$_ExHq`4eSNlKEAQ@rt#jhGFq2=B04tm zIALZ`7o|edD_^D1?9|2Nn|jc&^5Ae7EBGR8urEoP zdN3bUxRMPRlR|onQy@k0xpy^R3^_k(l?wzo93YfSqj^S5MKcdMGak63i;M8DZ$5=b z&K#w`%M>__IkjZ$)8SO$+%Yz)7>BB#IoR6uIM>YmsT0e2Yi=Y++~qv2_V`!L^B^`?wfE`F2{pva_S zMY*pAKN^dI$S+s(_QqdJiD^_=KQFPNY6~ix2v;S~jr=+zkDJGH zo-4`_)G!%4rAjr%fSD;0Y%sC6K;m$h@&@CHD zS zo%t>2%S@8Fj|T5 zNX~~NF^6CAJdPQQOj0IbtF+?~KeMtj|GBi){N*I^E=`>nQhZ3HX(G5|4VOXFNU1rD zd3C2rY0GtwHhZwp%#9#ChcwknN?&-?24BzAOKgk@#S+IzBK&(clu!?ORzSCSDV(51 zxmpT9aAm{jAZ?nmS~CRuj#TFA0Z`0k#e75yE{dPL$J2nc%0^L?IG<>;I!vhMSCkI{ zXwB(P^&m;V{Jc_ z8w7E*XNUHyR}xJrv`Gw4iHjxX?EqPuVy}g9f-zwX0G~Qi(`wSO@=10u zYofR3tw#z7j-!CwnByE`4&zZSQIFKTKwb*8h%Yc>o0qu|j~BQ?Tr^e#zU+Bh*t&JK+&a!wUs{_PWY)xMHApfoH?pMsDir9DL_1xjh-L{ChqP6_jO3t9 zXm(4%WvpfVe8VLtj(Av@L-uxoZ=^#5#9&1iS^1iY z+U_!=vM8P4v2vC}l^fD@61~qf>zWV#D{Hc9O8?N+Lx`}XXz@dMQ-@k(rSriB7*tb+ zHJNriWPM=t?4<9H`z9@U#}hcHPW6YJ54+LJUO}6W!^n9tc2sWxmF9DVmpPQ|kaMQB zB9wDt4L*jwWT}?)(6Z!`lH^*h8BB)L)CAhsOUX#e#r0CXy)4_zVjZ+bi0j8chB1~} zET3-RXWBOIJEm#VjB#8$%yWapqwRHj28)x!)@~o3zu0q)2GCu1Ec92Fo6zZ^7;<^mhd^_e=Y8;bCiYn_VNeDe z%_NtM@(f%NjT=%3Q~}j7^?ab-nk&7mQ~Z?Yv#NbR*7c?AW12Q?AJ;pdFU1(j{Zz@t zq35+`ZEy5lrX9;m^=y#SY4=Ix+SbVW4^qCqU(X+QEOqlauAg$d-uWaekLG*moK$-& z$aareXPgskO*W~TQv4t=IGnUgoCBGf*Nm)6nbU5h(8){wEu7DDy3Kn!M<6H${n9(< z!d5c?_kG2;nTO1pgng>|poqM8?53^r z0^Y#)m;YWzxQ$xeAQi2g}d0UKX*F$<+)bkx?M$!V9%E1ld-1@6}7#e z0qpGqY+c*&4Y&BGx1C$cZ#t1Y_}F)t%USUk*$5NE3>7W5-|MQEj7wiR3$@dRzCQvx z?WDD~R=jQ1e2trvachb-ebg!Q@cD5v64uw%tj(n7tBB^yeT4j&>**u*icONys&{}A zEm!<}-F%kEGVK_~$vI3ppP|LvuT|?3@0;?wgolKtv*KMQt;e+QG|j$mOwb$S<}|cP z@=-O0>2-&;Nox|z*SJ2$8CEf^Rn>b;BNx-iDNPwNcF{YP=K;p-6`UaF#pf+Dz?`$3 zkk0_WT)F>D_*5CWMNA#cZwZ40(m6m6;hQFdp9^!L^W zSYA(+5y6T0J*(uaNWCigJA;gA12By-v^lvs=#K+Ff@nz30y#YA0M>$-FqsgDFhAX#>2^ zbdX_6B(em=s%TC=X<_lkRjSf;Bg zUcJB=s#f5v4D&J1gM!w|E7Tc=FHs)~16OwdL~~j7Tb9pc%=6)p1Dj8%lhbiyFgfqS z;1X8;oc!HtLdG4IX!2f`jp!2sXJD9OHJ=E3cVrBOOt=~YfFM*~s)u5n?f{#Us_*wg zhokFS*Zer-C{h@lj_IB{Lzu?RLqz{n)*WGwKqQ}4bMB>j94(AiJqC>4rB**Fv`yt+ zi1+Ci1xh}2M9}zeg|olSpgYl ze`rMP1|dh&*{`qK*EF4TyUgt2uvp7n0oMx;p5#qu9!?s@w)x%1Y77$`_1osR7ktN-lF`=zxn#xL%AQ?nk)yn1+Vo z4>%7Y&nRUB?3Ocgb9da5z?08*q1i}bDQ$+bXz7NlD3hcM`v+Zk{>rLb-=tH=k0!_N zx^1p?>&*>#>bZSE;cqlj!ywBn^yvyxM<-+<3G};dXt>^zGRPD+|5yQ|RTnYG;zbC& zrnaVvLq^8{@q{Hemz5$}AI)N3#i*jPL5+;tW=sv|xN0lvi=uHbcFuug!I{=|%^_YR9FcLbYCWdhI)wv|OdR5Hg`6h%f*d9BTqv9d%iS8w zI4I^=FYbfn(2@0cfnjF6_w%E3A#fJ59+s?J4yhDIwm>(aa6vZ9@1xXejB7||8RQcO zz{ARB(CBzB1p;O?G{@C`O!4(1Vj<`0&=>?*Rw?ss6rnkjcZ?uZ`eDx^`Ypk@6DlgHjt$kA zO@Ns}7TU}po7_-^Qz$hK4*$5Y4d#%;QHCKPz;YFkARu#ZLu%+$d4|9~ z$QUX_tJaJkC?JoR!P-=$ZaVNpkHlRNVA5zExb^XV(fkhw8Evgu4yHM$+5RQbC5|W_k+3>== z-X4x1(>x(<8L~+90mbBSh?g15j1Z47Mid2OM&^_G_n;3>I1!VPaVV1dI(cG4^<^g3@UTXs<3N^ zWT!x63tjMrAwgGPGb3`;8;G##0osh>U*$=$`B)I(Y5j+)+_41#(sg2hln+?W6`CVt zm<%PHuJT0NrIarNFA9fZq&q@fjpvImr3Szn8{6W!RghVq$@4fWqt0O;a#;%=N4FxB zOqQI^n0vfeHU_^d_WdP+EJ9qhK89aMnFm^0eMko$1SmC@(_C|{wA#L6O~7Rg zJlW=H>3*cG1ewEGup7CW>Hv#=sOuC|{T1I}W{@4Gp>xK4c*sTuCU`(Z&l%ct#qGlF z8jxyLJe@skO%gg61E;KZfu~l2+>#@47(|r40dvNGxd#IP%%O1@Hd@o68wru{4HO*{ zlgm3KFdBx9Zo15AiCF#)b6ax=XVW=)LF1&zDB@3?KHdD6x8Jt>i>Hq#jmzsyZ^T$+ zYMo}8IDzE9%=6OT+sA8Hw_k@e_dmbp&gSo(Inn%tUYuP~W!dioG#YBm3Bz(vPenfa z_!S6}+w&am24Jo~y6BNHrf9D)!ZrNHp{VnZl( zDC<(GTbL}Gh+Z&xEb9g`AYBHNX<`hdqm5;pL6R9b^isw1P{^t7nShTL&nt@lVXjnx zOA`Rr@}*KdQ%*fQjXD`alt{;Z1PfE1kA%HrDsV3L8rsE|qX5kBNbL&QAiF#`4aJG> zDCb&v12*0>s=TT>=i%>zP!lmI^oZ`@KW`gfz&%?f z^KaAxrjMpo`8mq<#t1ifHBE)2ci($rg#XJ6bNIgA9oMoylQc-ETD zh8T2U1m-RgklDL>eRv>A;2X_``-?vF_z}gS5Q>t7M<-0@iE|^a+B**)AZmQO$cU;k z+EPKTcZ?Q3(uWwZ#?qPA9<}V`SlhDnm;90AYUc^?6l-aGuum5$2>} zc|2FjvTpOynDo4PVAd-RRO2?saR&y!XKDuSCJlf{%kKi#Pxaa=Rs9xJ*nGMslEzaj z8|Kd;M&_pg09xwC!Zvk=Wys%QuV9}l=F_}6&W!!K`C#LKFBzK^&qJ~AC3mkrhf%_( zD(7{5WcItNGlgZGDSCEcfY@H~!a>%Hr23&>2P2J$SeNdWWZiU6u`kET*v`15eCr1* zkmZXtF)qqBj?bs8k`J^z$z5g|Q2yG{J*$xfAu6xa9X!5ylcUWlfYl(U<8+6lzgS9! zzRTFXRc>h4NB%G8g0-19)k{!_cF;Vo9D1dK*nKEOOcv5yJ;ZmutlP{W8??#kl{eD4 zAcc>3H}rQ?d^O6BtA0M}XRNE)`WVM$IL&610}+DWG>HdLFR+kgJ z>(-XL{fvh{zq|_xCa}7)0L^9s2M3+PyXKMwrZoo2GT7f|<1Aq`{WHwL=7rPHHDQ2E z50Ua1*VwyJHE&@qrjo0gKH@bU+mCn^s@Ej+GjR-vF0RtOu0E_K4qesrwFLvE4>EdO zrL0fEW)Z&24eD1ae?PH{=mIkI;c3?-^ij7j1G3(vfp9p=RT`B;>;hv4F-CVxBd26? zK9Um}^)XgA!5A4Y#%c33>78n1J=R~7o)3n8<>w*;skR>*L+xIf;`u<0R(_9o4AX2l zyiwiZbl<}vVX!z1kvRw3xhDq0USuzOPLL-FttSpId7&7K!Df$_!q-y$bb$!&_*h#a|kT>tq+|!vX_jhsLTb>Kb zbo-Vw$*oJr9{O1-0X^olT;J%yh0A^RF)#}Iw{AT*|LI%L zt@&m%6?&!IGpD6eDuu`?J8l?zjD2+b2Lx@+Wbip*BlB=m?tQc5PM;REaNK-O+iqk{ z$F0dr-N!TrK;4|&@O;z>R^`(#&79uIe7+Q8sOu+$_il6yhmq5|`IuIBOr^i3c&DoG zJ*@tkB;(V}%ea1~eSTaY)3zIxv2u90Bm9ML001BWNklW+lyY#})gOI{IEC#cw4J)}^|hgaa0X_Yc+1Zd>Zjtj!Fv35~E^ z%FoHL&U=58_jH>ik=_{1$6xkFT4?uueLuYcJLJm4P_f$eIi1cjdRLa??Rie^(GTEu0+p&eNfOK&2|n-8^=5lw)@JPo-hL3eXVwna93piQX`R$4 z3z`(QAcb}lM_2WNOl?HBksw}eB>1#**!3jD_d%C3!at{$Eh%C8Y@O@c?C`N>6=X^H zu|#_IoLq4ZFEEx*U9$Vjp^=eH{vck3a~q1h6$DDSB90*GXZ}70%Y76)tH8&)TeAPaAiEBe+hG>6cq0MIfE+x$AG=kGUhQz!bQZ zRwy9hid{Cq7@wP~ND(O~k4L=s#|`U@u>ki`D=UkF3(o1(ign%-7>YJ#YhG$IgRE$N z8_;h8`Yk}ejo=yI=b8XE0`8!e1HW92F*Zt;1-w=hYQLWcg(vd4g?~M2b=NLB?DaEv zO-}SG#$-Exw((1DAWdt4ackFDYt z?s@gn{;6Y4#)Ab5ffh}0EE2A~^l;Ge(CaI(k^R1b4)d4uI?vhOYSJ7mA>WTj z`F~|Jjzp|@qSJO6nk9Ho-_Yjo`yoRFdU0lWkv&PgR|D)aS5L}K8n~KYXqLEomdVDM zzw!thUZT?@*)|VZ3dTtD5|F9CEZfW=v(`-Alg-q9rP3%U3acXQvd!zCSEYK|MfF3Mj99m6T@Nj z`*}zr4p>|>5815UXk#c8M;>lcux9F&`cql+a3**aUZFE?aLl+!AQ)A%1Nv}{FVc==yWQtd zq~?s-^f9n(uiJ&atzGcBFN(TQaHBBLn8XO)$(Z?=w1*s4Ub+loW)U|xrL;}YNkR!B6p(W%QNm-n=O+(8r@$@nJ zGxqB?7N@d%rQ>Ks?%sF|Y)rD}Xt&PbQ+_uwH2d-Upn}2fY8XW}R@ZpRMjHu@OS5EP z7V|*DA16+yZi3J$kp)TKK;rOnf^aR%;q_kr3fqXZ&q?*Y%%AD!@Y-&VzB)hWKJ%`( z9Qorv`QqA-zHo6Dc6K^2zo2vuS4tyZ!IIt?(j8FI4=VR)K?q%iOz%kP0xETf%||ObFUozO%|l%U9V$}4 z`-YE|OxX-Hdi4+=TGF{}9K6RFYpwG(vh$Y>ktL&2PR zT}Jd*{81#r1$9CcvPj0K+Q@S_;}Uw_Au(IX3J%UM7|bEBhh*dCChx5ZS>i~{qLO>f zu*a&}%pe=IAcS7x<3x)DTv_Q7^G-=)1O+>U!CdaCQ6p_7NEp5K zf{TuCNlpC#vD4;qg2FkLP!+;GZxn*#-oq(SJ~ht6V#S{8ctDWJ6Qs*_b18!xGA+}5 zMs$|*wn*uV_*oYqS6Nv~!lt7u4xnFt7Y4p3#8&Rn)R(@O5~Rsi_+owqhW{oV(T|LE5r-GXPH*?|3a zPdJ!c%>u|>kyVaB1&oA!2;qD{w#fPpz=YU}|8ZbX6^n>bI z<06564ulExGuKoIQ|#Hn=WT@zNA zka^-9Ilq-~VTi6vGghoT93-62iB2jHXhE{lCeNK zodcZ8b2#ao95@`B%PddO30;h%YYl`;Rrp3qk`70>LW{lACZqizTRf*MZ!UrL1j&f3 zNA?@)y3j(Ni}KHePK<=7)!vB~0BBzgCOH^}(9luBDlqSJ4kyYunnifcj7>R|kl4t6 z7Im-8$1lRhFRKyn{TU*6M0sTSy9#ev!pO);0?#|;)2!0Pa`DQ6ZelK5HvFRfX6r(H zKiNo7P~V4ihph?ZKu5fXqk=hOa!Cc(tt?+Ip(msbH3Wteu4Uf?9rd1xu(5A?CyVr= zL&toDg7^-$PX-r004}j<=1L6SurcJ8`h+Iyx(4VwiGvGHxJnC39V*sUX|K);3BSpN z{ntEB|1KljVo6H^{CJTi<%SHtcrsW)7;eBsV#PR#^zRwBi7!e#d zIZaGX!}qZbd%!xK$+~fPT_o3nbt4g;?B{US$+Nm-EUWe|tVj2p1IG8tOh%JJci5#R z_q6Ig9dXX(n*S@NCfWM(dmT6g)?azWUNISCo;+S(26$Eaqwr3$XHgAYlMCazr8ozS zZ$AgYV>X3nIfO8$^?1Hw+RSZOYOFknVBUK?$4ZP12;@y=KgQ$Ov%hCX8q0@HHbx3P zIONZJR=%m;jJpD=C%}5p<>yVHp+cZ}4>*)tsD7{IU-fNcuos8Xk=IH4C_D_L3YG=G z>)7a1oEY{M^+O-lXAa=oiDN!Q%*#qS^ksjJ=RyojM0RP*TpgqiE;)pKiWG>Afe*(G zyD2rCgDXzyZCGLPjVenVJl0Cx_sHWdSq_cG1^m=I?_c}s{r4ULNE#Bh%=%s|Qcmut z+{2ZtZCGF5UtsSF^N!zirtz!qe9PKXx1B!*zVBhb2wN7hNk|ifgM&UN_S*r=G&xLd zMLjm2k_4Vh9PKET5<3Wn842wF95cn4M=1aZ_tb+U^Fd4@k~n+;g&4dz?1uY5IN%a; z&ez~|5V_Jm`YI!kdw@C5B;><`;KQir9Bu-bM*xL$P@c6uOlGhr2VVsxjg1Qvhg`_A zK_>H|pTQ3@^;h3+F0n_Tz|TiOZ{N*yPVF?o%SxIpH}#%_TJIRx7&aJGQVcom$J<;(sDB8Snwz!6)2yv{tf#Njm~V^3pQH@WTGK5Y-yq}YGFe|iq# zGLt;BQ5@|T{%@cE-2q%fAx@@)==t!|cfwtZ<0>&_j>RK6y5IWNXV1J&SoY@Fy0Y=K z28PqFV2`i$J}99;{~3B8u-5nEgS z*-so^Ob{!$rwAq?Ad76TfFS5;i<8 z^M=*m>tX8kMp)}wW-dyH{)MXVMsR&`Jy)!$@$xMbF?lewlZ2{5BpBsRrDIMA=bU)q zs&XjM4w$~(l#-~Nog{yZ@PxYR&7W?EhI$^vBeA5$BDS(Volg^d^0jw0|Cb+o?}^{~ z&J*kK=wqAE>t)bvIWa}q({*t@gNMJsKFs&)Zh+c>38* zIN0yQ;$oBed@TQrpxs3w8z=JpJWqHaoiyS1LgwN;u<UCcBBaZeAv{zA zB;ng|c<(ANDgt(sL_DPBc@^Wpq1*Nx_5sGrE8P8jDPC4=AEd<5B~B)<8HWdOoNQi8 zal^N0#|9Dj-HNhwTU%sIp(>L7MDO^-@@1hb<|D^m>gbBeI?E{^f~}eZB9Ty^!z}{Z z2Yr{(oJW$EX^t^u5=6(I*UK6b^L-164H+8V!*L^E2Aj7qrqnzkY)D)s@LLsg!LPuP z@Dt&n(gTyvHfnhfr`hYmJ=#)D!n?79y9^EGeItbSG?)tAk&E& zsBn#tw(HklC>E>aT;7ijaa+^T*938+ZzG7;a@8wtmamu__A2f|LS3qsQ%;6p>;Jgz zIkb1=`8Wbf?bS;Xx={TNmLfo~2)gHG4rs8Z(ihVd*`>U)50z8V=i|IqDkBo<;maNE z47`#UfMElgzo)_hD@`v0gh%WvCROP3&>L)oIfSdAWSe^vo_WQznL$=+dZVO+1mGeo zAv^pgC2&HOGKzjDu5>r11Z~>n+Rg`^rPd|K=0V zw4vSZL2FK<#>{KEwcUY79^IIK?!xMi96!4937^Bob2l}1-~Q&~@aaFf0?$9&k!R-T z8+^MK?bGfc^fDB;qZ4d0ILI>&7vOP3+DII{s5ww>g~lwsk*Sxf=*sia04S=Us&lVc z?qD>Z$vmUE$wv}7qijye`q$86Wje9)V$*qvAa# zje&3E)iw$VQF5i>S&V}Qhg5M%D1DDJ!_t?+FX2_q5U0xhVtY1;=04=?c$=p=TdB<6 ze`McAeT>yFMhxGr|2@?1{eibg`l#IZ<8+5Lq%m?ac$ZOwjsly%hII1@?@`_>RnQ1X zHS<||pIQTVydGskirA~SVqA=4(k@l)D!a+Z&+!HZ$3*YevjXjgsyNYdUsK zU|7b+ek`0zwnnyBBrhx%B6KkfN6&_^&%%XkjByy6s9gKAw+r4ZQfF;ukXch#tK95a zp|+9)uNg$cu@J(T!c#V`xl(Re5=r(%gU_0)2sy>ij|+Vi8>PyNHboyr8+VhQ{Ae+c zBZ}63@AWE4n?R7|8LXvE*gAhp>-XOOuH!%R)kik)YY%NofKjXB=XaQ~SUn?s%XD z{VQ|`p`{7hV_^v@y^>?zd)$XA=asagDkRCq3NOrANWvd?6P{*$BSWOt;2PHlMRE?& zXM^0nlw%mzC{D+S4jU@iURfCaD?lw0myS7+{J%>g06VH7V<_!?Z&F z54l(B_DkJ-PTR)L=OFQXsHm%IoTy&(v2t3LkGS7)avqu=cTt~WJ`dC4b>{DEaal@CA+7?LexzBA-lJ^uQhdEy{ZDyGc8oQ9=vgAexUA%-qspB^H_oLq* zbRW~SDU4e2GNj@rlcZIEG=)EV?+=~$jUWG!n>*>8gYI?)8Ktm#bRORM&g1ZbcOHd1 zZd*AZkYsZHlE1k1Z0pIOyh_TjoG5u*@NCqJ*ij z!&SFJ_3_eG1Ko%*PZJJ@a@Aa2ABXwA8|kC&fd4^`Vcc^+C|RG>{xXc?rC5_`+F|7X zM)t}}(fk;1cDY@zoKCZ6|9!PM%>+sXI9Aw#k?m0ad-Z%+zS)7oD@jFe`FmdRZRR1f zCazb)WwbJstiAM2-1q{kL7d-18=jaaoKCcwc=hNi{G-3}!zUm7`a@S= z|JV~daO-W$@R9c*{m>iccb0Fv^G{D4!~e%Qc!IoCk^1?0_=6vQ`_T{n;h!IS)gQe0 z0<`z~rZ?u{?3o6<>ii-!o1FW=>yMU$BO!%yh3c%$+N{mmE2&`!<$KQ;(?K2|SFmc4 z0j_A3GVLg^I6E-}IET;8;32k9wpQPB{-4q+y?kj1Z=}r(GHa-od&p}_BF{*j&`|03 zbq9F)bK}~$KE^#y6*sQK3i~vD9QIwxpDiU6S2nb&n_aF91A;E&;BPN=DF5!ThGy00uUAg5XS{WvfeHJq>i374i)r`s_3XE4$1$nz@}9j>-Eo*P zA7%`P?YmCqLc8AixE}pg{`_I*^G5gExN(&KZBieHm5)%Uu`=*_VimemSN zhKHkhgV#tcw=xupb){fbD=|9|c#LOlq|FR6Yh3mVTK2cZiQSQfU)3;BM1-6?{H!FSM|aDlWcHWPZGH3B+;H$$h%i{y8gXf^}4(Ozxv=0EpGxW z-vsN~KY{J7|7hpg-7`;Ye(gWIu(7^;eDy^Bs(W7lt0#{weKXIw0y1BJ$NkIQ{r0V` zIkyFGyz?Oc;OqLy>UsAh97%tr(}xS0$5)Fho#YnBvvk0fi&liduJ$HHYaPvJVpT^~ zVa+0O)z;6%YfvE>ZjMkrpN0=7zjLK^F4kW#@41MXHlnN06y# zZjS8{gq=e zxBB5oFD6mH6;TsRV#NBeZ%f~2dshBBk_r>eVW!8D%nx7@JAx|vImWk{m1=GOfbQVREh1d=1ZyQB zEhiFJ-oCJ+JQ^(@A)+6tjhCY(XIE4@QZ#`0dl92kE`SzRB(0)W&j5|7qAb3`#sQ_u zQBr`&iSL2-*&GJnSIh+s{+pJc3FCB#3^#Is8Z+i`?}9P z^^YHV{P8z@_r=Tp`Ae7G_SO}+`Q%ynD?k3>7hiYp`3K3vw>!Q3bq5{ybGv)l>ldo%bz0mF43wdkjdmGu#?tW)w>BN~wPMtgRcM}KC6A^>&t_hTcB2xEkK9Xoo!+e(C zqpHbVShXbCyr$7yQyrd`9Yl#K;S5Xj8BHEl$wujBT)8Gwv?1BIcgV-cDODtY2l;gY zPQnTh$}$S}yKxERgu_YEVZWiRQ^4$lQgH#4&fm_T+Rk$pc^RQPio{s>2JV6J>{d$Cvvga_LR8^H) zF^+6t^ozk*=z071GX7kc(_jSq(zwfCR;7Q+=UvS^qF~UnG3FdFhG8emVF?je6qXLi z&^cmuhVpj_+r`2>erL@0y<*zTS`Cc|<=_Wetf-6`@-#UvA4kT23HVabaQb&H23QNX zC&m8}aLBIrbb>Lq2&kaiu-|X+jYAOI86=fp1qhGEB;SG>&n47^N9=GWQ|i3s)p99L=^iSsk}_Ho6%(l8=#I?ssb zlHVnsz2G5X@Fm8s=@8*55-dw#fX@T#V;OMz83lDt(_V;%k^CIoG_n_bJ!ZS}ldDCsLKL5_e zIrw%nO&)J9(f@FCwUKAoxT*i*-tRp3)N}BytG&f%UijY1?%oF6cFU`O=toX`KAS9;fHngSzPV#)%x`NHyoXs1r?>>hDfM6}I*h2Mw?1G~` z@+=zy=MvV0Kf5xa%8=J%kMlje+;-(VSvGd~N4V+;kC{9cvMvC>gvX+FMPrfJ0D@)d z*x?l=mxp7eFWlzpD@IYbzWc!-W$!2{3;{C`Y#KT{f7kI~fHA10%!L9`iJY3Zh0)S= z+)QFkcvR<&cuYr34ufYmRWMjy8`*~iN;@YaqmF~+k||_%oB~60p3NG24Q$``ZB14T z!9RFH7z&S*nfGjeCKAR$`TL5zcTf%*3fhtR7pyZT;MO%~r~`C#kwN7>!3mQO9@nzY zn;@t2oNqDqm-oc~wm3Z1Oy@<{gsKSeID!!x-0kw}s85pP=Hu*Bnps`NnkiUyPsfAPt%ELi2F`s=fO`Q?u&lGrgW)+Pn@`^NY*4Mm=ZdY#y5L|Eo# zTgI{L)S7D9Uctf(&ig|*=5bItT35mbI7I_5G3&8i$>)+i5ML5mchENI-ai&WyM$#= zmC8+-9h6;wmOMpF6c~(XS?aM+H?uZqGlMKNw&F=PMXE%q(wup0wgtSA#7!$Xu&XzhFrsZ<6%xSE}s}&DFsTX9#bGKgqZBGtK2DTUaoZQNx*$CKY<&dWCd4X~D*yaIT zy!iC-N1u2YUbyg#%+liG63oxdL${y7Up)F1ICt{Ye|^_|uYaL62cH4Jt2scjcWLj} zzw+h3xce)QKT7SL4Y#$q2?w1HbbA@x{q$4sUwPA=3xNJvKxjEc;r0_nC38wH;5pgk zHJJz}B_8mPoPmn6 z;jvssCb!T`W)xT)%3?Z{MJHwF!Z#Trdr%&G6uvS1D+=CKQlp3|c$hVy7_)(nivi*y zV+^AH_(1D=F+Ava(+6!P001BWNkl|Znp65#tufOD;%D!sq zx=30;OZV$AcrEI?A+rQn;m`>&qEwGGV`Inm;gV1d364~e8o^`a#pw!)I{?!%F;Cq7XV4%ae*hv7ZtFQ&p)`fvVd0p2OM_H)lsHA&F zu+Dfs7!e)|09d<_=(^YeUg!>tbO*-z$L5t4S>?d<>KZ?pL+7i zcU^k%A{-nXz_DY;pw((YmSwQMz7E^l+i=V2TTY*S&Fk)KweT|xn~?#WefGi&AN{j0 ze=d3U#ph_Q*%E6wWzLvu>+sD-zkJK7n@|4zGiO%*lib7Oh{9*N&2wQn6NJT$TH1p5 zw4@})15aU?Q}vX}0nG=6}J;MZeek;GK~?l%wX+B^*B3<|X%!%x)Rv5b=7f8kSqj z_7Y#d)}qj05#E$>$h%NXw9IXh`A$PfNcN?YOw(Y$$*Uw#ux>9sX#l7Uu9m9xG|?6$Ey}JR5f&n@itkdf#O5u$iudh zenWA1vS$DR7fiv$eXNAdt|Ych1j}I?y-kMCIVB-y&&Uc5A2R%hB?GLtn=^+#nLKzH zLD@NRO(z;k#1w|dF^5L5Y&c*$sC`uBC$KHFi;g+ks6n0&15qw*p@H$lA-pU>c%s$9 zXLbJI9s7IPd!PI6lRx+HSH5t^!%sX0+q>J)Y&Ipf+VA(p5W8~a3bf{0uzRo%trlJ- zy}upr?!qrW^Xzw;S2wP}?)DBQYiqEyv?LeKjjc_1^jnX@t+&1A=Z+nJ<8L(^?yLPi z+$J|=qTOh@hMLU>%fhlL+ju?}l~`SJ;kJZOXLK%jU2IOdgk187GMmA9cKmtGRSMpM zZRS6WWz5Lsc?^qY2v9WGd7E&fU7;Q46`9vljc?=45T39#T~K87kaxpj6sA`Z z0mJw`Oq0)Pc-@^vP#kZx_K6T6Sb{sjgS*3!gkZsfyF+l-K|^pI+%;$j?mj^Wox$C0 z@Bs$bkN@IZ-1Xhv-t?lYyXw?i)%~76zvp@E&7qp?gH1;i#~O!;@9uVN*adJ>6lYwe z$Yd}PPNl&>6dAb7hmtdnh|r;A!k*|z3m;+`vhLR6r3nV%S$;Wwwxav6{hJBEp_v~B z>)&WlXVjq{o+KH8DnsQ0z|=5Ke`_V;%I!6TIRhm18p|-*xVcLD4Mx>LAZaH_OdvZ+ zd*blx=zs=i|F`AoVbO7}mu0o`Uv4O0x?sC2_Xe z=^!@VJ@o>2{*FD91KUuY%kjRQ%;h&&dPiMuXAro|8Z+T@atA|Gt`6>JP>=LsJdi|e zUL-WWJ0iq+QTZ9&cDLPwU7zHc&6MNI?UJQ!`&WV8FE!HAT967_Ut*Pemsk_wyjy-E zOOtu-0=7CEcmE;=(r_{SBWhfIbwgoJwV*g`qNfIva7THiFlOauJW~n&?~NTNfWphj+A zw6a-Rm4dM{Kk23A!rr;=o;2ns#_=)j;Nw_vb%ILpwzJUig*E1D^pqU5wpVnFhC!Jz zkwffB`a;aEp?<6&Dsdr|r2INA?8GAvdSxkxV7G+7E*aR@JwMczkd~ZA%TJ=9fP)(F z<9Q-z_3|PNj0H1nMnOCB6Y@SUB{3%_C$Da5LL(=iT^rd`J2}2;&t195!F@Ee#cA}z zp$48#G=RkJr>g?C)*Z!OA9;|IVHba&;B^ZKpq{C!eCFWD4SisO?+<#7KT)1?C1Gh%}pu;Z2GyFZC>ks`O< zrIOw`f3KwbHr}2ju61$$N#J|c-V{p(EBU@31J@g6!-$I`)J^B$`^21*4bjjqn}JWD zZTv8CD@ijs6ykQuI_+qwGd$pvY+s723rTIVXa*Vt5j8f3hnGHi0?4oarOX8lv<9_@ zbzqX`8CDd#oHf=toqaw6Fz+Pg4-7_6y$?m58YVkFd7;Hi?fbN;#z*`d3s9~496;Vd z*J8h)OaW+c$4ghp^tGQBV$ouG!?X8_WJ~lbqI*TAY(m^bNjvr`o@M8&h1<$+-0+?^ z=?r<2jH#$I0k0_ydsu{}{!aZ^4kT>p+>INA2W7QQAj_k&Cp#v}xId^D@_h8>$}EVV2KDK)B9)Pnn1Ru!1BVZ1RMi@4V?C zGqTk5)kJq^GMvcmFT0~Y8)8Y&dkTMS$`SXw^J6CP-4^U|-16xN0=}K*>zonf+;p3|%;uys z=0=jNS=wyo-5Ry;(GvybZRK~aw|G00+01?(GT7@(tKN$Z&ni`HNHf~Pf8#WLIO7(H z?Zt@~SI0Z{!oquWjcpWCe)nArU}LPFM&rxvghF1x!=fpMc!9P?bZ{9FEp?|&oq;>= z+P9JdkPdcAAStsGOL#JB{!(FEeourcMLM?5JP%tF5FqSIIL8X2B z;^3|K2cEbe)&^mn804F=f&vNOuL!=P35EwocgFM*Qy_n8INEofxU=A>BoMqnh~il5 zi79NQm@CKb<6Qbzq;@Z@V|uxJDP2vQN&FU___)_mC>Y6y0o7U9`Ay9lSDG=~TOLVC zL4YRR|ISC;S__lJsnXPdomwS2$z$0U|5`lkrC%M^TGj~=W2@xy2XW*hE3oYCo|N&Q`cU zuEb&|Y|XN~sPOS00|`}5kusV6d8C+*1KXgwI*2&5=TqH&ybI17SRPDH^D%!%G=p5c zHEMbpH1z3D@iz)F`Ea;ElgHB?r~ffX;=aoN$%vl{xJ3g@>M*(Il>mR3tZ8UqHmt#C zQu?>Ja_e#Zm-^|ZsskA)__(T7bp+mv4+CHRO9kKGs2M#i%%)V?KRcVq(I~26sGU^{ zIYxKbM9Isa>;6`tlWl#m|=qF+)m6T%t#1~VP9gQ?4WcXvaK6XWrQ$! z@wyH2`*h5p43{peC1roPtux7h_QV>x=#&s!zv)^{>}|!GTz(z4~t`Arhxs#R7KK(85ni<1x;2L*5FZ~T|T z<`gTAuXHeNRhj(CM3<&~ifnveDMS@sij@WcsG_0(Vaf2xizd=Tsi|irf5XEo?-&LM zLI_P9;oPUdz!zAqwbTP<1;&Iv+Akq-%D%);ic=j8J3SO*B6Urnq- z!~7D5r}Px>sc6~SuSa$)B`)?>{U9YzN7Vn!K;my6{NGqYv*Nkv$TjR_4LZCv60VJW zu58!os2~5Htf5I<|H*`{ob{UF1{_E}?bLxiZzGsGeYRRKVO={r#U##nOO-+YfQhhHtAn-ndN(RKPuMlfNg;B+Z(n3nQ5V7p#K7* zef(Lm@3>{qjp)gMnCw`uv|M-0xe4iuaox6iMIW47oBBn++NPQv5~;RXQrlBKjoW-@ za@pL$yHFaQ7kvlq8Jc?@YSjAw*>}BfqiEc-u$f3Fedgz)7TC;%tvp=U_giR%{lZ** zpSdivBeRZ|3varW_Xj|?efbq)x4v1p>n1`^`Nt`m$7aUSD(=^&k$~>pFS2Dr!^!g6 z2{kQzEp=y&y57`#GBykh^J$mS|FT&(o4b>pf}Vx z^ut^hmzI7mFB@P0D=W*pgK+)-J{n`1~F!KwsbXwhXB8z)V@$k_0DOO`b4K19WMets3TF&O_iFfSx1c=?PszpsD( z0xENJ_Aa2`TDBS;lab+u<4Sl5jgXh`dBr}lGCc>VqaDOJt!N(U{CWNU{!<4Do4T0b zzF!2~OhlN5O{bOtu#rW9sjSKLTqwh%0u3qTD_Bwm(((dZ22JZYIQ7 zCg4;oa+<9cd;tvkY0wY@aNcN-toc_~56&Q-b&peX`aemB_V z!&}(5^g8xg_1i~04CeX@JS_C!b{#`G$}1})nGR1O)T!Tw=$)Mq;#b{1D-R#;x5Azl zm{y$-+2C%At$@pxs(TRl()MXu+~|IS*u>dH1xxrcyhbo4*D{Drkvzfja_vq6h5BX= z5^&e3=Xkp+_D@j!vnXs=JB3-c)OC!o+Ca~fmsUJ()fMB1LZfX&Mc5^d++&t0HoFcg z1w5Zk2x75gQ$7PN`lt-f`GB%oWeV_GVv}!W)a=JiczQLp z`M|>%9J*6#&xE0s^R}5)lELZBTMNnTjPw3)Lbm+F$(@&C=^p{JSlZiH z&JC0QMx*ANyUY{``D_utvRk_sM?R+pUJ{{sTscCq3D5t67zCG?-CeLFXgT`J61hRX}XZ2+cV+y)$9JR-1HrL{Ev5q z56>S%pA5&3+Kv&MQ-r}(K<)CD=%Kn&uYh|~Hh5bCchuZ=qzk86;zmVh2tU)2!L;NG z;sE&luESlilIi8n{%aC%xt(P5QBidj3t+ZlWTzK9exU$!=hn9|+n0obS+il9a-s%v zkA(k;2(5VYx4H$GZ%UY>xe2^pN&UtBkYV_bf%&7T9m&e~jwmvQ(}n^x&U0BDG!=F6 zsS_PjhV#vgSL{l=B;txUj3SDgdLJBTa%Ruq+Q5*-4ZP%UkYR-67Op-mp$IY*bL)_i zBl#;1jafLC+t_>UaEjO_+{$e4(;>|2)fHm98Zj7yb1w4V%*@PMiT_#8$t3mT+~XpZ z*A-K2CBHv5N@M3;Zyorw4UE)7+)PS5sBw2H8w@dI~iX2mZdXeE@JvcKyC`GUSTxb+rt^7y9sz(9Pit?GOGtJ+d`)%HPb#$DQ)@ z`9iSiu{`=fMVJix`g_dyDfqAWRnJK698#gJEYh=dBDI0EgPC5G7;Z0`ynmClq%t66 zoC{(xOD6aNjV8(o5;vxE!+|w%T%x*5GITSK;)G!)9g$jZQafE|zDxKr@@IGf@FNO` zwaj0J0)3W;H&By9=1OYfj5S$?;*Ic(!@z2Wyk8GC?qtkswziSg39d?O?;DX>L<#~p zwpquRlAmAv)a7&Zu?M{VS0;`%^%-pul|N3O(byzUt+ZlEM)Hj>Q1d2zD(!W%ejDnm z-+pi8EehQI6)xYU$Jg1Re%Beq>^F2e_0^$Ti_0o_;VNH-4i}+4BunZwf#WM&RV&SN zbXm&&ZX0~iE|9K4YdM?5#0s~3r4VS)=1Wt1Ls}A*89etX872Vg@?rL}nt!w(%*A+6 zrxMLGNHxyv(i;7jJ|HFPl`-4jWDpsR_b-*Re_pTJW-In3%dF}?WhZk9gWAHOWlOZX zR5bWS?2l7%%}d`7n*CIR=U+XWWInFNt|g&U2f|V(j8%U?R=~l-#+}7|60;FCV*FjN zUoB$r>iF~Yyf^Gbs2YobRq}M~w<=$+4V7M2Kj(d=o%g&Ua8!3omL|?{2_qw}pB)P! zAO736EVF(ml4v=PC-JKu8HrnG zuSL<-$IPajwudPB;XTKTJ3GRz`K2E2O8}RjyyCS&pj`wPY+kSQ{iLMOJb!cy9?n;_ zLtn-sP3(bC?VXObxzXun1iwPG3l|$uynfP2=**;_FuGS82#x8u@%h~gAFy5gs*&aU zZYZ!v_Ic7Gpb_`iM9>{cH5o|gqCn@`E;+IEDf&gvs7^YX-P^f2+pj>e{GuW4Pxive z1hR?ny!W5N=P|qb8D?9jNt@r~ch!G&-M1$|DD`k)wQCVW2tMV#JdbSR6~yiRRk50% zx%SD+6nEsMW~eSJckUP0{XAraLdPfb=fp~4xA$54J0fP!&L7bP!-mXTSs$)(+fNmd z1WGmvh{l2DpWPiIW0XI>9^5Cz)NCwYi@r`x>1dcDab+f%RWB%g4YO!j>nHT-V~w*{ z6^8|3cq(zV&J8crUZJu3{|sR(5cX+0edXMY`!$;l|HC%@!YaYu4s-YB)TOtYc8#BB z+INSw1cGHV9~S=QC3?;z1A{*=s&;0?6y%c*4V{LtWD>oBIA~B6PDQ6h5)soGG%bkk z$u~RRAUl`Lca?Gb^gB-GxA+%7_d=N+>cX4fF&D=J6fjN$|4Dx?_@~XYL^I#s>&1O` zbGrVGG-}J4qUJe^*irTSIVeGte?Yy=Z5Wh}Ke5=6NsKcJ@O&J5-sP-g<~rWrq=M<0dhS-PKKO2xNO+%6Kc0sLZ0;^>NbI_y*8;Lo zds(4fQSy*f@OVb14;}SuyCmlc06fF_Vml0QUT~r&aj_0xxyqrwJ2J<4j3T%lJD99^ zpvw9xqm|Y3_sbt10Jtg;8WP#=GI3HEniABVW-h;vv4IzWEd^X3GD|T6KXf2D*%4+GV)Rfn!Q=m zb!@dYWF2H07JjRb?Wi9JbY=i%Ok}b-Dd@*{((@@45GTpm=fN6`X}8W;O6$YhS`pa( z8{Qq}OBnD$O8RKjuo0AkXDHZe^_!(|MVKQ9RifM=_y-k_EpO0ae}+1t95jN8Yg9Hc zDcQ_`ZgGu0mp3H-lk#_2YUbOFZaTBxR3&kt)?tUdFE?C~bPg+D66G%)HQwZd0--=k}FOAU?DNtxF23+lT$$ogi$Ch_B_K~?AW?E5v4 z7g5{8&gcVGwpovcFe-xr|9m*f{gpRdl9bfx=N!k|5sYehf{AHY(nIR@AoGmQHX?N8 z)%2R@`2C_)@uNd&oD7qfywLW&0^fDNFSp!B%IMPE3*Tg(-0p)9uc3c0;qQNrJNu=b z{xWP)7W4jqG!EpET#o051ef z{C$5oy$2P2g!ghXx2d_JP)VNF>>g{yXc>9=5%rkCkGxpc_my^`#s-c4IPQz+>T(`G zwL)H$kjZbwGl#7fADK@U7!KSEx#^X@oI3}7`NM> z6TmFE<|^SHB7c5a7m}(41w_;YM^9e7!Hs6lIO4ZV)3N}m3oq#}M*k||AhsN8;ag&( z03x_ze{T5Cwd5EQO|?;Z(LtisC_cC!xRU5l&9a$({{zM;!hDrIdm;9u%12iHV<|3P zHJ;OR&eM5DM#nSQ<6*NPE{p4Zrc-2Rp>YIFfry)s49LZ2lquD5_s)p%KlYV;Ee>_= z?W;`+v}UVOF56JSDpQe`o{^f6TVwPVp=ikf?iTRd6M!lUd99?~(u>cp#%8}Y`bY0r zOlVulj?1hCy-ss^DzXL=f_UqA}1){9qE}rPwH_1f%m) zunf9;qz4{yhbKVlEKXwseAq17AvN+3Chr2 zov(gF<)J+bY~a$(Y<>79y)KEr0zA9jZAUde2xPL(ODwJ^CV#A4zbQ3pI(_(@5AHws z*VPscov-H+x$RgNFBVgagrjYejAW085DMK+!VU(SSy-rX7nNxWlI|V~X{c&@M&dsm zkHA`3XN5ykHU4v>T)2DW4{FC>=Q5+>fzoKleraP^;YMxP9HM9DpQXqOW^K__RCQ*^cK4PnFmRi@$N|1(c*-9-BJZD2#GBg)wyx|Sui;9` z@U=YYEc)_TPSxT?aldM~@l)kovevEa!_v#eE=3gmK{eABLhC_7Wg@^ZVc9D^-MCK* zQnkav?{r6tJ6d0xIVd+0HLG_f)6dCK*ztfZQ*MCDUYaiB;R`Wu4CPgqwoe=+3W}C` zzHC%4%bva!Y9<$_=y~1Tx=*f?tLwtG&iVgY0AOqrw+F-;;Nl=!{))H$! z84Fm3EAKJ{Ah(V_a==9J$$*mgO=)ng?4JI+bAvCU`aD%dSE#G>!^Bk(9&CWo^!M;` z3xF^a=u6Sk=LFdzI_m4cgsbB8hAd_ZNibpUX1in!joiP(@pWpN(b2tS81p1+HAe$? zKKhIVkK+_?=$9-=Z5Nk~nKLZ=K225+e%VW3=fZR@P4^J89Nyt2Nxjp}SAcR&ut&?& zfOuA#A`D*>xR|H0fB7;mx+3q~<$^ImCt@7`m$+$MZeb&1JL}X}8;9wAkF}G;mNTl8 zdDWcuS7knXBhhsVLM*nO=xut30AsXk+GrOY9)(^3;OAMR$Vmp0{$STq62rj1pX9J4 z({b6PUR*YOOT@&F*jr6uC+0#^9l(-29-xkg~_8aXW?c9{=*2L z&s6oVtkAuRvxGu3wkJDbvER3;@EuP!hF>y#fGON3 zh7suuU0@3vA!A*SW3zuR(f>&E*D5Np)XbuPB}Qx=&mNDi)DgV-`na>z%tR|uU1jJ{ zUM~If*!(9GtlAuXPmJ!EWd8QJ{?=ej>Y^-(Nxd1_H2QdYU~$R&eq2U&B1^Z@EPPG^ z(dgh(k|=C_ij=}883rzyKezaHAAdZ9FEsuVy<#S89C!%LpEcoxQEFj$7eZacVgX>h zT(xt*ehK_91_{KyH;Rq<^B=@2IVkOJv(~fovI`H_@z`>waC&is*-x*&{#6WHOQBd2@mvJtEz;;%K(KL5hkl7 zBfH9;FeOjfNNPhr+)Fa@d$A@8M~`^>Z*PB+*&J5Y&s4u*$#qOQWe=>Eu8KR~G@}Ej z+SAlJVpzFbMoXIbOcY4Ga$nCazqu!z$-^P{`gl`o$FzkQ}&6!pLS!zQQu6B_t0%e*mGr*JZ; zJPh8Jp-OYYwI4I_vaqv418>;;bs0HWevERZfB5MiB2kn!v}-qo;}f0hd-K54_VZty zejeLmvgz4!w@|y$JkwRtJ`n!H5w<0c!X;3t$#!5v64RDqMX>2=+sT1iz2r(bB)FZV zQcjMe*c$6(PL7jG}KD{Sj* z6c0)FB##IKU*>&RH-YhDxW^$|uOhbT2C~TSb`rTR7gq~Ku76DHPM!q zs~^ld+H8+ol~*3bT-j8TnUDo5$P?{krFc!t7+$obK}=Zki)@Cid{AKv5- zjbGxBm)W1X;5XP+^&*KbrOHJqu=5Ch9q*xksD+l0)0MnP}ik0H!d=4HoWSIWA#B?HzH#C7or`B+Rd!ZV=2XUps=Y zHOR?}?zr)lnCeZlX8o=HaL0!0fbk9udHqD!hFsjd$P?{ zP9--qnpJSP_X!^+Pd*FQhRvuNF#d)h0f!A>Vhj6wM4N!8v%gteHgR2y8s&nG=uk_t zh3{5#YIDb3m+s;^q=acxz=qpXcXnefveAs)&<6?g)d_VaB}Fo_gE_NJSKS|*IGSxY zb$<-Mh~Wgi=RuzOU9a{TxXlmh3Zz(4gwz~PRRE>Mmhf3VE9z5Y7cjfP44Inye&WnZmH_GiDL zrJMDpV;5XOI4bOWM#mkoV9xNqy;C9KUp+1Vc4Z|bA?bauF>#ju`1a;j>n$Agu|x*) zknU_H{z&S6rsI4QZ{l0zaZWlT?T(;J2%Y7;bTbt+1c<)`FO-U5WqQ9v`589AhYpM= zG8O-l-AK#nbRn5kaZWHhI@n&;aDpQ&6qOZPdnS=KhxGY&SzW1rlt*S|@(u0!ZrLNd6JI72 z=y=@*P*DEyQg~FljY`f3i|s#AEl=H-bQk)gpq%tzODY_sOD(@)$3|a9h#)P-X?&<= z+pIxhpbMo+GRzvet=(_!4W`oFl0;dB5yZ+>< ze@f+WV?j|?)nohI8GN9et-QCOJj^zB|A$_7ZdlE;eK^0cA|r1*krTM3`CBkhXS zD|^Vgt|7U5tvmLpg-?URtYvsBP3xiM!XD92ppp9gbqY>;zNEk@Yk(U_XpxCy0o>L( zd-UzgiW9#VyRqadq+MpI-1%cS$=MEAio}c|sakMjofr(VU0?9`Of@xXyYrgsvw5F0 zOisPnsBpE)E;@MGIvU1#^{I|a|NV?tY~%De4^?M)7{>=8ZQb2Rw@JobvpI6>_(_Ka zCTD;DN*?j-BlvEVTa*-u$+q@#zucLV2b4L+Jn^PI-VKcI$!`$l#Wu+gZ*Uk{R(9m9 z2zh^~SaQE=K{AYNV2%U= zG2$eS5_6se{JMenko5amDnDJSzEHm%( zEf>-XJDIScc7P4|x5mOSZ8Syfu>G{=omwMllmN562H1~dJGb^ZUp{Q-h@k(6Kf#{F z_MkdcaM8v7=iN1)n%TVxBuuKqQ;LkTK_XQuGj)+mOJ~OOX{-HmN zHt-{KJJ*G7HO^!HDQSYt9W*@W*){m1>5euuu!#m26ihunvi#&+8Sx z-5bUA${a{qB@{b>Qbj@t!cUQFS^)7m3hve3LX1Kk!$r5h_#aGO z4Y%CuZN4jTs}3FRds;-BcU#)4{Ow~RyLccvnrifGia3>njHWq2FY8xwO9ju)QG38> zz#%+4>Kk3-;;dU zXKHqj)2wAN9P*9Jc}Yy%{X=`PeB|&B<3OF0n(%IU7Q7t_tWT$ja_e|XYl8ey%U=Eg zx4&6ucQjD3e9j;Bn4oW>e9$IRT^zS>1YC1kwwMu85F`Bgb;kUT1xvX zva`uz%z_IrduRPZh>F4KOb%?Zs34g(Zb7I^r*G(+t!UgF(6*c?Eh<;JEPI8&hdpeqKH9c8EVbCe3BpNlS*fpC z)HHM`#+3T#FG4_QJ?agFnov+6j#8E%4RQKPoLDxDA)YJ!yye`bkv(3=*P+iA}t?zFZze@y#-xj0nDdHDUZ7 zaZ95X`e3M=83+k+PHp#?A2&$osCXTkBIOl~qWZt)-@ zy2Sy&S97X>CBB$KbS6l3@zDUBTX`|GvB1i;IIpBt)m8lC;t^12+p@(zg zk(%du_bBq%7)r29(}^=KSAr<^M0XHSZB(Y(!amhti4iNS2U|?7>n@>EhR}G<@lc0a;B0nBvVEy*oG_dnmIC!YYXWNc1Xd+quD;9a$6=0-3mf;$I?v?m-sdOeu zbu?hc(&02)_!sNbV0(NMANccxDpd{t68a8b49D^f>XWmRWhWIb{GO}#iti=9M2CEV z-t>z?EIUvE3V>nj zxs&WUW{dEAy%Hp?Ty4LrY2&aSL2LQvO=&p$rkQ%F38r@suK+zUWKV^P>XE+>&qr)F znKg=I}tvv}x z!O_WlVD@jf^`p=(KUV1v3$dP1`SjYsfz#fWQn8y3>W#K~8h`JvIWh+xxT&tG-eM zN->-=TKK9QX>zKTox@7H>-bsn{j#ECrc^HD`CTO6gbKT@j{^_w#CL>R=bNVvd1RT< zgSwLL#8-($)Tg%2CGK4wRCWtG39`v^1y|UF%V!_7?Rd*vL!1aRgS~r%fkSGeWVkbc zlNBQQ$d13_=&;Wvn7HY#&K7by;njZi84R8sd~!*oZZNQl4Q+(nc1IhM_&Ucf7Q{w% zp&$zC#mAdgt_v@frRDi0zL04=r77xtGW+$#9#E^WQEp-s{ZYNprBjr=-=}=0{z|IE zY9+jP#>7D|x1f$NwV|cZ7QPjAUi#kBq&ZZk>FP9!++<2zAZ_D&v5cPn(0SHQ!(lQV zFnFp6T2B3=Xpj(z)D`8mkU73LuwtWP-Ey_Uwf#2fdLt5}z138+6mdJDm2`R}w56A8 z&9R!^Sj(1+gt`oGRsg+o_C9jLQTZjLIi!0xrufU0W=(zlqb1AH>4*Z9ot3g9wWD{J za$!@a=mIV6M!~5PY8>$InM5l?G7>ZMjg4l21OVmitrY+w2HqMY(S@kkcAEV(#qvUDYjSKDrAMh)^(vL2b|a*Cs;R$V>$%?j12n zO6-Ms91gj9_ZC?6W-AQK&4&ni-k*hp^A@C9_&76)-)~&k?Zppk+b=ph+C15G&xu$X zP2F@fdQ}7CQ{UY?);Z*5y8nWva6f%od=H5){Bz_*?|69->0TUWNUiAY!^35O3vJrg z6GSRHmq@0Zh&8QfmK0{R8{_$jx!ToZT(tVm{@$n$P9-9hhb6Wzvr}S3Ato>;i9icQ z3^Tz(ouyL)9I@7p3%k_eGD^x7w!$_Gw6$u}_-zBl+a>tzI}-spI|(TvSVZPB^2z}JmRAb_=_mrEW*Gutq9 z&^5u8f-P8C5{AZuM@VPhic-*7<7QJ^*A&UcQSrf1r>IZyU`0Kl&(hCuR3z3>l)s;L z^eNJV%GzMy5(Cy%f+}I=-L_Mzvh-GF$9dO$9p80-E9Q4*Q5f}^h{log?&PoRR-2pc z5i{mYh`^k`o#b{w>9&~s)VtrSomK5rge;*^KY^3J}hsJiT!$#HC;9FAWw zT+G@vqXgbc8Z_x|uV%G|`wTR8@BhH6?D{S)Yk2tGXV@fn84f=rP5B?{U zW?7mURi`!Y<>7X}-DMNkGmU0Gc8{lumj}V2z03&QgAQ9i9Xbe&BL?!j9|n)L2zUT5 zBSppu8snJhVVzFuxx;|!NbI{z)6)=EGjn<09G|wFR@ev$n<8c2*%m1IbJTpIXR*lr zz+vy|7GIC93AeinpJ}9@ZI}_ZN_3+mHMdL%ZQP8VCC1_tw_ODBh}TOpTTE(>ICfI8 zHLA5e;aGxN)bw(DnpB|knl?sM7$z(`alp2owuR+v<%6JU{@cc1_a!kLH)6E-S6cnx zD9KZ5$s|E{7BDzGth0#075x`Gp6y+pJGN&zprXU9AapXvMbXwW1R5~V>Tvl0w69a! zi(e6&_Dt559y+fHYiDPmOY=_MgS?Mlc+X2Y9`8#zA)?r&Ox$&Qn|!S9*vR&?3CC+# z%5-1$*0dzBaU4>w{3n`hzxca1d<9TKZ$JV#`LPZ5KWg|0;~vilE5bMsXuh=K@Y$foTTOosupK`Ea-*<4 zV6MHZsSiD4Wr;V8%_R76PRLP#cs)^Ye!Ic?AS-54zp3cRcLHkDMJCz8(6)g7#a=2W zW@)Zmz2(5c2HkBBv!p5;yo24z&vE3bMXa|wv#0t2NS^u@*v7PIEC_CWu*Rep7>yX- zquDdg)SWGaq?Jr?>Cs*8+nd=bfQs8jEap#$ zq!Hw2=3=Q+rNiDjGz6f-jKWZD(f%%xWA<%%4)qD0!E85qP>Sf)e0YQ->ng7*#}-5M zQUtSfi_K;}CJ}CHaf%Q7LTu;na>!D|>7Pmkdq{mD#DwCk9$n{-1%xxdTVSh@Sc9aY z{BiV-zwqE%v!*;EWg%7_A*q%jZ42%n9k1{;u!Z$fi4K!ltWM0t@BJt}yL+hZoF|Ax zRB)nOm2hPbM}?GM01&SFq{KHfQHr=@e{f^uJ9?)NJ`W|%9863-&i#`-6=iO_c~i)C zg$omWNUz43Pua826YHh6oBArEk!!uUc8&;&Yd?Y)-L3Y0X3{h?%aE^;c#8+oLX-$% zlr%No$L-u^k@Lq|51rr(OVMSg*6&hv6X`od;j^;4uwER-sjD&;RN z&Zb_m_X}#@k^(#Ti?$^y1~7Zd4oS`d!A_CE${8wef6qCal;hv3#f|#TGxo-9pwJ?& zdZTC+HAZUyrY=$j9;cJWN}OE56}m^eJshufBQ=U{b*wO0JtHMz(c01)V}2MrH439k zom^WIf;g29CEhG}Zvr8F0e|f+Zg{kH6okE)&zpvxag2}2u-YRhsl}Qc&MVv3#V$mU z5Cc$WgRh=I>&^L3R}iG+rioJ^_ewLVimat_5HGokCfiRjXQ?AzHNOXeg7St@?(1iD z@y6}Ri?xr+?G^HwqP3fz{np4c-E$-?i5wmyP6sCD=!V&f1rvOy46d@tC*I!F z)KPr~qPcjbvU-wRTLBC;8_DNI0L6+Ae*V4%#LUag9~wArXf=Go)+a;jTG981uj@9w z<~aE|I$|;gP&X8*LxiYpV>vsO8C_P~Uegy@+IvSkkDV*PtHqu=Ft`13iXqB+2dPKd zAROc{-7a4|pi{Rc9DBPPhi2U zDPddr#5_=rJ0_z%D5J4N40O-)y_#o7_iScAYXt3(7*u03e3R2ye{v~gn5!ObzbDoT zfjbWi&eX+SftniW*kf%$en#cdtL~b(guslQ*jr$mGetrwS0R$GP^!~ta;<_BZh1sy zR8J{6lG)cZEePypmcQC9=r{3BT1}v8$r`F922=W8%I8V`xb=5U6QbhV*U0``08L!p zww6CexE39rQ>?_}SgT&}q)|NWwBWF+xC0mSC~af(Ny7@DTbgt_RI3vv+M(kv`74-^ zYz5f)fSV6;uL0H;bMDk9d{lg3EHCsX;3|8&MJ$5@KI`_^=djN61!d&5V{BS~J)w@i zT-Yg{vTT%0PpR;6DX&T~L^H>W{BxTv-`lXG&<0E&6R~~L3k{jKtcx5?YO6}wMMd$A zFw5tKY%4mN13_CFeQyvwE}dHN*5gXo2ZnJPUO%u->=5ef*(tYy*zQtikC?IqP7ZGn z1%jn}uB^9Z(&@Z$b|qwIybXEQeJ-0L#w!jw^FU-#vm3FW3Y}RAR|uyT+y`h<EJJ$l4zpn!?J0Nu86cQ+{t%GyCF z`t#u9`ZEcQ{BAG`3d;T9ZrqFiahmoqcR^^W@pd6CoZc%zM=@DTv`gK>*N#ml&P0&CoUP z(43)fj*3>!d+AXiMG=HLzUmmmxpZ*WGHX~xXgZ4FY4Frb)5l-EKW994CKzeu4WN^t zpd2xC8`wYUpwhqFKcUP0!#n`H9pQy;?lv4t(2D20hZfx2$|PZ56^0(`Y{O+{k{23E zbK(u3Fn~r4DDW%cdJBJ@2I{B*7xCdzK8Hdy&$?C3^5&`cLX$ z_W`_}xEKFs`={SsW9CV|S+l&5ap!w1#~H2bO#N?8^nd^86#Ktl<9`+Y c41c8ddzqsY6cc>=-^1jjl)hGeG5+=c0MjbvUjP6A literal 0 HcmV?d00001 diff --git a/front-end/src/assets/error_images/404.png b/front-end/src/assets/error_images/404.png new file mode 100644 index 0000000000000000000000000000000000000000..135d629bc528e2dad004007d4e04edf467b982f9 GIT binary patch literal 71577 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