From f494d89eebe38604ce6fbf27b92f973bcb9b7d43 Mon Sep 17 00:00:00 2001 From: "@fawn-nine" <1271023382@qq.com> Date: Tue, 5 Dec 2023 15:12:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=97=B6=E8=BE=B0=E5=8F=96=E7=A9=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package-lock.json | 522 +++++++++++++++++++++++++-- package.json | 1 + pages.json | 8 + pages/peanut/home.vue | 4 + pages/timeAcupoint/scss/common.scss | 297 +++++++++++++++ pages/timeAcupoint/timeAcupoint.vue | 537 ++++++++++++++++++++++++++++ static/icon/five6.png | Bin 0 -> 3978 bytes 7 files changed, 1340 insertions(+), 29 deletions(-) create mode 100644 pages/timeAcupoint/scss/common.scss create mode 100644 pages/timeAcupoint/timeAcupoint.vue create mode 100644 static/icon/five6.png diff --git a/package-lock.json b/package-lock.json index de34032..1afb2c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,6 +13,7 @@ "epubjs": "^0.3.93", "jquery": "^2.2.4", "qs": "^6.11.0", + "quill-image-resize-module": "^3.0.0", "uview-ui": "^2.0.35" } }, @@ -50,6 +51,14 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, "node_modules/core-js": { "version": "3.24.1", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz", @@ -74,6 +83,54 @@ "type": "^1.0.1" } }, + "node_modules/deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", + "dependencies": { + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.5.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/epubjs": { "version": "0.3.93", "resolved": "https://registry.npmjs.org/epubjs/-/epubjs-0.3.93.tgz", @@ -132,6 +189,11 @@ "es5-ext": "~0.10.14" } }, + "node_modules/eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" + }, "node_modules/ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -145,33 +207,77 @@ "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==" }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/fast-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, "node_modules/get-intrinsic": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", - "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": { - "function-bind": "^1.1.1" + "get-intrinsic": "^1.1.3" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "engines": { - "node": ">= 0.4.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-symbols": { @@ -185,6 +291,31 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", @@ -195,6 +326,50 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -263,11 +438,39 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, + "node_modules/parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, "node_modules/path-webpack": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/path-webpack/-/path-webpack-0.0.3.tgz", @@ -292,6 +495,47 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/quill": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", + "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", + "dependencies": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.2", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + } + }, + "node_modules/quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "dependencies": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/quill-image-resize-module": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/quill-image-resize-module/-/quill-image-resize-module-3.0.0.tgz", + "integrity": "sha512-1TZBnUxU/WIx5dPyVjQ9yN7C6mLZSp04HyWBEMqT320DIq4MW4JgzlOPDZX5ZpBM3bU6sacU4kTLUc8VgYQZYw==", + "dependencies": { + "lodash": "^4.17.4", + "quill": "^1.2.2", + "raw-loader": "^0.5.1" + } + }, + "node_modules/raw-loader": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", + "integrity": "sha512-sf7oGoLuaYAScB4VGr0tzetsYlS8EJH6qnTCfQ/WVEa89hALQ4RQfCKt5xCyPQKPDUbVUAIP1QsxAwfAjlDp7Q==" + }, "node_modules/readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -306,11 +550,40 @@ "util-deprecate": "~1.0.1" } }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", @@ -384,6 +657,11 @@ "get-intrinsic": "^1.0.2" } }, + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==" + }, "core-js": { "version": "3.24.1", "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz", @@ -403,6 +681,39 @@ "type": "^1.0.1" } }, + "deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", + "requires": { + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.5.1" + } + }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, "epubjs": { "version": "0.3.93", "resolved": "https://registry.npmjs.org/epubjs/-/epubjs-0.3.93.tgz", @@ -457,6 +768,11 @@ "es5-ext": "~0.10.14" } }, + "eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" + }, "ext": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/ext/-/ext-1.6.0.tgz", @@ -472,34 +788,79 @@ } } }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "fast-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" + }, + "functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" }, "get-intrinsic": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", - "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" } }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "requires": { - "function-bind": "^1.1.1" + "get-intrinsic": "^1.1.3" } }, + "has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "requires": { + "get-intrinsic": "^1.2.2" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==" + }, "has-symbols": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" }, + "has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "requires": { + "has-symbols": "^1.0.2" + } + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "requires": { + "function-bind": "^1.1.2" + } + }, "immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", @@ -510,6 +871,32 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" }, + "is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, + "is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "requires": { + "has-tostringtag": "^1.0.0" + } + }, + "is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "requires": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + } + }, "isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", @@ -577,11 +964,30 @@ "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, "pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" }, + "parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, "path-webpack": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/path-webpack/-/path-webpack-0.0.3.tgz", @@ -600,6 +1006,44 @@ "side-channel": "^1.0.4" } }, + "quill": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", + "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", + "requires": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.2", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + } + }, + "quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "requires": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + } + }, + "quill-image-resize-module": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/quill-image-resize-module/-/quill-image-resize-module-3.0.0.tgz", + "integrity": "sha512-1TZBnUxU/WIx5dPyVjQ9yN7C6mLZSp04HyWBEMqT320DIq4MW4JgzlOPDZX5ZpBM3bU6sacU4kTLUc8VgYQZYw==", + "requires": { + "lodash": "^4.17.4", + "quill": "^1.2.2", + "raw-loader": "^0.5.1" + } + }, + "raw-loader": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", + "integrity": "sha512-sf7oGoLuaYAScB4VGr0tzetsYlS8EJH6qnTCfQ/WVEa89hALQ4RQfCKt5xCyPQKPDUbVUAIP1QsxAwfAjlDp7Q==" + }, "readable-stream": { "version": "2.3.7", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", @@ -614,11 +1058,31 @@ "util-deprecate": "~1.0.1" } }, + "regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + } + }, "safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" }, + "set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "requires": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + } + }, "setimmediate": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", diff --git a/package.json b/package.json index 1f04b55..227bd17 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "epubjs": "^0.3.93", "jquery": "^2.2.4", "qs": "^6.11.0", + "quill-image-resize-module": "^3.0.0", "uview-ui": "^2.0.35" }, "name": "e-peanut", diff --git a/pages.json b/pages.json index 1a0beb0..7eddd94 100644 --- a/pages.json +++ b/pages.json @@ -535,6 +535,14 @@ "navigationBarTitleText" : "脉穴详情", "enablePullDownRefresh" : false } + }, + { + "path" : "pages/timeAcupoint/timeAcupoint", + "style" : + { + "navigationBarTitleText" : "时辰取穴", + "enablePullDownRefresh" : false + } } ], "globalStyle": { diff --git a/pages/peanut/home.vue b/pages/peanut/home.vue index e7bbc91..72de994 100644 --- a/pages/peanut/home.vue +++ b/pages/peanut/home.vue @@ -24,6 +24,10 @@ 五运六气 --> +
+ + 时辰取穴 +
书名检索 diff --git a/pages/timeAcupoint/scss/common.scss b/pages/timeAcupoint/scss/common.scss new file mode 100644 index 0000000..a0d7aee --- /dev/null +++ b/pages/timeAcupoint/scss/common.scss @@ -0,0 +1,297 @@ +page { + font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif; +} +@for $i from 0 through 100 { + .w-#{$i} { + width: $i + '%'; + } + .h-#{$i} { + height: $i + '%'; + } + .padding-#{$i} { + padding: $i + rpx; + } + .padding-left-#{$i} { + padding-left: $i + rpx; + } + .padding-right-#{$i} { + padding-right: $i + rpx; + } + .padding-top-#{$i} { + padding-top: $i + rpx; + } + .padding-bottom-#{$i} { + padding-bottom: $i + rpx; + } + .margin-#{$i} { + margin: $i + rpx; + } + .margin-left-#{$i} { + margin-left: $i + rpx; + } + .margin-right-#{$i} { + margin-right: $i + rpx; + } + .margin-top-#{$i} { + margin-top: $i + rpx; + } + .margin-bottom-#{$i} { + margin-bottom: $i + rpx; + } +} +.d-table { + display: table; + width: 100%; + vertical-align: middle; + text-align: center; + table-layout: fixed; + font-size: 28rpx; + word-break: break-all; + background-color: white; + border-collapse: collapse; + &.primary { + &.dark { + .d-thead { + background-color: #2b85e4; + } + } + &.disabled { + .d-thead { + background-color: #a0cfff; + } + } + &.light { + .d-thead { + background-color: #ecf5ff; + } + } + .d-thead { + background-color: #2979ff; + color: #fff; + } + } + &.success { + &.dark { + .d-thead { + background-color: #18b566; + } + } + &.disabled { + .d-thead { + background-color: #71d5a1; + } + } + &.light { + .d-thead { + background-color: #dbf1e1; + } + } + .d-thead { + background-color: #19be6b; + color: #fff; + } + } + &.warning { + &.dark { + .d-thead { + background-color: #f29100; + } + } + &.disabled { + .d-thead { + background-color: #fcbd71; + } + } + &.light { + .d-thead { + background-color: #fdf6ec; + } + } + .d-thead { + background-color: #ff9900; + color: #fff; + } + } + &.danger { + &.dark { + .d-thead { + background-color: #dd6161; + } + } + &.disabled { + .d-thead { + background-color: #fab6b6; + } + } + &.light { + .d-thead { + background-color: #fef0f0; + } + } + .d-thead { + background-color: #fa3534; + color: #fff; + } + } + &.info { + &.dark { + .d-thead { + background-color: #82848a; + } + } + &.disabled { + .d-thead { + background-color: #c8c9cc; + } + } + &.light { + .d-thead { + background-color: #f4f4f5; + } + } + .d-thead { + background-color: #909399; + color: #fff; + } + } + &.gray { + .d-thead { + background-color: #aaa; + color: #fff; + } + } + &.border-under { + .d-td, + .d-th { + @extend .noBorder; + } + .d-tr { + @extend .border-bottom; + } + .d-table { + .d-tr { + @extend .noBorder; + } + } + } + &.large { + .d-td, + .d-th { + height: 80rpx; + } + } + &.middle { + .d-td, + .d-th { + height: 60rpx; + } + } + .d-td, + .d-th { + @extend .border; + } + .d-table { + height: 100%; + .d-td, + .d-th { + @extend .noBorder; + } + // .d-tr { + // &:first-child { + // .d-td{ + // &.border-bottom { + // border-bottom: none; + // } + // &.border-top { + // border-top: none; + // } + // } + // } + // } + } + input.borderInput { + border: 1px solid #ccc; + border-radius: 6rpx; + width: 80%; + height: 80%; + display: inline-flex; + } +} +.d-caption { + display: table-caption; + background-color: inherit; +} +.d-thead { + display: table-header-group; + font-weight: 600; +} +.d-tbody { + display: table-row-group; +} +.d-tfoot { + display: table-footer-group; +} +.d-tr { + display: table-row; + width: 100%; +} +.d-td, +.d-th { + display: table-cell; + vertical-align: middle; + height: 50rpx; + font-size: 28rpx; +} +.d-th { + font-weight: 600; +} +.border-top { + border-top: 1px solid #efefef !important; +} +.border-left { + border-left: 1px solid #efefef !important; +} +.border-bottom { + border-bottom: 1px solid #efefef !important; +} +.border-right { + border-right: 1px solid #efefef !important; +} +.border { + border: 1px solid #efefef; +} +.noBorder { + border: 0; +} + +.flex { + display: flex; + align-items: center; + &-wrap { + flex-wrap: wrap; + } + &-nowrap { + flex-wrap: nowrap; + } + &-direction { + flex-direction: column; + } +} + +@each $type in center, space-between, space-around, flex-start, flex-end { + .row-#{$type} { + justify-content: $type; + } +} + +@each $type in center, stretch, flex-start, flex-end { + .col-#{$type} { + align-items: $type; + } +} + +@each $type in center, left, right { + .text-#{$type} { + text-align: $type!important; + } +} diff --git a/pages/timeAcupoint/timeAcupoint.vue b/pages/timeAcupoint/timeAcupoint.vue new file mode 100644 index 0000000..47b9263 --- /dev/null +++ b/pages/timeAcupoint/timeAcupoint.vue @@ -0,0 +1,537 @@ + + + + + \ No newline at end of file diff --git a/static/icon/five6.png b/static/icon/five6.png new file mode 100644 index 0000000000000000000000000000000000000000..82b554194114b3d6a23e777d430cd308d173b340 GIT binary patch literal 3978 zcmaJ^c{o&k|30%ZWEo3H(lOaJt1bJ?7(&Sy+YmLw3?|Le3>j30hL8$v+DD602@#1h zgcOz1s;NXN^+Zb1TOKdZ`}DlOKYqREy3TdJpYL_w_h-BRIr+3z%Qe-F)d2v|^!KCE zXTQ?97pVdOkUE#(nAu=KvJWFUL=c~x$`Ww^GFuSK0sVQb1P-0UVyA7m$#Dk&*b;6i zBbgDn(lt)N!?NZuSP4%!%LV{t<2z6W}&sRa#k*&gT!$3T3b(3_LU z^-C9VLef`-#-%64xv^+RpNpEOV@SwJa>&lgMUGilRVJ> zDT)zD1HAjtL_86X!xM1?dkmi7ig$J;62ZS8^lUZ} zJKmK}_5C~7Y~+DXOimWM;&7>{sn}F|tU#22Be=M@%xMsbm{|lyoW@UPNiclzl3xl` zjyO)l6((~9d~i;Y6)Q+d_CU{8`kxkf!hdA>;=jiyT0Rsd7HO%`R6s55QPc^>wis=mMBOTh!X`u zkVwE1KGSS(=h3H5i5PWP#V0U5E}&_QYRYsvs_f$Kfac;%@Y-TD)#NEhY`-%iS@UNa- zxxcT4_*=cdx$NK9V*gt%ZnhZQ+-CpJrhi?{+Gp+6IE?hybm zZ`z+q4wdxB{+yZdf>}uOv*>^ba>Wk5j}x0>aAld_;(1O!i;tJv#}e4El_u1<6v#@w zi}4QM=CcXao~4i{4nv<*lqh|eklSf!3U1cF0oAK<8r);`8nJ23_2C@NCmN)k;eVbw zP{xRn>d%W1x-32!nHYA(pp`*#fYN9wxy@;$+--HrxCb>NUGC7H9-OsgdgP zG%2Q54r}E^+OcY+Ix5uwoU5WzqE#=InU|k$T)8we<7Lk6=3Lz!mj_K(PpB=ueGn;D zQv#HOHRfl-i_E%IP+_I={ZVx`+SMGeK!X_{>z;KNm95ge{qQ#&qXEz9VOyD($s&&8hv_ zm-{AtQ-!JpyxIkbC!|m56(<|BcZ2hB=cBx_ zhW9YgasO(QNbTlQ{pf>FHFdqQD}vvLy^bx`-LB>WkGJeuWl1@(kEYZUfuSuIN zJyw+gKNj;%Y1XK-&WXd){Tn>il3RPa6p}+G+nDu5WjQVmqZf1!A-$+UO~9k;?Nf^z zoe(3c9CG#|iwOhE^XuC7I;w>Ybwz5e-kJS0zrh@yG&R#Q?mbbcLNADWO;L^Dw?(2} z^>j<#N4kHX@hU5_Vi*>cyd8h|oca&}g8mcR`$cruKJMxE(q0R#=I@sTYo;4vGnu-Uhw|u7@+!6EJI3f0H9dZpoEM># zyIA)^F6PE7RK|8by1PPIQ89Tmo1qe`_;|+V07+oGUdXwUHi~ubz7V|8!r;=h29IJZ zNqkv)SD||n*hbgh8z*FL_Aszf*sLmAMNz+8t~^+~=$;s~{CqRLTV%H6qPuE+U*a*h z@K!VYs}F1q6lV_S8?BriW;vT*;-BU*Jo&gPf(F)8$b z?g|>-M=w1Dy2bn4xnkq3e|DT$_G%E?dk5824jb^x-H_fzRkrNz4r!{qbD>ycez|gm zt>1(66-8}oD}#3jD0D20IhP}tBiUu;#EjmWS{VG=nYfJ22OhIS?NYD8!Amqr5@Xz;za`n9cgwC*_EKlapr^{IVl z>(}Z1nAtx4)6-oHJvG@ie1A#kDce1k)@mEpH#~HFdsX~os$&iA(8v20QUp-BuIzN> zapUl1(mG*cN?-#|cBx1=sw2BvOK$zDWXrK9&j|W5N5Hi$r7!Z}$11pOeE=hgm@rH= zlo5c!Pu!9DtsS>Cu7>bS_1oj^E?ez6e2yfCJTbs3C&Mnk^#na{1HnykTU)xI5S60+ z!s}nF;K5u(gLeS753GZP9)$%J4!-KPQsz-w^8xR^~k#xR(a5@OAizkM>AISvQdv>n51Kkj}Qd_tAF`uj?QXG0R>@v z!AZ*TWU9&CdFDVyLZLoE!~33jUESgAeJ~+Bv9zpgEw)CP4Wr>}^@Xy^Ww2Cv8OO+} zU1Ofxi}vD5+zPYs+Ky3;?{`b)cVDzIqfz95H4xAHWN_fb!>_My{1~PVvKlazXZC|r zhrr8L^1JDifD6DhDS9+E4Uw)keqvP&p@29F;^Ap%`lE4=qZq9E9Vr zheqd62P^XSXBRoB(mGPLC!cIST;rQZ*ILq}R_$P9X8OpnKnfgyJGQ%tGy7T+)aPrl zwdLim?_Vf_wkx^soc(`5U`G|7fjY_AMvSN-3_GH>Y3i~~-LHy&sEH`F zbE-d8?ErNtl=))c3(OW;llz5zTB#q@c27vLnJpUU2Q2lV9||@w%DP`}R}h`PEzqY7 z)UGxsIN3Fn4b8k&UAOG(^LXc*{=J5W-Aq=pA%V#F`*H(#$QZ;JRRR&-8DV4>X(+-H zPpwMnAbq-)p{rV*fwwV~DMm}yLcI)C2iA?dm{Ie_n!E-qHAykgbCftM_`aztYb+s> zrsk{fL3f6%2z@lUlC3S9mxSsaT>chVfiiE;^umo8ANkR7cHPX*Dl|5%Y(f?6sQnkr z!GpZ+^$B0brhg9vJ4zdF2HYlLeG>vgOF<@EZ_H8+&^HzDMuEWPa ztzi{dF?4X@+FhCuj42&;6G5i9CutcS(i4U6^h218=qNj~XJlNz|jP`wGBdn(S(#k0E($^O*I)qI?AwK8^LoanQDhGKS zWWcvtQodKLz7#3C9SYDvLiAI3ie4ftqK}@hL*I6J<-v0 zM0Pm9;BPYfGR5AoH^>0jtwNp$fIEVoOAnR5+R>O1;QrLyv8zTesG#(Q)ppE_aBvguR|6pd;0g$XJdDirCTd(w5>9jX9F2{cc|lf z=0?>qMt@Qy(Nwq-rHnIe+Wq;%?T_i_EEh>{eUKY>N16}aBPYIiqcwU?MFIJw0J=)5 z$_|a+vz1y*oQgL_`i~^00iPh*(@p_KM+1m!09o?Gh`6Fg-;)JDdduUeoJADZcTtGqXQ7jKbH_{zkH>LE0M1au)JQMkpPAdlCWaf>^; z!>%SF+`DE<2$=T#YQD+#vy1`=Ht3uyFz^~9U;EiWcYo}rMcAX~$p+FCG5nq8I-gyp z*2mY@R^r+O-=^MEzjuv}>7({|R0mvnxOc5%$;(T1#WutBbLLX5P5c= z2R~~=C>4+0hK-SMMbWjpRhzf3=`~43z@Z@d=e3zI>41G^|3(y23afLRJh^Zua?Oma z5*z>&2~C!Wj|rQ<)&f}zw?rY3uU?v+2S`9(!Rb`q<@EXwL0+;Y*<(li;jMQgaFG)+ z?I0(C77_a@t@$l*ufBYwj>kItSQ+3e`%*bMxE5E1JIa~HyiAgaE>&QioU@h?IRgF~k}|LIZwqARho-&a^C)#N1y+U)eMFckJ)8ih6;< G%>FlNDPYt9 literal 0 HcmV?d00001